@epcare/esm-report-builder 0.1.1-pre.68 → 0.1.1-pre.70
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.
- package/dist/146.js +1 -1
- package/dist/146.js.map +1 -1
- package/dist/469.js +1 -1
- package/dist/469.js.map +1 -1
- package/dist/729.js +1 -1
- package/dist/729.js.map +1 -1
- package/dist/777.js +1 -0
- package/dist/777.js.map +1 -0
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-report-builder.js.buildmanifest.json +10 -10
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/components/admin/admin-page.component.tsx +5 -0
- package/src/components/app-shell/report-builder-shell.component.tsx +16 -0
- package/src/components/dashboards/dashboard-config.schema.ts +97 -0
- package/src/components/dashboards/dashboard-form-modal.component.tsx +150 -0
- package/src/components/dashboards/dashboards-admin.scss +62 -0
- package/src/components/dashboards/dashboards-page.component.tsx +146 -0
- package/src/components/dashboards/dashboards-table.component.tsx +123 -0
- package/src/components/dashboards/sections/dashboard-autoinclude.section.tsx +75 -0
- package/src/components/dashboards/sections/dashboard-basics.section.tsx +80 -0
- package/src/components/dashboards/sections/dashboard-json.section.tsx +79 -0
- package/src/components/dashboards/sections/dashboard-sections-editor.section.tsx +130 -0
- package/src/components/dashboards/sections/dashboard-widgets-editor.section.tsx +184 -0
- package/src/components/etl-monitor/builder/builder-state-machine.ts +51 -5
- package/src/components/etl-monitor/builder/design-registry.tsx +139 -0
- package/src/components/etl-monitor/builder/etl-monitor-builder-context.tsx +18 -2
- package/src/components/etl-monitor/builder/etl-monitor-builder-page.component.tsx +27 -151
- package/src/components/etl-monitor/builder/generated-config-panel.component.tsx +168 -0
- package/src/components/etl-monitor/builder/generated-config-panel.scss +198 -0
- package/src/components/etl-monitor/builder/monitor-preview.tsx +124 -0
- package/src/components/etl-monitor/builder/steps/data-source-step.component.tsx +39 -4
- package/src/components/etl-monitor/builder/steps/design-samples.ts +267 -0
- package/src/components/etl-monitor/builder/steps/design-step.component.tsx +164 -281
- package/src/components/etl-monitor/builder/steps/design-step.scss +152 -286
- package/src/components/etl-monitor/builder/steps/fields-step.component.tsx +21 -3
- package/src/components/etl-monitor/builder/steps/fields-step.scss +2 -2
- package/src/components/etl-monitor/builder/steps/preview-step.component.tsx +209 -435
- package/src/components/etl-monitor/builder/steps/preview-step.scss +164 -147
- package/src/components/etl-monitor/etl-monitor-card-shell.component.tsx +9 -0
- package/src/components/etl-monitor/etl-monitor-dashboard.component.tsx +4 -319
- package/src/components/etl-monitor/etl-monitor-dashboard.scss +15 -0
- package/src/components/etl-monitor/renderers/EtlMonitorWidget.tsx +97 -0
- package/src/components/etl-monitor/renderers/MonitorRenderer.tsx +28 -23
- package/src/components/etl-monitor/renderers/component-icons.tsx +33 -0
- package/src/components/etl-monitor/renderers/components/details-renderer.tsx +24 -7
- package/src/components/etl-monitor/renderers/components/error-log-renderer.tsx +38 -11
- package/src/components/etl-monitor/renderers/components/log-renderer.tsx +86 -0
- package/src/components/etl-monitor/renderers/components/metrics-grid-renderer.tsx +10 -9
- package/src/components/etl-monitor/renderers/components/progress-renderer.tsx +14 -13
- package/src/components/etl-monitor/renderers/components/status-card-renderer.tsx +52 -114
- package/src/components/etl-monitor/renderers/components/summary-card-renderer.tsx +21 -8
- package/src/components/etl-monitor/renderers/components/table-renderer.tsx +49 -35
- package/src/components/etl-monitor/renderers/components/time-series-renderer.tsx +310 -0
- package/src/components/etl-monitor/renderers/data-transformer.ts +294 -76
- package/src/components/etl-monitor/renderers/monitor-renderers.scss +662 -164
- package/src/components/etl-monitor/renderers/monitor-widget-card.component.tsx +54 -0
- package/src/components/etl-monitor/renderers/monitor-widget-card.scss +16 -0
- package/src/components/etl-monitor/renderers/v2-monitor-renderer.tsx +2 -1
- package/src/components/import-export/export-report-modal.component.tsx +21 -115
- package/src/components/import-export/import-package-modal.component.tsx +76 -22
- package/src/components/report/report-dashboard.page.component.tsx +2 -7
- package/src/features/dashboards/DashboardRendererPage.tsx +174 -0
- package/src/features/dashboards/DashboardsPage.tsx +164 -0
- package/src/features/dashboards/EtlDashboardPage.tsx +32 -0
- package/src/features/dashboards/components/DashboardEmptyState.tsx +41 -0
- package/src/features/dashboards/components/DashboardGrid.tsx +48 -0
- package/src/features/dashboards/components/DashboardHeader.tsx +58 -0
- package/src/features/dashboards/components/DashboardSection.tsx +46 -0
- package/src/features/dashboards/components/ReportLaunchCard.tsx +51 -0
- package/src/features/dashboards/components/WidgetSlotDispatcher.tsx +61 -0
- package/src/features/dashboards/components/WidgetUnavailableCard.tsx +36 -0
- package/src/features/dashboards/dashboards.scss +196 -0
- package/src/features/dashboards/hooks/useDashboard.ts +61 -0
- package/src/features/dashboards/hooks/useDashboardWidgets.ts +74 -0
- package/src/features/dashboards/hooks/useDashboards.ts +56 -0
- package/src/features/dashboards/hooks/useMonitorDataMap.ts +84 -0
- package/src/features/dashboards/index.ts +11 -0
- package/src/features/dashboards/utils/dashboard-config.util.test.ts +255 -0
- package/src/features/dashboards/utils/dashboard-config.util.ts +382 -0
- package/src/resources/dashboard/dashboard.api.ts +107 -0
- package/src/resources/report-import-export/import-export-api.ts +16 -38
- package/src/routes/report-builder.routes.tsx +6 -2
- package/src/types/dashboard/dashboard.types.ts +137 -0
- package/src/types/dashboard/index.ts +4 -0
- package/src/types/etl-monitor/etl-monitor-builder.types.ts +7 -1
- package/src/types/etl-monitor/etl-monitor-v2.types.ts +23 -0
- package/src/utils/etl-monitor/config-v2-adapter.util.ts +2 -0
- package/src/utils/etl-monitor/value-formatters.util.ts +38 -0
- package/webpack.config.js +9 -0
- package/dist/750.js +0 -1
- package/dist/750.js.map +0 -1
package/dist/146.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see 146.js.LICENSE.txt */
|
|
2
|
-
"use strict";(self.webpackChunk_epcare_esm_report_builder=self.webpackChunk_epcare_esm_report_builder||[]).push([[146],{4535(e,t,r){r.d(t,{B8:()=>n,MQ:()=>i,aZ:()=>w,zg:()=>c});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 18v-2h-2.1c-.1-.6-.4-1.2-.7-1.8l1.5-1.5-1.4-1.4-1.5 1.5c-.5-.3-1.1-.6-1.8-.7V10h-2v2.1c-.6.1-1.2.4-1.8.7l-1.5-1.5-1.4 1.4 1.5 1.5c-.3.5-.6 1.1-.7 1.8H9v2h2.1c.1.6.4 1.2.7 1.8l-1.5 1.5 1.4 1.4 1.5-1.5c.5.3 1.1.6 1.8.7V24h2v-2.1c.6-.1 1.2-.4 1.8-.7l1.5 1.5 1.4-1.4-1.5-1.5c.3-.5.6-1.1.7-1.8H23Zm-7 2c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3Z"}),(0,a.jsx)("path",{d:"m29.9483 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5623 2.059 16.2811 2 16.0001 2s-.5623.0591-.8242.1777L5.7687 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8857 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.1143 28H10.886L4 19.4414l2.593-11.187L16 4l9.407 4.2549L28 19.4414 21.1142 28Z"}),(0,a.jsx)("path",{fill:"none",d:"M0 0h32v32H0z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H18v2h5v2H19a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V15A2.0023,2.0023,0,0,0,23,13Zm0,8H19V19h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2.002,2.002,0,0,0-2,2V23H9V18h4v5h2V11A2.002,2.002,0,0,0,13,9ZM9,16V11h4v5Z"}),(0,a.jsx)("path",{d:"M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 19H24V21H18z"}),(0,a.jsx)("path",{d:"M18 15H30V17H18z"}),(0,a.jsx)("path",{d:"M18 11H30V13H18z"}),(0,a.jsx)("path",{d:"M14,21V19H9V17H7v2H2v2h8.2148a8.5914,8.5914,0,0,1-2.2159,3.9771A9.2731,9.2731,0,0,1,6.5521,23H4.3334a10.8553,10.8553,0,0,0,2.1451,3.2966A14.6584,14.6584,0,0,1,3,28.127L3.7021,30a16.42,16.42,0,0,0,4.2907-2.3362A16.4883,16.4883,0,0,0,12.2979,30L13,28.127A14.664,14.664,0,0,1,9.5228,26.3,10.3132,10.3132,0,0,0,12.2516,21Z"}),(0,a.jsx)("path",{d:"M11.1666,13H13.333L8.75,2H6.5832L2,13H4.1664L5,11h5.3335ZM5.8331,9,7.6665,4.6,9.5,9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,24H6a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,6,6H26a2.0023,2.0023,0,0,1,2,2V22A2.0027,2.0027,0,0,1,26,24ZM6,8V22H26V8Z",transform:"translate(0 .005)"}),(0,a.jsx)("path",{d:"M2 26.005H30V28.005H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,2H12A9.9842,9.9842,0,0,0,7.0349,20.6553C7.0249,20.7705,7,20.8818,7,21a3.9929,3.9929,0,0,0,2.9106,3.83A4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,3.9966,3.9966,0,0,0,2.93-2.88H20A10,10,0,0,0,20,2ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm9-3H14.8579a3.9841,3.9841,0,0,0-7.15-1.2637A7.99,7.99,0,0,1,12,4h8a8,8,0,0,1,0,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.6245,2.2193a1.0005,1.0005,0,0,0-1.0972-.1006L17.9353,7.8,3.366,2.0694a1,1,0,0,0-1.28,1.3369l6.4353,14.479A3.965,3.965,0,0,0,9.9106,24.83,4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,4.0021,4.0021,0,0,0,2.93-2.88H23.24a2,2,0,0,0,1.9273-1.4649L29.9634,3.2676A1,1,0,0,0,29.6245,2.2193ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm12.24-3H14.8579a3.897,3.897,0,0,0-4.5117-2.9336L4.905,4.8238,18.0647,10,27.41,4.9878Z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,14H3c-0.6,0-1-0.4-1-1V3c0-0.6,0.4-1,1-1h5v1H3v10h10V8h1v5C14,13.6,13.6,14,13,14z"}),(0,a.jsx)("path",{d:"M10 1 10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6a2.0027,2.0027,0,0,1-2-2V6A2.0027,2.0027,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0027,2.0027,0,0,1,26,28Z"}),(0,a.jsx)("path",{d:"M20 2 20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M26,22v6H6V22H26m0-2H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 10.59 17 14.17 17 2 15 2 15 14.17 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"}),(0,a.jsx)("path",{d:"M8 24H20V26H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M26,4v6H6V4H26m0-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 21.41 17 17.83 17 30 15 30 15 17.83 11.41 21.41 10 20 16 14 22 20 20.59 21.41z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M26,22v6H6V22H26m0-2H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 4.59 17 8.17 17 0 15 0 15 8.17 11.41 4.59 10 6 16 12 22 6 20.59 4.59z"}),(0,a.jsx)("path",{d:"M20.59 10.59 16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"}),(0,a.jsx)("path",{d:"M8 24H20V26H8z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,24a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,15.12,16,21.8643,28.5259,15.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,24Z"}),(0,a.jsx)("path",{d:"M16,30a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,21.12,16,27.8643,28.5259,21.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,30Z"}),(0,a.jsx)("path",{d:"M16,18a.9967.9967,0,0,1-.4741-.12l-13-7a1,1,0,0,1,0-1.7607l13-7a.9982.9982,0,0,1,.9482,0l13,7a1,1,0,0,1,0,1.7607l-13,7A.9967.9967,0,0,1,16,18ZM5.1094,10,16,15.8643,26.8906,10,16,4.1358Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,24c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m29.4741,9.1196L16,1.8643v2.2715l10.8906,5.8643-10.8906,5.8643v2.2715l13.4741-7.2554c.324-.1743.5259-.5122.5259-.8804s-.2019-.7061-.5259-.8804Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4.4141,9.4141l3.5859-3.586v8.1719s2,0,2,0V5.8281s3.5859,3.5859,3.5859,3.5859l1.4141-1.414L9,2,3,8l1.4141,1.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("rect",{width:"6",height:"6",x:"4",y:"20",rx:"1"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M9.5,12h-5a.5.5,0,0,1-.4473-.7236l2.5-5.0224a.5206.5206,0,0,1,.8945,0l2.5,5.0225A.5.5,0,0,1,9.5,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H18v2h5v2H19a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V15A2,2,0,0,0,23,13Zm0,8H19V19h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2,2,0,0,0-2,2V23H9V18h4v5h2V11A2,2,0,0,0,13,9ZM9,16V11h4v5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H19V9H17V23h6a2,2,0,0,0,2-2V15A2,2,0,0,0,23,13Zm-4,8V15h4v6Z"}),(0,a.jsx)("path",{d:"M15,12a3,3,0,0,0-3-3H7V23h5a3,3,0,0,0,3-3V18a3,3,0,0,0-.78-2A3,3,0,0,0,15,14ZM9,11h3a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H9Zm4,9a1,1,0,0,1-1,1H9V17h3a1,1,0,0,1,1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,23H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h5v2H19v6h5Z"}),(0,a.jsx)("path",{d:"M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,9v4H19a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6V9Zm-4,6h4v6H19Z"}),(0,a.jsx)("path",{d:"M11,23H7V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,11,23ZM9,21h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,19V15a2.0023,2.0023,0,0,0-2-2H19a2.0023,2.0023,0,0,0-2,2v6a2.0077,2.0077,0,0,0,2,2h5V21H19V19Zm-6-4h4v2H19Z"}),(0,a.jsx)("path",{d:"M15 11 15 9 7 9 7 23 15 23 15 21 9 21 9 17 14 17 14 15 9 15 9 11 15 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 11 16 9 8 9 8 23 10 23 10 17 15 17 15 15 10 15 10 11 16 11z"}),(0,a.jsx)("path",{d:"M24,11V9H21a2,2,0,0,0-2,2v2H17v2h2v8h2V15h3V13H21V11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h4v2H18v2h5a2,2,0,0,0,2-2V13Zm4,8H19V15h4Z"}),(0,a.jsx)("path",{d:"M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h4V17H11V15h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13 9 13 15 9 15 9 9 7 9 7 23 9 23 9 17 13 17 13 23 15 23 15 9 13 9z"}),(0,a.jsx)("path",{d:"M23,13H19V9H17V23h2V15h4v8h2V15A2,2,0,0,0,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 11 13 11 13 21 10 21 10 23 18 23 18 21 15 21 15 11 18 11 18 9 10 9 10 11z"}),(0,a.jsx)("path",{d:"M20 13H22V23H20z"}),(0,a.jsx)("path",{d:"M20 9H22V11H20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 9H22V11H20z"}),(0,a.jsx)("path",{d:"M20,25H17v2h3a2,2,0,0,0,2-2V13H20Z"}),(0,a.jsx)("path",{d:"M14,23H10a2,2,0,0,1-2-2V19h2v2h4V9h2V21A2,2,0,0,1,14,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 12.89 9 9 15.55 9 9 7 9 7 23 9 23 9 18.71 9.93 17.22 12.89 23 15 23 11.11 15.43 15 9z"}),(0,a.jsx)("path",{d:"M22.78 23 25 23 21.22 17 25 13 22.76 13 19 17.17 19 9 17 9 17 23 19 23 19 19.25 19.96 18.21 22.78 23z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 21 11 9 9 9 9 23 17 23 17 21 11 21z"}),(0,a.jsx)("path",{d:"M23,23H21a2,2,0,0,1-2-2V9h2V21h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H16V23h2V15h2v8h2V15h2v8h2V15A2,2,0,0,0,24,13Z"}),(0,a.jsx)("path",{d:"M12 9 10.48 14 10 15.98 9.54 14 8 9 6 9 6 23 8 23 8 15 7.84 13 8.42 15 10 19.63 11.58 15 12.16 13 12 15 12 23 14 23 14 9 12 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,23H23V15H19v8H17V13h6a2,2,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M13 19 9.32 9 7 9 7 23 9 23 9 13 12.68 23 15 23 15 9 13 9 13 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v6A2,2,0,0,1,23,23Zm-4-8v6h4V15Z"}),(0,a.jsx)("path",{d:"M13,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h4a2,2,0,0,1,2,2V21A2,2,0,0,1,13,23ZM9,11V21h4V11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H17V27h2V23h4a2,2,0,0,0,2-2V15A2,2,0,0,0,23,13Zm-4,8V15h4v6Z"}),(0,a.jsx)("path",{d:"M9,23H7V9h6a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H9Zm0-7h4V11H9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h4v4h2V13Zm4,8H19V15h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2h1v2a2,2,0,0,0,2,2h2V25H12V23h1a2,2,0,0,0,2-2V11A2,2,0,0,0,13,9ZM9,21V11h4V21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,15V11a2,2,0,0,0-2-2H8V23h2V17h1.48l2.34,6H16l-2.33-6H14A2,2,0,0,0,16,15Zm-6-4h4v4H10Z"}),(0,a.jsx)("path",{d:"M24 13 18 13 18 23 20 23 20 15 24 15 24 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,23H17V21h5V19H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h5v2H19v2h3a2,2,0,0,1,2,2v2A2,2,0,0,1,22,23Z"}),(0,a.jsx)("path",{d:"M13,23H7V21h6V17H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,13,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 11 11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11z"}),(0,a.jsx)("path",{d:"M23,15V13H20V11H18v2H16v2h2v6a2,2,0,0,0,2,2h3V21H20V15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23H19a2,2,0,0,1-2-2V13h2v8h4V13h2v8A2,2,0,0,1,23,23Z"}),(0,a.jsx)("path",{d:"M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 13 23.25 13 21 22.03 18.79 13 17 13 19.5 23 22.5 23 25 13z"}),(0,a.jsx)("path",{d:"M13 9 11 22 9 9 7 9 9.52 23 12.48 23 15 9 13 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.3 13 23.39 21.61 22 13 20 13 18.61 21.61 17.7 13 16 13 17.36 23 19.64 23 21 14.63 22.36 23 24.64 23 26 13 24.3 13z"}),(0,a.jsx)("path",{d:"M12.21 9 11.87 17 11.61 21.54 11.2 18 10.52 12.54 8.5 12.54 7.82 18 7.41 21.54 7.16 17 6.81 9 5.01 9 6.01 23 8.28 23 9.04 18.07 9.5 14 9.51 13.97 9.52 14 9.98 18.07 10.74 23 13.01 23 14.01 9 12.21 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 13 9 11 15 9 9 7 9 9.75 16 7 23 9 23 11 17 13 23 15 23 12.24 16 15 9z"}),(0,a.jsx)("path",{d:"M25 13 23 13 21 16.9 19 13 17 13 19.91 18 17 23 19 23 21 19.2 23 23 25 23 22.1 18 25 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 13 9 11 16 9 9 7 9 10 18 10 23 12 23 12 18 12 18 15 9z"}),(0,a.jsx)("path",{d:"M23,13l-2,7.52L19.08,13H17l3.15,9.87L19.53,25H17v2h2.26a2,2,0,0,0,1.91-1.42L25,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 15 25 13 17 13 17 15 22.5 15 17 21 17 23 25 23 25 21 19.51 21 25 15z"}),(0,a.jsx)("path",{d:"M15 9 7 9 7 11 13 11 7 21 7 23 15 23 15 21 9 21 15 11 15 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 6H22V8H10z"}),(0,a.jsx)("path",{d:"M10 10H22V12H10z"}),(0,a.jsx)("path",{d:"M10 24H16V26H10z"}),(0,a.jsx)("path",{d:"M10 14H16V16H10z"}),(0,a.jsx)("path",{d:"M24,30H8a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,8,2H24a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,24,30ZM8,4V28H24V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 24H12V26H8z"}),(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a8,8,0,1,0,8,8A8.0092,8.0092,0,0,0,22,14Zm5.91,7H25.9563a12.03,12.03,0,0,0-1.2183-4.3325A6.01,6.01,0,0,1,27.91,21Zm-7.8545,0A10.0135,10.0135,0,0,1,22,16.0146,10.0121,10.0121,0,0,1,23.9448,21Zm3.89,2A10.01,10.01,0,0,1,22,27.9854,10.0121,10.0121,0,0,1,20.0552,23Zm-4.6831-6.332A12.0265,12.0265,0,0,0,18.0435,21H16.09A6.01,6.01,0,0,1,19.2617,16.668ZM16.09,23h1.9532a12.0265,12.0265,0,0,0,1.2182,4.332A6.01,6.01,0,0,1,16.09,23Zm8.6482,4.332A12.0242,12.0242,0,0,0,25.9565,23H27.91A6.0088,6.0088,0,0,1,24.7385,27.332Z"}),(0,a.jsx)("path",{d:"M6 14H12V16H6z"}),(0,a.jsx)("path",{d:"M6 6H18V8H6z"}),(0,a.jsx)("path",{d:"M6 10H18V12H6z"}),(0,a.jsx)("path",{d:"M6 24H12V26H6z"}),(0,a.jsx)("path",{d:"M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H20a2.0021,2.0021,0,0,1,2,2v8H20V4H4V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 24H14V26H8z"}),(0,a.jsx)("path",{d:"M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z"}),(0,a.jsx)("path",{d:"M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M20,13V11H17.8579a3.94,3.94,0,0,0-.4248-1.019L18.95,8.4644,17.5356,7.05,16.019,8.5669A3.9443,3.9443,0,0,0,15,8.1421V6H13V8.1421a3.9443,3.9443,0,0,0-1.019.4248L10.4644,7.05,9.05,8.4644,10.5669,9.981A3.94,3.94,0,0,0,10.1421,11H8v2h2.1421a3.94,3.94,0,0,0,.4248,1.019L9.05,15.5356,10.4644,16.95l1.5166-1.5166A3.9443,3.9443,0,0,0,13,15.8579V18h2V15.8579a3.9443,3.9443,0,0,0,1.019-.4248L17.5356,16.95,18.95,15.5356,17.4331,14.019A3.94,3.94,0,0,0,17.8579,13Zm-6,1a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,14,14Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 24H14V26H8z"}),(0,a.jsx)("path",{d:"M27,25H21a3,3,0,0,0-3,3v2h2V28a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V28A3,3,0,0,0,27,25Z"}),(0,a.jsx)("path",{d:"M24,24a4,4,0,1,0-4-4A4,4,0,0,0,24,24Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,24,18Z"}),(0,a.jsx)("path",{d:"M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M17,15H11a3,3,0,0,0-3,3v1h2V18a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v1h2V18A3,3,0,0,0,17,15Z"}),(0,a.jsx)("path",{d:"M14,14a4,4,0,1,0-4-4A4,4,0,0,0,14,14Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,14,8Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.2261,22.812a13.9664,13.9664,0,0,0,0-13.624L28.4141,9a2.0021,2.0021,0,0,0,0-2.8281l-2.5857-2.586a2.0028,2.0028,0,0,0-2.8284,0l-.1877.1875a13.9687,13.9687,0,0,0-13.6243,0L9,3.5859a2.0024,2.0024,0,0,0-2.8284,0L3.5859,6.1719A2.0021,2.0021,0,0,0,3.5859,9l.1878.1875a13.97,13.97,0,0,0,0,13.625L3.5859,23a2.0021,2.0021,0,0,0,0,2.8281l2.5857,2.586a2.0021,2.0021,0,0,0,2.8284,0l.188-.188a13.9687,13.9687,0,0,0,13.6243.0005L23,28.4141a2.0021,2.0021,0,0,0,2.8284,0l2.5857-2.586a2.0021,2.0021,0,0,0,0-2.8281ZM28,16a11.973,11.973,0,0,1-1.2546,5.3315l-3.8948-3.895a6.9808,6.9808,0,0,0,0-2.873l3.8948-3.895A11.973,11.973,0,0,1,28,16ZM27,7.5859l-4.9346,4.9346A7.0434,7.0434,0,0,0,19.48,9.9346L24.4143,5ZM16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21ZM21.3154,5.2705,17.4365,9.1494a6.9808,6.9808,0,0,0-2.873,0L10.6846,5.2705A12.2484,12.2484,0,0,1,21.3154,5.2705ZM7.5859,5l4.9346,4.9346a7.0449,7.0449,0,0,0-2.5859,2.5859L5,7.5859ZM4,16a11.9716,11.9716,0,0,1,1.2546-5.3311l3.8948,3.8946a6.9808,6.9808,0,0,0,0,2.873L5.2546,21.3311A11.9716,11.9716,0,0,1,4,16ZM7.5857,27,5,24.4141,9.9346,19.48a7.0434,7.0434,0,0,0,2.5859,2.5859Zm3.0989-.27,3.8789-3.8789a6.9808,6.9808,0,0,0,2.873,0L21.3154,26.73A12.2484,12.2484,0,0,1,10.6846,26.73Zm13.73.27L19.48,22.0654A7.0449,7.0449,0,0,0,22.0654,19.48L27,24.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.5 1H8.5V3.5H7.5z"}),(0,a.jsx)("path",{d:"M10.8 3.4H13.3V4.4H10.8z",transform:"rotate(-45 12.041 3.923)"}),(0,a.jsx)("path",{d:"M12.5 7.5H15V8.5H12.5z"}),(0,a.jsx)("path",{d:"M11.6 10.8H12.6V13.3H11.6z",transform:"rotate(-45 12.075 12.04)"}),(0,a.jsx)("path",{d:"M7.5 12.5H8.5V15H7.5z"}),(0,a.jsx)("path",{d:"M2.7 11.6H5.2V12.6H2.7z",transform:"rotate(-45 3.96 12.078)"}),(0,a.jsx)("path",{d:"M1 7.5H3.5V8.5H1z"}),(0,a.jsx)("path",{d:"M3.4 2.7H4.4V5.2H3.4z",transform:"rotate(-45 3.925 3.961)"}),(0,a.jsx)("path",{d:"M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6 M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 2H17V7H15z"}),(0,a.jsx)("path",{d:"M21.668 6.854H26.625999999999998V8.854H21.668z",transform:"rotate(-45 24.147 7.853)"}),(0,a.jsx)("path",{d:"M25 15H30V17H25z"}),(0,a.jsx)("path",{d:"M23.147 21.668H25.147V26.625999999999998H23.147z",transform:"rotate(-45 24.147 24.146)"}),(0,a.jsx)("path",{d:"M15 25H17V30H15z"}),(0,a.jsx)("path",{d:"M5.375 23.147H10.333V25.147H5.375z",transform:"rotate(-45 7.853 24.146)"}),(0,a.jsx)("path",{d:"M2 15H7V17H2z"}),(0,a.jsx)("path",{d:"M6.854 5.375H8.854V10.333H6.854z",transform:"rotate(-45 7.854 7.853)"}),(0,a.jsx)("path",{d:"M16,12a4,4,0,1,1-4,4,4.0045,4.0045,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 2H17V7H15z"}),(0,a.jsx)("path",{d:"M21.668 6.854H26.625999999999998V8.854H21.668z",transform:"rotate(-45 24.147 7.853)"}),(0,a.jsx)("path",{d:"M25 15H30V17H25z"}),(0,a.jsx)("path",{d:"M23.147 21.668H25.147V26.625999999999998H23.147z",transform:"rotate(-45 24.147 24.146)"}),(0,a.jsx)("path",{d:"M15 25H17V30H15z"}),(0,a.jsx)("path",{d:"M5.375 23.147H10.333V25.147H5.375z",transform:"rotate(-45 7.853 24.146)"}),(0,a.jsx)("path",{d:"M2 15H7V17H2z"}),(0,a.jsx)("path",{d:"M6.854 5.375H8.854V10.333H6.854z",transform:"rotate(-45 7.854 7.853)"}),(0,a.jsx)("path",{d:"M16,10a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.25,6.76a6,6,0,0,0-8.5,0l1.42,1.42a4,4,0,1,1,5.67,5.67l-8,8a4,4,0,1,1-5.67-5.66l1.41-1.42-1.41-1.42-1.42,1.42a6,6,0,0,0,0,8.5A6,6,0,0,0,17,25a6,6,0,0,0,4.27-1.76l8-8A6,6,0,0,0,29.25,6.76Z"}),(0,a.jsx)("path",{d:"M4.19,24.82a4,4,0,0,1,0-5.67l8-8a4,4,0,0,1,5.67,0A3.94,3.94,0,0,1,19,14a4,4,0,0,1-1.17,2.85L15.71,19l1.42,1.42,2.12-2.12a6,6,0,0,0-8.51-8.51l-8,8a6,6,0,0,0,0,8.51A6,6,0,0,0,7,28a6.07,6.07,0,0,0,4.28-1.76L9.86,24.82A4,4,0,0,1,4.19,24.82Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.5,24.6506L24.6506,4.5l2.8494,2.8494L7.3494,27.5l-2.8494-2.8494Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5.293,25.2929L25.293,5.2929l1.4141,1.4141L6.707,26.707l-1.4141-1.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.8945,23.542l-1.7238-3.4473a1.9994,1.9994,0,0,0-1.7886-1.1054h-.4683a14.887,14.887,0,0,0-1.8193-4.5977C23.0647,12.4429,22,10.4277,22,8A6,6,0,0,0,10,8a13.0041,13.0041,0,0,1-2.0486,6.2153,14.7022,14.7022,0,0,0-1.8708,4.7759H5.6184a2.0007,2.0007,0,0,0-1.7893,1.106L2.1055,23.5439a1,1,0,0,0,.0971,1.0508L6.2319,29.92a2.9995,2.9995,0,0,0,3.8482.6519l1.8735-1.1241A13.8223,13.8223,0,0,0,16,30a13.8034,13.8034,0,0,0,4.0488-.5527L21.92,30.57a2.9819,2.9819,0,0,0,1.5385.43,3.0385,3.0385,0,0,0,2.3389-1.1187l4-5.2885A1.001,1.001,0,0,0,29.8945,23.542Zm-7.5683-8.2158a14.8311,14.8311,0,0,1,1.5591,3.6631H21.738a16.6591,16.6591,0,0,0-.98-2.6455,12.7083,12.7083,0,0,1-.8789-2.4454,8.8046,8.8046,0,0,0,1.0034-1.4277l.0384-.0718A30.746,30.746,0,0,0,22.3262,15.3262ZM12,21a9.3959,9.3959,0,0,1,1.0728-3.8516c.2563-.5825.5158-1.1757.726-1.7993a4.0474,4.0474,0,0,0,4.4024,0c.21.6236.47,1.2168.726,1.7993A9.3959,9.3959,0,0,1,20,21c0,1.2881-.4146,3-4,3S12,22.2881,12,21Zm6.5105-8.5752A3.6265,3.6265,0,0,1,16,14a3.6273,3.6273,0,0,1-2.5107-1.5757,7.6356,7.6356,0,0,1,5.0212,0ZM12,8a4,4,0,0,1,8,0,10.9164,10.9164,0,0,0,.4673,3.1152A7.9811,7.9811,0,0,0,19,10.4849V8H17v2.0542a9.2522,9.2522,0,0,0-2,0V8H13v2.4849a7.9019,7.9019,0,0,0-1.4785.6372A10.7093,10.7093,0,0,0,12,8ZM9.7146,15.1592A29.8007,29.8007,0,0,0,11.0693,12.38l.0484.09a8.8046,8.8046,0,0,0,1.0034,1.4277,12.7083,12.7083,0,0,1-.8789,2.4454,16.6574,16.6574,0,0,0-.981,2.6474H8.1047A14.0567,14.0567,0,0,1,9.7146,15.1592Zm1.3708,12.4775L9.0508,28.8574a.9866.9866,0,0,1-1.2529-.1806L4.1724,23.8833l1.4458-2.8921h3.706L11.49,26.3853A1.0036,1.0036,0,0,1,11.0854,27.6367Zm2.316.1177a2.9571,2.9571,0,0,0-.0562-2.11A9.03,9.03,0,0,0,16,26a9.0237,9.0237,0,0,0,2.6562-.3564,2.9889,2.9889,0,0,0-.0546,2.11,13.8722,13.8722,0,0,1-5.2,0Zm10.83.8833a.996.996,0,0,1-1.2827.2178l-2.0342-1.2207h0a1.01,1.01,0,0,1-.396-1.273l2.157-5.3725h3.7058l1.4461,2.892Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.6121,20.5215A6.1582,6.1582,0,0,0,24,16.5254C24,13.4785,21.9812,11,19.5,11A4.2435,4.2435,0,0,0,16,13.06,4.2435,4.2435,0,0,0,12.5,11C10.0188,11,8,13.4785,8,16.5254a6.1593,6.1593,0,0,0,1.3879,3.9961c-.5688.3686-.9389.6416-.988.6787a1,1,0,0,0-.1807,1.4248C8.6592,23.1748,12.6169,28,16,28s7.3408-4.8252,7.7808-5.375A1,1,0,0,0,23.6,21.2C23.551,21.1631,23.1812,20.89,22.6121,20.5215ZM12.5,13c1.3552,0,2.5,1.6143,2.5,3.5254v1.5664a9.1005,9.1005,0,0,0-1.0244.2314A2.6411,2.6411,0,0,0,14,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.38,2.38,0,0,0,.4072,1.3623c-.0813.0415-.1687.0806-.248.1221A4.0291,4.0291,0,0,1,10,16.5254C10,14.6143,11.1448,13,12.5,13ZM16,26c-1.5691,0-3.9648-2.084-5.52-3.8057C11.9,21.2788,14.2656,20,16,20s4.1,1.2788,5.52,2.1943C19.9648,23.916,17.5691,26,16,26Zm4.8408-6.5156c-.0793-.0415-.1667-.0806-.248-.1221A2.38,2.38,0,0,0,21,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.6411,2.6411,0,0,0,.0244.3232A9.1005,9.1005,0,0,0,17,18.0918V16.5254C17,14.6143,18.1448,13,19.5,13S22,14.6143,22,16.5254A4.0291,4.0291,0,0,1,20.8408,19.4844Z"}),(0,a.jsx)("path",{d:"M30,30a3.8876,3.8876,0,0,1-4-4V14A10,10,0,0,0,6,14V26a3.8876,3.8876,0,0,1-4,4V28a1.8793,1.8793,0,0,0,2-2V14a12,12,0,0,1,24,0V26a1.8825,1.8825,0,0,0,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M26 2H28V30H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m20,25H6c-1.1046,0-2-.8954-2-2v-14c0-1.1046.8954-2,2-2h14c1.1046,0,2,.8954,2,2v14c0,1.1046-.8954,2-2,2Zm0-16H6v14h14v-14Z"}),e)});const n=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 6H28V8H10z"}),(0,a.jsx)("path",{d:"M10 24H28V26H10z"}),(0,a.jsx)("path",{d:"M10 15H28V17H10z"}),(0,a.jsx)("path",{d:"M4 15H6V17H4z"}),(0,a.jsx)("path",{d:"M4 6H6V8H4z"}),(0,a.jsx)("path",{d:"M4 24H6V26H4z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M10,14H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,10,14ZM4,6v6h6.0012L10,6Z"}),(0,a.jsx)("path",{d:"M10,28H4a2.0023,2.0023,0,0,1-2-2V20a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,10,28ZM4,20v6h6.0012L10,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"3.5",cy:"4.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"3.5",cy:"11.5",r:"1.5"}),(0,a.jsx)("path",{d:"M8 11H15V12H8z"}),(0,a.jsx)("path",{d:"M8 4H15V5H8z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"7",cy:"9",r:"3"}),(0,a.jsx)("circle",{cx:"7",cy:"23",r:"3"}),(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M14 19.4 12.6 18 6 24.6 3.4 22 2 23.4 6 27.4z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M14 5.4 12.6 4 6 10.6 3.4 8 2 9.4 6 13.4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 19.4 28.6 18 22 24.6 19.4 22 18 23.4 22 27.4z"}),(0,a.jsx)("path",{d:"M2 22H16V24H2z"}),(0,a.jsx)("path",{d:"M30 5.4 28.6 4 22 10.6 19.4 8 18 9.4 22 13.4z"}),(0,a.jsx)("path",{d:"M2 8H16V10H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,6V2H2V12h9V30H30V6ZM4,10V4H24V6H11v4ZM28,28H13V8H28Z"}),(0,a.jsx)("path",{d:"M15 11H17V13H15z"}),(0,a.jsx)("path",{d:"M19 11H26V13H19z"}),(0,a.jsx)("path",{d:"M15 17H17V19H15z"}),(0,a.jsx)("path",{d:"M19 17H26V19H19z"}),(0,a.jsx)("path",{d:"M15 23H17V25H15z"}),(0,a.jsx)("path",{d:"M19 23H26V25H19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M8 12 8 4 6 4 6 5 4 5 4 7 6 7 6 12 4 12 4 14 6 14 8 14 10 14 10 12 8 12z"}),(0,a.jsx)("path",{d:"M10,28H4V24a2,2,0,0,1,2-2H8V20H4V18H8a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H6v2h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,28h-6v-4c0-1.1,0.9-2,2-2h2v-2h-4v-2h4c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-2v2h4V28z"}),(0,a.jsx)("path",{d:"M2 22H16V24H2z"}),(0,a.jsx)("path",{d:"M26 12 26 4 24 4 24 5 22 5 22 7 24 7 24 12 22 12 22 14 24 14 26 14 28 14 28 12z"}),(0,a.jsx)("path",{d:"M2 8H16V10H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,4h-2v22c0,1.1025.897,2,2,2h5v-2h-5v-6h5v-2h-5v-6h5v-2h-5v-6ZM16,12h2v-2h-2v2ZM20,10v2h7v-2h-7ZM16,20h2v-2h-2v2ZM20,20h7v-2h-7v2ZM16,28h2v-2h-2v2ZM20,28h7v-2h-7v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V14H15v2H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M9,2V12H23V2Zm2,2h2v6H11Zm10,6H15V4h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M20,10V2H12v8ZM14,8V4h4V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M16,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 8H17V10H15z"}),(0,a.jsx)("path",{d:"M19 8H21V10H19z"}),(0,a.jsx)("path",{d:"M11 8H13V10H11z"}),(0,a.jsx)("path",{d:"M25,16H17V13H15v3H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M11 3H21V5H11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17V10H15v6H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M11 5H21V7H11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v4H7V18h8v4h2V18h8v4h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M20,10V2H12v8h8ZM14,8V4h4V8Z"}),(0,a.jsx)("path",{d:"M26,24a2.9948,2.9948,0,0,0-2.8157,2H18.8157a2.982,2.982,0,0,0-5.6314,0H8.8157a3,3,0,1,0,0,2h4.3686a2.982,2.982,0,0,0,5.6314,0h4.3686A2.9947,2.9947,0,1,0,26,24ZM6,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,28Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,28Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 15H22V17H10z"}),(0,a.jsx)("path",{d:"M8.7,6.2852A2.9665,2.9665,0,0,0,9,5,3,3,0,1,0,6,8a2.96,2.96,0,0,0,1.2852-.3008L10,10.4141V13h2V9.5859ZM6,6A1,1,0,1,1,7,5,1.0009,1.0009,0,0,1,6,6Z"}),(0,a.jsx)("path",{d:"M19,5a3,3,0,1,0-4,2.8154V13h2V7.8159A2.9957,2.9957,0,0,0,19,5ZM16,6a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,6Z"}),(0,a.jsx)("path",{d:"M26,2a3.0033,3.0033,0,0,0-3,3,2.9665,2.9665,0,0,0,.3,1.2852L20,9.5859V13h2V10.4141l2.7148-2.7149A2.96,2.96,0,0,0,26,8a3,3,0,0,0,0-6Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,6Z"}),(0,a.jsx)("path",{d:"M12,19H10v2.5859L7.2854,24.3008A2.9609,2.9609,0,0,0,6,24a3,3,0,1,0,3,3,2.9665,2.9665,0,0,0-.3-1.2852L12,22.4141ZM6,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,28Z"}),(0,a.jsx)("path",{d:"M17,24.1841V19H15v5.1841a3,3,0,1,0,2,0ZM16,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M26,24a2.9609,2.9609,0,0,0-1.2854.3008L22,21.5859V19H20v3.4141l3.3,3.3007A2.9665,2.9665,0,0,0,23,27a3,3,0,1,0,3-3Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,30H2V24H8ZM4,28H6V26H4Z"}),(0,a.jsx)("path",{d:"M19,30H13V24h6Zm-4-2h2V26H15Z"}),(0,a.jsx)("path",{d:"M30,30H24V24h6Zm-4-2h2V26H26Z"}),(0,a.jsx)("path",{d:"M16,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,10Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,16,4Z"}),(0,a.jsx)("path",{d:"M26,16H21a4.0045,4.0045,0,0,1-4-4H15a4.0045,4.0045,0,0,1-4,4H6a2.0023,2.0023,0,0,0-2,2v4H6V18h5A5.9694,5.9694,0,0,0,15,16.46V22h2V16.46A5.9694,5.9694,0,0,0,21,18h5v4h2V18A2.0023,2.0023,0,0,0,26,16Z"}),e)});const w=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,18a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,18Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,10Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,1,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),(0,a.jsx)("path",{d:"M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M15 16H17V18H15z"}),(0,a.jsx)("path",{d:"M15 12H17V14H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Zm-4-2H15v2h2Zm0-4H15v2h2Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm1,16H15V16h2Zm0-4H15V12h2Zm4,4H19V10H13v8H11V10a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,12.9835a1,1,0,0,0,.6289.9448l9.6015,3.8409,3.8407,9.6019A1,1,0,0,0,19,28h.0162a1.0009,1.0009,0,0,0,.9238-.6582l8-22.0007A1,1,0,0,0,26.658,4.0594l-22,8A1.0011,1.0011,0,0,0,4,12.9835Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,17Z"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"4",fill:"none"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"20.5",r:"1.5"}),(0,a.jsx)("path",{d:"M15 7H17V16H15z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Zm-1.125-6h2.25V7h-2.25Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2ZM14.875,7h2.25v9h-2.25ZM16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm4.2109,11.7021L16.002,18l-4.2129-4.2979a2.7992,2.7992,0,0,1,0-3.8964,2.6619,2.6619,0,0,1,3.8159,0l.397.4057.393-.4057a2.6619,2.6619,0,0,1,3.8159,0A2.7992,2.7992,0,0,1,20.2109,13.7021Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M17 18 17 11 13 11 13 13 15 13 15 18 12 18 12 20 20 20 20 18 17 18z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m15.5,6c-.8284,0-1.5.6716-1.5,1.5s.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30l-8.4355-9.9487c-.0479-.0571-.3481-.4516-.3481-.4516-1.4507-1.9268-2.2163-4.2065-2.2163-6.5998,0-6.0641,4.9346-11,11-11s11,4.9359,11,11c0,2.3933-.7656,4.673-2.2148,6.5973l-.0015.0024s-.3003.3944-.3447.4474l-8.439,9.9528Zm-7.1875-11.605c.001.0007.2334.3083.2866.3744l6.9009,8.1385,6.9102-8.1498c.0439-.0552.2783-.3649.2788-.3656,1.1851-1.5746,1.811-3.4376,1.811-5.3925,0-4.9615-4.0376-9-9-9S7,8.0385,7,13c0,1.9559.627,3.8199,1.8125,5.395h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-6.0654,0-11,4.936-11,11,0,2.3931.7656,4.6729,2.2163,6.5996,0,0,.3003.3945.3481.4517l8.4355,9.9487,8.439-9.9526c.0444-.0532.3447-.4478.3447-.4478l.0015-.0024c1.4492-1.9243,2.2148-4.2041,2.2148-6.5972,0-6.064-4.9346-11-11-11Zm-.5,4c.8284,0,1.5.6714,1.5,1.5s-.6716,1.5-1.5,1.5-1.5-.6714-1.5-1.5.6716-1.5,1.5-1.5Zm4.5,14h-8v-2h3v-5h-2v-2h4v7h3v2Z"}),(0,a.jsx)("path",{fill:"none",strokeWidth:"0",d:"m15.5,6c.8284,0,1.5.6714,1.5,1.5s-.6716,1.5-1.5,1.5-1.5-.6714-1.5-1.5.6716-1.5,1.5-1.5Zm4.5,14h-8v-2h3v-5h-2v-2h4v7h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M16,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,14Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,16,10Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Zm-1-8a3,3,0,1,0-3,3A3.0033,3.0033,0,0,0,19,11Zm-2,0a1,1,0,1,1-1-1A1.0011,1.0011,0,0,1,17,11Z"}),(0,a.jsx)("circle",{cx:"16",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,6a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,8Zm4,11H18V17H14v2H12V17a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30h2V28a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v2h2V28a3.0033,3.0033,0,0,0-3-3H21a3.0033,3.0033,0,0,0-3,3Z"}),(0,a.jsx)("path",{d:"M24,24a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,24,24Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,24,18Z"}),(0,a.jsx)("path",{d:"M25.3418,10.06l-22-8A1,1,0,0,0,2.06,3.3415l8,22A1.001,1.001,0,0,0,10.9839,26H11a1,1,0,0,0,.9287-.6289L15.77,15.7692l9.6016-3.8408a1,1,0,0,0-.0293-1.8687ZM14.6284,14.0709v0l-.3979.1591-.1591.3979,0,0-3.0269,7.5678L4.6719,4.6715l17.5244,6.3726Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 7 17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16 7 17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm3.6,16L16,15.7085,12.4,18l.6-4.0742-3-2.7529,4.2-.5064L16,7l1.9116,3.6665L22,11.1729l-3,2.7529Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,14H22V8A6,6,0,0,0,10,8v6H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16A2,2,0,0,0,24,14ZM12,8a4,4,0,0,1,8,0v6H12ZM24,28H8V16H24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30.4461,20.1005c-.1386-.0692-.2914-.1052-.4464-.1053h-10c-.5522,0-1.0001.4474-1.0002.9998,0,.1338.0268.2662.0789.3895l5.0268,10.0581c.1694.3388.5158.5527.8946.5527.3788,0,.7253-.2139.8947-.5527l5-10c.2468-.4944.046-1.0953-.4484-1.342h0ZM8,16h16v2h2v-2c0-1.1046-.8954-2-2-2h-2v-6c0-3.3137-2.6863-6-6-6s-6,2.6863-6,6v6h-2c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h11v-2h-11v-12ZM12,8c0-2.2092,1.7908-4,4-4s4,1.7908,4,4v6h-8v-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"9",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M27,22v-4c0-1.1046-.8954-2-2-2h-8v-4h9c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H6c-1.1046,0-2,.8954-2,2v6c0,1.1046,.8954,2,2,2H15v4H7c-1.1046,0-2,.8954-2,2v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1v-4H15v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1v-4h8v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1Zm-19,6H4v-4h4v4Zm10-4v4h-4v-4h4ZM6,10V4H26v6H6ZM28,28h-4v-4h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,30H14a2,2,0,0,1-2-2V25h2v3H26V4H14V7H12V4a2,2,0,0,1,2-2H26a2,2,0,0,1,2,2V28A2,2,0,0,1,26,30Z"}),(0,a.jsx)("path",{d:"M14.59 20.59 18.17 17 4 17 4 15 18.17 15 14.59 11.41 16 10 22 16 16 22 14.59 20.59z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.5,16h4.9L16,10.8L13.5,16z"}),(0,a.jsx)("path",{d:"M16,3L3,7.6l2.7,15.8L16,29l10.3-5.6L29,7.6L16,3z M21.1,21.6l-1.5-3.2h-7.1l-1.5,3.2H8.6L16,5.3l7.4,16.2H21.1z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.8,27.7L17.5,3.1C17.2,2.4,16.6,2,15.9,2c-0.7,0-1.3,0.4-1.6,1.1L3,30h3.9l4.5-11.1l13.3,10.7c0.5,0.4,0.9,0.6,1.4,0.6 c1,0,1.9-0.7,1.9-1.8C28,28.2,27.9,28,27.8,27.7z M15.9,7.5l6.7,16.4L12.5,16L15.9,7.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.2,6.9c2.7,2.1,5.7,6.3,6.8,8.5,1.1-2.2,4-6.4,6.8-8.5,2-1.5,5.2-2.6,5.2,1s-.4,6.2-.7,7c-.9,3.1-4,3.8-6.8,3.4,4.8.8,6.1,3.6,3.4,6.3-5.1,5.2-7.3-1.3-7.8-3,0-.3-.1-.5-.1-.3,0-.1,0,0-.1.3-.6,1.7-2.8,8.2-7.8,3-2.7-2.7-1.4-5.5,3.4-6.3-2.8.5-5.9-.3-6.8-3.4-.2-.9-.7-6.3-.7-7,0-3.7,3.2-2.5,5.2-1,0,0,0,0,0,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6.48,7.6v3.92H2V21H9.28V7.6Zm0,11.2H4.8v-5H6.48Z"}),(0,a.jsx)("path",{d:"M10.4 11.52H13.2V21.04H10.4z"}),(0,a.jsx)("path",{d:"M10.4 7.6H13.2V10.399999999999999H10.4z"}),(0,a.jsx)("path",{d:"M14.32,11.52V21H18.8v1.12H14.32V24.4H21.6V11.52ZM18.8,18.8H17.12v-5H18.8Z"}),(0,a.jsx)("path",{d:"M22.72,11.52V21H27.2v1.12H22.72V24.4H30V11.52ZM27.2,18.8H25.52v-5H27.2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.7,7.1C23.9,6.3,22,5.7,20,5.3c0,0-0.1,0-0.1,0c-0.2,0.4-0.5,1-0.7,1.5c-2.2-0.3-4.3-0.3-6.4,0c-0.2-0.5-0.5-1-0.7-1.5 c0,0-0.1,0-0.1,0c-2,0.3-3.9,0.9-5.7,1.8c0,0,0,0,0,0c-3.6,5.4-4.6,10.7-4.1,15.9c0,0,0,0.1,0,0.1c2.4,1.8,4.7,2.8,7,3.5 c0,0,0.1,0,0.1,0c0.5-0.7,1-1.5,1.4-2.3c0,0,0-0.1,0-0.1c-0.8-0.3-1.5-0.6-2.2-1c-0.1,0-0.1-0.1,0-0.1c0.1-0.1,0.3-0.2,0.4-0.3 c0,0,0.1,0,0.1,0c4.6,2.1,9.5,2.1,14.1,0c0,0,0.1,0,0.1,0c0.1,0.1,0.3,0.2,0.4,0.3c0.1,0,0,0.1,0,0.1c-0.7,0.4-1.4,0.8-2.2,1 c0,0-0.1,0.1,0,0.1c0.4,0.8,0.9,1.6,1.4,2.3c0,0,0.1,0,0.1,0c2.3-0.7,4.6-1.8,7-3.5c0,0,0,0,0-0.1C30.5,17,28.9,11.8,25.7,7.1 C25.7,7.1,25.7,7.1,25.7,7.1z M11.4,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C13.9,18.6,12.8,19.9,11.4,19.9z M20.7,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C23.2,18.6,22.1,19.9,20.7,19.9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.67,4H5.33A1.34,1.34,0,0,0,4,5.33V26.67A1.34,1.34,0,0,0,5.33,28H16.82V18.72H13.7V15.09h3.12V12.42c0-3.1,1.89-4.79,4.67-4.79.93,0,1.86,0,2.79.14V11H22.37c-1.51,0-1.8.72-1.8,1.77v2.31h3.6l-.47,3.63H20.57V28h6.1A1.34,1.34,0,0,0,28,26.67V5.33A1.34,1.34,0,0,0,26.67,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.6,11.6c1-0.6,1.7-1.5,2.1-2.6c0.4-1.1,0.4-2.2,0.1-3.3c-0.3-1.1-1-2-1.9-2.7c-0.9-0.7-2.1-1-3.2-1h-9.2 c-1.2,0-2.3,0.4-3.2,1C7.2,3.7,6.6,4.7,6.2,5.7C5.9,6.8,5.9,8,6.3,9c0.4,1.1,1.1,2,2.1,2.6c-0.7,0.5-1.4,1.1-1.8,1.9 C6.2,14.3,6,15.1,6,16c0,0.9,0.2,1.7,0.6,2.5c0.4,0.8,1,1.4,1.8,1.9c-1,0.6-1.7,1.5-2.1,2.6c-0.4,1.1-0.4,2.2-0.1,3.3 c0.3,1.1,1,2,2,2.7c0.9,0.7,2.1,1,3.2,1c1.4,0,2.8-0.6,3.9-1.5c1-1,1.6-2.3,1.6-3.7v-4.8c1,0.9,2.3,1.4,3.6,1.4h0.1 c1.2,0,2.3-0.4,3.2-1c0.9-0.7,1.6-1.6,1.9-2.7c0.3-1.1,0.3-2.2-0.1-3.3C25.3,13.1,24.5,12.2,23.6,11.6z M16.9,3.7h3.7 c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2s0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2 c-0.4,0.3-0.8,0.6-1.2,0.8c-0.5,0.2-1,0.2-1.4,0.2h-3.7V3.7z M11.4,3.7h3.7v7h-3.7c-0.9,0-1.8-0.4-2.4-1.1C8.3,9,8,8.1,8,7.2 s0.4-1.8,1-2.4C9.6,4.2,10.5,3.8,11.4,3.7L11.4,3.7z M7.8,16c0-0.9,0.4-1.8,1.1-2.5c0.7-0.7,1.6-1,2.6-1h3.7v7h-3.7 c-1,0-1.9-0.4-2.6-1C8.2,17.8,7.8,16.9,7.8,16L7.8,16z M15.1,24.7c0,1-0.4,1.9-1.1,2.5c-0.7,0.7-1.6,1-2.6,1c-0.5,0-1,0-1.4-0.2 c-0.5-0.2-0.9-0.4-1.2-0.7c-0.4-0.3-0.6-0.7-0.8-1.2c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.5,0.1-1,0.3-1.4c0.2-0.4,0.5-0.8,0.8-1.2 c0.4-0.3,0.8-0.6,1.2-0.8c0.5-0.2,1-0.2,1.4-0.2h3.7L15.1,24.7z M20.6,19.5h-0.1c-0.9,0-1.8-0.4-2.4-1.1c-0.6-0.7-1-1.5-1-2.4 c0-0.9,0.4-1.8,1-2.4c0.6-0.7,1.5-1,2.4-1.1h0.1c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2 c0.2,0.4,0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2c-0.4,0.3-0.8,0.6-1.2,0.8C21.6,19.5,21.1,19.5,20.6,19.5 L20.6,19.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"8",cy:"16",r:"6"}),(0,a.jsx)("circle",{cx:"24",cy:"16",r:"6"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.5242,14.8021L17.2022,2.5241c-.7013-.6988-1.8032-.6988-2.5045,0h0l-2.5045,2.4955,3.2057,3.1943c.8014-.2995,1.6029,0,2.2039.4991.6011.5989.8014,1.3975.5009,2.1961l3.1055,3.0945c.8014-.2995,1.6029,0,2.2039.4991.8014.7986.8014,2.1961,0,2.9947h0c-.8014.7986-2.2039.7986-3.0054,0-.6011-.5989-.8014-1.4973-.5009-2.2959l-2.9052-2.8948v7.5865c1.102.4991,1.5027,1.7968,1.0018,2.8948-.1002.1996-.2004.3993-.4007.5989-.8014.7986-2.2039.7986-3.0054,0h0c-.8014-.7986-.8014-2.1961,0-2.9947h0c.2004-.1996.4007-.3993.7013-.4991v-7.6863c-.3005-.0998-.5009-.2995-.7013-.4991-.6011-.5989-.8014-1.4973-.5009-2.2959l-3.2057-3.1943L2.4759,14.7023c-.7013.6988-.7013,1.7968,0,2.5954h0l12.2218,12.1783c.7013.6988,1.8032.6988,2.5045,0l12.2218-12.1783c.7013-.6988.7013-1.7968,0-2.5954"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M16,2a14,14,0,0,0-4.43,27.28c.7.13,1-.3,1-.67s0-1.21,0-2.38c-3.89.84-4.71-1.88-4.71-1.88A3.71,3.71,0,0,0,6.24,22.3c-1.27-.86.1-.85.1-.85A2.94,2.94,0,0,1,8.48,22.9a3,3,0,0,0,4.08,1.16,2.93,2.93,0,0,1,.88-1.87c-3.1-.36-6.37-1.56-6.37-6.92a5.4,5.4,0,0,1,1.44-3.76,5,5,0,0,1,.14-3.7s1.17-.38,3.85,1.43a13.3,13.3,0,0,1,7,0c2.67-1.81,3.84-1.43,3.84-1.43a5,5,0,0,1,.14,3.7,5.4,5.4,0,0,1,1.44,3.76c0,5.38-3.27,6.56-6.39,6.91a3.33,3.33,0,0,1,.95,2.59c0,1.87,0,3.38,0,3.84s.25.81,1,.67A14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28.5678,12.8926l-.0366-.0934-3.5388-9.2356c-.072-.181-.1995-.3346-.3642-.4386-.3375-.2095-.7699-.1863-1.083.0582-.1512.1228-.2608.2892-.3141.4765l-2.3894,7.3105h-9.6756l-2.3894-7.3105c-.0518-.1884-.1617-.3556-.3141-.4779-.3131-.2445-.7455-.2677-1.083-.0582-.1643.1045-.2917.2579-.3642.4386l-3.5456,9.2315-.0352.0934c-1.0465,2.7345-.1578,5.8315,2.1796,7.5948l.0122.0095.0325.023,5.3908,4.037,2.667,2.0185,1.6246,1.2265c.3905.2965.9308.2965,1.3213,0l1.6246-1.2265,2.667-2.0185,5.4233-4.0614.0135-.0108c2.3319-1.7635,3.219-4.8551,2.1769-7.5867Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10.8281,28H21.1719a3.43,3.43,0,0,0,3.43-3.43V10.3306h-3.43V24.57H7.3981A3.43,3.43,0,0,0,10.8281,28Z"}),(0,a.jsx)("path",{d:"M21.1719,4H10.8281a3.43,3.43,0,0,0-3.43,3.43v14.24h3.43V7.43H24.6019A3.43,3.43,0,0,0,21.1719,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22.406",cy:"9.594",r:"1.44"}),(0,a.jsx)("path",{d:"M16,9.8378A6.1622,6.1622,0,1,0,22.1622,16,6.1622,6.1622,0,0,0,16,9.8378ZM16,20a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z"}),(0,a.jsx)("path",{d:"M16,6.1622c3.2041,0,3.5837.0122,4.849.07a6.6418,6.6418,0,0,1,2.2283.4132,3.9748,3.9748,0,0,1,2.2774,2.2774,6.6418,6.6418,0,0,1,.4132,2.2283c.0577,1.2653.07,1.6449.07,4.849s-.0122,3.5837-.07,4.849a6.6418,6.6418,0,0,1-.4132,2.2283,3.9748,3.9748,0,0,1-2.2774,2.2774,6.6418,6.6418,0,0,1-2.2283.4132c-1.2652.0577-1.6446.07-4.849.07s-3.5838-.0122-4.849-.07a6.6418,6.6418,0,0,1-2.2283-.4132,3.9748,3.9748,0,0,1-2.2774-2.2774,6.6418,6.6418,0,0,1-.4132-2.2283c-.0577-1.2653-.07-1.6449-.07-4.849s.0122-3.5837.07-4.849a6.6418,6.6418,0,0,1,.4132-2.2283A3.9748,3.9748,0,0,1,8.9227,6.6453a6.6418,6.6418,0,0,1,2.2283-.4132c1.2653-.0577,1.6449-.07,4.849-.07M16,4c-3.259,0-3.6677.0138-4.9476.0722A8.8068,8.8068,0,0,0,8.14,4.63,6.1363,6.1363,0,0,0,4.63,8.14a8.8068,8.8068,0,0,0-.5578,2.9129C4.0138,12.3323,4,12.741,4,16s.0138,3.6677.0722,4.9476A8.8074,8.8074,0,0,0,4.63,23.8605a6.1363,6.1363,0,0,0,3.51,3.51,8.8068,8.8068,0,0,0,2.9129.5578C12.3323,27.9862,12.741,28,16,28s3.6677-.0138,4.9476-.0722a8.8074,8.8074,0,0,0,2.9129-.5578,6.1363,6.1363,0,0,0,3.51-3.51,8.8074,8.8074,0,0,0,.5578-2.9129C27.9862,19.6677,28,19.259,28,16s-.0138-3.6677-.0722-4.9476A8.8068,8.8068,0,0,0,27.37,8.14a6.1363,6.1363,0,0,0-3.51-3.5095,8.8074,8.8074,0,0,0-2.9129-.5578C19.6677,4.0138,19.259,4,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,4v24h24V4H4z M12.1,9c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4c0,0,0,0,0,0c-0.8,0-1.4-0.6-1.4-1.4 C10.8,9.6,11.4,9,12.1,9z M21.5,22.2c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1l0.7-2.4c0.1-0.2,0.1-0.5,0.1-0.7 c0-0.8-0.5-1.3-1.2-1.3c-1,0-1.6,0.7-1.9,2L15.9,22h-2.3l0.4-1.7c-0.7,1.1-1.6,1.8-2.8,1.8c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1 l1.1-4.3H8.7L9.2,13h3.9l-1.5,6.1c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.4,0.2,0.5,0.5,0.6c0.2,0,1.6,0,2.4-1.8l1-4.1h-1.6l0.5-1.8h3.5 l-0.5,2.1c0.6-1.2,1.9-2.2,3.1-2.2c1.3,0,2.4,0.9,2.4,2.7c0,0.5-0.1,1-0.2,1.5l-0.7,2.4c-0.1,0.2-0.1,0.4-0.1,0.6 c0,0.4,0.2,0.6,0.5,0.6c0.3,0,0.7-0.2,1.2-1.5l0.9,0.4C23.7,21.4,22.7,22.2,21.5,22.2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.0766,3.5878a1.69,1.69,0,1,1-1.76-1.5853,1.67,1.67,0,0,1,1.76,1.5853Z"}),(0,a.jsx)("path",{d:"M16.2191,23.1113c-4.4866,0-8.43-1.61-10.4688-3.9882a11.1618,11.1618,0,0,0,20.9377,0C24.6541,21.5011,20.7257,23.1113,16.2191,23.1113Z"}),(0,a.jsx)("path",{d:"M16.2191,7.6483c4.4867,0,8.43,1.61,10.4689,3.9881a11.1618,11.1618,0,0,0-20.9377,0C7.7892,9.2535,11.7126,7.6483,16.2191,7.6483Z"}),(0,a.jsx)("path",{d:"M10.0427,27.7388a2.1085,2.1085,0,1,1-.2031-.7976,2.1278,2.1278,0,0,1,.2031.7976Z"}),(0,a.jsx)("path",{d:"M6.26,7.1064A1.2263,1.2263,0,1,1,7.4517,5.83,1.2415,1.2415,0,0,1,6.26,7.1064Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14.1233,26.9328a1.1122,1.1122,0,1,1-1.1121-1.1122,1.112,1.112,0,0,1,1.1121,1.1122"}),(0,a.jsx)("path",{d:"M21.0257,26.9328a1.1122,1.1122,0,1,1-1.1122-1.1122,1.1121,1.1121,0,0,1,1.1122,1.1122"}),(0,a.jsx)("path",{d:"M9.999 5.797H10.973V6.771H9.999z",transform:"rotate(-86.462 10.486 6.284)"}),(0,a.jsx)("path",{d:"M26.4275,16.3825l-.0013.001a13.0868,13.0868,0,0,0-5.1431-4.1825c-.3754-.1667-.7543-.3142-1.1354-.4454.0128-.0314.0277-.0615.04-.0933a4.83,4.83,0,0,0-2.9861-6.319,5.9368,5.9368,0,0,0-1.9962-.3558c-.0366-.1253-.1165-.6743.58-2.1571L14.3742,2q-.17.236-.3368.4661c-.384.5309-.7549,1.0444-1.1029,1.55a2.1657,2.1657,0,0,0-1.4486-.6771L9.8543,3.2377H9.852l-.0025,0c-.0429-.0025-.0864-.0039-.1293-.0039A2.1877,2.1877,0,0,0,7.54,5.2825L7.4388,6.9169l0,.003,0,.0028A2.1882,2.1882,0,0,0,9.4854,9.23l1.1673.0723a5.1711,5.1711,0,0,0,.47,2.688,13.1954,13.1954,0,0,0-4.2637,2.9C3,18.7883,3,23.06,3,26.4916v2.0706l1.524-1.6163A12.3293,12.3293,0,0,0,5.8548,30H7.8367A10.7091,10.7091,0,0,1,5.878,25.51l2.2353-2.3708L6.963,26.745l2.03-1.4774c3.5858-2.61,7.8678-3.2093,12.7263-1.7826a4.6276,4.6276,0,0,0,5.2189-1.468c.0441-.0628.0828-.128.1228-.1926a9.6141,9.6141,0,0,1,.1638,1.7454,12.4214,12.4214,0,0,1-1.61,6.43h1.877A14.4022,14.4022,0,0,0,28.87,23.57,12.2666,12.2666,0,0,0,26.4275,16.3825ZM13.8455,5.9257a1.5872,1.5872,0,0,0,1.3983.7068,4.2111,4.2111,0,0,1,1.44.2719,3.17,3.17,0,0,1,1.0279,5.4638l-.4752-.5849-.0032-.004a1.7048,1.7048,0,0,0-3.0235.9865,3.2143,3.2143,0,0,1-1.899-3.5412,8.4815,8.4815,0,0,1,1.4374-3.466A1.642,1.642,0,0,0,13.8455,5.9257Zm3.49,9.2589-.6072.4962a.2675.2675,0,0,1-.376-.038l-.1264-.1549a.2791.2791,0,0,1,.0394-.3927l.6-.49-1.235-1.5158a.362.362,0,1,1,.5611-.4575l3.4546,4.2517a.3619.3619,0,0,1-.1988.5815.3566.3566,0,0,1-.0816.0094.3609.3609,0,0,1-.2806-.1332l-.3441-.4239-1.2215.9971a.2815.2815,0,0,1-.3965-.04l-.5532-.6775a.2786.2786,0,0,1,.04-.3919l1.2275-1.002ZM9.08,7.0184l.1014-1.6342A.5394.5394,0,0,1,9.72,4.8781l.0326.001,1.6335.1013a.5387.5387,0,0,1,.5046.5716l-.0073.1182a10.6739,10.6739,0,0,0-.9028,2.0046L9.5859,7.5886A.5407.5407,0,0,1,9.08,7.0184ZM25.5944,21.07a2.9883,2.9883,0,0,1-3.4112.8373c-4.5313-1.3305-8.6289-1.0534-12.2124.82l1.9069-5.978-7.203,7.6393a11.67,11.67,0,0,1,3.3532-8.3419,11.4953,11.4953,0,0,1,4.1073-2.6908,5.42,5.42,0,0,0,2.2411,1.2214,4.714,4.714,0,0,0,.5627.12,1.6258,1.6258,0,0,0,.2449,1.6416l.0847.1038a1.6247,1.6247,0,0,0,.2594,1.605l.5532.6777a1.6276,1.6276,0,0,0,2.29.2314l.3314-.2705a1.7079,1.7079,0,0,0,1.9867-2.6535l-1.9427-2.3911a4.88,4.88,0,0,0,.4863-.456,12.449,12.449,0,0,1,1.3829.5181,11.419,11.419,0,0,1,4.5085,3.6838C26.0987,18.7278,26.2745,20.1043,25.5944,21.07Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15.134 17.189 15.999 17.605 16.862 17.19 17.076 16.259 16.479 15.512 15.518 15.512 14.919 16.257 15.134 17.189z"}),(0,a.jsx)("path",{d:"M14.2166,13.88l.0024.0019a.5239.5239,0,0,0,.8321-.4013l0-.003.0127-.0063L15.242,10.33c-.2173.0268-.43.0635-.6333.1094a6.2,6.2,0,0,0-2.9727,1.6176l2.5752,1.8257Z"}),(0,a.jsx)("path",{d:"M12.8347,16.2622l.003-.001a.5241.5241,0,0,0,.206-.9008l-.0024-.002.0029-.0127-2.3515-2.1035a6.1775,6.1775,0,0,0-.8746,3.9l3.0142-.87Z"}),(0,a.jsx)("path",{d:"M13.8645,18.501a.5229.5229,0,0,0-.6059-.3989l-.0034,0-.0049-.0063-3.0908.5249a6.2052,6.2052,0,0,0,2.4863,3.1108l1.1972-2.8935-.0087-.0117.0009-.003A.5184.5184,0,0,0,13.8645,18.501Z"}),(0,a.jsx)("path",{d:"M16.4622,19.6431l-.0015-.0025a.53.53,0,0,0-.48-.2759.5269.5269,0,0,0-.4434.2769l-.0015.0029H15.533l-1.52,2.7481a6.2277,6.2277,0,0,0,3.38.1723c.207-.0468.41-.104.6044-.1684l-1.5234-2.7534Z"}),(0,a.jsx)("path",{d:"M18.7371,18.09l-.0034,0a.51.51,0,0,0-.1206-.0088.5263.5263,0,0,0-.4546.7319l.001.0024-.004.0054,1.21,2.9234A6.185,6.185,0,0,0,21.86,18.61l-3.1176-.5269Z"}),(0,a.jsx)("path",{d:"M21.2893,13.2437,18.951,15.3364l.0014.0064-.0024.0019a.5249.5249,0,0,0,.2055.9014l.0035.0005.0024.0132,3.0293.872a6.2915,6.2915,0,0,0-.9014-3.8881Z"}),(0,a.jsx)("path",{d:"M16.9383,13.4673l0,.0029a.5161.5161,0,0,0,.1143.3037.5236.5236,0,0,0,.7192.0967l.0025-.0019.0088.0039,2.5586-1.814a6.2307,6.2307,0,0,0-3.584-1.7285l.1777,3.1357Z"}),(0,a.jsx)("path",{d:"M30.3806,19.0376,27.9016,8.2705a1.9057,1.9057,0,0,0-1.038-1.291L16.83,2.1885a1.9332,1.9332,0,0,0-1.6656,0L5.1326,6.9819a1.9072,1.9072,0,0,0-1.0381,1.291L1.6194,19.04A1.89,1.89,0,0,0,1.88,20.499a1.8364,1.8364,0,0,0,.1088.1514l6.9439,8.6338a1.9244,1.9244,0,0,0,1.5.7158l11.1357-.0024a1.9251,1.9251,0,0,0,1.5-.7149L30.01,20.6479A1.8911,1.8911,0,0,0,30.3806,19.0376Zm-3.8115-.13a.6432.6432,0,0,1-.7812.4429l-.0039,0-.0049-.001-.0069-.0019-.0048-.002-.0572-.0117c-.0346-.0068-.07-.0142-.0981-.0215a2.4643,2.4643,0,0,1-.3589-.1328c-.0576-.0249-.1172-.0513-.1807-.0752l-.0175-.0063a5.5192,5.5192,0,0,0-1.0284-.3013.4119.4119,0,0,0-.2954.0981l-.0371.0254-.0019.0015-.002,0c-.0439-.0088-.1748-.0322-.2519-.0444a7.8166,7.8166,0,0,1-3.459,4.351c.0093.022.02.05.0307.0806a.9352.9352,0,0,0,.0669.1567l.002.002-.001.0029-.0166.042a.4148.4148,0,0,0-.03.3091,5.69,5.69,0,0,0,.5322.9517c.0376.0561.0757.1084.1128.1591a2.4,2.4,0,0,1,.2095.32c.0166.0312.0371.0752.0552.1137l.0229.0484a.6083.6083,0,1,1-1.0947.5176l-.0224-.0455c-.0186-.038-.0381-.0776-.0518-.1088a2.5059,2.5059,0,0,1-.1211-.3658c-.0166-.0595-.0337-.1215-.0537-.185l-.0059-.0166a5.5441,5.5441,0,0,0-.4052-.9922.4177.4177,0,0,0-.2627-.1709l-.0415-.0127-.0015,0-.0015-.0019c-.01-.0171-.0337-.0611-.0595-.1075-.0235-.042-.0484-.0874-.0664-.12a7.8868,7.8868,0,0,1-1.0269.3091,7.7588,7.7588,0,0,1-4.51-.3233l-.1352.2442-.002.001a.481.481,0,0,0-.2563.124,2.2827,2.2827,0,0,0-.336.7207c-.04.1172-.08.2383-.1279.3569-.0205.064-.0376.127-.0537.188a2.4747,2.4747,0,0,1-.12.3623c-.0127.03-.0313.0669-.0493.1025l-.0245.0494h0l-.0005.0024-.0019.002a.6773.6773,0,0,1-.5952.3945.5484.5484,0,0,1-.24-.0542.6426.6426,0,0,1-.2578-.86c.0088-.0171.0176-.0371.0274-.0576.0171-.0371.0346-.0757.05-.1045a2.53,2.53,0,0,1,.21-.3222c.0367-.05.0747-.1026.1118-.1578a5.8209,5.8209,0,0,0,.543-.976.5889.5889,0,0,0-.0532-.336l0-.0019,0-.002.1074-.2573a7.8224,7.8224,0,0,1-3.46-4.32l-.2593.0444-.0015-.001-.0264-.0151a.5961.5961,0,0,0-.3159-.106,5.5447,5.5447,0,0,0-1.0283.3013l-.0171.0064c-.062.0239-.1211.0488-.1782.0732a2.4949,2.4949,0,0,1-.3613.1333c-.0308.0083-.0708.0171-.1094.0249l-.0459.01-.0049.0019-.0068.002-.0049.001-.0039,0a.6078.6078,0,1,1-.2695-1.18l.0039-.001.0053-.0015.002,0,.0034-.0009.0469-.0113c.04-.01.081-.02.1133-.0258a2.4132,2.4132,0,0,1,.3808-.0357c.063-.0024.1284-.0054.1958-.0107l.0142-.0015A5.554,5.554,0,0,0,7.77,17.92a.72.72,0,0,0,.231-.227l.0244-.0318.001-.0014.0014,0,.2471-.0718a7.7765,7.7765,0,0,1,1.2246-5.4126l-.19-.17,0-.002-.0044-.0278a.5983.5983,0,0,0-.1153-.3159,5.6171,5.6171,0,0,0-.8916-.6265c-.0585-.0342-.1157-.0649-.1713-.0942a2.4731,2.4731,0,0,1-.3267-.1973c-.0264-.0195-.0586-.0459-.0894-.0713l-.0356-.0288L7.67,10.6387l-.0049-.0039A.7045.7045,0,0,1,7.4041,10.2a.5725.5725,0,0,1,.1128-.4575A.5835.5835,0,0,1,8,9.5288a.7226.7226,0,0,1,.4214.1592l.0361.0283c.0332.0259.07.0552.0972.0781a2.5254,2.5254,0,0,1,.2671.2759c.04.0469.0825.0952.1284.1441l.01.01a5.5221,5.5221,0,0,0,.7989.72.4159.4159,0,0,0,.31.0406l.043-.0069h.0019l.0015.001c.0357.0264.1484.1074.2134.1514a7.7273,7.7273,0,0,1,3.9233-2.24,7.9671,7.9671,0,0,1,1.0816-.1665l.0141-.2515.001-.0014a.6486.6486,0,0,0,.1939-.3076,5.5779,5.5779,0,0,0-.066-1.0791l-.0009-.0088c-.0093-.0664-.021-.13-.0328-.1914a2.5611,2.5611,0,0,1-.0493-.38c-.0009-.03-.0005-.0679,0-.1045l.0005-.05-.0005-.0073,0-.0093a.6088.6088,0,1,1,1.211,0l.0009.0605c.001.0386.0015.0791.0005.11a2.5348,2.5348,0,0,1-.0493.38c-.0117.0615-.0234.125-.0327.1914l-.0039.0317a5.4479,5.4479,0,0,0-.064,1.0567.4132.4132,0,0,0,.1616.2666l.0328.03.0019.0015v.0019c.0015.0435.0083.1836.0137.2637a7.79,7.79,0,0,1,2.7173.7559,7.8812,7.8812,0,0,1,2.2632,1.65l.226-.1612h.002l.0312.002a.5914.5914,0,0,0,.33-.041,5.4885,5.4885,0,0,0,.7871-.71l.0215-.022c.0454-.0478.0869-.0952.1274-.1416a2.57,2.57,0,0,1,.27-.2783c.0263-.0229.062-.05.0967-.0776l.0366-.0288a.6088.6088,0,1,1,.7544.9472l-.0435.0357c-.0307.0254-.063.0517-.0884.0708a2.4733,2.4733,0,0,1-.3266.1968c-.0562.0293-.1143.06-.1734.0947a5.6889,5.6889,0,0,0-.8921.6269.4152.4152,0,0,0-.1079.293l-.0034.044v.0019l-.0014.001c-.0162.0146-.0508.0459-.0914.082s-.0864.0772-.1186.1065a7.7983,7.7983,0,0,1,1.25,5.3994l.24.07.001.001.0171.0254a.6014.6014,0,0,0,.24.2334,5.595,5.595,0,0,0,1.063.1757l.0122.001c.0674.0059.1328.0083.1963.0108a2.4617,2.4617,0,0,1,.38.0356c.0312.0059.0713.0156.11.0254l.0644.0156A.643.643,0,0,1,26.5691,18.9077Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.2,4H5.8C4.8,4,4,4.8,4,5.7v20.5c0,0.9,0.8,1.7,1.8,1.7h20.4c1,0,1.8-0.8,1.8-1.7V5.7C28,4.8,27.2,4,26.2,4z M11.1,24.4 H7.6V13h3.5V24.4z M9.4,11.4c-1.1,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.1,0,2.1,0.9,2.1,2.1S10.5,11.4,9.4,11.4z M24.5,24.3 H21v-5.6c0-1.3,0-3.1-1.9-3.1c-1.9,0-2.1,1.5-2.1,2.9v5.7h-3.5V13h3.3v1.5h0.1c0.5-0.9,1.7-1.9,3.4-1.9c3.6,0,4.3,2.4,4.3,5.5V24.3z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.49,23.71h-.76c-2.26,0-4.52,0-6.78,0a3.12,3.12,0,0,1-2.41-1A14.91,14.91,0,0,1,10,18.88c-1.3-2.6-2.54-5.22-3.82-7.82-.39-.8-.82-1.56-1.28-2.32A7.84,7.84,0,0,0,2,5.6c1.24,0,2.41,0,3.57,0a45.63,45.63,0,0,1,7,.61,8.09,8.09,0,0,1,6.34,5.09,48.51,48.51,0,0,1,2.17,7.36A26,26,0,0,0,22.49,23.71Z"}),(0,a.jsx)("path",{d:"M28.1,26.38a2.93,2.93,0,0,1-2.74-2.64,42.08,42.08,0,0,1-.14-4.9,48,48,0,0,0-.61-7.58,3.75,3.75,0,0,0-.83-2h2.65c.54,0,.73.37.89.78A12.1,12.1,0,0,1,28,13.28c.29,2.72.31,5.45.33,8.18a10.94,10.94,0,0,0,0,1.15c.09.78.4,1.1,1.17,1.08.5,0,.5-.06.5-.06v2.69A8.62,8.62,0,0,1,28.1,26.38Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m29.0581,11.1929c0-6.0742-3.9797-7.8545-3.9797-7.8545-2.0066-.9214-5.4522-1.3091-9.0318-1.3384h-.0879c-3.5798.0293-7.023.417-9.0296,1.3384,0,0-3.98,1.7803-3.98,7.8545,0,1.3911-.0271,3.0537.0171,4.8174.1445,5.9404,1.0889,11.7945,6.5811,13.2481,2.5322.6704,4.7063.8105,6.4573.7144,3.1755-.1758,4.958-1.1333,4.958-1.1333l-.1047-2.3037s-2.269.7153-4.8176.6284c-2.5249-.0869-5.1902-.2725-5.5986-3.3726-.0378-.272-.0566-.563-.0566-.8691,0,0,2.4785.606,5.6196.75,1.9207.0879,3.7219-.1128,5.5515-.3311,3.5083-.4189,6.563-2.5806,6.9468-4.5557.605-3.1113.5552-7.5928.5552-7.5928Zm-4.6943,7.8257h-2.9138v-7.1382c0-1.5049-.6331-2.2686-1.8997-2.2686-1.4002,0-2.1018.9058-2.1018,2.6973v3.9077h-2.8967v-3.9077c0-1.7915-.7019-2.6973-2.1021-2.6973-1.2666,0-1.8997.7637-1.8997,2.2686v7.1382h-2.9138v-7.3545c0-1.5029.3828-2.6978,1.1516-3.5811.7927-.8838,1.8308-1.3369,3.1196-1.3369,1.491,0,2.6204.5732,3.367,1.7192l.7256,1.2168.7261-1.2168c.7463-1.146,1.8755-1.7192,3.3667-1.7192,1.2886,0,2.3267.4531,3.1196,1.3369.7686.8833,1.1514,2.0781,1.1514,3.5811v7.3545Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,16c0,3.7-0.6,6.7-1.4,6.7c-0.8,0-1.4-3-1.4-6.7s0.6-6.7,1.4-6.7C29.4,9.3,30,12.3,30,16"}),(0,a.jsx)("path",{d:"M26.5,16c0,4.1-1.8,7.5-3.9,7.5s-3.9-3.4-3.9-7.5s1.8-7.5,3.9-7.5S26.5,11.9,26.5,16"}),(0,a.jsx)("path",{d:"M17.8,16c0,4.4-3.5,8-7.9,8S2,20.4,2,16s3.5-8,7.9-8S17.8,11.6,17.8,16"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.2916,25.8339c-.1264.1266-.1264.3324,0,.459l2.0453,2.0453c.3803.3801.3803.9964,0,1.3766-.19.1901-.4392.2852-.6883.2852s-.4983-.0951-.6883-.2852l-2.0454-2.0453c-.8856-.8855-.8856-2.3266,0-3.2121l9.9609-9.9609c.5515-.5516.8554-1.285.8554-2.065s-.3039-1.5134-.8554-2.0651l-.0574-.0574c-1.1387-1.1386-2.9916-1.1387-4.1303,0l-8.2027,8.2027-.1147.1147c-.1901.1901-.4392.2852-.6884.2852s-.4983-.0951-.6884-.2852c-.3802-.3801-.3802-.9964,0-1.3766l.1147-.1147,8.2029-8.2029c.5515-.5516.8553-1.285.8553-2.0651s-.3037-1.5134-.8553-2.065c-.5517-.5516-1.285-.8554-2.0651-.8554s-1.5134.3037-2.065.8554L5.168,15.8159c-.3801.3801-.9966.3801-1.3767,0s-.3802-.9965,0-1.3767L14.8049,3.4256c.9194-.9193,2.1417-1.4256,3.4417-1.4256s2.5226.5063,3.4419,1.4256c.9193.9193,1.4255,2.1416,1.4255,3.4417,0,.2332-.0169.4637-.049.6906,1.4645-.2075,3.0061.2505,4.1301,1.3745l.0574.0574c.9194.9193,1.4258,2.1416,1.4258,3.4418s-.5064,2.5224-1.4258,3.4417l-9.9608,9.9608ZM24.4417,13.0625c.3803-.3802.3803-.9965,0-1.3767-.3799-.3801-.9966-.3801-1.3766,0l-8.1455,8.1454c-1.1384,1.1387-2.9912,1.1387-4.1301.0002-.5516-.5517-.8554-1.2851-.8554-2.0651s.3038-1.5134.8554-2.0651l8.1453-8.1455c.3803-.3802.3803-.9965,0-1.3767-.3799-.3801-.9966-.3801-1.3766,0l-8.1455,8.1455c-.9194.9194-1.4257,2.1418-1.4257,3.4418s.5063,2.5224,1.4257,3.4419c.9489.9488,2.1953,1.4231,3.4417,1.4231s2.4929-.4744,3.4418-1.4233l8.1454-8.1454Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,28V4h24v24H4z M8.5,8.5v15H16v-12h4.5v12h3v-15H8.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.4612,15.7968A12.1352,12.1352,0,0,0,25.2821,11.48L29,10.13a11.9879,11.9879,0,0,0-1.0281-1.7382l-1.7431.635a11.9884,11.9884,0,0,0-21.71,7.9129l1.7477-.6412a12.19,12.19,0,0,0,.3309,1.9846L2.8838,19.6384A12.1451,12.1451,0,0,0,4.7565,23.7l1.9663-.7163.0026.0039a11.8856,11.8856,0,0,0,4.67,3.8909A12.013,12.013,0,0,0,27.34,21.0743a11.8725,11.8725,0,0,0,1.08-5.992Zm-2.92,3.4967a7.8,7.8,0,0,1-10.3533,3.7744,7.7207,7.7207,0,0,1-2.2714-1.6128l-1.9846.7235a7.84,7.84,0,0,1-2.0742-3.9895l.0009-.0008,3.7242-1.3566a7.8175,7.8175,0,0,1-.1232-2.0653l-1.7517.6362A7.7729,7.7729,0,0,1,19.7645,8.94h.0067a7.7442,7.7442,0,0,1,2.2646,1.615L23.78,9.921a7.8014,7.8014,0,0,1,1.229,1.6558l-3.71,1.3595a7.8245,7.8245,0,0,1,.9766,4.3882l1.9685-.7151A7.6714,7.6714,0,0,1,23.5411,19.2935Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2a14,14,0,0,0-5.1,27,13.24,13.24,0,0,1,0-4l1.65-7A5.05,5.05,0,0,1,12.17,16c0-1.94,1.13-3.4,2.53-3.4a1.76,1.76,0,0,1,1.77,2c0,1.2-.76,3-1.16,4.66a2,2,0,0,0,2.08,2.53c2.48,0,4.4-2.63,4.4-6.41a5.53,5.53,0,0,0-5.85-5.7,6.06,6.06,0,0,0-6.32,6.08,5.42,5.42,0,0,0,1,3.19.44.44,0,0,1,.1.4c-.11.44-.35,1.4-.39,1.59s-.21.31-.47.19c-1.75-.82-2.84-3.37-2.84-5.43,0-4.41,3.21-8.47,9.25-8.47,4.85,0,8.63,3.46,8.63,8.09,0,4.82-3,8.7-7.27,8.7a3.76,3.76,0,0,1-3.21-1.6l-.87,3.33a15.55,15.55,0,0,1-1.74,3.67A14.17,14.17,0,0,0,16,30,14,14,0,0,0,16,2"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.4882,9.14v2.9663a4.2843,4.2843,0,0,1-4.173,4.2352H12.6431a3.4077,3.4077,0,0,0-3.34,3.3945v6.3607c0,1.81,1.5742,2.8751,3.34,3.3945a11.1762,11.1762,0,0,0,6.6721,0c1.6817-.4869,3.34-1.4668,3.34-3.3945V23.55H15.983v-.8486H25.9951c1.9414,0,2.6648-1.3542,3.34-3.3867a11.4642,11.4642,0,0,0,0-6.7889c-.48-1.9327-1.3961-3.3867-3.34-3.3867ZM19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z"}),(0,a.jsx)("path",{fill:"none",d:"M19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z"}),(0,a.jsx)("path",{d:"M15.8351,2a19.0717,19.0717,0,0,0-3.192.2725c-2.8268.4994-3.34,1.5447-3.34,3.4723V8.2909h6.68V9.14H6.7962a4.1708,4.1708,0,0,0-4.173,3.3867,12.4855,12.4855,0,0,0,0,6.7889c.4748,1.9776,1.6088,3.3867,3.55,3.3867H8.47V19.65a4.2449,4.2449,0,0,1,4.173-4.15h6.6721a3.3654,3.3654,0,0,0,3.34-3.3944V5.745a3.729,3.729,0,0,0-3.34-3.4723A20.8377,20.8377,0,0,0,15.8351,2ZM12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z"}),(0,a.jsx)("path",{fill:"none",d:"M12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,23.86H27a1.72,1.72,0,0,1-1.73,1.72c-1.15,0-1.82-.86-2.58-2a11,11,0,0,0,4.79-9.1c.09-7.19-5.85-11.89-12.17-11.89S3,7.37,3,14.37,9,26.16,15.17,26.16a10.71,10.71,0,0,0,3.07-.48c1.15,2.11,2.59,3.74,5.46,3.74A5,5,0,0,0,29,23.86Zm-8.14-3.45a6.31,6.31,0,0,0-5.56-3.16,6,6,0,0,0-3.74,1.15L12.2,20a2.56,2.56,0,0,1,.86-.1c1.82,0,3,1.53,4.12,3.64a7.58,7.58,0,0,1-1.91.19C10.86,23.76,9,20.6,9,14.47s1.91-9.3,6.23-9.3,6.32,3.16,6.32,9.3A20.68,20.68,0,0,1,20.83,20.41Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M30,14.7842c0-5.1782-6.2681-9.376-14-9.376S2,9.606,2,14.7842c0,4.6147,4.9814,8.4419,11.5361,9.2226v2.9917l4.7762-.0019,0-2.9741a19.3812,19.3812,0,0,0,3.3418-.6646L23.593,27l5.3975-.0024-3.253-5.4849C28.3625,19.8086,30,17.4263,30,14.7842Zm-22.4983.7c0-3.54,4.7644-6.41,10.6414-6.41s10.2138,1.9629,10.2138,6.41A5.4694,5.4694,0,0,1,24.9587,20.61a3.2252,3.2252,0,0,0-.2978-.1749,10.4735,10.4735,0,0,0-1.34-.5048s4.1743-.31,4.1743-4.4659-4.3684-4.2343-4.3684-4.2343H13.5361V21.2554C9.97,20.22,7.5017,18.0283,7.5017,15.4839Zm13.7422,1.8452-2.8928.001.0014-2.6812,2.8914.0015a1.2476,1.2476,0,0,1,1.34,1.3149A1.3232,1.3232,0,0,1,21.2439,17.3291Zm-2.9326,3.4946h1.2825a.8785.8785,0,0,1,.6406.291,3.2917,3.2917,0,0,1,.51.63,22.4033,22.4033,0,0,1-2.4326.1455Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,11.6c-0.3-0.1-0.6-0.2-0.9-0.3c0-0.2,0.1-0.4,0.1-0.6c0.7-3.3,0.2-6-1.3-6.9c-1.5-0.8-3.9,0-6.3,2.1 c-0.2,0.2-0.5,0.4-0.7,0.6c-0.2-0.1-0.3-0.3-0.5-0.4C13,3.9,10.5,3,9,3.9c-1.5,0.8-1.9,3.4-1.3,6.5c0.1,0.3,0.1,0.6,0.2,0.9 c-0.4,0.1-0.7,0.2-1,0.3c-3,1-4.9,2.7-4.9,4.3c0,1.7,2,3.5,5.1,4.5c0.2,0.1,0.5,0.2,0.8,0.2c-0.1,0.3-0.2,0.7-0.2,1 c-0.6,3.1-0.1,5.5,1.3,6.4c1.5,0.9,4,0,6.5-2.2c0.2-0.2,0.4-0.4,0.6-0.5c0.2,0.2,0.5,0.5,0.8,0.7c2.4,2.1,4.7,2.9,6.2,2 c1.5-0.9,2-3.5,1.4-6.7c0-0.2-0.1-0.5-0.2-0.8c0.2-0.1,0.4-0.1,0.5-0.2c3.2-1.1,5.3-2.8,5.3-4.5C30,14.3,28,12.7,25,11.6z M17.5,6.9 c2.1-1.8,4-2.5,4.9-2c0.9,0.5,1.3,2.7,0.7,5.6c0,0.2-0.1,0.4-0.1,0.6c-1.2-0.3-2.5-0.5-3.7-0.6c-0.7-1-1.5-2-2.4-3 C17.1,7.3,17.3,7.1,17.5,6.9L17.5,6.9z M10.3,17.4c0.3,0.5,0.5,1,0.8,1.5c0.3,0.5,0.6,1,0.9,1.4c-0.9-0.1-1.7-0.2-2.6-0.4 C9.6,19.1,9.9,18.3,10.3,17.4z M10.3,14.6c-0.4-0.8-0.6-1.6-0.9-2.4c0.8-0.2,1.7-0.3,2.5-0.4c-0.3,0.5-0.6,0.9-0.9,1.4 C10.8,13.6,10.5,14.1,10.3,14.6L10.3,14.6z M10.9,16c0.4-0.8,0.8-1.5,1.2-2.3c0.4-0.7,0.9-1.5,1.4-2.2c0.8-0.1,1.7-0.1,2.6-0.1 c0.9,0,1.7,0,2.6,0.1c0.5,0.7,0.9,1.4,1.3,2.2c0.4,0.7,0.8,1.5,1.2,2.3c-0.4,0.8-0.8,1.5-1.2,2.3c-0.4,0.7-0.9,1.5-1.3,2.2 c-0.8,0.1-1.7,0.1-2.6,0.1c-0.9,0-1.7,0-2.5-0.1c-0.5-0.7-0.9-1.4-1.4-2.2C11.7,17.5,11.3,16.8,10.9,16L10.9,16z M20.9,18.9 c0.3-0.5,0.6-1,0.8-1.5c0.4,0.8,0.7,1.6,0.9,2.5c-0.9,0.2-1.7,0.3-2.6,0.4C20.4,19.8,20.7,19.3,20.9,18.9z M21.7,14.6 c-0.3-0.5-0.5-1-0.8-1.5c-0.3-0.5-0.6-0.9-0.8-1.4c0.9,0.1,1.7,0.3,2.6,0.4C22.4,13,22.1,13.8,21.7,14.6z M16,8.3 c0.6,0.6,1.1,1.3,1.6,2c-1.1-0.1-2.2-0.1-3.3,0C14.9,9.6,15.5,8.9,16,8.3z M9.6,4.9c0.9-0.5,3,0.2,5.2,2.2c0.1,0.1,0.3,0.3,0.4,0.4 c-0.9,0.9-1.7,1.9-2.4,3c-1.3,0.1-2.5,0.3-3.7,0.6c-0.1-0.3-0.1-0.6-0.2-0.9C8.3,7.5,8.7,5.4,9.6,4.9z M8.2,19.6 c-0.2-0.1-0.5-0.1-0.7-0.2c-1.4-0.5-2.5-1.1-3.3-1.7c-0.7-0.6-1-1.2-1-1.7c0-1,1.5-2.3,4.1-3.2c0.3-0.1,0.6-0.2,1-0.3 C8.6,13.7,9,14.9,9.6,16C9,17.2,8.6,18.4,8.2,19.6z M14.7,25.1c-1.1,1-2.2,1.6-3.1,2c-0.9,0.3-1.5,0.3-2,0.1 c-0.9-0.5-1.3-2.5-0.8-5.1C8.9,21.7,9,21.4,9,21c1.2,0.3,2.5,0.5,3.8,0.5c0.7,1,1.5,2,2.4,3C15,24.7,14.9,24.9,14.7,25.1z M16,23.7 c-0.6-0.6-1.1-1.3-1.7-2c0.5,0,1.1,0,1.6,0c0.6,0,1.1,0,1.7,0C17.2,22.4,16.6,23.1,16,23.7z M23.3,25.4c-0.2,0.9-0.5,1.5-0.9,1.7 c-0.9,0.5-2.8-0.2-4.8-1.9c-0.2-0.2-0.5-0.4-0.7-0.6c0.8-0.9,1.6-1.9,2.3-3c1.3-0.1,2.5-0.3,3.8-0.6c0.1,0.2,0.1,0.5,0.2,0.7 C23.5,23.1,23.5,24.4,23.3,25.4z M24.3,19.4c-0.2,0-0.3,0.1-0.5,0.1c-0.4-1.2-0.9-2.4-1.4-3.6c0.5-1.1,1-2.3,1.4-3.5 c0.3,0.1,0.6,0.2,0.8,0.3c2.6,0.9,4.2,2.2,4.2,3.2C28.8,17.1,27.1,18.5,24.3,19.4z"}),(0,a.jsx)("path",{d:"M16,18.5c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.7,0.9-1.1c0.2-0.5,0.2-1,0.1-1.5c-0.1-0.5-0.3-0.9-0.7-1.3 c-0.3-0.4-0.8-0.6-1.3-0.7c-0.5-0.1-1,0-1.5,0.1c-0.5,0.2-0.9,0.5-1.1,0.9c-0.3,0.4-0.4,0.9-0.4,1.4c0,0.3,0.1,0.7,0.2,1 c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.5,0.4,0.8,0.5C15.3,18.4,15.7,18.5,16,18.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.2148,13.1793c.2327-.501-.4158-.9337-.9252-.8189-.3831.0863-.8737.7158-1.0126,1.0705.0842.5294,1.6957.2715,1.9378-.2516ZM12.8453,12.7614c.06.5895-.6263.5432-1.0515.5242.2484-.3642.5768-.7484,1.0515-.5242ZM16,21.8211c.9062-.0084,1.2-1.8673.4673-2.0052-.0768-.0137-.2548-.0231-.4673-.0253-.2126.0021-.3906.0116-.4674.0253-.7326.1379-.4389,1.9968.4674,2.0052ZM12.154,19.6017c1.2337-.0746,1.1996-2.8773-.0815-2.8101-1.4228.0746-1.2452,2.8903.0815,2.8101ZM26.8406,9.7584c-.52-.6715-1.2484-2.2767-2.0789-2.4473-1.2431-.2547-2.1147.3842-2.923,1.221-1.6652-1.2252-3.7147-2.3188-5.8387-2.3052-2.1241-.0137-4.1736,1.08-5.8387,2.3052-.8084-.8368-1.68-1.4757-2.9231-1.221-.8305.1705-1.5589,1.7758-2.0789,2.4473-.9073,1.1747-3.1978,3.1746-3.1588,4.7346.0484,1.9073,4.4714,7.2376,6.3776,7.5229.4211.0631.7842-.0421,1.1874-.0842.7214,1.4147,1.8981,2.4644,3.2742,3.1268,1.9797.953,4.3409.953,6.3207,0,1.376-.6624,2.5527-1.7121,3.2742-3.1268.4031.0421.7662.1473,1.1873.0842,1.9062-.2853,6.3292-5.6156,6.3777-7.5229.0389-1.56-2.2515-3.5599-3.1589-4.7346h-.0001ZM11.1285,9.2016c1.6884-1.1799,3.2167-1.8304,4.8715-1.7957,1.6547-.0347,3.183.6158,4.8714,1.7957.3747.261,1.4536,1.0516,1.6978,1.3547.5905.7305.5526,3.2515.5853,4.204h-2.1263c-.9337,0-1.8673.001-2.801,0-.3168,0-.6905.201-.9157.421-.6642.6505-.2316,1.52-.2632,2.3157-.3494-.1453-.6979-.2-1.0483-.2084-.3505.0084-.699.0632-1.0484.2084-.0316-.7958.401-1.6652-.2632-2.3157-.2252-.22-.5989-.421-.9157-.421-.9337.001-1.8673,0-2.801,0h-2.1263c.0327-.9526-.0052-3.4736.5853-4.204.2442-.3032,1.3231-1.0937,1.6978-1.3547ZM8.6855,20.9191c-1.3947-.0516-5.3871-4.9725-5.5187-6.3293-.1126-1.1673,2.2062-3.2589,2.9399-4.1998.3547-.4537,1.14-2.0147,1.641-2.0473.4168-.0263,1.3157.5378,1.5052.9052.3968.7684-.179.8516-.4274,1.4389-.5137,1.2126-.3632,2.7736-.4127,4.062-.782.1769-1.4136.5273-1.361,1.4294.0253.4453.9062,3.3241,1.141,3.7094.3074.5042.8189.7263,1.3894.7684l-.8968.2632h0ZM9.3718,20.2338c-.4716.0221-.7389-.319-.9337-.6968-.2158-.4189-1.0146-3.0568-1.0431-3.4894-.0347-.52.5684-.8505,1.0294-.8652,0,1.7273.481,3.4041.9473,5.0514h0ZM8.8455,15.1814h5.1051c.3379.0674.7642.5432.7852.9.0264.4274-.3221,2.5242-.4452,3.0189-.0569.2274-.1937.6463-.3453.8126-.5737.6305-3.1567.1979-4.0346.3084-.5968-1.6241-.8789-3.3209-1.0652-5.0399ZM16,24.7495c-2.481-.18-4.9062-1.5852-5.7861-4.0946.9337-.0937,2.0989.1274,2.9999,0,1.6063-.2263,1.34-1.7242,1.7368-2.8957.3389-.1053.6926-.1579,1.0494-.1705.3568.0126.7104.0652,1.0494.1705.3968,1.1715.1305,2.6694,1.7368,2.8957.901.1274,2.0662-.0937,2.9999,0-.8799,2.5094-3.3051,3.9146-5.7861,4.0946ZM18.0546,19.9128c-.1516-.1663-.2884-.5853-.3452-.8126-.1232-.4947-.4716-2.5915-.4453-3.0189.0211-.3568.4473-.8326.7852-.9h5.1051c-.1863,1.7189-.4684,3.4157-1.0652,5.0399-.8779-.1105-3.4609.3221-4.0346-.3084ZM23.5755,15.1825c.4611.0147,1.0641.3452,1.0294.8652-.0284.4326-.8273,3.0704-1.0431,3.4894-.1948.3779-.4621.7189-.9337.6968.4663-1.6473.9473-3.3241.9473-5.0514h.0001ZM23.3144,20.9191l-.8968-.2632c.5705-.0421,1.082-.2642,1.3894-.7684.2347-.3853,1.1157-3.2641,1.141-3.7094.0527-.9021-.5789-1.2526-1.361-1.4294-.0495-1.2883.101-2.8494-.4127-4.062-.2484-.5873-.8242-.6705-.4273-1.4389.1895-.3674,1.0884-.9315,1.5052-.9052.501.0326,1.2863,1.5936,1.641,2.0473.7336.941,3.0526,3.0325,2.9399,4.1998-.1315,1.3568-4.124,6.2777-5.5187,6.3293h0ZM20.723,13.4309c-.1389-.3547-.6295-.9842-1.0126-1.0705-.5095-.1147-1.1579.3179-.9252.8189.2421.5231,1.8536.781,1.9378.2516ZM20.2061,13.2857c-.4252.0189-1.1115.0652-1.0515-.5242.4747-.2242.8031.16,1.0515.5242ZM16,22.0274c-.6074,1.041-1.6042.2295-2.3115-.4252.3514,1.0421,1.1141,1.8438,1.985,2.1157.2104.0657.4424.0657.6529,0,.871-.2719,1.6337-1.0736,1.985-2.1157-.7073.6547-1.7042,1.4662-2.3115.4252h.0001ZM16.4631,23.3104c-.2929.1281-.6333.1281-.9262,0-.213-.0932-.4126-.2253-.5853-.3925.3663-.0379.7895-.0547,1.0484-.2895.2589.2347.682.2516,1.0483.2895-.1727.1671-.3723.2993-.5853.3925h.0001ZM19.9274,16.7916c-1.2811-.0672-1.3152,2.7355-.0814,2.8101,1.3266.0803,1.5042-2.7354.0814-2.8101Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.9104,20.5859h0l-5-11c-.1577-.3452-.5061-.5859-.9104-.5859s-.7529,.2407-.9104,.5859l-5,11c-.0576,.1265-.0896,.2661-.0896,.4141,0,.5522,.4478,1,1,1,.4043,0,.7527-.2407,.9104-.5859l1.9985-4.3965,6.4978,4.7876c.166,.1226,.3711,.1948,.5933,.1948,.5522,0,1-.4478,1-1,0-.1479-.032-.2881-.0896-.4141Zm-5.9104-8.1689l2.499,5.498-3.7441-2.7588,1.2451-2.7393Z"}),(0,a.jsx)("path",{d:"M16,30c-7.7197,0-14-6.2803-14-14S8.2803,2,16,2s14,6.2803,14,14-6.2803,14-14,14Zm0-26c-6.6167,0-12,5.3833-12,12s5.3833,12,12,12,12-5.3833,12-12-5.3833-12-12-12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.1,3.2l7.7,0.9c0.2,0,0.3,0.1,0.4,0.2l5.7,7.7c0.2,0.2,0.2,0.5,0,0.7l-13.6,16c-0.1,0.1-0.3,0.1-0.4,0c0,0,0,0,0,0 l-13.6-16C2,12.5,2,12.2,2.1,12l5.7-7.7c0.1-0.1,0.2-0.2,0.4-0.2l7.7-0.9C16,3.2,16,3.2,16.1,3.2z M17.7,4.8c0,0-0.1,0-0.2,0 c0,0-0.1,0.1,0,0.2l0,0l4.3,5.4c0,0.1,0.1,0.1,0.1,0.2c0,0.2-0.1,0.3-0.3,0.3l0,0H10.4c-0.1,0-0.1,0-0.2-0.1 c-0.1-0.1-0.1-0.3-0.1-0.4l0,0L14.5,5c0,0,0-0.1,0-0.2c0,0-0.1,0-0.2,0l0,0l-5.9,5.9c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.2-0.1-0.2-0.2v0 l0.2-4.3c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1l0,0l-1.1,4.9c0,0.2-0.2,0.3-0.3,0.3l0,0l-2.8,0.6c-0.1,0-0.1,0.1-0.1,0.1 c0,0.1,0,0.1,0.1,0.1l0,0h2.7c0.2,0,0.3,0.1,0.4,0.2l0,0l6.6,11.8c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.1-0.1,0.1-0.2l0,0L8.6,12.9 c0,0,0-0.1,0-0.1c0-0.2,0.1-0.3,0.3-0.4l0,0h14.2c0.1,0,0.1,0,0.2,0c0.2,0.1,0.2,0.3,0.2,0.4l0,0l-5.3,11.3c0,0.1,0,0.2,0.1,0.2 c0.1,0,0.2,0,0.2-0.1l0,0L25,12.6c0.1-0.1,0.2-0.2,0.4-0.2l0,0h2.7c0.1,0,0.1,0,0.1-0.1c0-0.1,0-0.1-0.1-0.1l0,0l-2.8-0.6 c-0.2,0-0.3-0.2-0.4-0.3l0,0L24,6.3c0-0.1-0.1-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1v0l0.2,4.3c0,0.1,0,0.1-0.1,0.2 c-0.1,0.1-0.2,0.1-0.3,0l0,0L17.7,4.8z"}),e)})},9564(e,t,r){r.d(t,{jG:()=>i});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,20H17.83l2.58-2.59L19,16l-5,5,5,5,1.41-1.41L17.83,22H26v8h2V22A2,2,0,0,0,26,20Z"}),(0,a.jsx)("path",{d:"M23.71,9.29l-7-7A1,1,0,0,0,16,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2h8V28H6V4h8v6a2,2,0,0,0,2,2h6v2h2V10A1,1,0,0,0,23.71,9.29ZM16,4.41,21.59,10H16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,4v8H4V4H6 M6,3H4C3.4,3,3,3.4,3,4v8c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V4C7,3.4,6.6,3,6,3z"}),(0,a.jsx)("path",{d:"M12,4v8h-2V4H12 M12,3h-2C9.4,3,9,3.4,9,4v8c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V4C13,3.4,12.6,3,12,3z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,8V24H8V8h4m0-2H8A2,2,0,0,0,6,8V24a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M24,8V24H20V8h4m0-2H20a2,2,0,0,0-2,2V24a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,6H10A2,2,0,0,0,8,8V24a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M22,6H20a2,2,0,0,0-2,2V24a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7 5 6 5 6 11 7 11 7 5z"}),(0,a.jsx)("path",{d:"M10 5 9 5 9 11 10 11 10 5z"}),(0,a.jsx)("path",{d:"M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 10 12 10 12 22 14 22 14 10 14 10z"}),(0,a.jsx)("path",{d:"M20 10 18 10 18 22 20 22 20 10 20 10z"}),(0,a.jsx)("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M7,11H6V5h1V11z M10,11H9V5h1V11z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,22H12V10h2Zm6,0H18V10h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 11 12 11 12 22 14 22 14 11 14 11z"}),(0,a.jsx)("path",{d:"M20 11 18 11 18 22 20 22 20 11 20 11z"}),(0,a.jsx)("path",{d:"M16,2A13.9158,13.9158,0,0,1,26,6.2343V2h2v8H20V8h4.9217A11.9818,11.9818,0,1,0,28,16h2A14,14,0,1,1,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 11 12 11 12 22 14 22 14 11 14 11z"}),(0,a.jsx)("path",{d:"M20 11 18 11 18 22 20 22 20 11 20 11z"}),(0,a.jsx)("path",{d:"M16,2A13.9158,13.9158,0,0,0,6,6.2343V2H4v8h8V8H7.0783A11.9818,11.9818,0,1,1,4,16H2A14,14,0,1,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 11 20 9 12 9 12 23 20 23 20 21 14 21 14 17 19 17 19 15 14 15 14 11 20 11z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 16 14.407 19 11 19.414 13.5 21.667 13 25 16 23.125 19 25 18.5 21.667 21 19.414 17.5 19 16 16z"}),(0,a.jsx)("path",{d:"M12.414 17.414 16 13.834 16 13.834 19.588 17.416 21 16 16 11 11 16 12.414 17.414z"}),(0,a.jsx)("path",{d:"M12.414 12.414 16 8.834 16 8.834 19.588 12.416 21 11 16 6 11 11 12.414 12.414z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V10.9985H14Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 9 12 9 12 11 18 11 12 21 12 23 20 23 20 21 14 21 20 11 20 9z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z"}),(0,a.jsx)("path",{d:"M8,9H2V23H4V18H8a2,2,0,0,0,2-2V11A2,2,0,0,0,8,9Zm0,7H4V11H8Z"}),(0,a.jsx)("path",{d:"M16,23H12V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,16,23Zm-2-2h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M22 16 24 16 24 10 29 10 29 8 24 8 24 4 30 4 30 2 22 2 22 16z"}),(0,a.jsx)("path",{d:"M16,2H12V16h4a4,4,0,0,0,4-4V6A4,4,0,0,0,16,2Zm2,10a2,2,0,0,1-2,2H14V4h2a2,2,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M8,2H2V16H4V11H8a2,2,0,0,0,2-2V4A2,2,0,0,0,8,2ZM8,9H4V4H8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.6772,14l-1.2456-3.1143A2.9861,2.9861,0,0,0,17.646,9H13.5542a3.0018,3.0018,0,0,0-1.5439.4277L7,12.4336V18H9V13.5664l3-1.8V23.6973L8.5383,28.8906,10.2024,30,14,24.3027V11h3.646a.9949.9949,0,0,1,.9282.6289L20.3228,16H26V14Z"}),(0,a.jsx)("path",{d:"M17.051 18.316 19 24.162 19 30 21 30 21 23.838 18.949 17.684 17.051 18.316z"}),(0,a.jsx)("path",{d:"M16.5,8A3.5,3.5,0,1,1,20,4.5,3.5042,3.5042,0,0,1,16.5,8Zm0-5A1.5,1.5,0,1,0,18,4.5,1.5017,1.5017,0,0,0,16.5,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,30H17a2.0021,2.0021,0,0,1-2-2V23h2v5h3V23h2V19a1.0011,1.0011,0,0,0-1-1H12.2793l-2-6H4a1.0011,1.0011,0,0,0-1,1v6H5v9H9V21h2v7a2.0021,2.0021,0,0,1-2,2H5a2.0021,2.0021,0,0,1-2-2V21a2.0021,2.0021,0,0,1-2-2V13a3.0033,3.0033,0,0,1,3-3h6.2793a1.998,1.998,0,0,1,1.8975,1.3674L13.7207,16H21a3.0033,3.0033,0,0,1,3,3v4a2.0021,2.0021,0,0,1-2,2v3A2.0021,2.0021,0,0,1,20,30Z"}),(0,a.jsx)("path",{d:"M28,30H26V19h3V13a1.0011,1.0011,0,0,0-1-1H24V10h4a3.0033,3.0033,0,0,1,3,3v6a2.0021,2.0021,0,0,1-2,2H28Z"}),(0,a.jsx)("path",{d:"M7,9a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,7,9ZM7,3A2,2,0,1,0,9,5,2.0021,2.0021,0,0,0,7,3Z"}),(0,a.jsx)("path",{d:"M25,9a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,25,9Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,25,3Z"}),(0,a.jsx)("path",{d:"M18.5,15A3.5,3.5,0,1,1,22,11.5,3.5041,3.5041,0,0,1,18.5,15Zm0-5A1.5,1.5,0,1,0,20,11.5,1.5017,1.5017,0,0,0,18.5,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,16H17.4683l-5-6H5a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21H10v7H6V19H4V13a1.0009,1.0009,0,0,1,1-1h6.5317l5,6H26a1.0009,1.0009,0,0,1,1,1v3H25v6H22V22H20v6a2.0023,2.0023,0,0,0,2,2h3a2.0023,2.0023,0,0,0,2-2V24a2.0023,2.0023,0,0,0,2-2V19A3.0033,3.0033,0,0,0,26,16Z"}),(0,a.jsx)("path",{d:"M23.5,15A3.5,3.5,0,1,1,27,11.5,3.5042,3.5042,0,0,1,23.5,15Zm0-5A1.5,1.5,0,1,0,25,11.5,1.5017,1.5017,0,0,0,23.5,10Z"}),(0,a.jsx)("path",{d:"M8,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,8,9ZM8,3a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,8,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.3069,6.1069,30,3.4141,28.5859,2,25.8931,4.6929,24.8,3.6a1.9328,1.9328,0,0,0-2.8,0L4,21.6V28h6.4l18-18a1.9329,1.9329,0,0,0,0-2.8ZM9.6,26H6V22.4L23.4,5,27,8.6Z"}),(0,a.jsx)("path",{d:"M8.136 7.5H18.863999999999997V9.5H8.136z",transform:"rotate(-45 13.5 8.5)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,5.293l-3-3a.9994.9994,0,0,0-1.414,0L19.5859,8H17.0947A11.0118,11.0118,0,0,0,6.7124,15.3662L2.0562,28.67a1,1,0,0,0,1.2744,1.2739l13.3037-4.6562A11.012,11.012,0,0,0,24,14.9053V12.4141L29.707,6.707A.9994.9994,0,0,0,29.707,5.293Zm-7.414,6A1,1,0,0,0,22,12v2.9053A9.01,9.01,0,0,1,15.9731,23.4l-9.1677,3.209L16,17.4141,14.5859,16,5.3914,25.1948,8.6,16.0269A9.01,9.01,0,0,1,17.0947,10H20a1,1,0,0,0,.707-.293L26,4.4141,27.5859,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"9",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"23",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"16",r:"2"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM8,18a2,2,0,1,1,2-2A2,2,0,0,1,8,18Zm8,0a2,2,0,1,1,2-2A2,2,0,0,1,16,18Zm8,0a2,2,0,1,1,2-2A2,2,0,0,1,24,18Z"}),(0,a.jsx)("path",{fill:"none",d:"M10,16a2,2,0,1,1-2-2A2,2,0,0,1,10,16Zm6-2a2,2,0,1,0,2,2A2,2,0,0,0,16,14Zm8,0a2,2,0,1,0,2,2A2,2,0,0,0,24,14Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,27.7593l-11.8274-8.6831,4.5261-14.0762h14.6025l4.5261,14.0762-11.8274,8.6831m0,2.2407c.2078,0,.4158-.0645.5918-.1938l13-9.5444c.2599-.1907.4066-.4904.4082-.8009.0005-.1036-.0151-.2085-.0481-.3109l-4.9697-15.4561c-.1331-.4136-.5176-.6938-.9519-.6938H7.9697c-.4343,0-.8188.2803-.9519.6938l-4.9697,15.4561c-.0329.1021-.0485.2067-.0481.31.0013.3108.1481.6109.4082.8018l13,9.5444c.176.1294.384.1938.5918.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c.2078,0,.4158-.0645.5918-.1938l13-9.5444c.2599-.1907.4066-.4904.4082-.8009.0005-.1036-.0151-.2085-.0481-.3109l-4.9697-15.4561c-.1331-.4136-.5176-.6938-.9519-.6938H7.9697c-.4343,0-.8188.2803-.9519.6938l-4.9697,15.4561c-.0329.1021-.0485.2067-.0481.31.0013.3108.1481.6109.4082.8018l13,9.5444c.176.1294.384.1938.5918.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m4.2407,16L12.9238,4.1726l14.0762,4.5261v14.6025l-14.0762,4.5261-8.6831-11.8274m-2.2407,0c0,.2078.0645.4158.1938.5918l9.5444,13c.1907.2599.4904.4066.8009.4082.1036.0005.2085-.0151.3109-.0481l15.4561-4.9697c.4136-.1331.6938-.5176.6938-.9519V7.9697c0-.4343-.2803-.8188-.6938-.9519L12.8501,2.0481c-.1021-.0329-.2067-.0485-.31-.0481-.3108.0013-.6109.1481-.8018.4082L2.1938,15.4082c-.1294.176-.1938.384-.1938.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m2,16c0,.2078.0645.4158.1938.5918l9.5444,13c.1907.2599.4904.4066.8009.4082.1036.0005.2085-.0151.3109-.0481l15.4561-4.9697c.4136-.1331.6938-.5176.6938-.9519V7.9697c0-.4343-.2803-.8188-.6938-.9519L12.8501,2.0481c-.1021-.0329-.2067-.0485-.31-.0481-.3108.0013-.6109.1481-.8018.4082L2.1938,15.4082c-.1294.176-.1938.384-.1938.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,4.2407l11.8274,8.6831-4.5261,14.0762h-14.6025l-4.5261-14.0762,11.8274-8.6831m0-2.2407c-.2078,0-.4158.0645-.5918.1938L2.4082,11.7383c-.2599.1907-.4066.4904-.4082.8009-.0005.1036.0151.2085.0481.3109l4.9697,15.4561c.1331.4136.5176.6938.9519.6938h16.0605c.4343,0,.8188-.2803.9519-.6938l4.9697-15.4561c.0329-.1021.0485-.2067.0481-.31-.0013-.3108-.1481-.6109-.4082-.8018L16.5918,2.1938c-.176-.1294-.384-.1938-.5918-.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27.7593,16l-8.6831,11.8274-14.0762-4.5261v-14.6025l14.0762-4.5261,8.6831,11.8274m2.2407,0c0-.2078-.0645-.4158-.1938-.5918L20.2617,2.4082c-.1907-.2599-.4904-.4066-.8009-.4082-.1036-.0005-.2085.0151-.3109.0481L3.6938,7.0178c-.4136.1331-.6938.5176-.6938.9519v16.0605c0,.4343.2803.8188.6938.9519l15.4561,4.9697c.1021.0329.2067.0485.31.0481.3108-.0013.6109-.1481.8018-.4082l9.5444-13c.1294-.176.1938-.384.1938-.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30,16c0-.2078-.0645-.4158-.1938-.5918L20.2617,2.4082c-.1907-.2599-.4904-.4066-.8009-.4082-.1036-.0005-.2085.0151-.3109.0481L3.6938,7.0178c-.4136.1331-.6938.5176-.6938.9519v16.0605c0,.4343.2803.8188.6938.9519l15.4561,4.9697c.1021.0329.2067.0485.31.0481.3108-.0013.6109-.1481.8018-.4082l9.5444-13c.1294-.176.1938-.384.1938-.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-.2078,0-.4158.0645-.5918.1938L2.4082,11.7383c-.2599.1907-.4066.4904-.4082.8009-.0005.1036.0151.2085.0481.3109l4.9697,15.4561c.1331.4136.5176.6938.9519.6938h16.0605c.4343,0,.8188-.2803.9519-.6938l4.9697-15.4561c.0329-.1021.0485-.2067.0481-.31-.0013-.3108-.1481-.6109-.4082-.8018L16.5918,2.1938c-.176-.1294-.384-.1938-.5918-.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,14a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,9,14ZM9,6a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,9,6Z"}),(0,a.jsx)("path",{d:"M.029 15H31.97V17H.029z",transform:"rotate(-45 16 16)"}),(0,a.jsx)("path",{d:"M23,28a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,23,28Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,23,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,14a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,9,14Z"}),(0,a.jsx)("path",{d:"M.029 15H31.97V17H.029z",transform:"rotate(-45 16 16)"}),(0,a.jsx)("path",{d:"M23,28a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,23,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,2h-10C6,2,2,6,2,11v10c0,5,4,9,9,9h10c5,0,9-4,9-9v-10c0-5-4-9-9-9ZM28,21c0,3.9-3.1,7-7,7h-10c-3.9,0-7-3.1-7-7v-10c0-3.9,3.1-7,7-7h10c3.9,0,7,3.1,7,7v10ZM24,11h-6c-1.1,0-2,.9-2,2v6c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-6c0-1.1-.9-2-2-2ZM18,19v-6h6v6h-6ZM11,11l5,5-5,5-1.5-1.4,2.7-2.6h-6.2v-2h6.2l-2.7-2.6,1.5-1.4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30H14a2,2,0,0,1-2-2V21a2,2,0,0,1-2-2V13a3,3,0,0,1,3-3h6a3,3,0,0,1,3,3v6a2,2,0,0,1-2,2v7A2,2,0,0,1,18,30ZM13,12a.94.94,0,0,0-1,1v6h2v9h4V19h2V13a.94.94,0,0,0-1-1Z"}),(0,a.jsx)("path",{d:"M16,9a4,4,0,1,1,4-4h0A4,4,0,0,1,16,9Zm0-6a2,2,0,1,0,2,2h0a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,31H6a2.0059,2.0059,0,0,1-2-2V22a2.0059,2.0059,0,0,1-2-2V14a2.9465,2.9465,0,0,1,3-3h6a2.9465,2.9465,0,0,1,3,3v6a2.0059,2.0059,0,0,1-2,2v7A2.0059,2.0059,0,0,1,10,31ZM5,13a.9448.9448,0,0,0-1,1v6H6v9h4V20h2V14a.9448.9448,0,0,0-1-1Z"}),(0,a.jsx)("path",{d:"M8,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,8,10ZM8,4a2,2,0,1,0,2,2A2.002,2.002,0,0,0,8,4Z"}),(0,a.jsx)("path",{d:"M28.7663,4.2558A4.2121,4.2121,0,0,0,23,4.0321a4.2121,4.2121,0,0,0-5.7663.2237,4.319,4.319,0,0,0,0,6.0447L22.998,16.14,23,16.1376l.002.0019,5.7643-5.839A4.319,4.319,0,0,0,28.7663,4.2558ZM27.342,8.8948l-4.34,4.3973L23,13.29l-.002.002-4.34-4.3973a2.3085,2.3085,0,0,1,0-3.2338,2.2639,2.2639,0,0,1,3.1561,0l1.181,1.2074L23,6.8634l.0049.005,1.181-1.2074a2.2639,2.2639,0,0,1,3.1561,0A2.3085,2.3085,0,0,1,27.342,8.8948Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"7.5",cy:"9.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"13",cy:"13",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"21",r:"1"}),(0,a.jsx)("path",{d:"M25,14a8.9844,8.9844,0,0,0-7,3.3555V13a10.9054,10.9054,0,0,0-1.0093-4.5845l-.3569-.7768L15.811,7.87A2.9549,2.9549,0,0,1,15,8a3.0033,3.0033,0,0,1-3-3,2.9574,2.9574,0,0,1,.1294-.8105l.2324-.8233-.7773-.3569A10.9115,10.9115,0,0,0,7,2H2V9a10.8954,10.8954,0,0,0,2.2339,6.627l.3887.4277.54-.0381a5.5286,5.5286,0,0,1,5.3628,3.2559l.2207.497.5376.0845A11.0219,11.0219,0,0,0,13,20h3V30h2V26h3a9.01,9.01,0,0,0,9-9V14ZM12.1016,17.9468A7.51,7.51,0,0,0,5.5283,14,8.8945,8.8945,0,0,1,4,9V4H7a8.8624,8.8624,0,0,1,3.0259.53A4.2457,4.2457,0,0,0,10,5a4.9658,4.9658,0,0,0,5.47,4.9736A8.8793,8.8793,0,0,1,16,13v5H13A8.1153,8.1153,0,0,1,12.1016,17.9468ZM28,17a7.0078,7.0078,0,0,1-7,7H18V23a7.01,7.01,0,0,1,5.0212-6.7109A1.4971,1.4971,0,1,0,26,16.5a1.485,1.485,0,0,0-.0918-.5H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19 21H21V24H19z"}),(0,a.jsx)("path",{d:"M19 0H21V3H19z"}),(0,a.jsx)("path",{d:"M8 11H11V13H8z"}),(0,a.jsx)("path",{d:"M29 11H32V13H29z"}),(0,a.jsx)("path",{d:"M11.59 3.07H13.57V6.07H11.59z",transform:"rotate(-45 12.586 4.577)"}),(0,a.jsx)("path",{d:"M26.44 17.92H28.42V20.92H26.44z",transform:"rotate(-45 27.43 19.408)"}),(0,a.jsx)("path",{d:"M11.09 18.42H14.09V20.400000000000002H11.09z",transform:"rotate(-45 12.592 19.414)"}),(0,a.jsx)("path",{d:"M25.93 3.58H28.93V5.5600000000000005H25.93z",transform:"rotate(-45 27.423 4.57)"}),(0,a.jsx)("path",{d:"M20,5a7,7,0,1,0,7,7A7,7,0,0,0,20,5Zm0,12A5,5,0,0,1,20,7Z"}),(0,a.jsx)("path",{d:"M5,18H0V32H5a3,3,0,0,0,3-3V27a3,3,0,0,0-.78-2A3,3,0,0,0,8,23V21A3,3,0,0,0,5,18ZM2,20H5a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H2Zm4,9a1,1,0,0,1-1,1H2V26H5a1,1,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M2 2 9 2 9 0 0 0 0 9 2 9 2 2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 29H13V32H11z"}),(0,a.jsx)("path",{d:"M11 8H13V11H11z"}),(0,a.jsx)("path",{d:"M0 19H3V21H0z"}),(0,a.jsx)("path",{d:"M21 19H24V21H21z"}),(0,a.jsx)("path",{d:"M3.59 11.09H5.57V14.09H3.59z",transform:"rotate(-45 4.585 12.59)"}),(0,a.jsx)("path",{d:"M18.44 25.93H20.42V28.93H18.44z",transform:"rotate(-45 19.429 27.422)"}),(0,a.jsx)("path",{d:"M3.09 26.44H6.09V28.42H3.09z",transform:"rotate(-45 4.591 27.428)"}),(0,a.jsx)("path",{d:"M17.93 11.59H20.93V13.57H17.93z",transform:"rotate(-45 19.423 12.585)"}),(0,a.jsx)("path",{d:"M12,13a7,7,0,1,0,7,7A7,7,0,0,0,12,13Zm0,12a5,5,0,0,1,0-10Z"}),(0,a.jsx)("path",{d:"M2 2 9 2 9 0 0 0 0 9 2 9 2 2z"}),(0,a.jsx)("path",{d:"M30,0H26a2,2,0,0,0-2,2V12a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V2A2,2,0,0,0,30,0ZM26,12V2h4V12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.76,3h5.51a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.37,9.37,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5A1,1,0,0,0,5,6v.08C5.46,12,8.41,26,25.94,27A1,1,0,0,0,27,26.06V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 2H30V6H26z"}),(0,a.jsx)("path",{d:"M26 8H30V12H26z"}),(0,a.jsx)("path",{d:"M20 2H24V6H20z"}),(0,a.jsx)("path",{d:"M20 8H24V12H20z"}),(0,a.jsx)("path",{d:"M25,30h-.17C5.18,28.87,2.39,12.29,2,7.23A3,3,0,0,1,4.7611,4.0088Q4.88,4,5,4h5.27a2,2,0,0,1,1.86,1.26L13.65,9a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,23,18.35l3.77,1.51A2,2,0,0,1,28,21.72V27A3,3,0,0,1,25,30ZM5,6a1,1,0,0,0-1.0032.9968c0,.0278.001.0555.0032.0832C4.46,13,7.41,27,24.94,28a1,1,0,0,0,1.0581-.9382Q26,27.0309,26,27V21.72l-3.77-1.51-2.87,2.85L18.88,23C10.18,21.91,9,13.21,9,13.12l-.06-.48,2.84-2.87L10.28,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),(0,a.jsx)("path",{d:"M24.41 9 28 5.41 26.59 4 23 7.59 19.41 4 18 5.41 21.59 9 18 12.59 19.41 14 23 10.41 26.59 14 28 12.59 24.41 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M24.41 9 28 5.41 26.59 4 23 7.59 19.41 4 18 5.41 21.59 9 18 12.59 19.41 14 23 10.41 26.59 14 28 12.59 24.41 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.33,21.48l2.24-2.24a2.19,2.19,0,0,1,2.34-.48l2.73,1.09a2.18,2.18,0,0,1,1.36,2v5A2.17,2.17,0,0,1,26.72,29C7.59,27.81,3.73,11.61,3,5.41A2.17,2.17,0,0,1,5.17,3H10a2.16,2.16,0,0,1,2,1.36l1.09,2.73a2.16,2.16,0,0,1-.47,2.34l-2.24,2.24S11.67,20.4,20.33,21.48Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),(0,a.jsx)("path",{d:"M27 13 27 11 22.414 11 29 4.414 27.586 3 21 9.586 21 5 19 5 19 13 27 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M27 13 27 11 22.414 11 29 4.414 27.586 3 21 9.586 21 5 19 5 19 13 27 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 14H18V16H16z"}),(0,a.jsx)("path",{d:"M20 14H22V16H20z"}),(0,a.jsx)("path",{d:"M24 14H26V16H24z"}),(0,a.jsx)("path",{d:"M16 18H18V20H16z"}),(0,a.jsx)("path",{d:"M20 18H22V20H20z"}),(0,a.jsx)("path",{d:"M24 18H26V20H24z"}),(0,a.jsx)("path",{d:"M16 22H18V24H16z"}),(0,a.jsx)("path",{d:"M20 22H22V24H20z"}),(0,a.jsx)("path",{d:"M24 22H26V24H24z"}),(0,a.jsx)("path",{d:"M16 10H26V12H16z"}),(0,a.jsx)("path",{d:"M28,6H14V5a2.0025,2.0025,0,0,0-2-2H8A2.0025,2.0025,0,0,0,6,5V6H4A2.0025,2.0025,0,0,0,2,8V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V8A2.0025,2.0025,0,0,0,28,6ZM8,5h4V22H8ZM28,26H4V8H6V22a2.0025,2.0025,0,0,0,2,2h4a2.0025,2.0025,0,0,0,2-2V8H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.19,18.56A25.66,25.66,0,0,1,5,6.08V6A1,1,0,0,1,6,5h5.28l1.5,3.77L9.94,11.64l.06.48a13,13,0,0,0,1.46,4.17l1.46-1.46a9.34,9.34,0,0,1-.84-2.52l2.13-2.15A2,2,0,0,0,14.65,8L13.13,4.26A2,2,0,0,0,11.27,3H5.76A3,3,0,0,0,3,6.23,28,28,0,0,0,7.79,20Z"}),(0,a.jsx)("path",{d:"M27.77,18.86,24,17.35a2,2,0,0,0-2.17.41l-2.17,2.15A9.17,9.17,0,0,1,15.45,18L30,3.41,28.59,2,2,28.59,3.41,30l7-7c3.38,3.18,8.28,5.62,15.39,6H26a3,3,0,0,0,3-3V20.72A2,2,0,0,0,27.77,18.86ZM27,26v.06a1,1,0,0,1-1.06.94c-6.51-.37-11-2.54-14.11-5.42L14,19.44A10.77,10.77,0,0,0,19.88,22l.48.06,2.87-2.85L27,20.72Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.74,19.56l-2.52-1a2,2,0,0,0-2.15.44L20,21.06a9.93,9.93,0,0,1-5.35-2.29L30,3.41,28.59,2,2,28.59,3.41,30l7.93-7.92c3.24,3.12,7.89,5.5,14.55,5.92A2,2,0,0,0,28,26V21.41A2,2,0,0,0,26.74,19.56Z"}),(0,a.jsx)("path",{d:"M8.15,18.19l3.52-3.52A11.68,11.68,0,0,1,10.85,12l2.07-2.07a2,2,0,0,0,.44-2.15l-1-2.52A2,2,0,0,0,10.5,4H6A2,2,0,0,0,4,6.22,29,29,0,0,0,8.15,18.19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-0.2C6.2,27.9,3.4,11.3,3,6.2C2.9,4.6,4.1,3.1,5.8,3C5.8,3,5.9,3,6,3h5.3c0.8,0,1.6,0.5,1.9,1.3L14.6,8 c0.3,0.7,0.1,1.6-0.4,2.2l-2.1,2.1c0.7,3.9,3.7,6.9,7.6,7.6l2.2-2.1c0.6-0.6,1.4-0.7,2.2-0.4l3.8,1.5c0.7,0.3,1.2,1,1.2,1.9V26 C29,27.7,27.7,29,26,29z M6,5C5.4,5,5,5.4,5,6c0,0,0,0.1,0,0.1C5.5,12,8.4,26,25.9,27c0.6,0,1-0.4,1.1-0.9c0,0,0,0,0-0.1v-5.3 l-3.8-1.5l-2.9,2.9L19.9,22c-8.7-1.1-9.9-9.8-9.9-9.9l-0.1-0.5l2.8-2.9L11.3,5H6z"}),(0,a.jsx)("path",{d:"M20 4 20 6 24.6 6 18 12.6 19.4 14 26 7.4 26 12 28 12 28 4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M20 4 20 6 24.586 6 18 12.586 19.414 14 26 7.414 26 12 28 12 28 4 20 4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z"}),(0,a.jsx)("path",{d:"M25,30h-.17C5.18,28.87,2.39,12.29,2,7.23A3,3,0,0,1,4.7611,4.0088Q4.88,4,5,4h5.27a2,2,0,0,1,1.86,1.26L13.65,9a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,23,18.35l3.77,1.51A2,2,0,0,1,28,21.72V27A3,3,0,0,1,25,30ZM5,6a1,1,0,0,0-1.0032.9968c0,.0278.001.0555.0032.0832C4.46,13,7.41,27,24.94,28a1,1,0,0,0,1.0581-.9382Q26,27.0309,26,27V21.72l-3.77-1.51-2.87,2.85L18.88,23C10.18,21.91,9,13.21,9,13.12l-.06-.48,2.84-2.87L10.28,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H22a3.0033,3.0033,0,0,0-3-3V8A5.0057,5.0057,0,0,1,24,13Z"}),(0,a.jsx)("path",{d:"M28,13H26a7.0078,7.0078,0,0,0-7-7V4A9.01,9.01,0,0,1,28,13Z"}),(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H22a3.0033,3.0033,0,0,0-3-3V8A5.0057,5.0057,0,0,1,24,13Z"}),(0,a.jsx)("path",{d:"M28,13H26a7.0078,7.0078,0,0,0-7-7V4A9.01,9.01,0,0,1,28,13Z"}),(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.303,10a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,19l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,10Z"}),(0,a.jsx)("path",{d:"M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,12a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,12Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,6Z"}),(0,a.jsx)("path",{d:"M26,22H21.8472L21.18,18H24V16H8v2h2.82l-.6668,4H6v2H9.82l-.6668,4H11.18l.6668-4h8.3056l.6668,4h2.0276L22.18,24H26ZM12.18,22l.6665-4h6.3062l.6665,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.5,14H20V12H18V11H16v1.0508A2.5,2.5,0,0,0,16.5,17h1a.5.5,0,0,1,0,1H14v2h2v1h2V19.9492A2.5,2.5,0,0,0,17.5,15h-1a.5.5,0,0,1,0-1Z"}),(0,a.jsx)("path",{d:"M29,13H26.98A5.7789,5.7789,0,0,0,25,8.8525V5a1,1,0,0,0-1.6-.8L19.6665,7H15c-5.5095,0-9.4634,3.2412-9.9485,8H5a1.0009,1.0009,0,0,1-1-1V12H2v2a3.0033,3.0033,0,0,0,3,3h.07A9.1733,9.1733,0,0,0,9,23.5566V27a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V25h3v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V23.6372A5.0926,5.0926,0,0,0,26.8188,20H29a1,1,0,0,0,1-1V14A1,1,0,0,0,29,13Zm-1,5H25.124c-.3052,2.7529-.8235,3.4854-3.124,4.3154V26H20V23H13v3H11V22.3779A7.013,7.013,0,0,1,7,16c0-4.8354,4.0181-7,8-7h5.3335L23,7V9.7764c2.4182,1.8593,1.9126,3.186,2.0183,5.2236H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13 11H20V13H13z"}),(0,a.jsx)("path",{d:"M29,13H26.98A5.7791,5.7791,0,0,0,25,8.8525V5a1,1,0,0,0-1.6-.8L19.6665,7H15c-5.5095,0-9.4634,3.2412-9.9485,8H5a1.0009,1.0009,0,0,1-1-1V12H2v2a3.0033,3.0033,0,0,0,3,3h.07A9.1733,9.1733,0,0,0,9,23.5566V27a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V25h3v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V23.6372A5.0928,5.0928,0,0,0,26.8188,20H29a1,1,0,0,0,1-1V14A1,1,0,0,0,29,13Zm-1,5H25.124c-.3052,2.7529-.8235,3.4854-3.124,4.3154V26H20V23H13v3H11V22.3779A7.0129,7.0129,0,0,1,7,16c0-4.8354,4.0181-7,8-7h5.3335L23,7V9.7764c2.4182,1.8593,1.9126,3.186,2.0183,5.2236H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.999,6.999,0,0,0,12.2855,4.5878A7.9969,7.9969,0,1,0,22,14Zm0,2a6.0046,6.0046,0,0,1,5.91,5H16.09A6.0046,6.0046,0,0,1,22,16ZM6,9A5,5,0,0,1,16,9v6H6Zm5,19a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9566,7.9566,0,0,0-.7242,8.9315A4.9885,4.9885,0,0,1,11,28Zm11,0a6.0046,6.0046,0,0,1-5.91-5H27.91A6.0046,6.0046,0,0,1,22,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.9857,6.9857,0,0,0,12.2756,4.5768A7.9966,7.9966,0,1,0,22,14ZM11,4a5.0059,5.0059,0,0,1,5,5v6H6V9A5.0059,5.0059,0,0,1,11,4Zm0,24a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9564,7.9564,0,0,0-.7239,8.9319A5.0147,5.0147,0,0,1,11,28Zm11,0a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M25 21 23 21 23 19 21 19 21 21 19 21 19 23 21 23 21 25 23 25 23 23 25 23 25 21z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.9857,6.9857,0,0,0,12.2756,4.5768A7.9966,7.9966,0,1,0,22,14ZM11,4a5.0059,5.0059,0,0,1,5,5v6H6V9A5.0059,5.0059,0,0,1,11,4Zm0,24a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9564,7.9564,0,0,0-.7239,8.9319A5.0147,5.0147,0,0,1,11,28Zm11,0a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M19 21H25V23H19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.59,13.31,30,11.9,20,2,18.69,3.42,19.87,4.6,8.38,14.32,6.66,12.61,5.25,14l5.66,5.68L2,28.58,3.41,30l8.91-8.91L18,26.75l1.39-1.42-1.71-1.71L27.4,12.13ZM16.26,22.2,9.8,15.74,21.29,6,26,10.71Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5858,13.3137,30,11.9,20,2,18.6858,3.415l1.1858,1.1857L8.38,14.3225,6.6641,12.6067,5.25,14l5.6572,5.6773L2,28.5831,3.41,30l8.9111-8.9087L18,26.7482l1.3929-1.414L17.6765,23.618l9.724-11.4895Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,12h6c1.1028,0,2-.8975,2-2V4c0-1.1025-.8972-2-2-2h-6c-1.1028,0-2,.8975-2,2v2h-9c-2.7571,0-5,2.2432-5,5h-2c-1.1028,0-2,.8975-2,2v6c0,1.1025.8972,2,2,2h2c0,2.7568,2.2429,5,5,5h9v2c0,1.1025.8972,2,2,2h6c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2h-6c-1.1028,0-2,.8975-2,2v2h-9c-1.6543,0-3-1.3457-3-3h2c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2h-2c0-1.6543,1.3457-3,3-3h9v2c0,1.1025.8972,2,2,2ZM22,22h6v6h-6l-.0012-6h.0012ZM10,13v6h-6l-.0012-6h6.0012ZM22,4h6v6h-6l-.0012-6h.0012Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.1,2H3.9c-1.1,0-1.9.9-1.9,1.9v24.2c0,1.1.9,1.9,1.9,1.9h24.2c1.1,0,1.9-.9,1.9-1.9V3.9c0-1.1-.9-1.9-1.9-1.9ZM28,28H4V8h24s0,20,0,20ZM28,6H4v-2h24s0,2,0,2ZM22,19l-1.4,1.4-2.6-2.6v6.2c0,1.1-.9,2-2,2h-6v-2h6v-6.2l-2.6,2.6-1.4-1.4,5-5,5,5ZM8,12v-2h16v2H8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h24c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM28,28H4V8h24v20ZM28,6H4v-2h24v2ZM22,10h2v16h-2v-16ZM15,14l5,5-5,5-1.4-1.4,2.6-2.6h-6.2c-1.1,0-2-.9-2-2v-6h2v6h6.2l-2.6-2.6,1.4-1.4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,8c0-0.4-0.2-0.7-0.5-0.9l-7-4C23.3,3,23.2,3,23,3s-0.3,0-0.5,0.1L16,6.8L9.5,3.1C9.3,3,9.2,3,9,3S8.7,3,8.5,3.1l-7,4 C1.2,7.3,1,7.6,1,8v20c0,0.6,0.4,1,1,1c0.2,0,0.3-0.1,0.5-0.1l0,0L9,25.2l6.5,3.7C15.7,29,15.8,29,16,29s0.3,0,0.5-0.1l6.5-3.7 l6.5,3.7l0,0c0.1,0.1,0.3,0.1,0.5,0.1c0.6,0,1-0.4,1-1V8z M3,8.6l5-2.9v17.7l-5,2.9V8.6z M15,26.3l-5-2.9V5.7l5,2.9V26.3z M22,23.4 l-5,2.9V8.6l5-2.9V23.4z M24,23.4V5.7l5,2.9l0,17.7L24,23.4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.37,14.75,20,10V6a4,4,0,0,0-8,0v4L2.63,14.75a1,1,0,0,0-.63.93v5a1,1,0,0,0,1,1,1,1,0,0,0,.29-.05L12,18v5L8.55,24.72a1,1,0,0,0-.55.9V29a1,1,0,0,0,1,1,.9.9,0,0,0,.28,0L16,28l6.72,2A.9.9,0,0,0,23,30a1,1,0,0,0,1-1V25.62a1,1,0,0,0-.55-.9L20,23V18l8.71,3.61a1,1,0,0,0,.29.05,1,1,0,0,0,1-1v-5A1,1,0,0,0,29.37,14.75ZM28,19.15,18,15v9.24l4,2v1.43l-6-1.75-6,1.75V26.24l4-2V15L4,19.15V16.3l10-5.07V6a2,2,0,0,1,4,0v5.23L28,16.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5845,14.585l-3.12-1.8721A4.9951,4.9951,0,0,0,22.8921,12H7.7808L7.16,9.5151A1.9975,1.9975,0,0,0,5.2192,8H4a2.0023,2.0023,0,0,0-2,2v7a3.0033,3.0033,0,0,0,3,3h7v6a2.0023,2.0023,0,0,0,2,2h1.3071A2.0086,2.0086,0,0,0,17.18,26.7021L19.6929,20h7.3916a2.9152,2.9152,0,0,0,1.5-5.415ZM27.0845,18H18.3071l-3,8H14V18H5a1.0009,1.0009,0,0,1-1-1V10H5.2192l1,4H10v2h2V14h3v2h2V14h3v2h2V14h.8921a2.9977,2.9977,0,0,1,1.5434.4277l3.12,1.8721a.9154.9154,0,0,1-.4712,1.7Z"}),(0,a.jsx)("path",{d:"M14,4h1.3228l2.4,6h2.1545L17.18,3.2573A1.9906,1.9906,0,0,0,15.3228,2H14a2.0023,2.0023,0,0,0-2,2v6h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,30H28a4.9316,4.9316,0,0,1-4-1.9873,5.0192,5.0192,0,0,1-8,0,5.0192,5.0192,0,0,1-8,0A4.9316,4.9316,0,0,1,4,30H2V28H4a3.44,3.44,0,0,0,3.0532-2.3215A.9712.9712,0,0,1,8,25a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,12,28a3.44,3.44,0,0,0,3.0532-2.3215A.99.99,0,0,1,16,25a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,20,28a3.44,3.44,0,0,0,3.0532-2.3215,1,1,0,0,1,1.8955.0053A3.4381,3.4381,0,0,0,28,28h2Z"}),(0,a.jsx)("path",{d:"M28,6v4H25.5L23.4,7.2A3.0129,3.0129,0,0,0,21,6H15a3.0033,3.0033,0,0,0-3,3v1H8.6182L7.8945,8.5527l-1-2A1,1,0,0,0,6,6H3A1,1,0,0,0,2,7v6a3.0033,3.0033,0,0,0,3,3h6.82l-.6666,4H7a1,1,0,0,0,0,2H27a1,1,0,0,0,0-2H22.847L22.18,16h.1629a4.9662,4.9662,0,0,0,3.5351-1.4648L28,12.4141V16h2V6ZM14,9a1.0009,1.0009,0,0,1,1-1h6a1.0045,1.0045,0,0,1,.8.4L23,10H14Zm6.82,11H13.18l.6666-4h6.306Zm1.5237-6H5a1.0009,1.0009,0,0,1-1-1V8H5.3818l.7237,1.4473L7.3818,12h18.204l-1.1214,1.1211A2.9789,2.9789,0,0,1,22.3433,14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,25V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141L7,15.8281V25H19v2H7A2.0024,2.0024,0,0,1,5,25Z"}),(0,a.jsx)("path",{d:"M24,22h4a2.002,2.002,0,0,1,2,2v4a2.002,2.002,0,0,1-2,2H24a2.002,2.002,0,0,1-2-2V24A2.002,2.002,0,0,1,24,22Zm4,6V24H23.9985L24,28Z"}),(0,a.jsx)("path",{d:"M27,6v9.1719l3.5859-3.586L32,13l-6,6-6-6,1.4141-1.4141L25,15.1719V6H13V4H25A2.0024,2.0024,0,0,1,27,6Z"}),(0,a.jsx)("path",{d:"M2 6H8V8H2z"}),(0,a.jsx)("path",{d:"M2 2H10V4H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28,28H4c-1.1028,0-2-.8972-2-2v-6h2v6h24v-6h2v6c0,1.1028-.8972,2-2,2Z"}),(0,a.jsx)("path",{d:"m17,17v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m9,17v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m17,9v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m5,5v8c0,.5522.4477,1,1,1h8c.5523,0,1-.4478,1-1V5c0-.5523-.4477-1-1-1H6c-.5523,0-1,.4477-1,1Zm2,1h6v6h-6v-6Z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M3.5,14C3.2,14,3,13.8,3,13.5v-11c0-0.2,0.1-0.3,0.2-0.4C3.4,2,3.6,2,3.8,2.1l9.5,5.5c0.2,0.1,0.3,0.4,0.2,0.7 c0,0.1-0.1,0.1-0.2,0.2l-9.5,5.5C3.7,14,3.6,14,3.5,14z M4,3.4v9.3L12,8L4,3.4z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28ZM8,6.6909V25.3088L24.9248,16Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11.7,8.4l-5.5,3c-0.2,0.1-0.3,0.1-0.5,0c-0.2-0.1-0.2-0.3-0.2-0.4V5 c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3C12,7.7,12.1,8,11.9,8.2C11.9,8.3,11.8,8.4,11.7,8.4L11.7,8.4z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.4473,14.8945-12,6A1,1,0,0,1,10,22V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z"}),(0,a.jsx)("path",{d:"M6,11.5c-0.1,0-0.2,0-0.3-0.1c-0.2-0.1-0.2-0.3-0.2-0.4V5c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3 C12,7.7,12.1,8,11.9,8.2c0,0.1-0.1,0.2-0.2,0.2l-5.5,3C6.2,11.5,6.1,11.5,6,11.5z M6.5,5.8v4.3l4-2.2L6.5,5.8z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Zm1-11.3821v8.7642L20.7642,16Z"}),(0,a.jsx)("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11.7,8.4l-5.5,3c-0.2,0.1-0.3,0.1-0.5,0c-0.2-0.1-0.2-0.3-0.2-0.4V5 c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3C12,7.7,12.1,8,11.9,8.2C11.9,8.3,11.8,8.4,11.7,8.4L11.7,8.4z"}),(0,a.jsx)("path",{d:"M6.5 10.2 10.5 8 6.5 5.8z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Zm1-11.3821v8.7642L20.7642,16Z"}),(0,a.jsx)("path",{d:"M12 20.382 20.764 16 12 11.618 12 20.382z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.4473,14.8945-12,6A1,1,0,0,1,10,22V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 6H22V8H4z"}),(0,a.jsx)("path",{d:"M4 12H22V14H4z"}),(0,a.jsx)("path",{d:"M4 18H16V20H4z"}),(0,a.jsx)("path",{d:"M21 18 28 23 21 28 21 18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,9h8v2h-3v10h3v2h-8v-2h3v-10h-3v-2ZM14,21v-12h-2v14h8v-2h-6ZM4,18h4c1.103,0,2-.897,2-2v-5c0-1.103-.897-2-2-2H2v14h2v-5ZM4,10.9985h4v5.0015h-4v-5.0015Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2v6a8.0073,8.0073,0,0,0,7,7.9307V30h2V23.9307A8.0073,8.0073,0,0,0,24,16V10A2,2,0,0,0,22,8Zm0,8a6,6,0,0,1-12,0V10H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2v6a8.0073,8.0073,0,0,0,7,7.9307V30h2V23.9307A8.0073,8.0073,0,0,0,24,16V10A2,2,0,0,0,22,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,23H24a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H24V21h4V17H26V15h4Z"}),(0,a.jsx)("path",{d:"M18 19 14.32 9 12 9 12 23 14 23 14 13 17.68 23 20 23 20 9 18 9 18 19z"}),(0,a.jsx)("path",{d:"M4,23H2V9H8a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H4Zm0-7H8V11H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.0009,13c-.5165.0019-1.0234.1398-1.4696.4-.5478-.8691-1.5021-1.3974-2.5293-1.4-.5165.0019-1.0234.1398-1.4696.4-.749-1.1788-2.2121-1.6847-3.529-1.22v-5.18h0c0-1.6569-1.3427-3-2.9991-3s-2.9991,1.3431-2.9991,3v11.1l-2.2293-1.52h0c-.5111-.3807-1.1323-.5843-1.7695-.58-1.6564-.0041-3.0024,1.3357-3.0065,2.9926-.002.8025.3175,1.5723.8871,2.1374l7.9976,7.3c1.1323,1.0137,2.5992,1.5729,4.1188,1.57h4.9985c3.8648,0,6.9979-3.134,6.9979-7v-6c0-1.6569-1.3427-3-2.9991-3h.0002ZM26.0006,22c0,2.7614-2.2379,5-4.9985,5h-4.9985c-1.0105.0122-1.991-.3432-2.7592-1l-7.9476-7.3c-.1847-.1863-.2888-.4377-.2899-.7,0-.5523.4476-1,.9997-1,.2163,0,.4268.0702.5998.2l5.3984,3.7V6c0-.5523.4476-1,.9997-1s.9997.4477.9997,1h0v11h1.9994v-3c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v3h1.9994v-2c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v2h1.9994v-1c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H18a2.0021,2.0021,0,0,1-2-2V18a2.0021,2.0021,0,0,1,2-2h2v2H18V28H28V18H26V16h2a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),(0,a.jsx)("path",{d:"M14,16H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H14a2.0021,2.0021,0,0,1,2,2V6H14V4H4V14H14V12h2v2A2.0021,2.0021,0,0,1,14,16Z"}),(0,a.jsx)("path",{d:"M26,9a2.9926,2.9926,0,0,0-5.8157-1H9v2H20.1843A2.9939,2.9939,0,0,0,22,11.8154V23h2V11.8159A2.9958,2.9958,0,0,0,26,9Zm-3,1a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,23,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.71 12.29 7.41 6 13 6 13 4 4 4 4 13 6 13 6 7.41 12.29 13.71 13.71 12.29z"}),(0,a.jsx)("path",{d:"M28,30H12a2,2,0,0,1-2-2V18h2V28H28V12H18V10H28a2,2,0,0,1,2,2V28A2,2,0,0,1,28,30Z"}),(0,a.jsx)("path",{d:"M22,15H17v2h5v2H18a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V17A2,2,0,0,0,22,15Zm0,8H18V21h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 24H12V30H10z"}),(0,a.jsx)("path",{d:"M21,20H7a3.0033,3.0033,0,0,1-3-3V6H2V17a5.0059,5.0059,0,0,0,5,5H21a4.9419,4.9419,0,0,1,2.105.481L17,28.5859,18.4141,30l6.3071-6.3071A4.96,4.96,0,0,1,26,27v3h2V27A7.0078,7.0078,0,0,0,21,20Z"}),(0,a.jsx)("path",{d:"M25.2746,4.0386l-7-2a1.0013,1.0013,0,0,0-.55,0l-7,2A.9993.9993,0,0,0,10.03,5.2422L11,9.123V11A7,7,0,1,0,25,11V9.123l.97-3.8808A.9993.9993,0,0,0,25.2746,4.0386ZM18,4.04l5.7952,1.6558L23.219,8H19V6H17V8H12.781l-.5762-2.3042ZM18,16a5.0058,5.0058,0,0,1-5-5V10H23v1A5.0058,5.0058,0,0,1,18,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,18A6,6,0,1,0,20,22.46v7.54l4-1.8926,4,1.8926V22.46A5.98,5.98,0,0,0,30,18Zm-4,8.84-2-.9467L22,26.84V23.65a5.8877,5.8877,0,0,0,4,0ZM24,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,22Z"}),(0,a.jsx)("path",{d:"M9 14H16V16H9z"}),(0,a.jsx)("path",{d:"M9 8H19V10H9z"}),(0,a.jsx)("path",{d:"M6,30a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V8H22V4H6V28H16v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6c-1.1025,0-2-.8975-2-2V6c0-1.1025.8975-2,2-2h8v2H6v20h20v-8.0267h2v8.0267c0,1.1025-.8975,2-2,2ZM28,14v-2l-6.586-.0266L30,3.3875l-1.4142-1.4142-8.5861,8.586.0003-6.5593h-2v10l9.9999-.0269v.0269Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,4H10A2.0059,2.0059,0,0,0,8,6V20a2.0059,2.0059,0,0,0,2,2H28a2.0059,2.0059,0,0,0,2-2V6A2.0059,2.0059,0,0,0,28,4Zm0,16H10V6H28Z"}),(0,a.jsx)("path",{d:"M18,26H4V16H6V14H4a2.0059,2.0059,0,0,0-2,2V26a2.0059,2.0059,0,0,0,2,2H18a2.0059,2.0059,0,0,0,2-2V24H18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m19,7v-3.3999c0-.8837-.7164-1.6001-1.6001-1.6001H4v2h13v3h-6c-1.1046,0-2,.8954-2,2v14c0,1.1046.8954,2,2,2h6v3H4v2h13.3999c.8837,0,1.6001-.7164,1.6001-1.6001v-3.3999h6c1.1046,0,2-.8954,2-2v-14c0-1.1046-.8954-2-2-2h-6Zm6,16h-14v-14h14v14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,28c-3.5928,0-6.9666-1.5903-9.2566-4.3632l1.542-1.2737c1.9087,2.3113,4.7207,3.6368,7.7146,3.6368,5.5139,0,10-4.486,10-10s-4.4861-10-10-10c-2.9939,0-5.8059,1.3256-7.7146,3.6368l-1.542-1.2737c2.29-2.7728,5.6638-4.3632,9.2566-4.3632,6.6169,0,12,5.3832,12,12s-5.3831,12-12,12Z"}),(0,a.jsx)("path",{d:"M23 16 16 9 14.5859 10.4141 19.1719 15 2 15 2 17 19.1719 17 14.5859 21.5859 16 23 23 16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 16 23 9 21.5859 10.4141 26.1719 15 9 15 9 17 26.1719 17 21.5859 21.5859 23 23 30 16z"}),(0,a.jsx)("path",{d:"M14,28c-6.6167,0-12-5.3832-12-12S7.3833,4,14,4c2.335,0,4.5986,.6714,6.5461,1.9414l-1.0923,1.6753c-1.6221-1.0576-3.5078-1.6167-5.4539-1.6167-5.5139,0-10,4.486-10,10s4.4861,10,10,10c1.946,0,3.8318-.5591,5.4539-1.6167l1.0923,1.6753c-1.9475,1.27-4.2112,1.9414-6.5461,1.9414Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m21,7h-2v-3.3999c0-.8999-.7002-1.6001-1.6001-1.6001H4v2h13v3h-2c-3.3,0-6,2.7002-6,6v6c0,3.2998,2.7,6,6,6h2v3H4v2h13.3999c.8999,0,1.6001-.7002,1.6001-1.6001v-3.3999h2c3.3,0,6-2.7002,6-6v-6c0-3.2998-2.7-6-6-6Zm4,12c0,2.2002-1.8,4-4,4h-6c-2.2,0-4-1.7998-4-4v-6c0-2.2002,1.8-4,4-4h6c2.2,0,4,1.7998,4,4v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,10H22V6a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2v4H4a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM12,6h8v4H12ZM4,26V12H28V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.2,2.9l-0.5,0.9c2.6,1.5,3.5,4.9,2,7.5s-4.9,3.5-7.5,2s-3.5-4.9-2-7.5c0.5-0.8,1.2-1.5,2-2L4.8,2.9 c-3.1,1.8-4.2,5.8-2.4,8.9s5.8,4.2,8.9,2.4s4.2-5.8,2.4-8.9C13.1,4.3,12.2,3.4,11.2,2.9z"}),(0,a.jsx)("path",{d:"M7.5 1H8.5V8H7.5z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,5.74l-1,1.73a11,11,0,1,1-11,0l-1-1.73a13,13,0,1,0,13,0Z"}),(0,a.jsx)("path",{d:"M15 2H17V16H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.0166,29.9937c-7.7085,0-13.9863-6.2646-13.9995-13.9761-.0068-3.7358,1.4443-7.2534,4.0854-9.9043l1.417,1.4121c-2.2642,2.272-3.5083,5.2866-3.5024,8.4888.0054,3.2056,1.2588,6.2168,3.5293,8.4795,2.2651,2.2573,5.2725,3.5,8.4702,3.5h.021c1.3477-.0024,2.6533-.2212,3.8799-.6514l.6611,1.8877c-1.4385.5039-2.9653.7612-4.5381.7637h-.0239Z"}),(0,a.jsx)("path",{d:"M15,16h2v4h2c1.1046,0,2,.8954,2,2v3h-2v-3h-2v3h-2v-3h-2v3h-2v-3c0-1.1046.8954-2,2-2h2v-4Z"}),(0,a.jsx)("path",{d:"M23,26h0c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z"}),(0,a.jsx)("path",{d:"M9,4h0c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z"}),(0,a.jsx)("path",{d:"M20.9199,10.1064c-.4219-2.332-2.4678-4.1064-4.9199-4.1064s-4.498,1.7744-4.9199,4.1064c-1.7637.417-3.0801,2.0049-3.0801,3.8936,0,2.2061,1.7939,4,4,4h1v-2h-1c-1.1025,0-2-.8975-2-2s.8975-2,2-2h1v-1c0-1.6543,1.3457-3,3-3s3,1.3457,3,3v1h1c1.1025,0,2,.8975,2,2s-.8975,2-2,2h-1v2h1c2.2061,0,4-1.7939,4-4,0-1.8887-1.3164-3.4766-3.0801-3.8936Z"}),(0,a.jsx)("path",{d:"M25.8999,25.8885l-1.4141-1.4141c2.2681-2.2681,3.5171-5.2808,3.5171-8.4829,0-6.6167-5.3833-12-12-12-1.3491,0-2.6548.2168-3.8809.644l-.6582-1.8887c1.4385-.501,2.9653-.7554,4.5391-.7554,7.7197,0,14,6.2803,14,14,0,3.7363-1.457,7.251-4.103,9.897Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,16h0c0,.3369.024.6749.0714,1.006l-1.9795.2832c-.061-.4238-.0919-.858-.0919-1.2892,0-4.9629,4.0376-9,9-9,2.0435,0,4.0444.7041,5.6348,1.9814l-1.2529,1.5596c-1.2544-1.0083-2.7696-1.541-4.3819-1.541-3.8599,0-6.9999,3.1401-6.9999,7.0001h-.0001ZM8,20c0,.5522.4478,1,1,1s1-.4478,1-1-.4478-1-1-1-1,.4478-1,1ZM16,4c6.6166,0,12,5.3833,12,12h2c0-7.7197-6.2803-14-14-14-1.6431,0-3.2529.2822-4.7846.8389l.6836,1.8799c1.3115-.4771,2.6913-.7188,4.101-.7188ZM22,12c0,.5522.4478,1,1,1s1-.4478,1-1-.4478-1-1-1-1,.4478-1,1ZM9,6c.5522,0,1-.4478,1-1s-.4478-1-1-1-1,.4478-1,1,.4478,1,1,1ZM4,16h0c0-3.2051,1.2481-6.2188,3.5147-8.4854l-1.4141-1.4141c-2.6445,2.6445-4.1006,6.1603-4.1006,9.8995,0,7.7197,6.2803,14,14,14v-2c-6.6166,0-12-5.3832-12-12ZM28.5,25.5c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-.4617.1135-.8942.3006-1.2853l-5.5153-5.5153c-.3911.1871-.8236.3006-1.2853.3006-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3c0,.4617-.1135.8942-.3006,1.2853l5.5153,5.5153c.3911-.1871.8236-.3006,1.2853-.3006,1.6543,0,3,1.3456,3,2.9999h0ZM16,17c.5513,0,1-.4487,1-1s-.4487-1-1-1-1,.4487-1,1,.4487,1,1,1ZM26.5,25.5c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 11 25 11 25 23 27 23 27 11 30 11 30 9 22 9 22 11z"}),(0,a.jsx)("path",{d:"M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V10.9985H14Z"}),(0,a.jsx)("path",{d:"M4,23H2V9H8a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H4Zm0-7H8V10.9985H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.0001,14.0001v4h-2v-4s2,0,2,0ZM30.0001,14.0001v4h-2v-4s2,0,2,0ZM4.0001,20.0001v4h-2v-4h2ZM6.0001,28.0001v2h-2c-1.1001,0-2-.9-2-2v-2h2v2h2ZM12.0001,28.0001v2h-4v-2h4ZM28,2H4c-1.1001,0-2,.9-2,2v8h2v-2h24v2h2V4c0-1.1-.8999-2-2-2ZM25.5802,22.4099l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM19.4202,27.5899l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59ZM24.9152,20.5769l-1.915-.577-2.915,9.423,1.915.577,2.915-9.423Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 10H17V18H15z"}),(0,a.jsx)("path",{d:"M20 14H22V18H20z"}),(0,a.jsx)("path",{d:"M10 12H12V18H10z"}),(0,a.jsx)("path",{d:"M25,4H17V2H15V4H7A2,2,0,0,0,5,6V20a2,2,0,0,0,2,2h8v6H11v2H21V28H17V22h8a2,2,0,0,0,2-2V6A2,2,0,0,0,25,4Zm0,16H7V6H25Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.5053,16l8.1591-7.2529A1,1,0,0,0,25,7H22V2H20V9h2.37L16,14.6621,9.63,9H12V2H10V7H7a1,1,0,0,0-.6646,1.7471L14.4945,16,6.3353,23.2529A1,1,0,0,0,7,25h3v5h2V23H9.63L16,17.3379,22.37,23H20v7h2V25h3a1,1,0,0,0,.6645-1.7471Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,30H10V25H6l10-9,10,9H22Z"}),(0,a.jsx)("path",{d:"M16,16,6,7h4V2H22V7h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm8,15H11.85l5.58,5.5728L16,24,8,16l8-8,1.43,1.3926L11.85,15H24Z"}),(0,a.jsx)("path",{fill:"none",d:"M16 8 17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 8 17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2v2c6.63,0,12,5.37,12,12s-5.37,12-12,12v2c7.73,0,14-6.27,14-14S23.73,2,16,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m8.24,25.14l-1.29,1.53c1.23,1.04,2.64,1.87,4.18,2.44l.68-1.88c-1.32-.49-2.53-1.2-3.58-2.09h.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4.19,18l-1.97.41c.28,1.63.84,3.16,1.64,4.54l1.73-.95c-.68-1.18-1.16-2.61-1.4-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m5.59,10l-1.73-1c-.79,1.38-1.35,2.96-1.64,4.59l1.97.35c.24-1.39.72-2.75,1.4-3.93v-.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m11.82,4.76l-.68-1.88c-1.54.57-2.95,1.4-4.18,2.44l1.29,1.53c1.05-.89,2.26-1.6,3.58-2.09h-.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,12v-2h-4v-3h-2v3h-2c-1.103,0-2,.897-2,2v3c0,1.103.897,2,2,2h6v3h-8v2h4v3h2v-3h2c1.103,0,2-.8975,2-2v-3c0-1.103-.897-2-2-2h-6v-3h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,2h-5v2h5v24h-5v2h5c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m23,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4,4h5V2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h5v-2H4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M3 11H11V13H3z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M3 19H11V21H3z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M5 15H13V17H5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27,21h-2c0-2.8226,0-7.0881-10.0903-8.0042l.1807-1.9917c11.9097,1.0811,11.9097,6.8802,11.9097,9.9958Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16.9097,20.9958c-11.9097-1.0811-11.9097-6.8802-11.9097-9.9958h2c0,2.8226,0,7.0881,10.0903,8.0042l-.1807,1.9917Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m23,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m17,15.0698v-6.9536c1.6909.2793,3.084,1.1021,4.2219,2.5117l1.5562-1.2559c-1.5195-1.8823-3.4619-2.9736-5.7781-3.2759v-3.0962h-2v3.022c-3.6152.2192-6,2.2603-6,5.2202,0,4.2739,3.1265,5.1191,6,5.5586v7.1616c-2.7192-.1777-4.0186-1.1001-5.2219-2.5903l-1.5562,1.2559c1.7703,2.1934,3.7332,3.168,6.7781,3.3369v3.0352h2v-3.0449c3.7256-.3042,6-2.3271,6-5.4399,0-4.209-3.1428-5.0156-6-5.4453Zm-6-3.8276c0-2.1533,2.0293-3.0537,4-3.2134v6.7466c-2.5696-.4238-4-1.043-4-3.5332Zm6,12.71v-6.8574c2.5669.4155,4,1.0044,4,3.4204,0,2.5361-2.1902,3.2656-4,3.437Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,9H25V3H7V9H4a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2H7v6H25V23h3a2,2,0,0,0,2-2V11A2,2,0,0,0,28,9ZM9,5H23V9H9ZM23,27H9V17H23Zm5-6H25V15H7v6H4V11H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23v3h-14.5c-2.5,0-4.5-2-4.5-4.5s2-4.5,4.5-4.5h.5v-2h-.5c-3.6,0-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5h14.5v3h8v-8h-8ZM29,29h-4v-4h4v4ZM23.5,4h-14.5V1H1v8h8v-3h14.5c2.5,0,4.5,2,4.5,4.5s-2,4.5-4.5,4.5h-.5v2h.5c3.6,0,6.5-2.9,6.5-6.5s-2.9-6.5-6.5-6.5ZM7,7H3V3h4v4ZM20,15h-1v-2c0-1.7-1.3-3-3-3s-3,1.3-3,3v2h-1c-.6,0-1,.4-1,1v5c0,.6.4,1,1,1h8c.6,0,1-.4,1-1v-5c0-.6-.4-1-1-1ZM15,13c0-.6.4-1,1-1s1,.4,1,1v2h-2v-2ZM19,20h-6v-3h6v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m12,25c-.7383,0-1.3762.4048-1.7227,1h-5.6301l2.6479-5.0923c.2273.0552.4609.0923.7048.0923,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3-3,1.3457-3,3c0,.6787.2349,1.2979.6162,1.8013l-3.5034,6.7373c-.1611.3101-.1489.6816.0325.9805.1812.2983.5054.481.8547.481h7.2773c.3464.5952.9844,1,1.7227,1,1.1045,0,2-.8955,2-2s-.8955-2-2-2Zm-4-8c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1Z"}),(0,a.jsx)("path",{d:"m29.8872,26.5386l-4.041-7.771c.0986-.2363.1538-.4956.1538-.7676,0-1.1045-.8955-2-2-2s-2,.8955-2,2,.8955,2,2,2c.0757,0,.1477-.0142.2212-.0225l3.1316,6.0225h-4.5371c-.4141-1.1611-1.5137-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.302,0,2.4016-.8389,2.8157-2h6.1843c.3494,0,.6736-.1826.8547-.481.1814-.2988.1936-.6704.0325-.9805Zm-9.8872,1.4614c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),(0,a.jsx)("path",{d:"m21,8c-.2439,0-.4778.0371-.7048.0923l-3.408-6.5537c-.1721-.3311-.5298-.5386-.8872-.5386s-.7151.2075-.8872.5386l-3.8914,7.4839c-.0737-.0083-.1458-.0225-.2214-.0225-1.1045,0-2,.8955-2,2s.8955,2,2,2,2-.8955,2-2c0-.272-.0552-.5312-.1538-.7676l3.1538-6.0649,2.6162,5.0312c-.3813.5034-.6162,1.1226-.6162,1.8013,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3Zm0,4c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m31,17c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.3018.8384,2.4014,2,2.8154v2.6104l-11,6.4165-10.0154-5.8423,22.5193-13.1362c.3071-.1792.4961-.5083.4961-.8638s-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v3.1846c-1.1616.4141-2,1.5137-2,2.8154,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-1.3018-.8384-2.4014-2-2.8159v-2.6099l11-6.4165,10.0154,5.8423L3.4961,22.1362c-.3071.1792-.4961.5083-.4961.8638s.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l12-7c.3071-.1792.4961-.5083.4961-.8638v-3.1841c1.1616-.4146,2-1.5142,2-2.8159Zm-27-1c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm24,2c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 18H14V20H8z"}),(0,a.jsx)("path",{d:"M8 22H18V24H8z"}),(0,a.jsx)("path",{d:"M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM18,6v4H14V6ZM6,26V6h6v6h8V6h6l.0012,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,6c0-.5522.4477-1,1-1s1,.4478,1,1-.4478,1-1,1-1-.4476-1-1ZM11,7c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM30,4v12.0001h-2v-6.0001H4v18.0001h7.9999v2h-7.9999c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2ZM28,4H4v4h24v-4ZM25.58,22.4101l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM19.42,27.5901l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59ZM24.915,20.5771l-1.915-.577-2.915,9.423,1.915.577,2.915-9.423Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,6c0-.5522.4477-1,1-1s1,.4478,1,1-.4478,1-1,1-1-.4476-1-1ZM11,7c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM30,4v12.0001h-2v-6.0001H4v18h7.9999v2h-7.9999c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2ZM28,4H4v4h24v-4ZM31,27.0001c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-.2228.0283-.4384.0746-.6475l-2.0746-1.1977-2.0746,1.1977c.0463.209.0746.4247.0746.6475,0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3c.7037,0,1.343.2536,1.8551.6607l2.1449-1.2383v-1.6068c-1.1615-.4141-2-1.5137-2-2.8157,0-1.6543,1.3457-3,3-3s3,1.3457,3,3c0,1.3019-.8385,2.4016-2,2.8157v1.6067l2.1449,1.2383c.5121-.4071,1.1514-.6607,1.8551-.6607,1.6543,0,3,1.3457,3,3h0ZM19,27.0001c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1ZM22,19.0001c0,.5513.4482,1,1,1s1-.4487,1-1-.4482-1-1-1-1,.4487-1,1ZM29,27.0001c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,21H4a2.0021,2.0021,0,0,1-2-2V13a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,21ZM4,13v6H28V13Z"}),(0,a.jsx)("path",{d:"M6 15H20V17H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,22a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z"}),(0,a.jsx)("path",{d:"M16,26a10.0162,10.0162,0,0,1-7.4531-3.3325l1.49-1.334A8,8,0,1,0,16,8V6a10,10,0,0,1,0,20Z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 21 17.4 22.4 14.8 25 23 25 23 27 14.8 27 17.4 29.6 16 31 11 26z"}),(0,a.jsx)("path",{d:"M6.3 19H17.6V21H6.3z",transform:"rotate(-45 12 20)"}),(0,a.jsx)("path",{d:"M23,22h-2v-5c0-0.3,0.1-0.5,0.3-0.7l4.1-4.1c1.7-1.7,2.6-4,2.6-6.4V4h-1.9c-2.4,0-4.7,0.9-6.4,2.6l-4.1,4.1 C15.5,10.9,15.3,11,15,11H7.5l-2.6,3.3l5.3,0.8l-0.3,2l-7-1c-0.4-0.1-0.7-0.3-0.8-0.6s-0.1-0.7,0.1-1l4-5C6.4,9.1,6.7,9,7,9h7.6 l3.8-3.8C20.4,3.1,23.2,2,26.1,2H28c1.1,0,2,0.9,2,2v1.9c0,2.9-1.1,5.7-3.2,7.8L23,17.4V22z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27 25.5859 25 23.5859 25 21 23 21 23 24.4141 25.5859 27 27 25.5859z"}),(0,a.jsx)("path",{d:"m24,31c-3.8599,0-7-3.1401-7-7s3.1401-7,7-7,7,3.1401,7,7-3.1401,7-7,7Zm0-12c-2.7571,0-5,2.2429-5,5s2.2429,5,5,5,5-2.2429,5-5-2.2429-5-5-5Z"}),(0,a.jsx)("path",{d:"m28,15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10Z"}),(0,a.jsx)("circle",{cx:"9",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"23",cy:"13",r:"2"}),(0,a.jsx)("path",{d:"m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m31.5,23c-.8271,0-1.5-.6729-1.5-1.5v-1.5c0-1.1025-.8972-2-2-2h-2v2h2v1.5c0,.98.4072,1.8643,1.0581,2.5-.6509.6357-1.0581,1.52-1.0581,2.5v1.5h-2v2h2c1.1028,0,2-.8975,2-2v-1.5c0-.8271.6729-1.5,1.5-1.5h.5v-2h-.5Z"}),(0,a.jsx)("path",{d:"m16,20v1.5c0,.8271-.6729,1.5-1.5,1.5h-.5v2h.5c.8271,0,1.5.6729,1.5,1.5v1.5c0,1.1025.8972,2,2,2h2v-2h-2v-1.5c0-.98-.4072-1.8643-1.0581-2.5.6509-.6357,1.0581-1.52,1.0581-2.5v-1.5h2v-2h-2c-1.1028,0-2,.8975-2,2Z"}),(0,a.jsx)("path",{d:"m28,15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10Z"}),(0,a.jsx)("circle",{cx:"23",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"9",cy:"13",r:"2"}),(0,a.jsx)("path",{d:"m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 16 22 24 20.6 22.6 27.2 16 20.6 9.4 22 8z"}),(0,a.jsx)("path",{d:"M12 15H20V17H12z"}),(0,a.jsx)("path",{d:"M2 16 10 8 11.4 9.4 4.8 16 11.4 22.6 10 24z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m25,22.1421v-13.1421c0-2.2056-1.7944-4-4-4h-4.1719l2.5859-2.5859-1.4141-1.4141-5,5,5,5,1.4141-1.4141-2.5859-2.5859h4.1719c1.1028,0,2,.8975,2,2v13.1421c-1.7202.4473-3,1.9995-3,3.8579,0,2.2056,1.7944,4,4,4s4-1.7944,4-4c0-1.8584-1.2798-3.4106-3-3.8579Zm-1,5.8579c-1.1028,0-2-.8975-2-2s.8972-2,2-2,2,.8975,2,2-.8972,2-2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4,6c0,1.8584,1.2798,3.4106,3,3.8579v12.2842c-1.7202.447-3,1.9993-3,3.8579,0,2.2061,1.7944,4,4,4s4-1.7939,4-4c0-1.8586-1.2798-3.4109-3-3.8579v-12.2842c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4Zm6,20c0,1.1025-.897,2-2,2s-2-.8975-2-2c0-1.1025.897-2,2-2s2,.8975,2,2Zm0-20c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,27.1781l-2.59-2.59-1.41,1.4119,4,4,7-7-1.41-1.4119-5.59,5.59ZM14,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM22,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM12,28h-6c-1.103,0-2-.8975-2-2V6c0-1.103.897-2,2-2h20c1.1025,0,2,.897,2,2v11h-2V6H6v20h6v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6Zm0,2v3H4V8ZM4,24V13H28V24Z"}),(0,a.jsx)("path",{d:"M6 20H16V22H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,22H19a2.0023,2.0023,0,0,1-2-2V10a2.002,2.002,0,0,1,2-2h6v2H19V20h6Z"}),(0,a.jsx)("path",{d:"M13,8H9a2.002,2.002,0,0,0-2,2V20a2.0023,2.0023,0,0,0,2,2h1v2a2.0023,2.0023,0,0,0,2,2h2V24H12V22h1a2.0023,2.0023,0,0,0,2-2V10A2.002,2.002,0,0,0,13,8ZM9,20V10h4V20Z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,1C7.729,1,1,7.729,1,16s6.729,15,15,15,15-6.729,15-15S24.271,1,16,1Zm6.5825,20.5c-.5203-.8926-1.4771-1.5-2.5825-1.5-.1821,0-.3586.0225-.532.0537l-1.7258-3.0205c6.7866.2388,10.1216,1.8262,10.2571,2.4668-.0979.4624-1.8899,1.4141-5.4167,2Zm-2.5825.5c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1ZM3,16c0-.5435.0442-1.0762.1094-1.6025.8552.666,2.1555,1.1973,3.7239,1.6025-1.5684.4053-2.8687.9365-3.7239,1.6025-.0652-.5264-.1094-1.0591-.1094-1.6025Zm6.4175-5.4995c.5205.8921,1.4773,1.4995,2.5825,1.4995.1821,0,.3586-.0225.532-.0537l1.7258,3.0205c-6.8042-.2393-10.1387-1.8335-10.2581-2.4619.0862-.4609,1.8784-1.416,5.4177-2.0044Zm2.5825-.5005c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm13.167,6c1.5681-.4053,2.8684-.9365,3.7236-1.6025.0652.5264.1094,1.0591.1094,1.6025s-.0442,1.0762-.1094,1.6025c-.8552-.666-2.1555-1.1973-3.7236-1.6025ZM16,3c4.9019,0,9.1758,2.7285,11.3901,6.7451-2.2891-.9961-5.7993-1.5513-9.3901-1.6997v1.999c6.6108.2695,9.8655,1.8232,9.9993,2.4556-.1431.6763-3.8533,2.4062-11.4236,2.4917l-2.3118-4.0454c.4524-.5254.7361-1.2002.7361-1.9463,0-1.6543-1.3457-3-3-3-1.4956,0-2.7285,1.1035-2.9531,2.5371-1.7056.2837-3.2363.6841-4.4351,1.2051,2.2151-4.0146,6.4878-6.7422,11.3882-6.7422Zm0,26c-4.9019,0-9.1758-2.7285-11.3901-6.7451,2.2891.9961,5.7993,1.5513,9.3901,1.6997v-1.999c-6.6282-.2705-9.8823-1.8306-10.0002-2.4507.126-.6729,3.8357-2.4106,11.4246-2.4966l2.3118,4.0454c-.4524.5254-.7361,1.2002-.7361,1.9463,0,1.6543,1.3457,3,3,3,1.4956,0,2.7285-1.1035,2.9531-2.5371,1.7056-.2837,3.2363-.6841,4.4351-1.2051-2.2151,4.0146-6.4878,6.7422-11.3882,6.7422Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"20",cy:"4",r:"2"}),(0,a.jsx)("circle",{cx:"8",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"28",cy:"12",r:"2"}),(0,a.jsx)("circle",{cx:"11",cy:"7",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"24",r:"2"}),(0,a.jsx)("path",{d:"M30,3.4131,28.5859,2,4,26.585V2H2V28a2,2,0,0,0,2,2H30V28H5.4131Z"}),e)})},5576(e,t,r){r.d(t,{gX:()=>i});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31 24 27 24 27 20 25 20 25 24 21 24 21 26 25 26 25 30 27 30 27 26 31 26 31 24z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2H17V28H7V7h3v3H22V7h3v9h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,20A6,6,0,1,0,20,24.46V32l4-1.8936L28,32V24.46A5.98,5.98,0,0,0,30,20Zm-4,8.84-2-.9467L22,28.84V25.65a5.8877,5.8877,0,0,0,4,0ZM24,24a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,24Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,26A3.5,3.5,0,1,1,26,22.5,3.5041,3.5041,0,0,1,22.5,26Zm0-5A1.5,1.5,0,1,0,24,22.5,1.5017,1.5017,0,0,0,22.5,21Z"}),(0,a.jsx)("path",{d:"M22.5,31A8.5,8.5,0,1,1,31,22.5,8.51,8.51,0,0,1,22.5,31Zm0-15A6.5,6.5,0,1,0,29,22.5,6.5074,6.5074,0,0,0,22.5,16Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h5V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 27.18 19.41 24.59 18 26 22 30 30 22 28.59 20.59 22 27.18z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V18h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"24",cy:"21",r:"2"}),(0,a.jsx)("path",{d:"M24,31l-4.7788-6.4019A5.9354,5.9354,0,0,1,18,21a6,6,0,0,1,12,0,5.9407,5.9407,0,0,1-1.2246,3.6028Zm0-14a4.0045,4.0045,0,0,0-4,4,3.9572,3.9572,0,0,0,.82,2.3972L24,27.6567l3.1763-4.2548A3.9627,3.9627,0,0,0,28,21,4.0045,4.0045,0,0,0,24,17Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.41 25 30 21.41 28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V17h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v6h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 17 25.23 21.32 30 22 26.5 25.167 28 30 23 27.208 18 30 19.5 25.167 16 22 20.9 21.32 23 17z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v7h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5,32a3.4762,3.4762,0,0,1-2.4751-1.0254L21.897,26.8469a6.496,6.496,0,0,1-7.3482-8.9563l.5879-1.34L19.293,20.707a1.0234,1.0234,0,0,0,1.4135,0,.999.999,0,0,0,.0005-1.4141l-4.1562-4.1565,1.34-.5881a6.4965,6.4965,0,0,1,8.9566,7.3486l4.1274,4.1282A3.5,3.5,0,0,1,28.5,32Zm-6.03-7.4087,4.9693,4.9692a1.5352,1.5352,0,0,0,2.1211,0,1.4985,1.4985,0,0,0,0-2.1208v0l-4.9692-4.97.188-.5823A4.496,4.496,0,0,0,20.5,16q-.126,0-.25.0068l1.8716,1.8721a2.9992,2.9992,0,0,1,0,4.2424,3.0722,3.0722,0,0,1-4.2427-.0005l-1.8716-1.8715Q16,20.3741,16,20.5A4.4968,4.4968,0,0,0,21.8877,24.78Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22",cy:"24",r:"2"}),(0,a.jsx)("path",{fill:"none",d:"M22,28a4,4,0,1,1,4-4A4.0039,4.0039,0,0,1,22,28Zm0-6a2,2,0,1,0,2,2A2.0027,2.0027,0,0,0,22,22Z"}),(0,a.jsx)("path",{d:"M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M12,28H7V7h3v3H22V7h3v9h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h5ZM12,4h8V8H12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,4V6H8v8a8,8,0,0,0,16,0V6h4V4ZM22,14a6,6,0,0,1-12,0V6h5v8h2V6h5Z"}),(0,a.jsx)("path",{d:"M11 26H13V28H11z"}),(0,a.jsx)("path",{d:"M7 24H9V26H7z"}),(0,a.jsx)("path",{d:"M15 24H17V26H15z"}),(0,a.jsx)("path",{d:"M19 26H21V28H19z"}),(0,a.jsx)("path",{d:"M23 24H25V26H23z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.39,16.08,22.7,13.21,20.16,8.87l-.08-.12A2,2,0,0,0,18.52,8h-8a2,2,0,0,0-1.67.89L5.46,14H3a1,1,0,0,0-1,1v9a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V17A1,1,0,0,0,29.39,16.08ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86a4,4,0,0,0-7.72,0H12.86a4,4,0,0,0-7.72,0H4V16H6a1,1,0,0,0,.83-.45L10.54,10h8l2.63,4.5a1,1,0,0,0,.47.42L28,17.66Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 28H30V30H16z"}),(0,a.jsx)("path",{d:"M27,26h-8c-1.1028,0-2-.8972-2-2v-5c0-1.1028,.8972-2,2-2h8c1.1028,0,2,.8972,2,2v5c0,1.1028-.8972,2-2,2Zm-8-7v5h8v-5h-8Z"}),(0,a.jsx)("path",{d:"M15,23h-5c-1.1028,0-2-.8972-2-2v-4h2v4h5v2Z"}),(0,a.jsx)("path",{d:"M2 13H16V15H2z"}),(0,a.jsx)("path",{d:"M13,11H5c-1.1028,0-2-.8972-2-2V4c0-1.1028,.8972-2,2-2H13c1.1028,0,2,.8972,2,2v5c0,1.1028-.8972,2-2,2ZM5,4v5H13V4H5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,17.26V6A4,4,0,0,0,5,6V17.26a7,7,0,1,0,8,0ZM9,4a2,2,0,0,1,2,2v7H7V6A2,2,0,0,1,9,4ZM9,28a5,5,0,0,1-2.5-9.33l.5-.28V15h4v3.39l.5.28A5,5,0,0,1,9,28Z"}),(0,a.jsx)("path",{d:"M20 4H30V6H20z"}),(0,a.jsx)("path",{d:"M20 10H27V12H20z"}),(0,a.jsx)("path",{d:"M20 16H30V18H20z"}),(0,a.jsx)("path",{d:"M20 22H27V24H20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,18H24a2.0023,2.0023,0,0,1-2-2V6a2.002,2.002,0,0,1,2-2h6V6H24V16h6Z"}),(0,a.jsx)("circle",{cx:"18",cy:"4",r:"2"}),(0,a.jsx)("path",{d:"M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,27H17a2.0023,2.0023,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h9v2H17V25h9Z"}),(0,a.jsx)("path",{d:"M8,13a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,8,13ZM8,7a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,8,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 6 30 4 22 4 22 18 24 18 24 12 29 12 29 10 24 10 24 6 30 6z"}),(0,a.jsx)("circle",{cx:"18",cy:"4",r:"2"}),(0,a.jsx)("path",{d:"M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 11 26 9 15 9 15 27 17 27 17 19 25 19 25 17 17 17 17 11 26 11z"}),(0,a.jsx)("path",{d:"M8,13a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,8,13ZM8,7a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,8,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,30H22a2.0059,2.0059,0,0,1-2-2V21a2.0059,2.0059,0,0,1-2-2V13a2.9465,2.9465,0,0,1,3-3h6a2.9465,2.9465,0,0,1,3,3v6a2.0059,2.0059,0,0,1-2,2v7A2.0059,2.0059,0,0,1,26,30ZM21,12a.9448.9448,0,0,0-1,1v6h2v9h4V19h2V13a.9448.9448,0,0,0-1-1Z"}),(0,a.jsx)("path",{d:"M24,9a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,24,9Zm0-6a2,2,0,1,0,2,2h0a2.0059,2.0059,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M10,20.1839V12H8v8.1839a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.167 16.89 21.72 13 27.167 9.109 29.684 9.948 30.316 8.051 28 7.279 28 5 26 5 26 7.485 21 11.057 21 5.367 23.555 3.664 22.445 2 20 3.63 17.555 2 16.445 3.664 19 5.367 19 11.057 16 8.914 16 11.372 18.28 13 16 14.628 16 17.086 19 14.943 19 21.703 22.445 24 23.555 22.336 21 20.633 21 14.943 26 18.515 26 21 28 21 28 18.721 30.316 17.948 29.684 16.051 27.167 16.89z"}),(0,a.jsx)("path",{d:"M12,23a3,3,0,0,1-6,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 13H30V15H26z"}),(0,a.jsx)("path",{d:"M23.121 5.879H27.121V7.879H23.121z",transform:"rotate(-45 25.121 6.879)"}),(0,a.jsx)("path",{d:"M24.121 19.121H26.121V23.121H24.121z",transform:"rotate(-45 25.121 21.121)"}),(0,a.jsx)("path",{d:"M17 2H19V6H17z"}),(0,a.jsx)("path",{d:"M18,8a6.0365,6.0365,0,0,0-1,.09v2.0518A3.9567,3.9567,0,0,1,18,10a4,4,0,0,1,0,8v2A6,6,0,0,0,18,8Z"}),(0,a.jsx)("path",{d:"M10,20.1839V7H8V20.1839a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,8H24v6h2V11.541A5.939,5.939,0,0,1,28,16a6.0039,6.0039,0,0,1-5.0945,5.9243A7.0273,7.0273,0,0,0,20,17.2617V6a4,4,0,0,0-8,0V17.2617a6.996,6.996,0,1,0,10.9292,6.68A7.9794,7.9794,0,0,0,27.2651,10H30ZM14,6a2,2,0,0,1,4,0v7H14Zm2,22a4.9965,4.9965,0,0,1-2.499-9.3252L14,18.3857V15h4v3.3857l.499.2891A4.9965,4.9965,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M2,10a8.04,8.04,0,0,0,2.7349,6H2v2H8V12H6v2.4592A5.94,5.94,0,0,1,4,10a6.0066,6.0066,0,0,1,6-6V2A8.0092,8.0092,0,0,0,2,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 10H27V12H20z"}),(0,a.jsx)("path",{d:"M20 16H30V18H20z"}),(0,a.jsx)("path",{d:"M20 22H27V24H20z"}),(0,a.jsx)("path",{d:"M10,20.1839V7H8V20.1839a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M30,4H12.9744A4.9829,4.9829,0,0,0,4,7V18.1108a7,7,0,1,0,10,0V7a5.0019,5.0019,0,0,0-.1011-1H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 4H27V6H20z"}),(0,a.jsx)("path",{d:"M20 10H30V12H20z"}),(0,a.jsx)("path",{d:"M20 16H27V18H20z"}),(0,a.jsx)("path",{d:"M12,23a3,3,0,0,1-6,0Z"}),(0,a.jsx)("path",{d:"M30,22H15.9192A7.0107,7.0107,0,0,0,14,18.1108V7A5,5,0,0,0,4,7V18.1108A6.9946,6.9946,0,1,0,15.92,24H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,9a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,9V7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,4a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,4a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,7H13V6A4,4,0,0,0,5,6V17.2617A7.0126,7.0126,0,1,0,13.8735,18H14a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,18V16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,13a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,13a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,16H13V9ZM7,6a2,2,0,0,1,4,0v6H7ZM9,28a4.9965,4.9965,0,0,1-2.499-9.3252L7,18.3857V14h4v4.3857l.499.2891A4.9965,4.9965,0,0,1,9,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,6v4H6V6H26m0-2H6A2,2,0,0,0,4,6v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M10,16V26H6V16h4m0-2H6a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M26,16V26H16V16H26m0-2H16a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("rect",{width:"4",height:"4",x:"20",y:"2",rx:"2"}),(0,a.jsx)("path",{d:"M11,16a1,1,0,0,1-.707-1.707l7-7a1,1,0,1,1,1.414,1.414l-7,7A.9962.9962,0,0,1,11,16Z"}),(0,a.jsx)("path",{d:"M23.707,24.293a8.3948,8.3948,0,0,0-4.72-2.209c.1992-.1641.3931-.3364.5777-.521a9.2447,9.2447,0,0,0,1.7334-9.9141l-1.8768.6973c1.11,2.9805.6346,5.8975-1.2722,7.8022a6.6964,6.6964,0,0,1-5.561,1.8047,9.7746,9.7746,0,0,1-5.771-2.7856c-2.9727-2.97-4.0759-8.2276-.9805-11.32,1.9068-1.9053,4.8267-2.38,7.8094-1.271l.6987-1.875C10.6616,3.333,6.8591,3.9961,4.4207,6.4331c-3.9427,3.9385-2.6761,10.4956.98,14.1489a11.8136,11.8136,0,0,0,6.9766,3.36c.21.022.4153.0234.6223.0332V24h4.9968a6.8463,6.8463,0,0,1,4.2962,1.707L26.5859,30,28,28.5859Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,4a8.9812,8.9812,0,0,0-8.1687,12.7549L2,25.5859,3.4141,27l8.4873-8.4873a9.0408,9.0408,0,0,0,1.5859,1.5859L10,23.5859,11.4141,25l3.8313-3.8311A8.9959,8.9959,0,1,0,19,4Zm6.9058,7.9058a7.005,7.005,0,0,1-5.8116-5.8116A7.005,7.005,0,0,1,25.9058,11.9058ZM12.0942,14.0942a7.005,7.005,0,0,1,5.8116,5.8116A7.005,7.005,0,0,1,12.0942,14.0942ZM19.93,19.9307a9.01,9.01,0,0,0-7.8611-7.8614,7.004,7.004,0,0,1,6-6,9.01,9.01,0,0,0,7.8611,7.8614A7.004,7.004,0,0,1,19.93,19.9307Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,26H25V24h3V8H25V6h3a2.0023,2.0023,0,0,1,2,2V24A2.0027,2.0027,0,0,1,28,26Z"}),(0,a.jsx)("circle",{cx:"23",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"9",cy:"16",r:"2"}),(0,a.jsx)("path",{d:"M7,26H4a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,4,6H7V8H4V24H7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,25h-3v-2h3V7h-3v-2h3c1.1025,0,2,.897,2,2v16c0,1.1025-.8975,2-2,2Z"}),(0,a.jsx)("circle",{cx:"23",cy:"15",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"16",cy:"15",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"9",cy:"15",r:"2",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4,17V7h3v-2h-3c-1.103,0-2,.897-2,2v10h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,2v4H6V6ZM6,26V12H26V26Z",transform:"translate(0 .01)"}),(0,a.jsx)("path",{d:"M10.76 16.18 13.58 19.01 10.76 21.84 12.17 23.25 16.41 19.01 12.17 14.77 10.76 16.18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 21H16V23H10z"}),(0,a.jsx)("path",{d:"M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,2v4H6V6ZM6,26V12H26V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 9.2 20.4 6.6 19 8 23 12 30 5 28.6 3.6z"}),(0,a.jsx)("path",{d:"M12 5.4 10.6 4 8 6.6 5.4 4 4 5.4 6.6 8 4 10.6 5.4 12 8 9.4 10.6 12 12 10.6 9.4 8z"}),(0,a.jsx)("path",{d:"M12 21.4 10.6 20 8 22.6 5.4 20 4 21.4 6.6 24 4 26.6 5.4 28 8 25.4 10.6 28 12 26.6 9.4 24z"}),(0,a.jsx)("path",{d:"M17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 6H26V8H6z"}),(0,a.jsx)("path",{d:"M10 12H22V14H10z"}),(0,a.jsx)("path",{d:"M6 18H26V20H6z"}),(0,a.jsx)("path",{d:"M10 24H22V26H10z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 6H26V8H6z"}),(0,a.jsx)("path",{d:"M6 12H26V14H6z"}),(0,a.jsx)("path",{d:"M6 18H26V20H6z"}),(0,a.jsx)("path",{d:"M6 24H26V26H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12 6H26V8H12z"}),(0,a.jsx)("path",{d:"M12 12H22V14H12z"}),(0,a.jsx)("path",{d:"M12 18H26V20H12z"}),(0,a.jsx)("path",{d:"M12 24H22V26H12z"}),(0,a.jsx)("path",{d:"M6 4H8V28H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,4H9V6h5V8H10a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V6A2.0023,2.0023,0,0,0,14,4Zm0,8H10V10h4Z"}),(0,a.jsx)("path",{d:"M22 26 22 18 20 18 20 19 18 19 18 21 20 21 20 26 18 26 18 28 24 28 24 26 22 26z"}),(0,a.jsx)("path",{d:"M2 2H4V16H2z"}),(0,a.jsx)("path",{d:"M28 16H30V30H28z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 6H20V8H6z"}),(0,a.jsx)("path",{d:"M10 12H20V14H10z"}),(0,a.jsx)("path",{d:"M6 18H20V20H6z"}),(0,a.jsx)("path",{d:"M10 24H20V26H10z"}),(0,a.jsx)("path",{d:"M24 4H26V28H24z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M1 8 1 10 7 10 7 24 9 24 9 10 15 10 15 8 1 8z"}),(0,a.jsx)("path",{d:"M17 8 17 10 23 10 23 24 25 24 25 10 31 10 31 8 17 8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.25,25H9V7h8.5a5.25,5.25,0,0,1,4,8.65A5.25,5.25,0,0,1,18.25,25ZM12,22h6.23a2.25,2.25,0,1,0,0-4.5H12Zm0-7.5h5.5a2.25,2.25,0,1,0,0-4.5H12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.4384,16.5715l-7.985-7.9856a2.0014,2.0014,0,0,0-2.8291,0l-5.3584,5.3584L9,2H7L2,16H4l.999-3h6l.8035,2.4077L4.5858,22.6244a2,2,0,0,0,0,2.8282L9.1316,30h9.5908l10.716-10.717A1.9173,1.9173,0,0,0,29.4384,16.5715ZM5.6653,11l2.331-7,2.3355,7Zm12.229,17H9.96L6,24.0381l6.3123-6.3115L20.24,25.6538Zm3.76-3.76-7.9275-7.9272L20.0393,10l7.9268,7.9272Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,21h2L17,4H15L8,21h2l1.61-4h8.74Zm-9.57-6,3.44-8.37h.26L19.54,15Z"}),(0,a.jsx)("path",{d:"M6 24H26V28H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,22.14V9.86A4,4,0,1,0,22.14,5H9.86A4,4,0,1,0,5,9.86V22.14A4,4,0,1,0,9.86,27H22.14A4,4,0,1,0,27,22.14ZM26,4a2,2,0,1,1-2,2A2,2,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2,2,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2,2,0,0,1,6,28Zm16.14-3H9.86A4,4,0,0,0,7,22.14V9.86A4,4,0,0,0,9.86,7H22.14A4,4,0,0,0,25,9.86V22.14A4,4,0,0,0,22.14,25ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),(0,a.jsx)("path",{d:"M21 11 11 11 11 13 15 13 15 22 17 22 17 13 21 13 21 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H28V30H4z"}),(0,a.jsx)("path",{d:"M26,14.54a1,1,0,0,0-.25-.69L17.17,4.33A1.09,1.09,0,0,0,17,4.2V2H15V5L4.32,14.74a1,1,0,0,0-.06,1.41l8.57,9.52a1,1,0,0,0,.69.33h.05a1,1,0,0,0,.68-.26L24,16.8V21a1,1,0,0,0,2,0V14.57S26,14.55,26,14.54Zm-12.35,9-7.23-8L15,7.67V12h2V7.13l6.59,7.33Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,12H20v2h5a1.0008,1.0008,0,0,1,1,1v2H22a3.0033,3.0033,0,0,0-3,3v1a3.0033,3.0033,0,0,0,3,3h6V15A3.0033,3.0033,0,0,0,25,12ZM22,22a1.0008,1.0008,0,0,1-1-1V20a1.0008,1.0008,0,0,1,1-1h4v3Z"}),(0,a.jsx)("path",{d:"M16,24h2L12,7H10L4,24H6l1.6936-5h6.6135ZM8.3711,17l2.4966-7.3711.2668.0005L13.63,17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 7 2 9 9 9 9 25 11 25 11 9 18 9 18 7 2 7z"}),(0,a.jsx)("path",{d:"M30 11.076 29.256 9.219 26 10.522 26 7 24 7 24 10.523 20.744 9.22 20 11.077 23.417 12.444 20.9 15.8 22.5 17 25 13.667 27.5 17 29.1 15.8 26.583 12.443 30 11.076z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,15H5a3,3,0,0,1-3-3V10A3,3,0,0,1,5,7h5V5A1,1,0,0,0,9,4H3V2H9a3,3,0,0,1,3,3ZM5,9a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1h5V9Z"}),(0,a.jsx)("path",{d:"M20,23v2a1,1,0,0,0,1,1h5V22H21A1,1,0,0,0,20,23Z"}),(0,a.jsx)("path",{d:"M2,30H30V2Zm26-2H21a3,3,0,0,1-3-3V23a3,3,0,0,1,3-3h5V18a1,1,0,0,0-1-1H19V15h6a3,3,0,0,1,3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 6H28V8H14z"}),(0,a.jsx)("path",{d:"M14 12H28V14H14z"}),(0,a.jsx)("path",{d:"M7 18H28V20H7z"}),(0,a.jsx)("path",{d:"M7 24H28V26H7z"}),(0,a.jsx)("path",{d:"M4 13.59 7.29 10 4 6.41 5.42 5 10.04 10 5.42 15 4 13.59z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 6H12V8H2z"}),(0,a.jsx)("path",{d:"M5 12H12V14H5z"}),(0,a.jsx)("path",{d:"M2 18H12V20H2z"}),(0,a.jsx)("path",{d:"M5 24H12V26H5z"}),(0,a.jsx)("path",{d:"M16 4H18V28H16z"}),(0,a.jsx)("path",{d:"M28.15 23.5 29.56 22.12 23.27 16 29.56 9.88 28.15 8.5 20.44 16 28.15 23.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 6H30V8H20z"}),(0,a.jsx)("path",{d:"M20 12H27V14H20z"}),(0,a.jsx)("path",{d:"M20 18H30V20H20z"}),(0,a.jsx)("path",{d:"M20 24H27V26H20z"}),(0,a.jsx)("path",{d:"M14 4H16V28H14z"}),(0,a.jsx)("path",{d:"M3.85 22.5 2.44 21.12 8.73 15 2.44 8.88 3.85 7.5 11.56 15 3.85 22.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 9 25 7 12 7 12 9 17.14 9 12.77 23 7 23 7 25 20 25 20 23 14.86 23 19.23 9 25 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 24 18.83 24 21.12 21.71 19.71 20.29 15 25 19.71 29.71 21.12 28.29 18.83 26 30 26 30 24z"}),(0,a.jsx)("path",{d:"M14 21 20 4 18 4 12 21 14 21z"}),(0,a.jsx)("path",{d:"M13 4 9 16 5 4 3 4 8 18 10 18 15 4 13 4z"}),(0,a.jsx)("path",{d:"M28,18h2L25,4H23L18,18h2l1-3h6Zm-6.33-5L24,6l2.33,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 13H30V15H14z"}),(0,a.jsx)("path",{d:"M15 28H30V30H15z"}),(0,a.jsx)("path",{d:"M25.85,27H28L23.64,17H21.36L17,27h2.15l.8-2h5.1Zm-5.1-4,1.75-4.37L24.25,23Z"}),(0,a.jsx)("path",{d:"M25.85,12H28L23.64,2H21.36L17,12h2.15l.8-2h5.1Zm-5.1-4L22.5,3.63,24.25,8Z"}),(0,a.jsx)("path",{d:"M6 15.83 8.58 18.41 10 17 6 13 2 17 3.41 18.42 6 15.83z"}),(0,a.jsx)("path",{d:"M6 27.17 3.42 24.59 2 26 6 30 10 26 8.59 24.58 6 27.17z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 6H30V8H17z"}),(0,a.jsx)("path",{d:"M17 12H27V14H17z"}),(0,a.jsx)("path",{d:"M17 18H30V20H17z"}),(0,a.jsx)("path",{d:"M17 24H27V26H17z"}),(0,a.jsx)("path",{d:"M11.59 13.41 8 9.83 8 9.83 4.41 13.42 3 12 8 7 13 12 11.59 13.41z"}),(0,a.jsx)("path",{d:"M11.59 18.59 8 22.17 8 22.17 4.41 18.58 3 20 8 25 13 20 11.59 18.59z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 24H20V26H6z"}),(0,a.jsx)("path",{d:"M6 18H26V20H6z"}),(0,a.jsx)("path",{d:"M6 12H26V14H6z"}),(0,a.jsx)("path",{d:"M6 6H26V8H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.5859,14.4141,24.1719,18H6V8H4V18a2.0024,2.0024,0,0,0,2,2H24.1719L20.586,23.5859,22,25l6-6-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 5 30 8 22 8 22 26 19 26 19 8 11 8 11 5 30 5z"}),(0,a.jsx)("path",{d:"M7 26 7 14 2 14 2 12 14 12 14 14 9 14 9 26 7 26z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,27H21a3,3,0,0,1-3-3V22a3,3,0,0,1,3-3h5V17a1,1,0,0,0-1-1H19V14h6a3,3,0,0,1,3,3Zm-7-6a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1h5V21Z"}),(0,a.jsx)("path",{d:"M13,7h3V5H13a4,4,0,0,0-3,1.38A4,4,0,0,0,7,5H4V7H7A2,2,0,0,1,9,9v5H5v2H9v7a2,2,0,0,1-2,2H4v2H7a4,4,0,0,0,3-1.38A4,4,0,0,0,13,27h3V25H13a2,2,0,0,1-2-2V16h4V14H11V9A2,2,0,0,1,13,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 18H20V20H6z"}),(0,a.jsx)("path",{d:"M6 12H26V14H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 27 23 15 18 15 18 13 30 13 30 15 25 15 25 27 23 27z"}),(0,a.jsx)("path",{d:"M11 27 11 8 2 8 2 6 22 6 22 8 13 8 13 27 11 27z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,15H17.9563c-.4522-.1237-.9037-.2324-1.3381-.3352-2.8077-.6641-4.396-1.1506-4.396-3.4231a2.8684,2.8684,0,0,1,.7866-2.145,4.7888,4.7888,0,0,1,3.0137-1.09c2.8291-.07,4.1347.8894,5.2011,2.35l1.6153-1.1792a7.4727,7.4727,0,0,0-6.83-3.1706,6.7726,6.7726,0,0,0-4.4,1.6611,4.8274,4.8274,0,0,0-1.3862,3.5735A4.3723,4.3723,0,0,0,11.9573,15H4v2H17.6519c1.9668.57,3.1432,1.3123,3.1733,3.3579a3.119,3.119,0,0,1-.8623,2.3931A5.8241,5.8241,0,0,1,16.2432,24a6.6344,6.6344,0,0,1-5.1451-2.6912L9.5649,22.593A8.5262,8.5262,0,0,0,16.2119,26c.0088-.0012.042,0,.1,0A7.67,7.67,0,0,0,21.36,24.1812a5.0779,5.0779,0,0,0,1.4648-3.8531A4.952,4.952,0,0,0,21.6753,17H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 25 20 25 20 19 24 19 24 17 20 17 20 15 26 15 26 21 22 21 22 23 26 23 26 25z"}),(0,a.jsx)("path",{d:"M5 7 5 9 12 9 12 25 14 25 14 9 21 9 21 7 5 7z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29 17 23 17 23 11 27 11 27 9 23 9 23 7 29 7 29 13 25 13 25 15 29 15 29 17z"}),(0,a.jsx)("path",{d:"M4 7 4 9 11 9 11 25 13 25 13 9 20 9 20 7 4 7z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.29 19.29 23.88 20.71 26.17 23 5.83 23 8.12 20.71 6.71 19.29 2 24 6.71 28.71 8.12 27.29 5.83 25 26.17 25 23.88 27.29 25.29 28.71 30 24 25.29 19.29z"}),(0,a.jsx)("path",{d:"M26,17h2L23,3H21L16,17h2l1-3h6Zm-6.33-5L22,5l2.33,7Z"}),(0,a.jsx)("path",{d:"M14 3 10 15 6 3 4 3 9 17 11 17 16 3 14 3z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H28V28H4z"}),(0,a.jsx)("path",{d:"M16,23a7,7,0,0,1-7-7V5h2V16a5,5,0,0,0,10,0V5h2V16A7,7,0,0,1,16,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 28H30V30H16z"}),(0,a.jsx)("path",{d:"M16 23H30V25H16z"}),(0,a.jsx)("path",{d:"M10.8458,30H13L8.64,20H6.36L2,30H4.1542l.8-2h5.0916ZM5.7541,26,7.5,21.6347,9.2459,26Z"}),(0,a.jsx)("path",{d:"M2 15H30V17H2z"}),(0,a.jsx)("path",{d:"M16 7H30V9H16z"}),(0,a.jsx)("path",{d:"M16 2H30V4H16z"}),(0,a.jsx)("path",{d:"M10.8458,12H13L8.64,2H6.36L2,12H4.1542l.8-2h5.0916ZM5.7541,8,7.5,3.6347,9.2459,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 23H12V25H4z"}),(0,a.jsx)("path",{d:"M24.5232,14H4v2H24.5a3.5,3.5,0,0,1,0,7H18.8281l2.586-2.5859L20,19l-5,5,5,5,1.4141-1.4141L18.8281,25H24.533a5.5,5.5,0,0,0-.01-11Z"}),(0,a.jsx)("path",{d:"M4 5H28V7H4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.537,13.76,26.24,10.463a1.5862,1.5862,0,0,0-2.24,0L10,24.4674V30h5.5326L29.537,16a1.5862,1.5862,0,0,0,0-2.24ZM14.7042,28H12V25.2958l9.4409-9.4409,2.7042,2.7042ZM25.5591,17.145,22.855,14.4409l2.2672-2.2672,2.7042,2.7042Z"}),(0,a.jsx)("path",{d:"M11 17 13 17 13 10 16 10 16 8 8 8 8 10 11 10 11 17z"}),(0,a.jsx)("path",{d:"M8,20H4V4H20V8h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.7061,27.585a5.2615,5.2615,0,0,1-3.7227-8.9834l1.415,1.414a3.2638,3.2638,0,1,0,4.6153,4.6162l6.03-6.03a3.264,3.264,0,0,0-4.6162-4.6158l-1.414-1.414a5.2637,5.2637,0,0,1,7.4443,7.4438l-6.03,6.03A5.2461,5.2461,0,0,1,18.7061,27.585Z"}),(0,a.jsx)("path",{d:"M10.2642,29.9971A5.2619,5.2619,0,0,1,6.542,21.0137l6.03-6.03a5.2636,5.2636,0,1,1,7.4438,7.4438l-1.414-1.414a3.2639,3.2639,0,1,0-4.6158-4.6158l-6.03,6.03a3.264,3.264,0,0,0,4.6157,4.6162l1.414,1.4141A5.2452,5.2452,0,0,1,10.2642,29.9971Z"}),(0,a.jsx)("path",{d:"M2 10H10V12H2z"}),(0,a.jsx)("path",{d:"M2 6H14V8H2z"}),(0,a.jsx)("path",{d:"M2 2H14V4H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 10H16V12H8z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 2H20V4H8z"}),(0,a.jsx)("path",{d:"M4.7111,28l5.6312-9.9961,7.4341,6.49A2,2,0,0,0,20.86,23.96l6.9707-10.4034-1.6622-1.1132-7,10.4472-.07.1035-7.4345-6.4907a2.0032,2.0032,0,0,0-3.0806.5308L4,25.1826V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 28H26V30H18z"}),(0,a.jsx)("path",{d:"M18 24H30V26H18z"}),(0,a.jsx)("path",{d:"M18 20H30V22H18z"}),(0,a.jsx)("path",{d:"M16.001 26.473 16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.001 26.473 16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z"}),(0,a.jsx)("path",{d:"M20 19 27 24 20 29 20 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,25a6.9908,6.9908,0,0,1-5.833-3.1287l1.666-1.1074a5.0007,5.0007,0,0,0,8.334,0l1.666,1.1074A6.9908,6.9908,0,0,1,20,25Z"}),(0,a.jsx)("path",{d:"M24,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,24,14Z"}),(0,a.jsx)("path",{d:"M16,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,16,14Z"}),(0,a.jsx)("path",{d:"M28,8H22V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V14a10.01,10.01,0,0,0,8.8027,9.9214A9.9989,9.9989,0,0,0,30,20V10A2.0023,2.0023,0,0,0,28,8ZM4,14V4H20V8H12a2.0023,2.0023,0,0,0-2,2V20a9.9628,9.9628,0,0,0,.168,1.78A8.0081,8.0081,0,0,1,4,14Zm24,6a8,8,0,0,1-16,0V10H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M7 5.828 7 24 9 24 9 5.828 12.586 9.414 14 8 8 2 2 8 3.414 9.414 7 5.828z"}),(0,a.jsx)("path",{d:"M23 5.828 23 24 25 24 25 5.828 28.586 9.414 30 8 24 2 18 8 19.414 9.414 23 5.828z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM6,6H26V16H24v2h2v2H24v2h2v2H24v2H22V24H20v2H18V24H16v2H14V24H12v2H10V24H8v2H6Z"}),(0,a.jsx)("path",{d:"M8 20H10V22H8z"}),(0,a.jsx)("path",{d:"M12 20H14V22H12z"}),(0,a.jsx)("path",{d:"M16 20H18V22H16z"}),(0,a.jsx)("path",{d:"M20 20H22V22H20z"}),(0,a.jsx)("path",{d:"M8 16H10V18H8z"}),(0,a.jsx)("path",{d:"M16 16H18V18H16z"}),(0,a.jsx)("path",{d:"M20 16H22V18H20z"}),(0,a.jsx)("path",{d:"M20 12H22V14H20z"}),(0,a.jsx)("path",{d:"M20 8H22V10H20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,30H4a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,30ZM4,24v4H8V24Z"}),(0,a.jsx)("path",{d:"M18,30H14a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,30H24a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,20H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H28a2,2,0,0,1,2,2V18A2,2,0,0,1,28,20ZM4,4V18H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,30H4a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,30ZM4,24v4H8V24Z"}),(0,a.jsx)("path",{d:"M18,30H14a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,30H24a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M8,20H4a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,20ZM4,14v4H8V14Z"}),(0,a.jsx)("path",{d:"M18,20H14a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,20Zm-4-6v4h4V14Z"}),(0,a.jsx)("path",{d:"M28,20H24a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,20Zm-4-6v4h4V14Z"}),(0,a.jsx)("path",{d:"M8,10H4A2,2,0,0,1,2,8V4A2,2,0,0,1,4,2H8a2,2,0,0,1,2,2V8A2,2,0,0,1,8,10ZM4,4V8H8V4Z"}),(0,a.jsx)("path",{d:"M18,10H14a2,2,0,0,1-2-2V4a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V8A2,2,0,0,1,18,10ZM14,4V8h4V4Z"}),(0,a.jsx)("path",{d:"M28,10H24a2,2,0,0,1-2-2V4a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V8A2,2,0,0,1,28,10ZM24,4V8h4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,12H4a2.0023,2.0023,0,0,0-2,2V28a2.002,2.002,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V14A2.0027,2.0027,0,0,0,28,12ZM20,28H12V27a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Zm8,0H22V27a3.0033,3.0033,0,0,0-3-3H13a3.0033,3.0033,0,0,0-3,3v1H4V14H28.002Z"}),(0,a.jsx)("path",{d:"M16,23a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,16,23Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,16,17Z"}),(0,a.jsx)("path",{d:"M30,4V8a2.0027,2.0027,0,0,1-2,2H24a2.0027,2.0027,0,0,1-2-2V4a2.0027,2.0027,0,0,1,2-2h4A2.0027,2.0027,0,0,1,30,4ZM28,8l.002-4H24V8Z"}),(0,a.jsx)("path",{d:"M20,4V8a2.0027,2.0027,0,0,1-2,2H14a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h4A2.0027,2.0027,0,0,1,20,4ZM18,8l.002-4H14V8Z"}),(0,a.jsx)("path",{d:"M10,4V8a2.0023,2.0023,0,0,1-2,2H4A2.0023,2.0023,0,0,1,2,8V4A2.0023,2.0023,0,0,1,4,2H8A2.0023,2.0023,0,0,1,10,4ZM8,8l.0015-4H4V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,16V9a7.0078,7.0078,0,0,0-7-7H2V16H8.4648l3.5774,5.3662.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H17a3.0033,3.0033,0,0,0,3-3V20h6A4.0045,4.0045,0,0,0,30,16ZM8,14H4V4H8Zm20,2a2.0025,2.0025,0,0,1-2,2H18v8a1.0008,1.0008,0,0,1-1,1H14.8672l-.9094-6.3662L10,14.6973V4H23a5.0057,5.0057,0,0,1,5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 2H7V16H2z"}),(0,a.jsx)("path",{d:"M23,2H9V16.8027l3.0422,4.5635.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H15a3.0033,3.0033,0,0,0,3-3V20h8a4.0045,4.0045,0,0,0,4-4V9A7.0078,7.0078,0,0,0,23,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,12H20V6a3.0033,3.0033,0,0,0-3-3H14.8672a2.0094,2.0094,0,0,0-1.98,1.7173l-.8453,5.9165L8.4648,16H2V30H23a7.0078,7.0078,0,0,0,7-7V16A4.0045,4.0045,0,0,0,26,12ZM8,28H4V18H8Zm20-5a5.0057,5.0057,0,0,1-5,5H10V17.3027l3.9578-5.9365L14.8672,5H17a1.0008,1.0008,0,0,1,1,1v8h8a2.0025,2.0025,0,0,1,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 16H7V30H2z"}),(0,a.jsx)("path",{d:"M23,30H9V15.1973l3.0422-4.5635.8453-5.9165A2.0094,2.0094,0,0,1,14.8672,3H15a3.0033,3.0033,0,0,1,3,3v6h8a4.0045,4.0045,0,0,1,4,4v7A7.0078,7.0078,0,0,1,23,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.7637,13.9999h-5.7637l-.0024-4.4316c0-2.1011-1.2324-3.5684-2.9976-3.5684h-1c-1.5273,0-1.7539,1.5273-1.8755,2.3477-.0225.1509-.6826,4.8052-.6826,4.8052l-2.0431,3.8472H2v13h16.3325c3.6763,0,6.6675-2.9912,6.6675-6.6675v-5.103c0-2.3369-1.8989-4.2295-4.2363-4.2295h0ZM4,27.9999v-9h1.9998l-.0017,9h-1.9981ZM23,23.3324c0,2.5737-2.0938,4.6675-4.6675,4.6675h-10.3325v-9.751l2.3735-4.4692s.7983-5.6035.8433-5.7798h.7832c.9697,0,.9976,1.4077.9976,1.5684l.0024,6.4316h7.7637c1.2344,0,2.2363.9951,2.2363,2.2295v5.103ZM31,13.2295v5.103c0,2.321-1.194,4.3667-2.9983,5.5613l-1.0042-1.7393c1.2073-.8446,2.0024-2.2402,2.0024-3.8221v-5.103c0-1.2344-1.0019-2.2295-2.2363-2.2295h-7.7637l-.0024-6.4315c0-.1608-.0279-1.5685-.9976-1.5685h-.7832c-.0174.0681-.1475.948-.3002,2.0001h-2.0273c.1234-.8691.2266-1.5944.2352-1.6523.1216-.8206.3482-2.3478,1.8755-2.3478h1c1.7652,0,2.9976,1.4673,2.9976,3.5685l.0024,4.4315h5.7637c2.3374.0001,4.2363,1.8927,4.2363,4.2296Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,13.2295v5.103c0,2.7286-1.6495,5.0769-4.0023,6.1077v-8.2107c0-2.3369-2.1663-4.2478-4.2363-4.2295h-5.7637s-.0024-3.4316-.0024-3.4316c-.0933-2.0102-1.1168-3.4102-2.1021-3.5719.0672-.4727.2256-1.6102.2313-1.6488.1216-.8206.3482-2.3478,1.8755-2.3478h1c1.7652,0,2.9976,1.4673,2.9976,3.5685l.0024,4.4315h5.7637c2.3374.0001,4.2363,1.8927,4.2363,4.2296ZM20.7614,14h0s-5.7637-.0001-5.7637-.0001l-.0024-4.4315c0-2.1012-1.2324-3.5685-2.9976-3.5685h-1c-1.5273,0-1.7539,1.5272-1.8755,2.3478-.0225.1509-.6826,4.8052-.6826,4.8052l-1.4423,2.7158-.0019,14.1313h11.3348c3.6763,0,6.6675-2.9912,6.6675-6.6675v-5.103c0-2.3369-1.8989-4.2295-4.2363-4.2295ZM4.9951,30l.0026-13H1.9977v13s2.9974,0,2.9974,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z"}),(0,a.jsx)("path",{d:"M15.87 30.5 14.13 29.5 17.28 24 11.28 24 16.13 15.5 17.87 16.5 14.72 22 20.72 22 15.87 30.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.338 30 11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z"}),(0,a.jsx)("path",{d:"M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11Zm-4.0732,3.4893a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z"}),(0,a.jsx)("path",{d:"M26.732 16.233H29.732V18.233H26.732z",transform:"rotate(225 28.232 17.233)"}),(0,a.jsx)("path",{d:"M29 10H32V12H29z"}),(0,a.jsx)("path",{d:"M26.732 3.768H29.732V5.768H26.732z",transform:"rotate(-45 28.232 4.768)"}),(0,a.jsx)("path",{d:"M20 0H22V3H20z"}),(0,a.jsx)("path",{d:"M12.268 3.768H15.268V5.768H12.268z",transform:"rotate(225 13.768 4.768)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.338 30 11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z"}),(0,a.jsx)("path",{d:"M29.844,13.0347a1.52,1.52,0,0,0-1.231-.8658,5.3562,5.3562,0,0,1-3.4094-1.7158A6.4652,6.4652,0,0,1,23.9187,4.06a1.6039,1.6039,0,0,0-.3-1.5459,1.4547,1.4547,0,0,0-1.3591-.4922l-.0191.0039a7.8544,7.8544,0,0,0-6.1054,6.48A7.3725,7.3725,0,0,0,13.5,8a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9549,5.9549,0,0,0,5.88-7.1455,7.502,7.502,0,0,0,4.8669-3.3A1.537,1.537,0,0,0,29.844,13.0347Zm-5.6926,2.9179a5.9658,5.9658,0,0,0-3.502-2.7085A7.5084,7.5084,0,0,0,18.0288,9.55a6.0085,6.0085,0,0,1,3.77-5.3335,8.4582,8.4582,0,0,0,1.9392,7.5967A7.4037,7.4037,0,0,0,27.64,14.041,5.4419,5.4419,0,0,1,24.1514,15.9526Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7887.8947l-2,4A.9981.9981,0,0,1,21,30Z"}),(0,a.jsx)("path",{d:"M9,32a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7887.8947l-2,4A.9981.9981,0,0,1,9,32Z"}),(0,a.jsx)("path",{d:"M15.901 30.496 14.165 29.504 17.309 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z"}),(0,a.jsx)("path",{d:"M27.9516,15A4.399,4.399,0,0,1,28,15.5,4.5049,4.5049,0,0,1,23.5,20H23v2h.5A6.5075,6.5075,0,0,0,30,15.5c0-.17-.0312-.333-.0444-.5Z"}),(0,a.jsx)("path",{fill:"none",d:"M25.75,8h-1.5V4h1.5ZM25,9a1,1,0,1,0,1,1A1,1,0,0,0,25,9Z"}),(0,a.jsx)("path",{d:"M31.9115,11.9355,25.6283.3706a.7181.7181,0,0,0-1.2568,0L18.0883,11.9355A.72.72,0,0,0,18.72,13H31.28A.72.72,0,0,0,31.9115,11.9355ZM24.25,4h1.5V8h-1.5ZM25,11a1,1,0,1,1,1-1A1,1,0,0,1,25,11Z"}),(0,a.jsx)("path",{d:"M8.144,11.019l.8154-.0639.0991-.812a6.9863,6.9863,0,0,1,9.97-5.45L20,2.9468A8.9777,8.9777,0,0,0,7.2,9.1362,6.4929,6.4929,0,0,0,7.43,21.9043L6.1059,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.4471-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.3559-8.981Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,21,30Z"}),(0,a.jsx)("path",{d:"M9,32a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,9,32Z"}),(0,a.jsx)("path",{d:"M15.901 30.496 14.165 29.504 17.31 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z"}),(0,a.jsx)("path",{d:"M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0,6.4929,6.4929,0,0,0,.23,12.7681L6.106,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.447-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20H23v2h.5A6.4974,6.4974,0,0,0,24.8008,9.1362Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,14a1,1,0,0,0,1-1V8a2,2,0,0,0-2-2H4A2,2,0,0,0,2,8v5a1,1,0,0,0,1,1,2,2,0,0,1,0,4,1,1,0,0,0-1,1v5a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19a1,1,0,0,0-1-1,2,2,0,0,1,0-4Zm-1,5.87V24H21V21H19v3H4V19.87a4,4,0,0,0,0-7.74V8H19v3h2V8h7v4.13a4,4,0,0,0,0,7.74Z"}),(0,a.jsx)("path",{d:"M19 13H21V19H19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 7 9 2 4 7 5.413 8.416 8 5.833 8 14 10 14 10 5.833 12.586 8.414 14 7z"}),(0,a.jsx)("path",{d:"M26.586 7.586 24 10.167 24 2 22 2 22 10.167 19.413 7.584 18 9 23 14 28 9 26.586 7.586z"}),(0,a.jsx)("path",{d:"M20,20a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,17a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,20a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,8,17a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,4,20H2v2H4a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,20,22H30V20Z"}),(0,a.jsx)("path",{d:"M28,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,24,25a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,20,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,25a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,28H2v2H12a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,28,30h2V28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z"}),(0,a.jsx)("path",{d:"M12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11z"}),(0,a.jsx)("path",{d:"M2 11 5 11 5 23 7 23 7 11 10 11 10 9 2 9 2 11z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},i){return 20===t||"20"===t||"20px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,19c-5,0-9-4-9-9s4-9,9-9s9,4,9,9S15,19,10,19z M10,2.3c-4.3,0-7.7,3.5-7.7,7.7s3.5,7.7,7.7,7.7s7.7-3.5,7.7-7.7 S14.3,2.3,10,2.3z"}),(0,a.jsx)("path",{d:"M13 13.9 9.4 10.3 9.4 4 10.6 4 10.6 9.7 13.9 13z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z"}),(0,a.jsx)("path",{d:"M20.59 22 15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16,2c-7.6001,0-14,6.3999-14,14s6.3999,14,14,14,14-6.3999,14-14S23.6001,2,16,2Zm4.5872,20l-5.5872-5.5898V7h2v8.582l5,5.0044-1.4128,1.4136Z"}),(0,a.jsx)("path",{fill:"none",d:"M20.5872 22 15 16.4099 15 7 17 7 17 15.5822 22 20.5866 20.5872 22z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.586 13 21 10.414 21 6 23 6 23 9.586 25 11.586 23.586 13z"}),(0,a.jsx)("path",{d:"M22,18a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,22,18ZM22,4a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,22,4Z"}),(0,a.jsx)("path",{d:"M8.63,18l7,6H30V22H16.37l-7-6H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H4V18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 11H17V20H15z"}),(0,a.jsx)("path",{d:"M13 2H19V4H13z"}),(0,a.jsx)("path",{d:"M28,9,26.58,7.59,24.33,9.84a10.94,10.94,0,1,0,1.18,1.65ZM16,26a9,9,0,1,1,9-9A9,9,0,0,1,16,26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"24",r:"1",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m30,12c0-1.8237-1.2344-3.3496-2.9062-3.8286L7.2087,2.207c-.3838-.123-.7847-.207-1.2087-.207-2.2056,0-4,1.7944-4,4,0,.6025.1438,1.1689.3835,1.6816l8.1016,18.6782c.9185,2.1382,3.0442,3.6401,5.5149,3.6401,2.252,0,4.2161-1.249,5.2422-3.0889l8.002-12.5894c.4712-.6562.7559-1.4541.7559-2.3218Zm-14,6c-2.4155,0-4.4971,1.438-5.4475,3.5005l-5.0149-11.5474c.1536.0181.3042.0469.4624.0469,2.2056,0,4-1.7944,4-4,0-.3193-.0474-.6255-.1182-.9233l13.3882,4.0161c-.7771.73-1.27,1.7593-1.27,2.9072,0,2.1465,1.7029,3.8896,3.8267,3.9824l-4.0593,6.3809c-.7148-2.5146-3.0271-4.3633-5.7673-4.3633Zm12-6c0,1.1025-.8972,2-2,2s-2-.8975-2-2,.8972-2,2-2,2,.8975,2,2ZM6,4c1.1028,0,2,.8975,2,2s-.8972,2-2,2-2-.8975-2-2,.8972-2,2-2Zm10,24c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8h-12c-4.4,0-8,3.6-8,8s3.6,8,8,8h12c4.4,0,8-3.6,8-8s-3.6-8-8-8ZM10,20c-2.2,0-4-1.8-4-4s1.8-4,4-4,4,1.8,4,4-1.8,4-4,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,24h12c4.4,0,8-3.6,8-8s-3.6-8-8-8h-12c-4.4,0-8,3.6-8,8s3.6,8,8,8ZM22,12c2.2,0,4,1.8,4,4s-1.8,4-4,4-4-1.8-4-4,1.8-4,4-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,23.991h-12c-4.4111,0-8-3.5887-8-8s3.5889-8,8-8h12c4.4111,0,8,3.5887,8,8s-3.5889,8-8,8ZM10,9.991c-3.3086,0-6,2.6917-6,6s2.6914,6,6,6h12c3.3086,0,6-2.6917,6-6s-2.6914-6-6-6c0,0-12,0-12,0ZM13,15.991c0-1.6569-1.3431-3-3-3s-3,1.3431-3,3,1.3431,3,3,3,3-1.3431,3-3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,7.991h12c4.4111,0,8,3.5887,8,8s-3.5889,8-8,8h-12c-4.4111,0-8-3.5887-8-8S5.5889,7.991,10,7.991ZM22,21.991c3.3086,0,6-2.6917,6-6s-2.6914-6-6-6h-12c-3.3086,0-6,2.6917-6,6s2.6914,6,6,6h12ZM19,15.991c0,1.6569,1.3431,3,3,3s3-1.3431,3-3-1.3431-3-3-3-3,1.3431-3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,9H24V6a2,2,0,0,0-2-2H10A2,2,0,0,0,8,6V9H5a3,3,0,0,0-3,3V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A3,3,0,0,0,27,9ZM10,6H22V9H10ZM28,26H4V17h8v5h8V17h8ZM14,17h4v3H14ZM4,15V12a1,1,0,0,1,1-1H27a1,1,0,0,1,1,1v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.9141,24.5l4.257-4.2568-1.414-1.4141L7.5,23.0859l-.793-.7929a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414l3,3a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414ZM5,28.5859,3.4141,27,6,24.4141,7.5859,26Z"}),(0,a.jsx)("path",{d:"M24,30a6.0067,6.0067,0,0,1-6-6,5.84,5.84,0,0,1,.2109-1.5469l-8.664-8.6638A5.8483,5.8483,0,0,1,8,14,5.9757,5.9757,0,0,1,2.4228,5.8164l.5577-1.4219L6.293,7.707a1.0233,1.0233,0,0,0,1.4135,0,.999.999,0,0,0,0-1.4141L4.3936,2.979l1.4233-.5571A5.9772,5.9772,0,0,1,14,8a5.84,5.84,0,0,1-.2109,1.5469l8.664,8.6635A5.8548,5.8548,0,0,1,24,18a5.9755,5.9755,0,0,1,5.5771,8.1836L29.02,27.6055,25.707,24.293a1.0233,1.0233,0,0,0-1.4135,0,.999.999,0,0,0-.0005,1.4141L27.6055,29.02l-1.4219.5579A5.96,5.96,0,0,1,24,30ZM10.0625,11.4763,20.5234,21.9375l-.2392.6094A3.9754,3.9754,0,0,0,23.75,27.9922l-.8711-.8711a2.9992,2.9992,0,0,1,0-4.2424,3.0721,3.0721,0,0,1,4.2427.0005l.8706.8708a3.9759,3.9759,0,0,0-5.4458-3.4658l-.6094.2385-10.46-10.46.2392-.6094A3.9755,3.9755,0,0,0,8.2505,4.0078l.8706.8711a2.9992,2.9992,0,0,1,0,4.2424,3.0721,3.0721,0,0,1-4.2427-.0005L4.0078,8.25a3.975,3.975,0,0,0,5.4453,3.4656Z"}),(0,a.jsx)("path",{d:"M29.1226,2.85a3.0716,3.0716,0,0,0-4.2422,0L17.4,10.33l1.4141,1.414,7.48-7.48a1.0244,1.0244,0,0,1,1.4141,0,1.002,1.002,0,0,1,0,1.4145l-7.48,7.48,1.414,1.4141,7.48-7.4795A3.0031,3.0031,0,0,0,29.1226,2.85Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12.1,2A9.8,9.8,0,0,0,6.7,3.6L13.1,10a2.1,2.1,0,0,1,.2,3,2.1,2.1,0,0,1-3-.2L3.7,6.4A9.84,9.84,0,0,0,2,12.1,10.14,10.14,0,0,0,12.1,22.2a10.9,10.9,0,0,0,2.6-.3l6.7,6.7a5,5,0,0,0,7.1-7.1l-6.7-6.7a10.9,10.9,0,0,0,.3-2.6A10,10,0,0,0,12.1,2Zm8,10.1a7.61,7.61,0,0,1-.3,2.1l-.3,1.1.8.8L27,22.8a2.88,2.88,0,0,1,.9,2.1A2.72,2.72,0,0,1,27,27a2.9,2.9,0,0,1-4.2,0l-6.7-6.7-.8-.8-1.1.3a7.61,7.61,0,0,1-2.1.3,8.27,8.27,0,0,1-5.7-2.3A7.63,7.63,0,0,1,4,12.1a8.33,8.33,0,0,1,.3-2.2l4.4,4.4a4.14,4.14,0,0,0,5.9.2,4.14,4.14,0,0,0-.2-5.9L10,4.2a6.45,6.45,0,0,1,2-.3,8.27,8.27,0,0,1,5.7,2.3A8.49,8.49,0,0,1,20.1,12.1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.1,16l6.3-6.3c0.8-0.8,0.8-2,0-2.8l-4.2-4.2c-0.8-0.8-2-0.8-2.8,0L16,8.9L9.7,2.6c-0.8-0.8-2-0.8-2.8,0L2.6,6.8 c-0.8,0.8-0.8,2,0,2.8L8.9,16L2,22.9V30h7.1l6.9-6.9l6.3,6.3c0.8,0.8,2,0.8,2.8,0l4.2-4.2c0.8-0.8,0.8-2,0-2.8L23.1,16z M23.8,4 L28,8.2l-6.3,6.3l-4.2-4.2L23.8,4z M8.2,28H4v-4.2l6.3-6.3l4.2,4.2L8.2,28z M23.8,28L4,8.2L8.2,4l3.5,3.5L9.6,9.6l1.4,1.4l2.1-2.1 l4.2,4.2l-2.1,2.1l1.4,1.4l2.1-2.1l4.2,4.2L21,20.9l1.4,1.4l2.1-2.1l3.5,3.5L23.8,28z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,2.01c-.34-.01-.67-.01-1-.01C7.7,2,2,3.25,2,6v18c0,2.75,5.7,4,11,4,.33,0,.66,0,1-.01v-2.01c-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.66,0,1-.01v-2.01c-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.66,0,1-.01,4.99-.1501,10-1.4099,10-3.99v-6c0-2.5801-5.01-3.8401-10-3.99ZM22,11.99c-.15.52-2.82,1.8401-8,1.99-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.67,0,1-.02,3.04-.0801,6.08-.5898,8-1.55v3.5601ZM14,7.98c-.32.01-.66.02-1,.02-5.84,0-8.84-1.46-9-1.98v-.01c.16-.55,3.16-2.01,9-2.01.34,0,.68.01,1,.02,5.15.1499,7.81,1.4399,8,1.98-.19.54-2.85,1.8301-8,1.98ZM30,28.585l-2.832-2.832c.524-.7905.833-1.7356.833-2.7529,0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5c1.0173,0,1.9624-.3091,2.7529-.833l2.832,2.832,1.4141-1.4141ZM23.001,26c-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3-1.3457,3-3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.999,28.5859l-2.832-2.832c.524-.7905.833-1.7356.833-2.7529,0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5c1.0173,0,1.9624-.3091,2.7529-.833l2.832,2.832,1.4141-1.4141ZM23,26.001c-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3-1.3457,3-3,3ZM28,2H4c-1.103,0-2,.8975-2,2v20c0,1.1025.897,2,2,2h10v-2H4v-14h24v4h2V4c0-1.1025-.897-2-2-2ZM4,8v-4h24v4H4ZM7,6c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1ZM10,6c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 26H20V28H16z"}),(0,a.jsx)("path",{d:"M12 22H18V24H12z"}),(0,a.jsx)("path",{d:"M8 18H18V20H8z"}),(0,a.jsx)("path",{d:"M8 14H20V16H8z"}),(0,a.jsx)("path",{d:"M10 10H24V12H10z"}),(0,a.jsx)("path",{d:"M8 6H26V8H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 4H18V6H2z"}),(0,a.jsx)("path",{d:"M4 8H16V10H4z"}),(0,a.jsx)("path",{d:"M2 12H14V14H2z"}),(0,a.jsx)("path",{d:"M2 16H12V18H2z"}),(0,a.jsx)("path",{d:"M4 20H12V22H4z"}),(0,a.jsx)("path",{d:"M8 24H14V26H8z"}),(0,a.jsx)("path",{d:"M12 28H16V30H12z"}),(0,a.jsx)("path",{fill:"none",d:"M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z"}),(0,a.jsx)("path",{d:"M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,8H18A5,5,0,0,0,8,8H6A7,7,0,0,1,20,8Z"}),(0,a.jsx)("path",{d:"M25,15a2.94,2.94,0,0,0-1.47.4A3,3,0,0,0,21,14a2.94,2.94,0,0,0-1.47.4A3,3,0,0,0,16,13.18V8h0a3,3,0,0,0-6,0V19.1L7.77,17.58h0A2.93,2.93,0,0,0,6,17a3,3,0,0,0-2.12,5.13l8,7.3A6.16,6.16,0,0,0,16,31h5a7,7,0,0,0,7-7V18A3,3,0,0,0,25,15Zm1,9a5,5,0,0,1-5,5H16a4.17,4.17,0,0,1-2.76-1L5.29,20.7A1,1,0,0,1,5,20a1,1,0,0,1,1.6-.8L12,22.9V8a1,1,0,0,1,2,0h0V19h2V16a1,1,0,0,1,2,0v3h2V17a1,1,0,0,1,2,0v2h2V18a1,1,0,0,1,2,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,2A6.0067,6.0067,0,0,0,7,8H9a4,4,0,0,1,8,0h2A6.0067,6.0067,0,0,0,13,2Z"}),(0,a.jsx)("path",{d:"M21,30H16.5606a4,4,0,0,1-2.7088-1.0566L4.6513,20.4771A2.0018,2.0018,0,0,1,4.77,17.4219a2.0743,2.0743,0,0,1,2.6578.1728L11,20.8569V8a2,2,0,0,1,4,0v7a2,2,0,0,1,4,0v1a2,2,0,0,1,4,0v1a2,2,0,0,1,4,0v7A6,6,0,0,1,21,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,24H18A5,5,0,0,1,8,24H6a7,7,0,0,0,14,0Z"}),(0,a.jsx)("path",{d:"M28,14V8a7.0085,7.0085,0,0,0-7-7H16a6.1457,6.1457,0,0,0-4.1055,1.5664L3.8833,9.874a2.9986,2.9986,0,0,0,3.881,4.55l.0008.0012L10,12.8955V24a3,3,0,0,0,6,0h0l0-5.1843a2.939,2.939,0,0,0,3.5294-1.2171A2.963,2.963,0,0,0,21,18a2.9936,2.9936,0,0,0,2.5292-1.4014A2.963,2.963,0,0,0,25,17,3.0033,3.0033,0,0,0,28,14Zm-2,0a1,1,0,0,1-2,0V13H22v2a1,1,0,0,1-2,0V13H18v3a1,1,0,0,1-2,0V13H14V24h.0005A1,1,0,0,1,12,24V9.1045L6.6,12.8008a.9993.9993,0,0,1-1.3081-1.5044l7.9507-7.2515A4.1483,4.1483,0,0,1,16,3h5a5.0059,5.0059,0,0,1,5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,30a6.0067,6.0067,0,0,1-6-6H9a4,4,0,0,0,8,0h2A6.0067,6.0067,0,0,1,13,30Z"}),(0,a.jsx)("path",{d:"M21,2H16.5606a4,4,0,0,0-2.7088,1.0566L4.6513,11.5229A2.0018,2.0018,0,0,0,4.77,14.5781a2.0743,2.0743,0,0,0,2.6578-.1728L11,11.1431V24a2,2,0,0,0,4,0V17a2,2,0,0,0,4,0V16a2,2,0,0,0,4,0V15a2,2,0,0,0,4,0V8A6,6,0,0,0,21,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,15H27A11,11,0,0,0,5,15H3a13,13,0,0,1,26,0Z"}),(0,a.jsx)("path",{d:"M25,28H23V15A7,7,0,1,0,9,15V28H7V15a9,9,0,0,1,18,0Z"}),(0,a.jsx)("path",{d:"M21,20H11V15a5,5,0,0,1,10,0Zm-8-2h6V15a3,3,0,0,0-6,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,12a3.0033,3.0033,0,0,0-3,3v3h6V15A3.0033,3.0033,0,0,0,16,12Z"}),(0,a.jsx)("path",{d:"M16,6a9.0092,9.0092,0,0,0-9,9V28H25V15A9.01,9.01,0,0,0,16,6Zm5,14H11V15a5,5,0,0,1,10,0Z"}),(0,a.jsx)("path",{d:"M29,15H27A11,11,0,0,0,5,15H3a13,13,0,0,1,26,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,21V20a1,1,0,0,1,2,0V30h2V20a3.0033,3.0033,0,0,0-3-3,2.964,2.964,0,0,0-1.4708.4014,2.9541,2.9541,0,0,0-4-1A2.9934,2.9934,0,0,0,19,15a2.96,2.96,0,0,0-1,.1846L18,10h0a3,3,0,0,0-6,0V21.1045L9.7651,19.5752l-.0008.001a2.999,2.999,0,0,0-3.881,4.55L12.3223,30l1.3479-1.478L7.2915,22.7036A.9908.9908,0,0,1,7,22a1.0005,1.0005,0,0,1,1.6-.8008L14,24.8955V10a1,1,0,0,1,2,0h0V21h2V18a1,1,0,0,1,2,0v3h2V19a1,1,0,0,1,2,0v2Z"}),(0,a.jsx)("path",{d:"M28,12H22V10h6V4H4v6H8v2H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m24,18l-4.7788-6.4019c-.7979-1.0562-1.2212-2.302-1.2212-3.5981,0-3.3083,2.6914-6,6-6s6,2.6917,6,6c0,1.2961-.4233,2.542-1.2246,3.6028l-4.7754,6.3972Zm0-14c-2.2056,0-4,1.7944-4,4,0,.8577.2837,1.6865.8203,2.3972l3.1797,4.2595,3.1763-4.2549c.54-.7153.8237-1.5442.8237-2.4019,0-2.2056-1.7944-4-4-4Z"}),(0,a.jsx)("circle",{cx:"24",cy:"8",r:"2"}),(0,a.jsx)("path",{d:"m28,18v4H4V6h10v-2H4c-1.1045,0-2,.8955-2,2v16c0,1.1045.8955,2,2,2h8v4h-4v2h16v-2h-4v-4h8c1.1046,0,2-.8955,2-2v-4h-2Zm-10,10h-4v-4h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,27.0001h9.0001v2H4c-1.1,0-2-.9-2-2V3.0001h2v7.9999h9v2H4v6h9v2H4v6.0001ZM10,2.9999v2h20v-2s-20,0-20,0ZM19.0001,13h10.9999v-2h-10.9999v2ZM19.0001,21h10.9999v-2h-10.9999v2ZM19.0001,29.0001h10.9999v-2h-10.9999v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 21H17V23H11z"}),(0,a.jsx)("path",{d:"M24.2456,8,25.96,14H30V12H27.4688l-1.3-4.5488A2.0077,2.0077,0,0,0,24.2456,6H22.8972l-.7287-2.5488A2.0077,2.0077,0,0,0,20.2456,2H7.7544A2.0078,2.0078,0,0,0,5.8315,3.4507L4.5312,8H2v2H6.04L7.7544,4H20.2456l.5715,2H11.7544A2.008,2.008,0,0,0,9.8315,7.45L8.8171,11H7.7144a1.9981,1.9981,0,0,0-1.8916,1.3516L4.5715,16H2v2H4v7a2.0025,2.0025,0,0,0,2,2v3H8V27H20v3h2V27a2.0025,2.0025,0,0,0,2-2V18h2V16H23.4287l-1.251-3.6475A1.9988,1.9988,0,0,0,20.2856,11H10.897l.8574-3ZM22,19v2H20v2h2v2H6V23H8V21H6V19Zm-.3429-2H6.3428l1.3716-4H20.2856Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 8 22 4 18 8 19.41 9.42 21 7.83 21 18 23 18 23 7.83 24.58 9.41 26 8z"}),(0,a.jsx)("path",{d:"M12.59 22.58 11 24.17 11 14 9 14 9 24.17 7.42 22.59 6 24 10 28 14 24 12.59 22.58z"}),(0,a.jsx)("path",{d:"M2 2H4V30H2z"}),(0,a.jsx)("path",{d:"M28 2H30V30H28z"}),(0,a.jsx)("path",{d:"M15 2H17V6H15z"}),(0,a.jsx)("path",{d:"M15 10H17V14H15z"}),(0,a.jsx)("path",{d:"M15 18H17V22H15z"}),(0,a.jsx)("path",{d:"M15 26H17V30H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 9.42 24.59 8 22.005 10.585 22 10.58 21.995 10.585 19.42 8.01 18 9.42 20.58 12 18 14.58 19.41 16 21.995 13.415 22 13.42 22.005 13.415 24.58 15.99 26 14.58 23.42 12 26 9.42z"}),(0,a.jsx)("path",{d:"M14 17.42 12.59 16 10.005 18.585 10 18.58 9.995 18.585 7.42 16.01 6 17.42 8.58 20 6 22.58 7.41 24 9.995 21.415 10 21.42 10.005 21.415 12.58 23.99 14 22.58 11.42 20 14 17.42z"}),(0,a.jsx)("path",{d:"M2 2H4V30H2z"}),(0,a.jsx)("path",{d:"M28 2H30V30H28z"}),(0,a.jsx)("path",{d:"M15 2H17V6H15z"}),(0,a.jsx)("path",{d:"M15 10H17V14H15z"}),(0,a.jsx)("path",{d:"M15 18H17V22H15z"}),(0,a.jsx)("path",{d:"M15 26H17V30H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M11.314 11.514H17.314V13.514H11.314z",transform:"rotate(-45 14.314 12.514)"}),(0,a.jsx)("path",{d:"M12.0815,23.4329l4.1168,2.3176a2.009,2.009,0,0,0,2.3853-.3344l8.8326-8.8326a2.0088,2.0088,0,0,0,.334-2.3856l-2.2977-4.136,1.79-1.79L25.8283,6.8577,24.4141,8.2719l-4.95-4.95a2.0026,2.0026,0,0,0-2.8285,0L14.5146,1.2008,13.1,2.615l2.1213,2.1214L6.7364,13.2216,4.6151,11.1,3.2009,12.5145l2.1213,2.1213a2.0025,2.0025,0,0,0,0,2.8285l4.95,4.95L8.8577,23.8282l1.4143,1.4142Zm13.92-8.2636-8.8328,8.8328-4.5456-2.5255L23.4767,10.6235ZM9.5649,18.8785l1.4142-1.4142L9.5649,16.05,8.1506,17.4643,6.7364,16.05,18.05,4.7364l1.4143,1.4142L18.05,7.5648,19.4644,8.979l1.4142-1.4142L22.2928,8.979,10.9791,20.2927Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 24H4V30H2z"}),(0,a.jsx)("path",{d:"M28 2H30V30H28z"}),(0,a.jsx)("path",{d:"M15 2H17V6H15z"}),(0,a.jsx)("path",{d:"M15 10H17V14H15z"}),(0,a.jsx)("path",{d:"M15 18H17V22H15z"}),(0,a.jsx)("path",{d:"M15 26H17V30H15z"}),(0,a.jsx)("path",{d:"M6,12A3.8978,3.8978,0,0,1,2,8.223a3.9017,3.9017,0,0,1,.6533-2.0639L5.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L9.3154,6.11A3.9693,3.9693,0,0,1,10,8.223,3.8978,3.8978,0,0,1,6,12Zm0-7.2368L4.3438,7.2257A1.89,1.89,0,0,0,4,8.223a1.9007,1.9007,0,0,0,2,1.7775A1.9007,1.9007,0,0,0,8,8.223a1.98,1.98,0,0,0-.375-1.0466Z"}),(0,a.jsx)("path",{d:"M11,11.7627,9.3438,14.2253A1.89,1.89,0,0,0,9,15.2226,1.9007,1.9007,0,0,0,11,17a1.9007,1.9007,0,0,0,2-1.7774,1.98,1.98,0,0,0-.375-1.0467Z"}),(0,a.jsx)("path",{d:"M6,15.7627,4.3438,18.2253A1.89,1.89,0,0,0,4,19.2226,1.9007,1.9007,0,0,0,6,21a1.9007,1.9007,0,0,0,2-1.7774,1.98,1.98,0,0,0-.375-1.0467Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.7957,28,18.9746,2.7754A1,1,0,0,0,18,2H14a1,1,0,0,0-.9746.7754L7.2043,28H4v2H28V28ZM19.9736,16H12.0264l.9229-4h6.1014Zm.4616,2,.923,4H10.6418l.923-4Zm-5.64-14h2.4092l1.3845,6H13.4109ZM10.18,24H21.82l.923,4H9.2573Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,3H11A5.0057,5.0057,0,0,0,6,8V20a4.99,4.99,0,0,0,3.582,4.77L7.7693,29H9.9451l1.7143-4h8.6812l1.7143,4h2.1758L22.418,24.77A4.99,4.99,0,0,0,26,20V8A5.0057,5.0057,0,0,0,21,3ZM11,5H21a2.9948,2.9948,0,0,1,2.8157,2H8.1843A2.9948,2.9948,0,0,1,11,5ZM24,19H21v2h2.8157A2.9948,2.9948,0,0,1,21,23H11a2.9948,2.9948,0,0,1-2.8157-2H11V19H8V17H24Zm0-4H8V9H24Z"}),e)})},3654(e,t,r){r.d(t,{bQ:()=>i});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"11",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"11",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"11",cy:"24",r:"1"}),(0,a.jsx)("path",{d:"M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2H18V27H8V21H26V5A2,2,0,0,0,24,3Zm0,16H8V13H24Zm0-8H8V5H24Z"}),(0,a.jsx)("path",{d:"M29 24.415 27.586 23 25 25.587 22.414 23 21 24.415 23.586 27 21 29.586 22.414 31 25 28.414 27.586 31 29 29.586 26.414 27 29 24.415z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 11H26V13H18z"}),(0,a.jsx)("path",{d:"M6 19H14V21H6z"}),(0,a.jsx)("path",{d:"M10,16a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,16Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,10,10Z"}),(0,a.jsx)("path",{d:"M22,24a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,24Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,22,18Z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 12 25 3 23 3 23 5 20 5 20 7 23 7 23 12 20 12 20 14 28 14 28 12 25 12z"}),(0,a.jsx)("path",{d:"m8.5,5c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),(0,a.jsx)("path",{d:"m23.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),(0,a.jsx)("path",{d:"M6 19 6 21 9.5859 21 4 26.5859 5.4141 28 11 22.4141 11 26 13 26 13 19 6 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m27,24c-.4622,0-.8948.1133-1.2859.2998l-4.8289-4.8291c.699-.981,1.1147-2.1768,1.1147-3.4707,0-3.3086-2.6917-6-6-6-1.2937,0-2.4897.416-3.4709,1.1147l-4.8289-4.8286c.1865-.3911.2998-.8237.2998-1.2861,0-1.6567-1.3433-3-3-3s-3,1.3433-3,3,1.3433,3,3,3c.4622,0,.8948-.1133,1.2859-.2998l4.8289,4.8291c-.699.981-1.1147,2.1768-1.1147,3.4707,0,3.3086,2.6917,6,6,6,1.2937,0,2.4897-.416,3.4709-1.1147l4.8289,4.8286c-.1865.3911-.2998.8237-.2998,1.2861,0,1.6567,1.3433,3,3,3s3-1.3433,3-3-1.3433-3-3-3Zm-11-4c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 12 25 3 23 3 23 5 20 5 20 7 23 7 23 12 20 12 20 14 28 14 28 12 25 12z"}),(0,a.jsx)("path",{d:"m8.5,5c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),(0,a.jsx)("path",{d:"m8.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),(0,a.jsx)("path",{d:"m23.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"9",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M27,22.14V18a2,2,0,0,0-2-2H17V12h9a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2h9v4H7a2,2,0,0,0-2,2v4.14a4,4,0,1,0,2,0V18h8v4H12v8h8V22H17V18h8v4.14a4,4,0,1,0,2,0ZM8,26a2,2,0,1,1-2-2A2,2,0,0,1,8,26Zm10-2v4H14V24ZM6,10V4H26v6ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16.4961,18.1318l-7-4c-.1536-.0879-.3248-.1318-.4961-.1318s-.3425.0439-.4961.1318l-7,4c-.3115.1777-.5039.5093-.5039.8682v8c0,.3589.1924.6904.5039.8682l7,4c.1536.0879.325.1318.4961.1318s.3425-.0439.4961-.1318l7-4c.3115-.1777.5039-.5093.5039-.8682v-8c0-.3589-.1924-.6904-.5039-.8682Zm-7.4961-1.98l4.9844,2.8481-4.9844,2.8481-4.9844-2.8481,4.9844-2.8481Zm-6,4.5713l5,2.8569v5.6968l-5-2.8569v-5.6968Zm7,8.5537v-5.6968l5-2.8569v5.6968l-5,2.8569Z"}),(0,a.jsx)("path",{d:"m28,19v5c0,1.1025-.8972,2-2,2h-3.1719l1.5859-1.5859-1.4141-1.4141-4,4,4,4,1.4141-1.4141-1.5859-1.5859h3.1719c2.2056,0,4-1.7944,4-4v-5h-2Z"}),(0,a.jsx)("path",{d:"m17.5039,15.0111l-2-1.1428c-.3115-.1781-.5039-.5094-.5039-.8683v-2h2v1.4197l1.4961.8549-.9922,1.7366Z"}),(0,a.jsx)("path",{d:"m25.5039,14.4175l-1.5039.8594v-2.2769h-2v2.2769l-1.5039-.8594-.9922,1.7368,3,1.7139c.1536.0879.325.1318.4961.1318s.3425-.0439.4961-.1318l3-1.7139-.9922-1.7368Z"}),(0,a.jsx)("path",{d:"m28.4961,15.0111l-.9922-1.7366,1.4961-.8549v-1.4197h2v2c0,.3589-.1924.6902-.5039.8683l-2,1.1428Z"}),(0,a.jsx)("path",{d:"M25.4961 8.7256 24.5039 6.9888 23 7.8481 21.4961 6.9888 20.5039 8.7256 22 9.5801 22 11 24 11 24 9.5801 25.4961 8.7256z"}),(0,a.jsx)("path",{d:"m30.4961,4.1318l-3-1.7144-.9922,1.7368,1.4805.8457-1.4805.8457.9922,1.7368,1.5039-.8594v2.2769h2v-4c0-.3589-.1924-.6904-.5039-.8682Z"}),(0,a.jsx)("path",{d:"m24.5039,3.0111l-1.5039-.8594-1.5039.8594-.9922-1.7366,2-1.1428C22.6575.0439,22.8287,0,23,0s.3425.0439.4961.1317l2,1.1428-.9922,1.7366Z"}),(0,a.jsx)("path",{d:"m19.4961,4.1543l-.9922-1.7368-3,1.7144c-.3115.1777-.5039.5093-.5039.8682v4h2v-2.2769l1.5039.8594.9922-1.7368-1.4805-.8457,1.4805-.8457Z"}),(0,a.jsx)("path",{d:"m9,1l-1.4141,1.4141,1.5859,1.5859h-3.1719c-2.2056,0-4,1.7944-4,4v5h2v-5c0-1.1025.8972-2,2-2h3.1719l-1.5859,1.5859,1.4141,1.4141,4-4L9,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,24a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,6,22Z"}),(0,a.jsx)("path",{d:"M16,4a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,16,2Z"}),(0,a.jsx)("path",{d:"M26,4a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,26,2Z"}),(0,a.jsx)("path",{d:"M18,24v4H14V24h4m2-2H12v8h8Z"}),(0,a.jsx)("path",{d:"M27,22.14V17a2,2,0,0,0-2-2H7V10h3V2H2v8H5v5a2,2,0,0,0,2,2H25v5.14a4,4,0,1,0,2,0ZM4,4H8V8H4ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22",cy:"24",r:"2"}),(0,a.jsx)("path",{d:"M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z"}),(0,a.jsx)("circle",{cx:"8",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"8",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"8",cy:"24",r:"1"}),(0,a.jsx)("path",{d:"M5,21h7V19H5V13H21v3h2V5a2,2,0,0,0-2-2H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2h7V27H5ZM5,5H21v6H5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22",cy:"24",r:"2"}),(0,a.jsx)("path",{d:"M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M7 17H12V19H7z"}),(0,a.jsx)("path",{d:"M7 12H19V14H7z"}),(0,a.jsx)("path",{d:"M7 7H19V9H7z"}),(0,a.jsx)("path",{d:"M22,2,4,2A2.0058,2.0058,0,0,0,2,4V28a2.0058,2.0058,0,0,0,2,2h8V28H4V4H22V15h2V4A2.0058,2.0058,0,0,0,22,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,20H26v2h2v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"}),(0,a.jsx)("circle",{cx:"7",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M21,13a2.9609,2.9609,0,0,0-1.2854.3008L17.4141,11l2.3-2.3008A2.9609,2.9609,0,0,0,21,9a3,3,0,1,0-3-3,2.9665,2.9665,0,0,0,.3,1.2852L16,9.5859,13.7,7.2852A2.9665,2.9665,0,0,0,14,6a3,3,0,1,0-3,3,2.9609,2.9609,0,0,0,1.2854-.3008L14.5859,11l-2.3005,2.3008A2.9609,2.9609,0,0,0,11,13a3,3,0,1,0,3,3,2.9665,2.9665,0,0,0-.3-1.2852L16,12.4141l2.3,2.3007A2.9665,2.9665,0,0,0,18,16a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,5ZM10,6a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,10,6Zm1,11a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,11,17Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,21,17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12 11H14V17H12z"}),(0,a.jsx)("path",{d:"M7 13H9V17H7z"}),(0,a.jsx)("path",{d:"M2 7H4V17H2z"}),(0,a.jsx)("path",{d:"m30,28.5859l-7.5522-7.5522c1.5918-1.9082,2.5522-4.3604,2.5522-7.0337,0-6.0654-4.9346-11-11-11-2.4026,0-4.6853.7607-6.6013,2.2002l1.2012,1.5991c1.5669-1.1772,3.4343-1.7993,5.4001-1.7993,4.9626,0,9,4.0371,9,9s-4.0374,9-9,9c-2.8574,0-5.4819-1.312-7.2007-3.6001l-1.5991,1.2017c2.1001,2.7949,5.3076,4.3984,8.7998,4.3984,2.6733,0,5.1255-.9604,7.0337-2.5522l7.5522,7.5522,1.4141-1.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"7",cy:"7",r:"1"}),(0,a.jsx)("circle",{cx:"7",cy:"15",r:"1"}),(0,a.jsx)("circle",{cx:"7",cy:"23",r:"1"}),(0,a.jsx)("path",{d:"M12,26H4V20h8V18H4V12H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V26a2,2,0,0,0,2,2h8ZM4,4H20v6H4Z"}),(0,a.jsx)("path",{d:"M28,17v2.4131A6.996,6.996,0,1,0,22,30V28a5,5,0,1,1,4.5762-7H24v2h6V17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H20a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,2v7H20V4Zm0,9v6H20V13ZM20,28V21h8v7Z"}),(0,a.jsx)("path",{d:"M12 15 10 15 10 13 8 13 8 15 6 15 6 17 8 17 8 19 10 19 10 17 12 17 12 15z"}),(0,a.jsx)("path",{d:"M16,6V4H10A2.0023,2.0023,0,0,0,8,6V9.08A6.99,6.99,0,0,0,8,22.92V26a2.0023,2.0023,0,0,0,2,2h6V26H10V22.92A6.99,6.99,0,0,0,10,9.08V6ZM14,16a5,5,0,1,1-5-5A5.0059,5.0059,0,0,1,14,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),(0,a.jsx)("path",{d:"M13 7H15V14H13z"}),(0,a.jsx)("path",{d:"M8 7H10V14H8z"}),(0,a.jsx)("path",{d:"M22,14H20a2.0021,2.0021,0,0,1-2-2V9a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v3A2.0021,2.0021,0,0,1,22,14ZM20,9v3h2V9Z"}),(0,a.jsx)("path",{d:"M22 18H24V25H22z"}),(0,a.jsx)("path",{d:"M8 18H10V25H8z"}),(0,a.jsx)("path",{d:"M17,25H15a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v3A2.0021,2.0021,0,0,1,17,25Zm-2-5v3h2V20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,16a3.9612,3.9612,0,0,0-2.02.5657l-2.8586-2.8585,2.293-2.293a2,2,0,0,0,0-2.8284l-6-6a2,2,0,0,0-2.8284,0l-6,6a2,2,0,0,0,0,2.8284l2.293,2.293L8.02,16.5657A4.043,4.043,0,1,0,9.4343,17.98l2.8585-2.8586,2.293,2.293A1.9773,1.9773,0,0,0,15,17.7233V22H12v8h8V22H17V17.7233a1.9773,1.9773,0,0,0,.4142-.3091l2.293-2.293L22.5657,17.98A3.9885,3.9885,0,1,0,26,16ZM8,20a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,20Zm10,4v4H14V24h4Zm-2-8-6-6,6-6,6,6Zm10,6a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"16",r:"2"}),(0,a.jsx)("path",{d:"M30 17 30 15 23.83 15 26.41 12.41 25 11 20 16 25 21 26.41 19.59 23.83 17 30 17z"}),(0,a.jsx)("path",{d:"M15 23.83 15 30 17 30 17 23.83 19.59 26.41 21 25 16 20 11 25 12.41 26.41 15 23.83z"}),(0,a.jsx)("path",{d:"M7 11 5.59 12.41 8.17 15 2 15 2 17 8.17 17 5.59 19.59 7 21 12 16 7 11z"}),(0,a.jsx)("path",{d:"M17 8.17 17 2 15 2 15 8.17 12.41 5.59 11 7 16 12 21 7 19.59 5.59 17 8.17z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"14",cy:"14",r:"2"}),(0,a.jsx)("path",{d:"M20,30a.9967.9967,0,0,1-.707-.293L8.5859,19A2.0126,2.0126,0,0,1,8,17.5859V10a2.002,2.002,0,0,1,2-2h7.5859A1.9864,1.9864,0,0,1,19,8.5859L29.707,19.293a.9994.9994,0,0,1,0,1.414l-9,9A.9967.9967,0,0,1,20,30ZM10,10v7.5859l10,10L27.5859,20l-10-10Z"}),(0,a.jsx)("path",{d:"M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v8H28V4H4V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8h-8v2h8v-2ZM14,16h8v-2h-8v2ZM10,14h-2v-4h2v-2h-2v-4h18v12h2V4c0-1.1046-.8954-2-2-2H8c-1.1046,0-2,.8954-2,2v4h-2v2h2v4h-2v2h6v-2ZM4,20H1v10h3c1.6543,0,3-1.3457,3-3v-4c0-1.6543-1.3457-3-3-3ZM5,27c0,.5518-.4487,1-1,1h-1v-6h1c.5513,0,1,.4482,1,1v4ZM17,22v6c0,1.1025.8975,2,2,2h4v-2h-4v-6h4v-2h-4c-1.1025,0-2,.8975-2,2ZM9,22h2v6h-2v2h6v-2h-2v-6h2v-2h-6v2ZM25,20v2h2v8h2v-8h2v-2h-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,15H27V7H25v8H22V7H20v7.8262L7.5239,7.1484A1,1,0,0,0,6,8v7H2v2H6v7a1,1,0,0,0,1.5239.8516L20,17.1738V25h2V17h3v8h2V17h3ZM8,22.21V9.79L18.0918,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("switch",{children:(0,a.jsxs)("g",{children:[(0,a.jsx)("path",{d:"M28 13h2v2h-2zM23.778 4.797l1.414-1.414 1.414 1.414-1.414 1.414zM15 0h2v2h-2zM6.808 6.233 5.393 4.818l1.415-1.414 1.414 1.414zM2 13h2v2H2zM13 30h6v2h-6zM11 26h10v2H11zM16 4C10.5 4 6 8.5 6 14c0 4.4 2 6.3 3.5 7.6 1 .9 1.5 1.5 1.5 2.4h2c0-1.8-1.1-2.9-2.2-3.9C9.4 18.9 8 17.5 8 14c0-4.4 3.6-8 8-8s8 3.6 8 8c0 3.5-1.4 4.9-2.8 6.1-1.1 1-2.2 2-2.2 3.9h2c0-.9.5-1.5 1.5-2.4C24 20.3 26 18.4 26 14c0-5.5-4.5-10-10-10z"}),(0,a.jsx)("path",{fill:"none",d:"M0 0h32v32H0z"})]})}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("switch",{children:(0,a.jsxs)("g",{children:[(0,a.jsx)("path",{d:"M28 13h2v2h-2zM23.778 4.797l1.414-1.414 1.414 1.414-1.414 1.414zM15 0h2v2h-2zM6.808 6.233 5.393 4.818l1.415-1.414 1.414 1.414zM2 13h2v2H2zM20 13h-3v-3h-2v3h-3v2h3v3h2v-3h3zM13 30h6v2h-6zM11 26h10v2H11z"}),(0,a.jsx)("path",{d:"M16 4C10.5 4 6 8.5 6 14c0 4.4 2 6.3 3.5 7.6 1 .9 1.5 1.5 1.5 2.4h2c0-1.8-1.1-2.9-2.2-3.9C9.4 18.9 8 17.5 8 14c0-4.4 3.6-8 8-8s8 3.6 8 8c0 3.5-1.4 4.9-2.8 6.1-1.1 1-2.2 2-2.2 3.9h2c0-.9.5-1.5 1.5-2.4C24 20.3 26 18.4 26 14c0-5.5-4.5-10-10-10z"}),(0,a.jsx)("path",{fill:"none",d:"M0 0h32v32H0z"})]})}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8h-8v2h8v-2ZM14,16h8v-2h-8v2ZM10,14h-2v-4h2v-2h-2v-4h18v12h2V4c0-1.1046-.8954-2-2-2H8c-1.1046,0-2,.8954-2,2v4h-2v2h2v4h-2v2h6v-2ZM1,22v6c0,1.1025.8223,2,1.8335,2h4.1665v-6h-3v2h1v2h-2l.0142-6h3.9858v-2H2.8335c-1.0112,0-1.8335.8975-1.8335,2ZM21.1055,20h-2.2109c-1.0449,0-1.8945.8496-1.8945,1.8945v6.2109c0,1.0449.8496,1.8945,1.8945,1.8945h2.2109c1.0449,0,1.8945-.8496,1.8945-1.8945v-6.2109c0-1.0449-.8496-1.8945-1.8945-1.8945ZM21,28h-2v-6h2v6ZM11,20h-2v10h6v-2h-4v-8ZM31,22v-2h-4c-1.1025,0-2,.8975-2,2v2c0,1.1025.8975,2,2,2h2v2h-4v2h4c1.1025,0,2-.8975,2-2v-2c0-1.1025-.8975-2-2-2h-2v-2h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,24v2H15.8164a2.983,2.983,0,0,0-5.6328,0H4V24H2v6H4V28h6.1836a2.983,2.983,0,0,0,5.6328,0H28v2h2V24Z"}),(0,a.jsx)("path",{d:"M13 7.5 13 16.499 13 16.499 21 12 13 7.5z"}),(0,a.jsx)("path",{d:"M16,22A10,10,0,1,1,26,12,10.0113,10.0113,0,0,1,16,22ZM16,4a8,8,0,1,0,8,8A8.0092,8.0092,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsxs)("switch",{children:[(0,a.jsx)("foreignObject",{width:"1",height:"1",x:"0",y:"0",requiredExtensions:"http://ns.adobe.com/AdobeIllustrator/10.0/"}),(0,a.jsxs)("g",{children:[(0,a.jsx)("path",{d:"M24.6 24.4 27.2 27 27.2 27 24.6 29.6 26 31 30 27 26 23z"}),(0,a.jsx)("path",{d:"M22.4 24.4 19.8 27 19.8 27 22.4 29.6 21 31 17 27 21 23z"}),(0,a.jsx)("circle",{cx:"11",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"11",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"11",cy:"24",r:"1"}),(0,a.jsx)("path",{d:"M24,3H8C6.9,3,6,3.9,6,5v22c0,1.1,0.9,2,2,2h7v-2H8v-6h18V5C26,3.9,25.1,3,24,3z M24,19H8v-6h16V19z M24,11H8V5h16V11z"})]})]}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,30a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,7,30Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,7,22Z"}),(0,a.jsx)("path",{d:"M24,26H14V24H24V17H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6H18V8H8v7H24a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,24,26Z"}),(0,a.jsx)("path",{d:"M28,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M28,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6V4Z"}),(0,a.jsx)("path",{d:"M24,26H16V24h8V17H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6H18V8H8v7H24a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,24,26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,21.2783v-1.2783c0-2.2061-1.7944-4-4-4s-4,1.7939-4,4v1.2783c-.595.3469-1,.9849-1,1.7217v5c0,1.1025.897,2,2,2h6c1.103,0,2-.8975,2-2v-5c0-.7368-.405-1.3748-1-1.7217ZM25,18c1.103,0,2,.8975,2,2v1h-4v-1c0-1.1025.897-2,2-2ZM28,28h-6v-5h6v5ZM16,2.1299c-.98-.0898-2-.1299-3-.1299C7.7,2,2,3.25,2,6v18c0,2.75,5.7,4,11,4,1,0,2.02-.04,3-.1299v-2.0103c-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.02-.04,3-.1299v-2.0103c-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.02-.04,3-.1299,4.25-.4001,8-1.6401,8-3.8701v-6c0-2.23-3.75-3.47-8-3.8701ZM22,11.99c-.13.45-2.13,1.49-6,1.8699-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.01-.04,3-.1401,2.3301-.21,4.5-.6799,6-1.4299v3.5601ZM16,7.8599c-.8999.0901-1.8999.1401-3,.1401-5.84,0-8.84-1.46-9-1.98v-.01c.16-.55,3.16-2.01,9-2.01,1.1001,0,2.1001.05,3,.1401,3.8401.3699,5.8401,1.3999,6,1.8599-.1599.46-2.1599,1.49-6,1.8599Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,25V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141L7,15.8281V25H19v2H7A2.0024,2.0024,0,0,1,5,25Z"}),(0,a.jsx)("path",{d:"M24,22h4a2.002,2.002,0,0,1,2,2v4a2.002,2.002,0,0,1-2,2H24a2.002,2.002,0,0,1-2-2V24A2.002,2.002,0,0,1,24,22Zm4,6V24H23.9985L24,28Z"}),(0,a.jsx)("path",{d:"M27,6v9.1719l3.5859-3.586L32,13l-6,6-6-6,1.4141-1.4141L25,15.1719V6H13V4H25A2.0024,2.0024,0,0,1,27,6Z"}),(0,a.jsx)("path",{d:"M2 6H8V8H2z"}),(0,a.jsx)("path",{d:"M2 2H10V4H2z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 18H12V20H8z"}),(0,a.jsx)("path",{d:"M14 18H18V20H14z"}),(0,a.jsx)("path",{d:"M8 14H12V16H8z"}),(0,a.jsx)("path",{d:"M14 22H18V24H14z"}),(0,a.jsx)("path",{d:"M20 14H24V16H20z"}),(0,a.jsx)("path",{d:"M20 22H24V24H20z"}),(0,a.jsx)("path",{d:"M27,3H5A2.0025,2.0025,0,0,0,3,5V27a2.0025,2.0025,0,0,0,2,2H27a2.0025,2.0025,0,0,0,2-2V5A2.0025,2.0025,0,0,0,27,3Zm0,2,0,4H5V5ZM5,27V11H27l0,16Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M20 22H24V24H20z"}),(0,a.jsx)("path",{d:"M16 18H20V20H16z"}),(0,a.jsx)("path",{d:"M20 14H24V16H20z"}),(0,a.jsx)("path",{d:"M8 14H12V16H8z"}),(0,a.jsx)("path",{d:"M27,3H5A2.0027,2.0027,0,0,0,3,5V16H5V11H27V27H16v2H27a2.0027,2.0027,0,0,0,2-2V5A2.0027,2.0027,0,0,0,27,3Zm0,6H5V5H27Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,22a3.9553,3.9553,0,0,0-2.0193.5667L20.167,18.7529a4.9654,4.9654,0,0,0,0-5.5058L22.714,10.7A3.0284,3.0284,0,1,0,21.3,9.286l-2.547,2.547a4.9654,4.9654,0,0,0-5.5058,0L9.4332,8.0191A3.9553,3.9553,0,0,0,10,6a4,4,0,1,0-4,4,3.9553,3.9553,0,0,0,2.0191-.5668l3.8139,3.8139a4.9654,4.9654,0,0,0,0,5.5058L8.0192,22.5668A3.9556,3.9556,0,0,0,6,22a4,4,0,1,0,4,4,3.9553,3.9553,0,0,0-.5667-2.0192l3.8138-3.8138A4.9686,4.9686,0,0,0,15,20.8989v3.2848a3,3,0,1,0,2,0V20.8989a4.9686,4.9686,0,0,0,1.7529-.7319l3.8138,3.8137A3.9553,3.9553,0,0,0,22,26a4,4,0,1,0,4-4ZM16,13a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,13ZM4,6A2,2,0,1,1,6,8,2.002,2.002,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Zm20,0a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H17a2.002,2.002,0,0,0-2,2v6H4a2.002,2.002,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H15a2.0023,2.0023,0,0,0,2-2V22H28a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,2,0,4H17V4ZM15.0009,22H4V18H15ZM17,10H28.0007l.0005,4H17Zm-2,2v4H4V12ZM4,28V24H15.0011l0,4Zm13-8V16H28.0015l0,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,3a2.9913,2.9913,0,0,0-2.8163,2H21.858a3.9807,3.9807,0,0,0-7.716,0H9.858A3.9916,3.9916,0,1,0,5,9.858v4.284a3.9807,3.9807,0,0,0,0,7.716v3.3257a3,3,0,1,0,2,0V21.858a3.978,3.978,0,0,0,1.6729-.9034l3.3638,1.6819A2.9635,2.9635,0,0,0,12,23a3.0117,3.0117,0,1,0,.9221-2.1572L9.7744,19.269A3.95,3.95,0,0,0,10,18a3.9963,3.9963,0,0,0-3-3.858V9.858A3.9947,3.9947,0,0,0,9.858,7h4.284a3.9366,3.9366,0,0,0,4.7816,2.8818l1.8118,3.1705a3.0451,3.0451,0,1,0,1.7326-.9987L20.6893,8.941A3.9839,3.9839,0,0,0,21.858,7h3.3257A2.995,2.995,0,1,0,28,3ZM8,18a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,18ZM6,8A2,2,0,1,1,8,6,2.002,2.002,0,0,1,6,8ZM16,6a2,2,0,1,1,2,2A2.002,2.002,0,0,1,16,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,3H5A2.002,2.002,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0027,2.0027,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3Zm0,6H17V5H27ZM15,27H11V23h4Zm0-6H11V17h4ZM9,21H5V17H9Zm2-6V11H21v4Zm0-6V5h4V9Zm12,2h4l0,4H23ZM9,5V15H5V5ZM5,23H9v4H5Zm12,4V17H27.001l.001,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,20h-4v2h4v2h-3c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h5v-8c0-1.103-.8975-2-2-2Zm0,8h-3v-2h3v2Z"}),(0,a.jsx)("path",{d:"M24,22v-2h-3v-2h-2v2h-2v2h2v6c0,1.1025,.8975,2,2,2h3v-2h-3v-6h3Z"}),(0,a.jsx)("path",{d:"M14,20h-4v2h4v2h-3c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h5v-8c0-1.103-.8975-2-2-2Zm0,8h-3v-2h3v2Z"}),(0,a.jsx)("path",{d:"M5,16.0005v4H2c-1.1025,0-2,.897-2,2v5.9995c0,1.1025,.8975,2,2,2H7v-13.9995h-2Zm-3,5.9995h3v6H2v-6Z"}),(0,a.jsx)("path",{d:"M4,14V5h7.5857l4,4h12.4143v8h2V9c-.0013-1.1041-.8959-1.9987-2-2h-11.5857l-3.4143-3.4141c-.3742-.3764-.8835-.5873-1.4143-.5859H4c-1.1041,.0013-1.9987,.8959-2,2V14h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,29c-1.6543,0-3-1.3458-3-3s1.3457-3,3-3,3,1.3458,3,3-1.3457,3-3,3Zm0-4c-.5515,0-1,.4486-1,1s.4485,1,1,1,1-.4486,1-1-.4485-1-1-1Z"}),(0,a.jsx)("circle",{cx:"20",cy:"21",r:"2"}),(0,a.jsx)("path",{d:"M15,19c-1.6543,0-3-1.3458-3-3s1.3457-3,3-3,3,1.3458,3,3-1.3457,3-3,3Zm0-4c-.5515,0-1,.4486-1,1s.4485,1,1,1,1-.4486,1-1-.4485-1-1-1Z"}),(0,a.jsx)("path",{d:"M13,27H4c-1.104-.0013-1.9987-.896-2-2V5c.0013-1.104,.896-1.9987,2-2h7.5857c.5308-.0015,1.0401,.2095,1.4143,.5859l3.4143,3.4141h11.5857c1.104,.0013,1.9987,.896,2,2v7h-2v-7H15.5857l-4-4H4V25H13v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.8684,22.0684l1.7937-1.7476A4.2184,4.2184,0,0,0,23.95,21.9534c1.4026,0,2.0005-.5288,2.0005-1.38,0-.69-.4138-1.1267-1.4717-1.2646l-1.1958-.1612c-2.5754-.3217-4.0009-1.4484-4.0009-3.633,0-2.3225,1.8166-3.7942,4.5529-3.7942a5.7221,5.7221,0,0,1,4.691,1.8855l-1.7246,1.7246a3.9649,3.9649,0,0,0-2.8743-1.2876c-1.2649,0-1.8167.5059-1.8167,1.2417,0,.8049.4368,1.1726,1.5638,1.3567l1.2187.1609c2.6213.3679,3.886,1.5408,3.886,3.5412,0,2.3226-1.9546,3.9322-4.9439,3.9322A6.0942,6.0942,0,0,1,18.8684,22.0684Z"}),(0,a.jsx)("path",{d:"M4.24,7.95h5.8409c4.185,0,6.9213,2.69,6.9213,8.0254S14.2661,24,10.0811,24H4.24Zm5.8409,13.36c2.2534,0,3.7021-1.3338,3.7021-4.07V14.71c0-2.7364-1.4487-4.07-3.7021-4.07H7.2756V21.31Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.8281,22.0684l1.7937-1.7476A4.2185,4.2185,0,0,0,22.91,21.9534c1.4025,0,2-.5288,2-1.38,0-.69-.4138-1.1267-1.4716-1.2646l-1.1958-.1612c-2.5755-.3217-4.001-1.4484-4.001-3.633,0-2.3225,1.8166-3.7942,4.553-3.7942a5.722,5.722,0,0,1,4.6909,1.8855l-1.7246,1.7246a3.9643,3.9643,0,0,0-2.8743-1.2876c-1.2649,0-1.8166.5059-1.8166,1.2417,0,.8049.4367,1.1726,1.5637,1.3567l1.2187.1609c2.6214.3679,3.886,1.5408,3.886,3.5413,0,2.3225-1.9546,3.9321-4.9438,3.9321A6.0944,6.0944,0,0,1,17.8281,22.0684Z"}),(0,a.jsx)("path",{d:"M5.2471,24V7.95H15.825v2.69H8.2825v3.8862h6.6687v2.6905H8.2825V21.31H15.825V24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.84,24V11.9966H20.783v2h.1149a3.3115,3.3115,0,0,1,3.3572-2.2764c2.46,0,3.84,1.7017,3.84,4.6909V24H25.1519V16.7107c0-1.7017-.5748-2.5754-1.9776-2.5754-1.2187,0-2.3913.6438-2.3913,1.9314V24Z"}),(0,a.jsx)("path",{d:"M4.2236,24V7.95H14.8015v2.69H7.259v3.8862h6.6687v2.6905H7.259V21.31h7.5425V24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.84,24V11.9966H20.783v2h.1149a3.3115,3.3115,0,0,1,3.3572-2.2764c2.46,0,3.84,1.7017,3.84,4.6909V24H25.1519V16.7107c0-1.7017-.5748-2.5754-1.9776-2.5754-1.2187,0-2.3913.6438-2.3913,1.9314V24Z"}),(0,a.jsx)("path",{d:"M4.2236,24V7.95H14.8015v2.69H7.259v3.8862h6.6687v2.6905H7.259V21.31h7.5425V24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.9443,20.9417v-6.6h-1.77V11.9966h.92c.8735,0,1.1494-.4138,1.1494-1.2417V8.7083h2.6445v3.2883h2.46V14.342h-2.46v7.3125h2.2764V24H24.0488A2.778,2.778,0,0,1,20.9443,20.9417Z"}),(0,a.jsx)("path",{d:"M6.6846,24V7.95H17.2627v2.69H9.72v3.8862h6.669v2.6905H9.72V21.31h7.543V24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m23,32l-1.755-1,2.755-4h4v-7h-12v7h4v2h-4c-1.1025,0-2-.8975-2-2v-7c0-1.1025.8975-2,2-2h12c1.1025,0,2,.8975,2,2v7c0,1.1025-.8975,2-2,2h-3l-2,3Z"}),(0,a.jsx)("path",{d:"m13,2C7.7021,2,2,3.252,2,6v18c0,2.4033,4.3618,3.6626,9,3.9404v-2.0015c-4.5337-.2803-6.8674-1.4644-7-1.939v-3.5723c1.7065.856,4.3062,1.3442,7,1.5063v-1.9951c-4.5337-.2803-6.8674-1.4644-7-1.939v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723,5.2979,0,11-1.252,11-4v-6.0005c-.0007-2.748-5.7024-3.9995-11-3.9995ZM3.9985,6.0151c.1523-.5552,3.1514-2.0151,9.0015-2.0151,5.7976,0,8.7949,1.4341,8.9968,2-.2019.5659-3.1992,2-8.9968,2-5.8501,0-8.8491-1.46-9.0015-1.9849Zm18.0015,5.9722c-.1606.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.3481,28.875c-4.0473,0-5.5878-1.0579-5.5878-2.8284a2.2115,2.2115,0,0,1,2.1386-2.3v-.253a1.9726,1.9726,0,0,1-1.5405-2c0-1.242,1.0576-1.8628,2.207-2.1158v-.0918a3.6228,3.6228,0,0,1-2.1845-3.4953c0-2.4375,1.7246-4.07,4.9672-4.07A6.6717,6.6717,0,0,1,27.44,12.02v-.3908a1.5343,1.5343,0,0,1,1.7022-1.7476h1.8623v2.2534H28.4521v.322a3.5917,3.5917,0,0,1,1.8628,3.3343c0,2.4145-1.7016,4.0241-4.9668,4.0241a7.3662,7.3662,0,0,1-1.8393-.207,1.23,1.23,0,0,0-.8511,1.0808c0,.5979.5059.8967,1.564.8967H27.44c2.9434,0,4.208,1.2649,4.208,3.4263C31.6484,27.5183,29.9473,28.875,25.3481,28.875Zm1.4947-4.7371H22.75a1.473,1.473,0,0,0-.6211,1.2417c0,.92.6895,1.4717,2.5293,1.4717H26.13c1.9087,0,2.76-.4829,2.76-1.4946C28.89,24.5979,28.3374,24.1379,26.8428,24.1379Zm.667-8.163v-.3912c0-1.2187-.7588-1.84-2.1617-1.84s-2.1616.6209-2.1616,1.84v.3912c0,1.1955.7588,1.84,2.1616,1.84S27.51,17.17,27.51,15.9749Z"}),(0,a.jsx)("path",{d:"M2.2344,7.95H5.66l4.1162,7.8413h.0923l4.07-7.8413h3.2886V24H14.3525V12.48h-.0918L13.0186,15.032l-3.2881,6.07-3.2881-6.07L5.2007,12.48H5.1084V24H2.2344Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.98,28.875c-4.0474,0-5.5879-1.0579-5.5879-2.8284a2.2112,2.2112,0,0,1,2.1387-2.3v-.253a1.9725,1.9725,0,0,1-1.541-2c0-1.242,1.0576-1.8628,2.2075-2.1158v-.0918a3.622,3.622,0,0,1-2.1846-3.4953c0-2.4375,1.7246-4.07,4.9673-4.07a6.6768,6.6768,0,0,1,2.0923.2988v-.3908a1.5341,1.5341,0,0,1,1.7016-1.7476h1.8623v2.2534H26.0835v.322a3.5926,3.5926,0,0,1,1.8628,3.3343c0,2.4145-1.7022,4.0241-4.9668,4.0241a7.3717,7.3717,0,0,1-1.84-.207,1.23,1.23,0,0,0-.8505,1.0808c0,.5979.5058.8967,1.5634.8967h3.2193c2.9433,0,4.208,1.2649,4.208,3.4263C29.28,27.5183,27.5781,28.875,22.98,28.875Zm1.4941-4.7371H20.3809A1.474,1.474,0,0,0,19.76,25.38c0,.92.69,1.4717,2.5293,1.4717h1.4716c1.9092,0,2.76-.4829,2.76-1.4946C26.5205,24.5979,25.9688,24.1379,24.4736,24.1379Zm.667-8.163v-.3912c0-1.2187-.7588-1.84-2.1611-1.84s-2.1621.6209-2.1621,1.84v.3912c0,1.1955.7588,1.84,2.1621,1.84S25.1406,17.17,25.1406,15.9749Z"}),(0,a.jsx)("path",{d:"M4.603,24V7.95h7.22c2.9668,0,4.76,2,4.76,4.967,0,2.9893-1.7935,4.9668-4.76,4.9668H7.6387V24Zm3.0357-8.738h3.9092a1.6886,1.6886,0,0,0,1.8852-1.8167V12.3875a1.672,1.672,0,0,0-1.8852-1.7935H7.6387Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.9434,20.7346c0-2.46,1.8623-3.6792,5.1279-3.6792h2.0464v-.8738c0-1.3337-.6665-2.1154-2.23-2.1154a3.1249,3.1249,0,0,0-2.7363,1.5175L18.4033,14.02a5.0544,5.0544,0,0,1,4.6909-2.3c3.2422,0,4.9668,1.54,4.9668,4.2771v5.6567h1.1958V24H27.624a2.184,2.184,0,0,1-2.23-2.07h-.1377c-.3912,1.5408-1.7017,2.3455-3.4952,2.3455C19.3232,24.2759,17.9434,22.8733,17.9434,20.7346Zm7.1743-.3218V18.8262H23.2324c-1.541,0-2.3.5288-2.3,1.4717v.3908c0,.9658.667,1.4488,1.8164,1.4488C24.06,22.1375,25.1177,21.54,25.1177,20.4128Z"}),(0,a.jsx)("path",{d:"M6.9717,24H3.9365V7.95H11.18c2.92,0,4.7373,1.9316,4.7373,4.967a4.4237,4.4237,0,0,1-2.9893,4.553L16.2158,24h-3.38L9.8462,17.8145H6.9717Zm3.9092-8.738a1.689,1.689,0,0,0,1.8857-1.8167V12.3875a1.6723,1.6723,0,0,0-1.8857-1.7935H6.9717v4.668Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.7156,22h-.115a3.371,3.371,0,0,1-3.3113,2.2764c-3.0124,0-4.6912-2.2764-4.6912-6.3006,0-4.0012,1.6788-6.2546,4.6912-6.2546a3.3049,3.3049,0,0,1,3.3113,2.2534h.115v-6.99h2.9433V24H25.7156Zm0-2.1157V16.0667c0-1.1727-1.0808-1.9314-2.4837-1.9314A2.556,2.556,0,0,0,20.68,16.9636v2.07a2.5365,2.5365,0,0,0,2.5522,2.8052C24.6348,21.8384,25.7156,21.1257,25.7156,19.8838Z"}),(0,a.jsx)("path",{d:"M6.5576,24H3.5222V7.95h7.2434c2.92,0,4.7371,1.9316,4.7371,4.967a4.4237,4.4237,0,0,1-2.9893,4.553L15.8018,24h-3.38L9.4321,17.8145H6.5576Zm3.9092-8.738a1.6888,1.6888,0,0,0,1.8855-1.8167V12.3875a1.6722,1.6722,0,0,0-1.8855-1.7935H6.5576v4.668Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"23",r:"1"}),(0,a.jsx)("path",{d:"M8 22H20V24H8z"}),(0,a.jsx)("circle",{cx:"23",cy:"9",r:"1"}),(0,a.jsx)("path",{d:"M8 8H20V10H8z"}),(0,a.jsx)("path",{d:"M26,14a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2H8v4H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V20a2,2,0,0,0-2-2H24V14ZM6,6H26v6H6ZM26,26H6V20H26Zm-4-8H10V14H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.338 31 24.602 30 26.8895 26 23 26 26.993 19 28.73 20 26.4463 24 30.3367 24 26.338 31z"}),(0,a.jsx)("path",{d:"M8 14H12V16H8z"}),(0,a.jsx)("path",{d:"M20 14H24V16H20z"}),(0,a.jsx)("path",{d:"M8 18H12V20H8z"}),(0,a.jsx)("path",{d:"M14 18H18V20H14z"}),(0,a.jsx)("path",{d:"M14 22H18V24H14z"}),(0,a.jsx)("path",{d:"M5,11H27v5h2V5c0-1.1025-.8972-2-2-2H5c-1.1028,0-2,.8975-2,2V27c0,1.1025,.8972,2,2,2h15v-2H5V11ZM27,5v4H5V5H27Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,28v-6.1699l2.5898,2.5801,1.4102-1.4102-5-5-5,5,1.4102,1.4102,2.5898-2.5801v6.1699c0,1.1025,.8972,2,2,2h9v-2H8Z"}),(0,a.jsx)("path",{d:"M25,17c-2.8506,0-5,1.29-5,3v7c0,1.71,2.1494,3,5,3s5-1.29,5-3v-7c0-1.71-2.1494-3-5-3Zm0,2c1.936,0,3,.751,3,1s-1.064,1-3,1-3-.751-3-1,1.064-1,3-1Zm0,9c-1.936,0-3-.751-3-1v-4.5796c.8264,.3623,1.8508,.5796,3,.5796s2.1736-.2173,3-.5796v4.5796c0,.249-1.064,1-3,1Z"}),(0,a.jsx)("path",{d:"M28.5898,7.5898l-2.5898,2.5801V4c0-1.1025-.8972-2-2-2H15v2h9v6.1699l-2.5898-2.5801-1.4102,1.4102,5,5,5-5-1.4102-1.4102Z"}),(0,a.jsx)("path",{d:"M7,15c2.8506,0,5-1.29,5-3V5c0-1.71-2.1494-3-5-3S2,3.29,2,5v7c0,1.71,2.1494,3,5,3Zm0-11c1.936,0,3,.751,3,1s-1.064,1-3,1-3-.751-3-1,1.064-1,3-1Zm-3,3.4204c.8264,.3623,1.8508,.5796,3,.5796s2.1736-.2173,3-.5796v4.5796c0,.249-1.064,1-3,1s-3-.751-3-1V7.4204Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,3c-5.2979,0-11,1.252-11,4V25c0,2.748,5.7021,4,11,4s11-1.252,11-4V7c0-2.748-5.7021-4-11-4Zm0,2c5.7976,0,8.7949,1.4341,8.9968,2-.2019,.5659-3.1992,2-8.9968,2-5.8413,0-8.8394-1.4556-9-1.9824v-.0049c.1606-.5571,3.1587-2.0127,9-2.0127ZM7,9.4277c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723Zm0,6c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723Zm9,11.5723c-5.8501,0-8.8491-1.46-9-2v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.5,17c-.936,0-1.8157.3647-2.4773,1.0273l1.4155,1.4131c.2834-.2842.6606-.4404,1.0618-.4404.8271,0,1.5.6729,1.5,1.5,0,.4006-.156.7773-.4392,1.0605l-4.9998,5c-.2834.2832-.6602.4395-1.061.4395-.8271,0-1.5-.6729-1.5-1.5,0-.4006.156-.7773.439-1.0605l-1.4146-1.4136c-.6606.6606-1.0244,1.5396-1.0244,2.4741,0,1.9299,1.5701,3.5,3.5,3.5.9353,0,1.8145-.3643,2.4753-1.0254l4.9998-4.9998c.6609-.6611,1.0249-1.54,1.0249-2.4749,0-1.9299-1.5701-3.5-3.5-3.5h0Z"}),(0,a.jsx)("path",{d:"M16.5,28c-.8271,0-1.5-.6729-1.5-1.5,0-.4006.156-.7773.4392-1.0605l4.9998-5c.2834-.2832.6602-.4395,1.061-.4395.8271,0,1.5.6729,1.5,1.5,0,.4006-.156.7773-.439,1.0605l1.4146,1.4136c.6606-.6606,1.0244-1.5396,1.0244-2.4741,0-1.9299-1.5701-3.5-3.5-3.5-.9353,0-1.8145.3643-2.4753,1.0254l-4.9998,4.9998c-.6609.6611-1.0249,1.54-1.0249,2.4749,0,1.9299,1.5701,3.5,3.5,3.5.936,0,1.8157-.3647,2.4773-1.0273l-1.4155-1.4131c-.2834.2842-.6606.4404-1.0618.4404h0Z"}),(0,a.jsx)("circle",{cx:"7",cy:"6",r:"1"}),(0,a.jsx)("path",{d:"M5.3433,23.1714l1.8286,1.8286h-3.1694l-.0024-1.75v-11.25h-2v11.2051h0v1.7949h.0002c.0012,1.1028.8992,2,2.0022,2h3.1694l-1.8286,1.8286,1.4141,1.4141,4.2427-4.2427-4.2427-4.2427-1.4141,1.4141Z"}),(0,a.jsx)("path",{d:"M4,10h16c1.1045,0,2-.8955,2-2v-1h3.9976l.0024,5h0v3h2v-6.4053h0v-1.5923c0-1.104-.8984-2.0024-2.0024-2.0024h-3.9976v-1c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2v4c0,1.1045.8955,2,2,2ZM4,4h16v4H4v-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.83,20l.34-2L25,17.15V13c0-.08,0-.15,0-.23l5.06-1.36-.51-1.93-4.83,1.29A9,9,0,0,0,20,5V2H18V4.23a8.81,8.81,0,0,0-4,0V2H12V5a9,9,0,0,0-4.71,5.82L2.46,9.48,2,11.41,7,12.77c0,.08,0,.15,0,.23v4.15L1.84,18l.32,2L7,19.18a8.9,8.9,0,0,0,.82,3.57L3.29,27.29l1.42,1.42,4.19-4.2a9,9,0,0,0,14.2,0l4.19,4.2,1.42-1.42-4.54-4.54A8.9,8.9,0,0,0,25,19.18ZM15,25.92A7,7,0,0,1,9,19V13h6ZM9.29,11a7,7,0,0,1,13.42,0ZM23,19a7,7,0,0,1-6,6.92V13h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,2v8h-4L16,2l-8,8h-4V2h-2v8c0,1.1025.8972,2,2,2h4l7,7v7.1719l-2.5859-2.5859-1.4141,1.4141,5,5,5-5-1.4141-1.4141-2.5859,2.5859v-7.1719l7-7h4c1.1028,0,2-.8975,2-2V2h-2Zm-12,15.1714l-6.1714-6.1714,6.1714-6.1714,6.1714,6.1714-6.1714,6.1714Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,12V4H22V7H18a2.0023,2.0023,0,0,0-2,2v6H10V12H2v8h8V17h6v6a2.0023,2.0023,0,0,0,2,2h4v3h8V20H22v3H18V9h4v3ZM8,18H4V14H8Zm16,4h4v4H24ZM24,6h4v4H24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m29,26H12c-.2651,0-.5195-.1053-.707-.2928L2.293,16.7072c-.3906-.3906-.3906-1.0237,0-1.4143L11.293,6.2928c.1875-.1875.4419-.2928.707-.2928h17c.5522,0,1,.4478,1,1v18c0,.5522-.4478,1-1,1Zm-16.5857-2h15.5857V8h-15.5857l-8,8,8,8Z"}),(0,a.jsx)("path",{d:"M20.4141 16 25 11.4141 23.5859 10 19 14.5859 14.4143 10 13 11.4141 17.5859 16 13 20.5859 14.4143 22 19 17.4141 23.5859 22 25 20.5859 20.4141 16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 16H16V18H4z"}),(0,a.jsx)("path",{d:"M2 11H12V13H2z"}),(0,a.jsx)("path",{d:"M29.9189,16.6064l-3-7A.9985.9985,0,0,0,26,9H23V7a1,1,0,0,0-1-1H6V8H21V20.5562A3.9924,3.9924,0,0,0,19.1421,23H12.8579a4,4,0,1,0,0,2h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V17A.9965.9965,0,0,0,29.9189,16.6064ZM9,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,9,26ZM23,11h2.3408l2.1431,5H23Zm0,15a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,23,26Zm5-3H26.8579A3.9954,3.9954,0,0,0,23,20V18h5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12 6 8 6 8 2 6 2 6 6 2 6 2 8 6 8 6 12 8 12 8 8 12 8 12 6z"}),(0,a.jsx)("path",{d:"M29.9189,16.6064l-3-7A.9985.9985,0,0,0,26,9H23V7a1,1,0,0,0-1-1H15V8h6V20.5562A3.9924,3.9924,0,0,0,19.1421,23H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V14H2V24a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V17A.9965.9965,0,0,0,29.9189,16.6064ZM9,26a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,26ZM23,11h2.3408l2.1431,5H23Zm0,15a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,23,26Zm5-3H26.8579A3.9954,3.9954,0,0,0,23,20V18h5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.4819,8.624l-10-5.5a1,1,0,0,0-.9638,0l-10,5.5a1,1,0,0,0,0,1.752L18,15.5913V26.3086l-3.0362-1.6693L14,26.3912l4.5181,2.4848a.9984.9984,0,0,0,.9638,0l10-5.5A1,1,0,0,0,30,22.5V9.5A1,1,0,0,0,29.4819,8.624ZM19,5.1416,26.9248,9.5,19,13.8584,11.0752,9.5Zm9,16.7671-8,4.4V15.5913l8-4.4Z"}),(0,a.jsx)("path",{d:"M2 14H10V16H2z",transform:"matrix(-1 0 0 -1 12 30)"}),(0,a.jsx)("path",{d:"M4 22H12V24H4z",transform:"matrix(-1 0 0 -1 16 46)"}),(0,a.jsx)("path",{d:"M6 18H14V20H6z",transform:"matrix(-1 0 0 -1 20 38)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.9189,18.6064l-3-7c-.1572-.3682-.5186-.6064-.9189-.6064h-3v-2c0-.5527-.4473-1-1-1h-3v2h2v12.5562c-.9094.5308-1.5869,1.4009-1.858,2.4438h-6.2841c-.447-1.7207-1.9993-3-3.8579-3s-3.4109,1.2793-3.8579,3h-1.1421v-8h-2v9c0,.5527.4473,1,1,1h2.1421c.447,1.7207,1.9993,3,3.8579,3s3.4109-1.2793,3.8579-3h6.2841c.4472,1.7207,1.9997,3,3.858,3s3.4108-1.2793,3.858-3h2.142c.5527,0,1-.4473,1-1v-7c0-.1401-.0293-.2725-.0811-.3936ZM9,28c-1.1025,0-2-.8975-2-2s.8975-2,2-2,2,.8975,2,2-.8975,2-2,2ZM23,13h2.3408l2.1431,5h-4.4839v-5ZM23,28c-1.103,0-2-.8975-2-2s.897-2,2-2,2,.8975,2,2-.897,2-2,2ZM28,25h-1.142c-.4472-1.7207-1.9997-3-3.858-3v-2h5v5ZM4.833,11.7529l-1.49,1.4901,1.414,1.414,1.49-1.4901c.5318.3546,1.127.6031,1.753.7321v2.1011h2v-2.1011c.626-.129,1.2211-.3775,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49c.3545-.5318.603-1.127.732-1.753h2.1011v-2h-2.1011c-.129-.6259-.3774-1.2211-.7319-1.7529l1.4901-1.4901-1.414-1.414-1.4901,1.4901c-.5318-.3546-1.127-.6031-1.753-.7321V2h-2v2.1011c-.6259.129-1.2211.3775-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49c-.3545.5318-.603,1.127-.732,1.753H2v2h2.1011c.1289.6259.3774,1.2211.7319,1.7529ZM9,6c1.6569,0,3,1.3431,3,3-.0018,1.6561-1.3439,2.9982-3,3-1.6569,0-3-1.3431-3-3s1.3431-3,3-3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.92,16.61l-3-7A1,1,0,0,0,26,9H23V7a1,1,0,0,0-1-1H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V17A1,1,0,0,0,29.92,16.61ZM23,11h2.34l2.14,5H23ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm10.14-3H12.86a4,4,0,0,0-7.72,0H4V8H21V20.56A4,4,0,0,0,19.14,23ZM23,26a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86A4,4,0,0,0,23,20V18h5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 2 20 14 30 8 20 2z"}),(0,a.jsx)("path",{d:"m28,14v8H4V6h10v-2H4c-1.1045,0-2,.8955-2,2v16c0,1.1045.8955,2,2,2h8v4h-4v2h16v-2h-4v-4h8c1.1046,0,2-.8955,2-2v-8h-2Zm-10,14h-4v-4h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,23H19a3,3,0,0,0-3,3v2h2V26a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V26A3,3,0,0,0,25,23Z"}),(0,a.jsx)("path",{d:"M18,18a4,4,0,1,0,4-4A4,4,0,0,0,18,18Zm6,0a2,2,0,1,1-2-2A2,2,0,0,1,24,18Z"}),(0,a.jsx)("path",{d:"M15 15.415 13.586 14 11 16.587 8.414 14 7 15.415 9.586 18 7 20.586 8.414 22 11 19.414 13.586 22 15 20.586 12.414 18 15 15.415z"}),(0,a.jsx)("path",{d:"M14,26H4V6h7.1716l3.4141,3.4143L15.1716,10H28v8h2V10a2,2,0,0,0-2-2H16L12.5859,4.5858A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M13.48,5.15l5.69,8.14.8,1.15,1.35-.36,4.52-1.21a2.13,2.13,0,0,1,1.12,0A1.84,1.84,0,0,1,28.23,14,1.87,1.87,0,0,1,27,16.45l-18.71,5a1.78,1.78,0,0,1-1,0A1.87,1.87,0,0,1,6,20.12l-.25-.93L5,16.38l-.74-2.74,1.44-.39L8,16.35l.81,1.08,1.31-.35,2.8-.75,1.94-.52-.52-1.93L12.08,5.52l1.4-.37M14.16,3a1.06,1.06,0,0,0-.5,0l-3.09.83A1,1,0,0,0,9.89,5l2.5,9.36-2.81.75L6.85,11.5a1,1,0,0,0-.52-.36,1.06,1.06,0,0,0-.5,0L2.72,12A1,1,0,0,0,2,13.16L3,16.9l.75,2.8.25.94a3.87,3.87,0,0,0,2.74,2.74,3.91,3.91,0,0,0,2,0l18.7-5a3.84,3.84,0,0,0,0-7.44,4.27,4.27,0,0,0-2.16,0l-4.51,1.21L14.7,3.41A1,1,0,0,0,14.16,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.0051,16.3956l-3.5975,3.5977-1.4142-1.4142,3.5976-3.5976M10.5792,20l-3.5792,3.5791,1.4075,1.4209,3.5925-3.5926M5.5792,25l-3.5792,3.5791,1.4075,1.4209,3.5925-3.5926M20.6015,9.971l-3.6081,3.6081,1.4142,1.4142,3.608-3.6082M14,2v2h12.5713s-4.5847,4.5858-4.5847,4.5858l1.4142,1.4142,4.5992-4.5847v12.5847h2l-.0134-16h-15.9866Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,2,17,8l1.4146,1.4023L22,5.8184V28H6V12H4V28a2.0025,2.0025,0,0,0,2,2H22a2.0025,2.0025,0,0,0,2-2V5.8154l3.5859,3.5869L29,8Z"}),(0,a.jsx)("path",{d:"M16,24H12a2.0023,2.0023,0,0,1-2-2V18a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,16,24Zm-4-6v4h4V18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 4 12 10 13.41 11.41 17 7.83 17 20 19 20 19 7.83 22.59 11.41 24 10 18 4z"}),(0,a.jsx)("path",{d:"M8 18H15V20H8z"}),(0,a.jsx)("path",{d:"M8 22H24V24H8z"}),(0,a.jsx)("path",{d:"M8 26H24V28H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M26.4632,7.4637c-.9373-.9372-2.2085-1.4637-3.534-1.4637h-.0107c-1.319,0-2.584.524-3.5167,1.4567l-2.9076,2.9076L8.4181,2.2855c-.3805-.3806-.9976-.3806-1.3781,0l-.5519.5521c-3.3182,3.3195-3.3174,8.7003.0017,12.0189l3.1455,3.145L1.0509,26.5858l1.4141,1.4142,9.9984-9.9985-4.5596-4.5591c-2.4756-2.4761-2.5327-6.4688-.1714-9.0142l8.3573,8.3603c1.223,1.2234,1.2228,3.2066-.0004,4.4298l-.7964.7964,1.4141,1.4141.7964-.7964c1.8623-1.8628,1.9683-4.7998.3638-6.813l2.9406-2.9406c.5626-.5626,1.3257-.8787,2.1214-.8787h0c.7952,0,1.5579.3159,2.1203.8781l2.1224,2.1219c-1.4878,1.4873-5.1719,5.1699-5.1719,5.1699v2.8301c0,3.866-3.134,7-7,7h-3v2h3c4.9706,0,9-4.0294,9-9v-2.0586c.7607-.7021,6-5.9414,6-5.9414l-3.5368-3.5363Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,20H4.73A1.9735,1.9735,0,0,0,3,19a2,2,0,0,0,0,4A1.9735,1.9735,0,0,0,4.73,22H8Z"}),(0,a.jsx)("path",{d:"M29,9a1.9735,1.9735,0,0,0-1.73,1H24v2h3.27A1.9991,1.9991,0,1,0,29,9Z"}),(0,a.jsx)("path",{d:"M25.4141,5,21,.5859,16.5859,5,20,8.4141V18h2V8.4141ZM21,3.4141,22.5859,5,21,6.5859,19.4141,5Z"}),(0,a.jsx)("path",{d:"M12,23.5859V14H10v9.5859L6.5859,27,11,31.4141,15.4141,27ZM9.4141,27,11,25.4141,12.5859,27,11,28.5859Z"}),(0,a.jsx)("path",{d:"M18,10H8.4141L5,6.5859.5859,11,5,15.4141,8.4141,12H18ZM5,12.5859,3.4141,11,5,9.4141,6.5859,11Z"}),(0,a.jsx)("path",{d:"M13,3A2,2,0,0,0,9,3,1.9733,1.9733,0,0,0,10,4.73V8h2V4.73A1.9733,1.9733,0,0,0,13,3Z"}),(0,a.jsx)("path",{d:"M22,27.2705V24H20v3.27a2,2,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M31.4141,21,27,16.5859,23.5859,20H14v2h9.5859L27,25.4141ZM27,19.4141,28.5859,21,27,22.5859,25.4141,21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19 16 19 14 26.171 14 23.878 11.707 25.292 10.293 30 15 25.292 19.707 23.878 18.293 26.171 16 19 16z"}),(0,a.jsx)("path",{d:"M17 12 15 12 15 5.828 12.707 8.121 11.293 6.707 16 2 20.707 6.707 19.293 8.121 17 5.828 17 12z"}),(0,a.jsx)("path",{d:"M17,20.1011V18a4.0045,4.0045,0,0,0-4-4H5.8281l2.293-2.293L6.707,10.293,2,15l4.707,4.707,1.4141-1.414L5.8281,16H13a2.0025,2.0025,0,0,1,2,2v2.1011a5,5,0,1,0,2,0ZM16,28a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,23H12V9h4a4.0045,4.0045,0,0,1,4,4v6A4.0042,4.0042,0,0,1,16,23Zm-2-2h2a2.0023,2.0023,0,0,0,2-2V13a2.002,2.002,0,0,0-2-2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 11 20 9 12 9 12 23 20 23 20 21 14 21 14 17 19 17 19 15 14 15 14 11 20 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V11H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,23H17V9h4a4.0045,4.0045,0,0,1,4,4v6A4.0042,4.0042,0,0,1,21,23Zm-2-2h2a2.0023,2.0023,0,0,0,2-2V13a2.002,2.002,0,0,0-2-2H19Z"}),(0,a.jsx)("path",{d:"M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 11 25 9 17 9 17 23 25 23 25 21 19 21 19 17 24 17 24 15 19 15 19 11 25 11z"}),(0,a.jsx)("path",{d:"M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 11 20 11 20 21 17 21 17 23 25 23 25 21 22 21 22 11 25 11 25 9 17 9 17 11z"}),(0,a.jsx)("path",{d:"M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,23H17V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H19Zm0-7h4V10.9985H19Z"}),(0,a.jsx)("path",{d:"M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 27.172 17 22 15 22 15 27.172 12.414 24.586 11 26 16 31 21 26 19.586 24.586 17 27.172z"}),(0,a.jsx)("path",{d:"M30,12H2v8H4V30H6V20H26V30h2V20h2Zm-2,6H4V14H28Z"}),(0,a.jsx)("path",{d:"M15 4.828 15 10 17 10 17 4.828 19.586 7.414 21 6 16 1 11 6 12.414 7.414 15 4.828z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,4V8H4V4H8M2,2v8h8V2Z"}),(0,a.jsx)("path",{d:"M18,7v4H14V7h4M12,5v8h8V5Z"}),(0,a.jsx)("path",{d:"M8,16v4H4V16H8M2,14v8h8V14Z"}),(0,a.jsx)("path",{d:"M22,10v6H16v6H10v8H30V10Zm-4,8h4v4H18ZM16,28H12V24h4Zm6,0H18V24h4Zm6,0H24V24h4Zm0-6H24V18h4Zm-4-6V12h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,30H4a2,2,0,0,1-2-2V16a2,2,0,0,1,2-2h6a2,2,0,0,1,2,2V28A2,2,0,0,1,10,30ZM4,16V28h6V16Z"}),(0,a.jsx)("path",{d:"M28,4H6A2,2,0,0,0,4,6v6H6V6H28V20H14v2h2v4H14v2h9V26H18V22H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 2H30V6H26z"}),(0,a.jsx)("path",{d:"M26 8H30V12H26z"}),(0,a.jsx)("path",{d:"M20 2H24V6H20z"}),(0,a.jsx)("path",{d:"M20 8H24V12H20z"}),(0,a.jsx)("path",{d:"m28,20h-14v2h2v4h-2v2h9v-2h-5v-4h10c.5304,0,1.0392-.2108,1.4142-.5858s.5858-.8838.5858-1.4142v-6h-2v6Z"}),(0,a.jsx)("path",{d:"m6,6h12v-2H6c-.5304,0-1.0392.2107-1.4142.5858-.3751.375-.5858.8838-.5858,1.4142v6h2v-6Z"}),(0,a.jsx)("path",{d:"m10,14H4c-.5304,0-1.0392.2107-1.4142.5858-.3751.375-.5858.8838-.5858,1.4142v12c0,.5304.2107,1.0392.5858,1.4142.375.375.8838.5858,1.4142.5858h6c.5304,0,1.0392-.2108,1.4142-.5858.3751-.375.5858-.8838.5858-1.4142v-12c0-.5304-.2107-1.0392-.5858-1.4142-.375-.3751-.8838-.5858-1.4142-.5858Zm0,14H4v-12h6v12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,4Z"}),(0,a.jsx)("path",{d:"M14.5,30A5.4962,5.4962,0,0,1,9,24.52c0-3.4426,4.3442-21.0141,4.5293-21.76a1,1,0,0,1,1.9414,0C15.6558,3.5059,20,21.0774,20,24.52A5.4962,5.4962,0,0,1,14.5,30Zm0-22.7561C13.0391,13.38,11,22.4089,11,24.52a3.5,3.5,0,0,0,7,0C18,22.4089,15.9609,13.38,14.5,7.2439Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,4Z"}),(0,a.jsx)("path",{d:"M14.5,30A5.4962,5.4962,0,0,1,9,24.52c0-3.4426,4.3442-21.0141,4.5293-21.76a1,1,0,0,1,1.9414,0C15.6558,3.5059,20,21.0774,20,24.52A5.4962,5.4962,0,0,1,14.5,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10.6,24l1.4,1.4-5,5-5-5,1.4-1.4,2.6,2.6V2h2v24.6l2.6-2.6h0ZM14,2v2h16v-2H14ZM14,10h14v-2h-14v2ZM14,16h12v-2h-12v2ZM14,22h10v-2h-10v2ZM14,28h8v-2h-8v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,30A11,11,0,0,1,13,8a1,1,0,0,1,1,1v9h9a1,1,0,0,1,1,1A11,11,0,0,1,13,30ZM12,10.06A9,9,0,1,0,21.94,20H14a2,2,0,0,1-2-2Z"}),(0,a.jsx)("path",{d:"M28,14H19a2,2,0,0,1-2-2V3a1,1,0,0,1,1-1A11,11,0,0,1,29,13,1,1,0,0,1,28,14Zm-9-2h7.94A9,9,0,0,0,19,4.06Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M15,28V26a9.0133,9.0133,0,0,0,8.9448-8H16a2.0021,2.0021,0,0,1-2-2V8.0552A9.0133,9.0133,0,0,0,6,17H4A11.0125,11.0125,0,0,1,15,6a1,1,0,0,1,1,1v9h9a1,1,0,0,1,1,1A11.0125,11.0125,0,0,1,15,28Z"}),(0,a.jsx)("path",{d:"M29.0057,14H19.995A1.9957,1.9957,0,0,1,18,12V3a1.0083,1.0083,0,0,1,1.02-1A11.0125,11.0125,0,0,1,30,12.98,1.0035,1.0035,0,0,1,29.0057,14ZM20,12h7.9448A9.018,9.018,0,0,0,20,4.0552Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29.3906,14.5269L17.4731,2.6094c-.406-.4062-.9397-.6094-1.4731-.6094s-1.0671.2031-1.4731.6094L2.6094,14.5269c-.4062.4062-.6094.9395-.6094,1.4731s.2031,1.0669.6094,1.4731l11.9175,11.9175c.406.4062.9397.6094,1.4731.6094s1.0671-.2031,1.4731-.6094l11.9175-11.9175c.4062-.4062.6094-.9395.6094-1.4731s-.2031-1.0669-.6094-1.4731Zm-13.3906,13.5088L3.9646,16,16,3.9644l12.0356,12.0356-12.0356,12.0356Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29.3906,14.5269L17.4731,2.6094c-.406-.4062-.9397-.6094-1.4731-.6094s-1.0671.2031-1.4731.6094L2.6094,14.5269c-.4062.4062-.6094.9395-.6094,1.4731s.2031,1.0669.6094,1.4731l11.9175,11.9175c.406.4062.9397.6094,1.4731.6094s1.0671-.2031,1.4731-.6094l11.9175-11.9175c.4062-.4062.6094-.9395.6094-1.4731s-.2031-1.0669-.6094-1.4731Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142M8,1,1,8l7,7,7-7L8,1Z"}),(0,a.jsx)("path",{d:"M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,11H7a3,3,0,0,0-3,3v2H6V14a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V14A3,3,0,0,0,13,11Z"}),(0,a.jsx)("path",{d:"M10,10A4,4,0,1,0,6,6,4,4,0,0,0,10,10Zm0-6A2,2,0,1,1,8,6,2,2,0,0,1,10,4Z"}),(0,a.jsx)("path",{d:"M20 4H30V6H20z"}),(0,a.jsx)("path",{d:"M20 8H30V10H20z"}),(0,a.jsx)("path",{d:"M20 12H26V14H20z"}),(0,a.jsx)("path",{d:"M5,30H3a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2H6v2H3v2H5a2,2,0,0,1,2,2v2A2,2,0,0,1,5,30ZM3,26v2H5V26Z"}),(0,a.jsx)("path",{d:"M13,30H11a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,13,30Zm-2-8v6h2V22Z"}),(0,a.jsx)("path",{d:"M21,30H19a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,21,30Zm-2-8v6h2V22Z"}),(0,a.jsx)("path",{d:"M29,30H27a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,29,30Zm-2-8v6h2V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6V26H4V6H28m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M6 8H16V10H6z"}),(0,a.jsx)("path",{d:"M6 12H16V14H6z"}),(0,a.jsx)("path",{d:"M6 16H12V18H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,19v-1c0-1.7-1.3-3-3-3h-6c-1.7,0-3,1.3-3,3v7h2v-7c0-.5.4-1,1-1h6c.5,0,1,.5,1,1v1h2ZM10,10c0,2.2,1.8,4,4,4s4-1.8,4-4-1.8-4-4-4-4,1.8-4,4ZM16,10c0,1.1-.9,2-2,2s-2-.9-2-2,.9-2,2-2,2,.9,2,2ZM27,21c0,7.8-7.7,8-8,8v2c0,0,10-.2,10-10h-2ZM19,27c2.1,0,6-1.3,6-6h-2c0,3.9-3.6,4-4,4v2ZM5,3h18v16h2V3c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v26c0,1.1.9,2,2,2h12v-2H5V3ZM20,21c.6,0,1,.4,1,1s-.4,1-1,1-1-.4-1-1,.4-1,1-1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.4131,14.584,12.416,6.5869a2.0016,2.0016,0,0,0-2.832,0L1.5869,14.584a2.0016,2.0016,0,0,0,0,2.832l3.2915,3.2915L3,22.5859,4.4141,24l1.8784-1.8784L9.584,25.4131a2.0016,2.0016,0,0,0,2.832,0l2.2559-2.2559-1.4156-1.4155L10.998,23.999,3.001,16.002l7.997-8.001,8.001,8.001L17.5,17.5l1.4146,1.4146,1.4985-1.4986a2.0016,2.0016,0,0,0,0-2.832Z"}),(0,a.jsx)("path",{d:"M30.4131,14.584l-3.2915-3.2915L29,9.4141,27.5859,8,25.7075,9.8784,22.416,6.5869a2.0016,2.0016,0,0,0-2.832,0L17.3281,8.8428l1.4146,1.4145L20.998,8.001l8.001,8.001-8.001,7.997-7.997-7.997,1.5-1.501-1.4156-1.4156L11.5869,14.584a2.0016,2.0016,0,0,0,0,2.832l7.9971,7.9971a2.0016,2.0016,0,0,0,2.832,0l7.9971-7.9971a2.0016,2.0016,0,0,0,0-2.832Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,4V6h6.5859L12.05,12.5356a6.954,6.954,0,0,0-2.05,4.95V28h2V17.4854A4.9683,4.9683,0,0,1,13.4644,13.95L20,7.4141V14h2V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM22,16H20V9.4141L13.4644,15.95A4.9683,4.9683,0,0,0,12,19.4854V26H10V19.4854a6.954,6.954,0,0,1,2.05-4.95L18.5859,8H12V6H22Z"}),(0,a.jsx)("path",{fill:"none",d:"M22,16H20V9.4141L13.4644,15.95A4.9683,4.9683,0,0,0,12,19.4854V26H10V19.4854a6.954,6.954,0,0,1,2.05-4.95L18.5859,8H12V6H22Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,4V6h6.5859L16.05,12.5356a6.954,6.954,0,0,0-2.05,4.95V28h2V17.4854A4.9683,4.9683,0,0,1,17.4644,13.95L24,7.4141V14h2V4Z"}),(0,a.jsx)("path",{d:"M8.5 5.55H10.5V13.45H8.5z",transform:"rotate(-45 9.5 9.5)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM6,7.4141,7.4141,6,14,12.5859,12.5859,14ZM26,16H24V9.4141L17.4644,15.95A4.9683,4.9683,0,0,0,16,19.4854V26H14V19.4854a6.954,6.954,0,0,1,2.05-4.95L22.5859,8H16V6H26Z"}),(0,a.jsx)("path",{fill:"none",d:"M26,6V16H24V9.4141L17.4644,15.95A4.9683,4.9683,0,0,0,16,19.4854V26H14V19.4854a6.954,6.954,0,0,1,2.05-4.95L22.5859,8H16V6ZM14,12.5859,7.4141,6,6,7.4141,12.5859,14Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,4l-7,7,1.4141,1.4141L16,7.8281v6.7686a3.01,3.01,0,0,1-.6572,1.874l-2.2471,2.8086A5.0206,5.0206,0,0,0,12,22.4033V28h2V22.4033a3.01,3.01,0,0,1,.6572-1.874l2.2471-2.8086A5.0206,5.0206,0,0,0,18,14.5967V7.8281l4.5859,4.586L24,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM22.5859,13.4141,18,8.8281v5.7686a5.0206,5.0206,0,0,1-1.0957,3.124l-2.2471,2.8086A3.01,3.01,0,0,0,14,22.4033V27H12V22.4033a5.0206,5.0206,0,0,1,1.0957-3.124l2.2471-2.8086A3.01,3.01,0,0,0,16,14.5967V8.8281l-4.5859,4.586L10,12l7-7,7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M22.5859,13.4141,18,8.8281v5.7686a5.0206,5.0206,0,0,1-1.0957,3.124l-2.2471,2.8086A3.01,3.01,0,0,0,14,22.4033V27H12V22.4033a5.0206,5.0206,0,0,1,1.0957-3.124l2.2471-2.8086A3.01,3.01,0,0,0,16,14.5967V8.8281l-4.5859,4.586L10,12l7-7,7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 13 6 7.414 15 16.414 15 28 17 28 17 16.414 26 7.414 26 13 28 13 28 4 19 4 19 6 24.586 6 16 14.586 7.414 6 13 6 13 4 4 4 4 13 6 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M8 14 8 9.414 15 16.414 15 26 17 26 17 16.414 24 9.414 24 14 26 14 26 6 18 6 18 8 22.586 8 16 14.586 9.414 8 14 8 14 6 6 6 6 14 8 14z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,14H24V9.4141l-7,7V26H15V16.4141l-7-7V14H6V6h8V8H9.4141L16,14.5859,22.5859,8H18V6h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 20H18V28H16z"}),(0,a.jsx)("path",{d:"M23,4a7.0078,7.0078,0,0,0-7,7v3h2V11a5,5,0,1,1,5,5H5.8281l4.586-4.5859L9,10,2,17l7,7,1.4141-1.4141L5.8281,18H23A7,7,0,0,0,23,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16,18h2v8H16ZM4,15l7,7,1.4141-1.4141L7.8281,16H21a5,5,0,1,0-5-5v1h2V11a3,3,0,1,1,3,3H7.8281l4.586-4.5859L11,8Z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4ZM16,18h2v8H16ZM4,15l7-7,1.4141,1.4141L7.8281,14H21a3,3,0,1,0-3-3v1H16V11a5,5,0,1,1,5,5H7.8281l4.586,4.5859L11,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 20H16V28H14z"}),(0,a.jsx)("path",{d:"M9,4a7.0078,7.0078,0,0,1,7,7v3H14V11a5,5,0,1,0-5,5H26.1719l-4.586-4.5859L23,10l7,7-7,7-1.4141-1.4141L26.1719,18H9A7,7,0,0,1,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16,26H14V18h2ZM21,8,19.5859,9.4141,24.1719,14H11a3,3,0,1,1,3-3v1h2V11a5,5,0,1,0-5,5H24.1719l-4.586,4.5859L21,22l7-7Z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM16,26H14V18h2Zm5-4-1.4141-1.4141L24.1719,16H11a5,5,0,1,1,5-5v1H14V11a3,3,0,1,0-3,3H24.1719l-4.586-4.5859L21,8l7,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.8784,15.4648A2.9821,2.9821,0,0,1,17,13.3433V7.8281l4.5859,4.586L23,11,16,4,9,11l1.4141,1.4141L15,7.8281v5.5152a2.9805,2.9805,0,0,1-.8784,2.1211l-2.6572,2.6567A4.9682,4.9682,0,0,0,10,21.6567V28h2V21.6567a2.9805,2.9805,0,0,1,.8784-2.1211l2.6572-2.6567A5.0021,5.0021,0,0,0,16,16.3135a5.0021,5.0021,0,0,0,.4644.5654l2.6572,2.6563A2.9821,2.9821,0,0,1,20,21.6567V28h2V21.6567a4.9682,4.9682,0,0,0-1.4644-3.5356Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM17.8784,15.4648l2.6572,2.6563A4.9682,4.9682,0,0,1,22,21.6567V26H20V21.6567a2.9821,2.9821,0,0,0-.8784-2.1215l-2.6572-2.6563A5.0021,5.0021,0,0,1,16,16.3135a5.0021,5.0021,0,0,1-.4644.5654l-2.6572,2.6567A2.9805,2.9805,0,0,0,12,21.6567V26H10V21.6567a4.9682,4.9682,0,0,1,1.4644-3.5356l2.6572-2.6567A2.9805,2.9805,0,0,0,15,13.3433V8.8281l-4.5859,4.586L9,12l7-7,7,7-1.4141,1.4141L17,8.8281v4.5152A2.9821,2.9821,0,0,0,17.8784,15.4648Z"}),(0,a.jsx)("path",{fill:"none",d:"M17.8784,15.4648l2.6572,2.6563A4.9682,4.9682,0,0,1,22,21.6567V26H20V21.6567a2.9821,2.9821,0,0,0-.8784-2.1215l-2.6572-2.6563A5.0021,5.0021,0,0,1,16,16.3135a5.0021,5.0021,0,0,1-.4644.5654l-2.6572,2.6567A2.9805,2.9805,0,0,0,12,21.6567V26H10V21.6567a4.9682,4.9682,0,0,1,1.4644-3.5356l2.6572-2.6567A2.9805,2.9805,0,0,0,15,13.3433V8.8281l-4.5859,4.586L9,12l7-7,7,7-1.4141,1.4141L17,8.8281v4.5152A2.9821,2.9821,0,0,0,17.8784,15.4648Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,4,17.5859,5.4141,22.1719,10H10a2,2,0,0,0-2,2V28h2V12H22.1719l-4.586,4.5859L19,18l7-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM19,18l-1.4141-1.4141L22.1719,12H10V26H8V12a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,4l7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M19,18l-1.4141-1.4141L22.1719,12H10V26H8V12a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,4l7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,8,17.5859,9.4141,22.1719,14H10a2,2,0,0,0-2,2V28h2V16H22.1719l-4.586,4.5859L19,22l7-7Z"}),(0,a.jsx)("path",{d:"M8 4H10V12H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM8,6h2v8H8ZM19,24l-1.4141-1.4141L22.1719,18H10v8H8V18a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,10l7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M8,6h2v8H8ZM19,24l-1.4141-1.4141L22.1719,18H10v8H8V18a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,10l7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18v6.5859L15.8712,14.457A5.9242,5.9242,0,0,0,17,11a6,6,0,1,0-7,5.91V28h2V16.91a5.9566,5.9566,0,0,0,2.4554-1.04L24.5859,26H18v2H28V18ZM11,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,11,15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"11",cy:"11",r:"3"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,26H16V24h6.5859l-8.833-8.833A4.9678,4.9678,0,0,1,12,15.8989V26H10V15.8989a5.0113,5.0113,0,1,1,5.167-2.146L24,22.5859V16h2Z"}),(0,a.jsx)("path",{fill:"none",d:"M11,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,11,14Zm13,2v6.5859l-8.833-8.833A4.9959,4.9959,0,1,0,10,15.8989V26h2V15.8989a4.9678,4.9678,0,0,0,1.7529-.7319L22.5859,24H16v2H26V16Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,4,20.5859,5.4141,25.1719,10H16.91A5.9965,5.9965,0,1,0,10,16.91V28h2V16.91A6.0061,6.0061,0,0,0,16.91,12h8.2622l-4.586,4.5859L22,18l7-7ZM11,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,11,15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"11",cy:"11",r:"3"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM20,18l-1.4141-1.4141L23.1719,12h-7.273A5.0145,5.0145,0,0,1,12,15.8989V26H10V15.8989A5,5,0,1,1,15.8989,10h7.273l-4.586-4.5859L20,4l7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M20,4,18.5859,5.4141,23.1719,10h-7.273A5,5,0,1,0,10,15.8989V26h2V15.8989A5.0145,5.0145,0,0,0,15.8989,12h7.273l-4.586,4.5859L20,18l7-7ZM11,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,11,14Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,12.09V5.8281l4.5859,4.586L23,9,16,2,9,9l1.4141,1.4141L15,5.8281V12.09A5.9925,5.9925,0,0,0,15,23.91V28h2V23.91A5.9925,5.9925,0,0,0,17,12.09ZM16,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"19",r:"3"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21.5859,12.4141,17,7.8281v6.273a5,5,0,0,1,0,9.7978V28H15V23.8989a5,5,0,0,1,0-9.7978V7.8281l-4.5859,4.586L9,11l7-7,7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M21.5859,12.4141,23,11,16,4,9,11l1.4141,1.4141L15,7.8281v6.273a5,5,0,0,0,0,9.7978V28h2V23.8989a5,5,0,0,0,0-9.7978V7.8281ZM19,19a3,3,0,1,1-3-3A3.0033,3.0033,0,0,1,19,19Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18v6.5859L7.707,6.293A1,1,0,0,0,6,7V28H8V9.4141L24.5859,26H18v2H28V18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z"}),(0,a.jsx)("path",{fill:"none",d:"M26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 4 9 11 10.414 12.414 15 7.828 15 28 17 28 17 7.828 21.586 12.414 23 11 16 4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28 16 21 9 19.586 10.414 24.172 15 4 15 4 17 24.172 17 19.586 21.586 21 23 28 16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.5859,19.5859,22,24.1719V12A8,8,0,0,0,6,12V28H8V12a6,6,0,0,1,12,0V24.1719l-4.5859-4.586L14,21l7,7,7-7Z"}),e)})},1660(e,t,r){r.d(t,{FN:()=>i,dJ:()=>c,vd:()=>n,zt:()=>w});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 26H26V28H20z"}),(0,a.jsx)("path",{d:"M20 18H28V20H20z"}),(0,a.jsx)("path",{d:"M20 10H30V12H20z"}),(0,a.jsx)("path",{d:"M15 4H17V28H15z"}),(0,a.jsx)("path",{d:"M10.586 3.959 7 7.249 3.412 3.958 2 5.373 7 10 12 5.373 10.586 3.959z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,28h-11c-1.103,0-2-.8975-2-2v-6c0-1.1025.897-2,2-2h11c1.1025,0,2,.8975,2,2v6c0,1.1025-.8975,2-2,2ZM17,20v6h11.002l-.002-6h-11ZM13,20H4V7h22v9h2V7c0-1.103-.8975-2-2-2H4c-1.103,0-2,.897-2,2v13c0,1.1025.897,2,2,2h9v-2ZM7.9999,15.9999v-3.586l4.293,4.293,1.414-1.414-4.293-4.293h3.586v-2h-7v7h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,18h11c1.1046,0,2,.8954,2,2v6c0,1.1046-.8954,2-2,2h-11c-1.1046,0-2-.8954-2-2v-6c0-1.1046.8954-2,2-2ZM8,16v-3.586s4.2931,4.293,4.2931,4.293l1.414-1.414-4.293-4.293h3.5859v-2h-7v7h2ZM13,22H4c-1.104-.0013-1.9987-.896-2-2V7c.0011-1.1041.8959-1.9989,2-2h22c1.104.0013,1.9987.896,2,2v9h-2V7H4v13h9v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.707,9.2931a.9992.9992,0,0,0-1.0234-.2417l-9,3a1.001,1.001,0,0,0-.6323.6323l-3,9a1,1,0,0,0,1.2651,1.2651l9-3a1.0013,1.0013,0,0,0,.6323-.6324l3-9A1,1,0,0,0,22.707,9.2931ZM11.5811,20.419l2.2094-6.6284L18.21,18.21Z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,12v2H3v-2H2v2l0,0c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1l0,0v-2H13z"}),(0,a.jsx)("path",{d:"M3 6 3.7 6.7 7.5 2.9 7.5 12 8.5 12 8.5 2.9 12.3 6.7 13 6 8 1z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,24v4H6V24H4v4l.0076-.0049A1.9977,1.9977,0,0,0,6,30H26a2,2,0,0,0,2-2h0V24Z"}),(0,a.jsx)("path",{d:"M6 12 7.411 13.405 15 5.825 15 24 17 24 17 5.825 24.591 13.405 26 12 16 2 6 12z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30.8664,10.1602L25.8664,1.5001c-.2764-.479-.8896-.6431-1.3662-.3662l-7.5,4.3302v-1.464c0-.5522-.4473-1-1-1H4.0002c-.5527,0-1,.4478-1,1v24c0,.5522.4473,1,1,1h24c.5527,0,1-.4478,1-1v-12c0-.5522-.4473-1-1-1h-3.5164l6.0164-3.4736c.4785-.2764.6426-.8877.3662-1.3662ZM5.0002,5.0001h10v10H5.0002V5.0001ZM5.0002,17.0001h10v10H5.0002v-10ZM27.0002,27.0001h-10v-10h10v10ZM17.0002,15.0001v-4.8562l2.8038,4.8562h-2.8038ZM21.7062,14.294l-4-6.9277,6.9277-4,4,6.9277-6.9277,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 27H5V30H2z"}),(0,a.jsx)("path",{d:"M29.71,7.29l-5-5a1,1,0,0,0-1.41,0h0L20,5.59l-1.29-1.3L17.29,5.71,18.59,7,8.29,17.29A1,1,0,0,0,8,18v1.59l-2.71,2.7a1,1,0,0,0,0,1.41h0l3,3a1,1,0,0,0,1.41,0h0L12.41,24H14a1,1,0,0,0,.71-.29L25,13.41l1.29,1.3,1.42-1.42L26.41,12l3.3-3.29a1,1,0,0,0,0-1.41ZM13.59,22h-2L9,24.59,7.41,23,10,20.41v-2l10-10L23.59,12ZM25,10.59,21.41,7,24,4.41,27.59,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M9,20a8.13,8.13,0,0,0,14,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 4 26 4 26 0 24 0 24 4 20 4 20 6 24 6 24 10 26 10 26 6 30 6 30 4z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M9,20a8.13,8.13,0,0,0,14,0Z"}),(0,a.jsx)("path",{d:"M27.82,14A12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a14.71,14.71,0,0,0-.16-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.5,11ZM16,24a8.11,8.11,0,0,1-7-4H23A8.11,8.11,0,0,1,16,24Zm4.5-8A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,22a6,6,0,0,1-5.14-2.92l-1.71,1a8,8,0,0,0,13.7,0l-1.71-1A6,6,0,0,1,16,22Z"}),(0,a.jsx)("path",{d:"M30 4 26 4 26 0 24 0 24 4 20 4 20 6 24 6 24 10 26 10 26 6 30 6 30 4z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M27.61,13A12.33,12.33,0,0,1,28,16,12,12,0,1,1,16,4V2A14,14,0,1,0,29.67,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,2a12,12,0,0,1,10.89,7H25a1,1,0,0,0-1-1H8a1,1,0,0,0-1,1H5.11A12,12,0,0,1,16,4Zm0,24A12,12,0,0,1,4,16a11.86,11.86,0,0,1,.4-3H7v2a2,2,0,0,0,2,2h3.31a2,2,0,0,0,2-1.67L14.83,12h2.34l.55,3.33a2,2,0,0,0,2,1.67H23a2,2,0,0,0,2-2V13h2.6a11.86,11.86,0,0,1,.4,3A12,12,0,0,1,16,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M16,19a8,8,0,0,0-6.85,3.89l1.71,1a6,6,0,0,1,10.28,0l1.71-1A8,8,0,0,0,16,19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9h0A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.54,11Zm9.64,12.92a6,6,0,0,0-10.28,0l-1.71-1a8,8,0,0,1,13.7,0ZM20.5,16a2.5,2.5,0,0,1,0-5h0a2.5,2.5,0,0,1,0,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M24.41 11 23 9.59 21 11.59 19 9.59 17.59 11 19.59 13 17.59 15 19 16.41 21 14.41 23 16.41 24.41 15 22.41 13 24.41 11z"}),(0,a.jsx)("path",{d:"M14.41 11 13 9.59 11 11.59 9 9.59 7.59 11 9.59 13 7.59 15 9 16.41 11 14.41 13 16.41 14.41 15 12.41 13 14.41 11z"}),(0,a.jsx)("path",{d:"M16,19a3,3,0,1,0,3,3,3,3,0,0,0-3-3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM9,16.41,7.59,15l2-2-2-2L9,9.59l2,2,2-2L14.41,11l-2,2,2,2L13,16.41l-2-2ZM16,25a3,3,0,1,1,3-3A3,3,0,0,1,16,25Zm8.41-10L23,16.41l-2-2-2,2L17.59,15l2-2-2-2L19,9.59l2,2,2-2L24.41,11l-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M30,16A14,14,0,1,0,8.8994,28.042l.0156.1562A1.993,1.993,0,0,0,10.9048,30h10.19a1.9929,1.9929,0,0,0,1.99-1.8008l.0156-.1572A13.9674,13.9674,0,0,0,30,16ZM16,4A11.99,11.99,0,0,1,27.97,15.397L22.7637,18H9.2363L4.0305,15.397A11.99,11.99,0,0,1,16,4ZM4.12,17.6777l3.94,1.97.5813,5.81A11.97,11.97,0,0,1,4.12,17.6777ZM21.0947,28H10.9053l-.8-8h11.79Zm2.2644-2.542.5811-5.81,3.94-1.97A11.9712,11.9712,0,0,1,23.3591,25.458Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M10 20H22V22H10z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM9,13.5A2.5,2.5,0,1,1,11.5,16,2.5,2.5,0,0,1,9,13.5ZM22,22H10V20H22Zm-1.5-6A2.5,2.5,0,1,1,23,13.5,2.5,2.5,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM11.5,16A2.5,2.5,0,1,1,14,13.5,2.48,2.48,0,0,1,11.5,16Zm9,0A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.5,11ZM16,24a8,8,0,0,1-6.85-3.89l1.71-1a6,6,0,0,0,10.28,0l1.71,1A8,8,0,0,1,16,24Zm4.5-8A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M8 13H14V15H8z"}),(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM8,13h6v2H8Zm8,11a8,8,0,0,1-6.85-3.89l1.71-1a6,6,0,0,0,10.28,0l1.71,1A8,8,0,0,1,16,24Zm4.5-8a2.5,2.5,0,0,1,0-5h0a2.5,2.5,0,0,1,0,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,28V9H24V4h2V2H20V4h2V9H19V28H15V16H12V11h2V9H8v2h2v5H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V18h4Zm8-17h4V28H21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.1,12.6l-0.6,0.8c0.6,0.5,1.3,0.9,2.1,1.2l0.3-0.9C5.3,13.4,4.7,13,4.1,12.6z"}),(0,a.jsx)("path",{d:"M2.1,9l-1,0.2c0.1,0.8,0.4,1.6,0.8,2.3L2.8,11C2.4,10.4,2.2,9.7,2.1,9z"}),(0,a.jsx)("path",{d:"M5.9,2.4L5.6,1.4C4.8,1.7,4.1,2.1,3.5,2.7l0.6,0.8C4.7,3,5.3,2.6,5.9,2.4z"}),(0,a.jsx)("path",{d:"M2.8,5L1.9,4.5C1.5,5.2,1.3,6,1.1,6.8l1,0.2C2.2,6.3,2.5,5.6,2.8,5z"}),(0,a.jsx)("path",{d:"M8,1v1c3.3,0,6,2.7,6,6s-2.7,6-6,6v1c3.9,0,7-3.1,7-7S11.9,1,8,1z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.24,25.14,7,26.67a13.79,13.79,0,0,0,4.18,2.44l.69-1.87A12,12,0,0,1,8.24,25.14Z"}),(0,a.jsx)("path",{d:"M4.19,18l-2,.41A14.09,14.09,0,0,0,3.86,23L5.59,22A12.44,12.44,0,0,1,4.19,18Z"}),(0,a.jsx)("path",{d:"M11.82,4.76l-.69-1.87A13.79,13.79,0,0,0,7,5.33L8.24,6.86A12,12,0,0,1,11.82,4.76Z"}),(0,a.jsx)("path",{d:"M5.59,10,3.86,9a14.37,14.37,0,0,0-1.64,4.59l2,.34A12.05,12.05,0,0,1,5.59,10Z"}),(0,a.jsx)("path",{d:"M16,2V4a12,12,0,0,1,0,24v2A14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.45,6a5.47,5.47,0,0,1,3.91,1.64,5.7,5.7,0,0,1,0,8L16,26.13,5.64,15.64a5.7,5.7,0,0,1,0-8,5.48,5.48,0,0,1,7.82,0L16,10.24l2.53-2.58A5.44,5.44,0,0,1,22.45,6m0-2a7.47,7.47,0,0,0-5.34,2.24L16,7.36,14.89,6.24a7.49,7.49,0,0,0-10.68,0,7.72,7.72,0,0,0,0,10.82L16,29,27.79,17.06a7.72,7.72,0,0,0,0-10.82A7.49,7.49,0,0,0,22.45,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,4c-2,0-3.9,0.8-5.3,2.2L16,7.4l-1.1-1.1C12,3.3,7.2,3.3,4.3,6.2c0,0-0.1,0.1-0.1,0.1c-3,3-3,7.8,0,10.8L16,29 l11.8-11.9c3-3,3-7.8,0-10.8C26.4,4.8,24.5,4,22.5,4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.21,17.0615,16,29,27.79,17.0615a7.7313,7.7313,0,0,0,0-10.8232,7.494,7.494,0,0,0-10.6841,0L16,7.3643l-1.1062-1.126a7.494,7.494,0,0,0-10.6841,0A7.7313,7.7313,0,0,0,4.21,17.0615ZM26.3552,15.645,16,26.1255V10.23q1.2708-1.2876,2.5413-2.5742a5.4768,5.4768,0,0,1,7.8139,0A5.708,5.708,0,0,1,26.3552,15.645Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m14,28v-9l8-8L13,2,4,11l8,8v9c0,1.1045.8955,2,2,2h14v-2h-14Zm-1-23.1716l6.1716,6.1716-6.1716,6.1716-6.1716-6.1716,6.1716-6.1716Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m14,28v-9l8-8L13,2,4,11l8,8v9c0,1.1045.8955,2,2,2h14v-2h-14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,18h4c1.1045,0,2-.8955,2-2v-4c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v1h-5v-5c0-1.6543-1.3457-3-3-3h-4v-1c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v4c0,1.1045.8955,2,2,2h4c1.1045,0,2-.8955,2-2v-1h4c.5515,0,1,.4487,1,1v16c0,1.6543,1.3457,3,3,3h4v1c0,1.1045.8955,2,2,2h4c1.1045,0,2-.8955,2-2v-4c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v1h-4c-.5515,0-1-.4487-1-1v-9h5v1c0,1.1045.8955,2,2,2ZM24,12h4v4h-4v-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"17.5",cy:"22.5",r:"1.5",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"6.5",cy:"22.5",r:"1.5",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m13,28v-10h7c.3564,0,.686-.1899.8647-.498.0902-.1551.1353-.3285.1353-.502,0-.1711-.0441-.3424-.1318-.4961L12.8682,2.504c-.1919-.3359-.5301-.504-.8682-.504s-.6763.1681-.8682.504l-7.9999,13.9999c-.0878.1537-.1318.3249-.1318.4961,0,.1735.0451.3469.1353.502.1787.3081.5083.498.8647.498h7v10c0,1.1046.8954,2,2,2h15v-2h-15Zm-7.2769-12l6.2769-10.9844,6.2769,10.9844H5.7231Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,22c.8282,0,1.4788-.6792,1.4788-1.5078s-.6506-1.4922-1.4788-1.4922-1.5206.6636-1.5206,1.4922.6924,1.5078,1.5206,1.5078Z"}),(0,a.jsx)("path",{d:"M13,2C6.3722,2,1,7.3688,1,14s5.3662,12.0005,11.9941,12.0005c.3403,0,.7007-.02,1.0212-.0601v-2.0034c-.3405.0401-.6809.0601-1.0212.0601-5.5065,0-9.9941-4.4877-9.9941-9.9971S7.4935,4,13,4s10,4.4906,10,10h2c0-6.6312-5.3721-12-12-12Z"}),(0,a.jsx)("path",{d:"M13.9803,5.9914h-1.5018c-.592-.0013-1.1784.1143-1.7256.3404-.5472.2261-1.0444.5581-1.463.9769s-.7504.9163-.9764,1.4637c-.226.5475-.3416,1.1342-.3402,1.7265l.0267.5011h2l-.0243-.5011c0-.6642.2637-1.3011.7331-1.7707.4694-.4696,1.1061-.7335,1.7698-.7335h1.5018c.6639,0,1.3004.2639,1.7698.7335.4694.4696.733,1.1066.733,1.7707s-.2636,1.3011-.733,1.7707-1.1061.7335-1.7698.7335h-2.0024v4.5076h2.0024v-2.5042c1.1948,0,2.3408-.4749,3.1857-1.3203.8448-.8454,1.3195-1.9919,1.3195-3.1873s-.4748-2.342-1.3195-3.1873c-.8449-.8454-1.9909-1.3203-3.1857-1.3203h-.0001Z"}),(0,a.jsx)("path",{d:"M28.9976,16.9779h-10.0117c-1.1013,0-2.0024.9016-2.0024,2.0034v6.0102c0,1.1018.9011,2.0034,2.0024,2.0034h2.4028l1.702,3.0051,1.702-1.0017-2.3027-4.0068h-3.5041l.0141-5.9915h10v6h-3v2l2.9976-.0051c1.1013,0,2.0024-.9016,2.0024-2.0034v-6.0102c0-1.1018-.9011-2.0034-2.0024-2.0034Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,7,6,17l1.41,1.41L15,10.83V28H2v2H15a2,2,0,0,0,2-2V10.83l7.59,7.58L26,17Z"}),(0,a.jsx)("path",{d:"M6,8V4H26V8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,13l-5,5,1.41,1.41L15,16.83V28H6v2h9a2,2,0,0,0,2-2V16.83l2.59,2.58L21,18Z"}),(0,a.jsx)("path",{d:"M23.5,22H23V20h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,20H9v2H8.5A6.4973,6.4973,0,0,1,7.2,9.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,20H26v2h2v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"}),(0,a.jsx)("circle",{cx:"7",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M22.707,7.293l-5-5A1,1,0,0,0,17,2H11A2.0023,2.0023,0,0,0,9,4V20a2.0023,2.0023,0,0,0,2,2H21a2.0023,2.0023,0,0,0,2-2V8A1,1,0,0,0,22.707,7.293ZM20.5857,8H17V4.4141ZM11,20V4h4V8a2.0023,2.0023,0,0,0,2,2h4V20Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,28H14a2,2,0,0,1-2-2V18.41L4.59,11A2,2,0,0,1,4,9.59V6A2,2,0,0,1,6,4H26a2,2,0,0,1,2,2V9.59A2,2,0,0,1,27.41,11L20,18.41V26A2,2,0,0,1,18,28ZM6,6V9.59l8,8V26h4V17.59l8-8V6Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,6H4V9.17l7.41,7.42.59.58V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.59,10.59A2,2,0,0,1,2,9.17V6A2,2,0,0,1,4,4H26Z"}),(0,a.jsx)("path",{d:"M29.71,11.29l-3-3a1,1,0,0,0-1.42,0L16,17.59V22h4.41l9.3-9.29A1,1,0,0,0,29.71,11.29ZM19.59,20H18V18.41l5-5L24.59,15ZM26,13.59,24.41,12,26,10.41,27.59,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 11.414 28.586 10 24 14.586 19.414 10 18 11.414 22.586 16 18 20.585 19.415 22 24 17.414 28.587 22 30 20.587 25.414 16 30 11.414z"}),(0,a.jsx)("path",{d:"M4,4A2,2,0,0,0,2,6V9.1709a2,2,0,0,0,.5859,1.4145L10,18v8a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V24H16v2H12V17.1709l-.5859-.5855L4,9.1709V6H24V8h2V6a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,9A7.4522,7.4522,0,0,0,16,12.792V8H14v8h8V14H17.6167A5.4941,5.4941,0,1,1,22.5,22H22v2h.5a7.5,7.5,0,0,0,0-15Z"}),(0,a.jsx)("path",{d:"M26,6H4V9.171l7.4142,7.4143L12,17.171V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.5858,10.5853A2,2,0,0,1,2,9.171V6A2,2,0,0,1,4,4H26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M27,11a1,1,0,0,0,1-1V7a1,1,0,0,0-.66-.94l-11-4a1,1,0,0,0-.68,0l-11,4A1,1,0,0,0,4,7v3a1,1,0,0,0,1,1H6V24H4v2H28V24H26V11ZM6,7.7,16,4.06,26,7.7V9H6ZM18,24H14V11h4ZM8,11h4V24H8ZM24,24H20V11h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,16h-2v2h-1c-1.1,0-2,.9-2,2v2c0,1.1.9,2,2,2h4v2h-6v2h3v2h2v-2h1c1.1,0,2-.9,2-2v-2c0-1.1-.9-2-2-2h-4v-2h6v-2h-3v-2ZM28,8h-6v-4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v4h-6c-1.1,0-2,.9-2,2v14c0,1.1.9,2,2,2h15v-2H4v-14h24v4h2v-4c0-1.1-.9-2-2-2ZM20,8h-8v-4h8v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,5.21a.77.77,0,0,1-.46-1.38A15.46,15.46,0,0,1,16,1c2.66,0,6.48.45,9.5,2.62a.77.77,0,0,1,.18,1.07.78.78,0,0,1-1.08.17A15,15,0,0,0,16,2.53,14,14,0,0,0,7.5,5.05.74.74,0,0,1,7,5.21Z"}),(0,a.jsx)("path",{d:"M28.23,12.26a.78.78,0,0,1-.63-.33C25.87,9.49,22.78,6.24,16,6.24a14,14,0,0,0-11.63,5.7.77.77,0,0,1-1.07.17A.76.76,0,0,1,3.15,11,15.54,15.54,0,0,1,16,4.71c5.61,0,9.81,2.08,12.84,6.34a.77.77,0,0,1-.19,1.07A.79.79,0,0,1,28.23,12.26Z"}),(0,a.jsx)("path",{d:"M12.28,31a.78.78,0,0,1-.72-.49.75.75,0,0,1,.44-1c4.37-1.68,7-5.12,7-9.21a2.8,2.8,0,0,0-3-3c-1.86,0-2.76,1-3,3.35a4.27,4.27,0,0,1-4.52,3.83,4.27,4.27,0,0,1-4.32-4.59A11.71,11.71,0,0,1,16,8.39a12,12,0,0,1,12,11.93,18.66,18.66,0,0,1-1.39,6.5.78.78,0,0,1-1,.41.76.76,0,0,1-.41-1,17.25,17.25,0,0,0,1.27-5.91A10.45,10.45,0,0,0,16,9.92a10.18,10.18,0,0,0-10.38,10,2.77,2.77,0,0,0,2.79,3.06,2.74,2.74,0,0,0,3-2.48c.36-3.11,1.89-4.69,4.56-4.69a4.31,4.31,0,0,1,4.52,4.56c0,4.74-3,8.72-8,10.63A.92.92,0,0,1,12.28,31Z"}),(0,a.jsx)("path",{d:"M19.77,30.28a.81.81,0,0,1-.52-.2.76.76,0,0,1,0-1.08,12.63,12.63,0,0,0,3.54-8.68c0-1.56-.48-6.65-6.7-6.65a6.83,6.83,0,0,0-4.94,1.87A6.17,6.17,0,0,0,9.32,20a.77.77,0,0,1-.77.76h0A.76.76,0,0,1,7.78,20,7.73,7.73,0,0,1,10,14.46a8.34,8.34,0,0,1,6-2.32c6.08,0,8.24,4.4,8.24,8.18A14.09,14.09,0,0,1,20.34,30,.75.75,0,0,1,19.77,30.28Z"}),(0,a.jsx)("path",{d:"M8.66,27.74a14.14,14.14,0,0,1-1.56-.09.76.76,0,1,1,.17-1.52c2.49.28,4.45-.16,5.84-1.32a6.37,6.37,0,0,0,2.12-4.53.75.75,0,0,1,.82-.71.78.78,0,0,1,.72.81A7.89,7.89,0,0,1,14.09,26,8.2,8.2,0,0,1,8.66,27.74Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.832,16.9688c-.2724-.6465-.5815-1.38-.8833-2.2852-.79-2.3682,1.7344-4.9522,1.7583-4.9766L24.293,8.293c-.1407.1406-3.4234,3.4775-2.2417,7.0234.3261.978.6513,1.749.938,2.43A9.3812,9.3812,0,0,1,24,22a6.24,6.24,0,0,1-4.1892,5.293,8.52,8.52,0,0,0-2.1038-8l-1.0444-1.0445-.5815,1.3575C14.2449,23.89,12.06,25.76,10.7747,26.54A5.8437,5.8437,0,0,1,8,22a9.6239,9.6239,0,0,1,.9287-3.6289A11.3329,11.3329,0,0,0,10,14V12.2217c.8735.36,2,1.3037,2,3.7783v2.6035l1.7432-1.9341c3.1118-3.4546,2.4624-7.5678,1.206-10.3081A4.4859,4.4859,0,0,1,18,11h2c0-5.5371-4.5786-7-7-7H11l1.1992,1.5986c.1377.1856,2.8628,3.9278,1.3535,7.688A4.9426,4.9426,0,0,0,9,10H8v4a9.6239,9.6239,0,0,1-.9287,3.6289A11.3329,11.3329,0,0,0,6,22c0,3.8477,3.8232,8,10,8s10-4.1523,10-8A11.3771,11.3771,0,0,0,24.832,16.9688ZM12.8352,27.5264a16.4987,16.4987,0,0,0,4.3665-5.5987,6.1053,6.1053,0,0,1,.2573,5.9717A11.3213,11.3213,0,0,1,16,28,10.3278,10.3278,0,0,1,12.8352,27.5264Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10.7838,26.539c.3496-.21.7598-.5,1.2197-.9102-.3901.3301-.7998.6301-1.2402.9001.0103,0,.0103.01.0205.01ZM24.8398,16.97c-.2803-.6499-.5898-1.3799-.8901-2.29-.5601-1.6799.5752-3.5372,1.2226-4.3427.1784-.222.3121-.3935.5332-.6305h0c-1.1064-1.1248-2.8092-1.4576-4.232-.7758-.5206.2494-1.0537.5443-1.5535.8891-.6104-4.5701-4.6802-5.8201-6.9199-5.8201h-2l1.1997,1.6001c.1401.1799,2.8701,3.9199,1.3599,7.6799-.96-2.53-3.2197-3.28-4.5596-3.28h-1v4c0,1.3101-.4502,2.4299-.9302,3.6301-.52,1.3101-1.0698,2.6799-1.0698,4.3699,0,1.9402.9697,3.95,2.7295,5.48.7202-.24,1.4004-.5598,2.0303-.95.4399-.27.8501-.5701,1.2402-.8999.1797-.1602.3696-.3301.54-.49.0195-.02.0396-.04.0596-.0601.2803-.3.5801-.6301.8901-1.01.2397-.29.46-.6001.6699-.9199.6499-.9402,1.3003-2.1101,1.9199-3.55l.5903-1.3501,1.04,1.04c.5195.52,1.1196,1.3301,1.5898,2.3401.0498.1199.1099.25.1602.3899.0298.0601.0498.1301.0801.2.3896,1.01.6196,2.1899.5396,3.4702,0,.0198,0,.0398-.0098.0498,0,.1301-.0103.27-.0298.4001,0,.05-.0103.0999-.0205.1499-.0195.1301-.04.25-.0698.3801.0103.0598-.0098.1099-.0298.1599-.0303.1299-.0601.27-.1001.4099,0,.02,0,.04-.0103.05-.25.8801-.6797,1.7-1.3096,2.4001-.0303.0298-.0503.0598-.0801.0798,4.7397-.9199,7.5801-4.46,7.5801-7.77,0-2.26-.54-3.55-1.1602-5.03Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,20.3972v3c-1,0-2-1.5-2-4v-3c-4,5-5,7-5,9A5.0008,5.0008,0,0,0,23.0458,30,7.5281,7.5281,0,0,1,25,26.3972,7.5281,7.5281,0,0,1,26.9542,30,5.0008,5.0008,0,0,0,30,25.3972C30,23.3972,28.875,21.8258,27,20.3972Z"}),(0,a.jsx)("path",{d:"M17,28H4V24H17V22H4a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H17Z"}),(0,a.jsx)("path",{d:"M28,12H7a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H17V18H7V14H28l.0011,2H30V14A2.0023,2.0023,0,0,0,28,12Z"}),(0,a.jsx)("path",{d:"M25,10H4A2.0021,2.0021,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H25a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,25,10ZM4,4V8H25V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,20V17a4,4,0,0,0-8,0v3a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V22A2.0023,2.0023,0,0,0,28,20Zm-6-3a2,2,0,0,1,4,0v3H22Zm6,11H20V22h8Z"}),(0,a.jsx)("path",{d:"M15,27H4a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2H15v2H4v3H15Z"}),(0,a.jsx)("path",{d:"M17,18H8a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2H19v2H8v3h9Z"}),(0,a.jsx)("path",{d:"M22,9H4A2,2,0,0,1,2,7V4A2,2,0,0,1,4,2H22a2,2,0,0,1,2,2V7A2,2,0,0,1,22,9ZM4,7H22V4H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"24",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M26,2A16.0183,16.0183,0,0,0,10,18v2H3a1,1,0,0,0-.707,1.707l8,8A1,1,0,0,0,12,29V22h2A16.0183,16.0183,0,0,0,30,6V2ZM10,26.5857,5.4141,22H10ZM12,20V18a13.9394,13.9394,0,0,1,3.908-9.6777l7.77,7.7695A13.94,13.94,0,0,1,14,20ZM28,6a13.9163,13.9163,0,0,1-2.98,8.6055L17.3945,6.98A13.9163,13.9163,0,0,1,26,4h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,14a12.9845,12.9845,0,0,0-3.8286-9.2427L24.4143,3,23,4.4138l1.7573,1.7574a11.0713,11.0713,0,0,1,0,15.6572L22,24.5857,23.4143,26l2.7571-2.7573A12.9845,12.9845,0,0,0,30,14Z"}),(0,a.jsx)("circle",{cx:"17",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M22,14a12.9845,12.9845,0,0,0-3.8286-9.2427L16.4143,3,15,4.4138l1.7573,1.7574a11.0713,11.0713,0,0,1,0,15.6572L14,24.5857,15.4143,26l2.7571-2.7573A12.9845,12.9845,0,0,0,22,14Z"}),(0,a.jsx)("circle",{cx:"25",cy:"11",r:"1"}),(0,a.jsx)("circle",{cx:"9",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M9.4141,24l.7573-.7573a13.0708,13.0708,0,0,0,0-18.4854L8,2.5857,5.8286,4.7571a13.0708,13.0708,0,0,0,0,18.4854L6.5859,24,2.293,28.2928A1,1,0,0,0,3,30H13a1,1,0,0,0,.707-1.707ZM4,14A10.9988,10.9988,0,0,1,7.2427,6.1712L8,5.4138l.7573.7574a11.0713,11.0713,0,0,1,0,15.6572L8,22.5857l-.7573-.7573A10.9988,10.9988,0,0,1,4,14ZM5.4141,28,8,25.4138,10.5859,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 10 12.41 11.41 15 8.83 15 23.17 12.41 20.59 11 22 16 27 21 22 19.59 20.59 17 23.17 17 8.83 19.59 11.41 21 10 16 5 11 10z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 16 24 16 24 8 16 8 16 10 22 10 22 16z"}),(0,a.jsx)("path",{d:"M8 24 16 24 16 22 10 22 10 16 8 16 8 24z"}),(0,a.jsx)("path",{d:"M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26.0012L26,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 11 20.59 12.41 23.17 15 8.83 15 11.41 12.41 10 11 5 16 10 21 11.41 19.59 8.83 17 23.17 17 20.59 19.59 22 21 27 16 22 11z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,30H4V2H28l-5.8,9L28,20H6ZM6,18H24.33L19.8,11l4.53-7H6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,30H4V2H28l-5.8,9L28,20H6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.7976,2,20.3555,8.6641A2.9941,2.9941,0,0,1,17.8594,10H12a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V16H17V28H13V19H11V13a1.0009,1.0009,0,0,1,1-1h5.8594a4.9881,4.9881,0,0,0,4.16-2.2266l4.4422-6.664Z"}),(0,a.jsx)("path",{d:"M11,5a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,11,5Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,13,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.13,6.89,11.8,4h8l-2,9H23l-2.49,3.25,1.43,1.43,3.87-5.07a1,1,0,0,0,.11-1A1,1,0,0,0,25,11H20.25L22,3.22a1,1,0,0,0-.2-.85A1,1,0,0,0,21,2H11a1,1,0,0,0-1,.77L9.46,5.22Z"}),(0,a.jsx)("path",{d:"M30,28.59l-9.31-9.31h0l-1.42-1.43h0L10.6,9.19h0L8.93,7.52h0L3.41,2,2,3.41,8.4,9.82,7,15.77A1,1,0,0,0,8,17h4.83L11,28.85a1,1,0,0,0,.6,1.07A1.09,1.09,0,0,0,12,30a1,1,0,0,0,.79-.39l6.68-8.73L28.59,30ZM9.26,15l.81-3.52L13.59,15Zm4.32,10.28L15,16.37,18,19.45Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,28.59,3.41,2,2,3.41,8.4,9.82,7,15.77A1,1,0,0,0,8,17h4.83L11,28.85a1,1,0,0,0,.6,1.07A1.09,1.09,0,0,0,12,30a1,1,0,0,0,.79-.39l6.68-8.73L28.59,30Z"}),(0,a.jsx)("path",{d:"M22.53,16.87l3.26-4.26a1,1,0,0,0,.11-1A1,1,0,0,0,25,11H20.25L22,3.22a1,1,0,0,0-.2-.85A1,1,0,0,0,21,2H11a1,1,0,0,0-1,.77l-.3,1.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,28a5.3257,5.3257,0,0,1-.6714-.044A21.7855,21.7855,0,0,1,12.0332,17H29.95c.0236-.3315.05-.6626.05-1A14,14,0,1,0,16,30ZM27.9492,15H21.9631A24.3247,24.3247,0,0,0,19.21,4.4492,12.0123,12.0123,0,0,1,27.9492,15ZM16.6714,4.0439A21.7855,21.7855,0,0,1,19.9668,15H12.0332A21.7855,21.7855,0,0,1,15.3286,4.0439,5.159,5.159,0,0,1,16.6714,4.0439ZM12.79,4.4492A24.3275,24.3275,0,0,0,10.0369,15H4.0508A12.0126,12.0126,0,0,1,12.79,4.4492ZM4.0508,17h5.9861A24.3275,24.3275,0,0,0,12.79,27.5508,12.0126,12.0126,0,0,1,4.0508,17Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,25l5,2V25l-5-2.5V20a1,1,0,0,0-2,0v2.5L18,25v2l5-2v3.5L21,30v1l3-1,3,1V30l-2-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M26,6a2,2,0,0,0-2-2H8A2,2,0,0,0,6,6V26a2,2,0,0,0,2,2h8V26H8V6H24v6h2Z"}),(0,a.jsx)("path",{d:"M10 18H16V20H10z"}),(0,a.jsx)("path",{d:"M10 14H22V16H10z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M22,10v2H10V10Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,23l5,2V23l-5-2.5V18a1,1,0,0,0-2,0v2.5L18,23v2l5-2v3.5L21,28v1l3-1,3,1V28l-2-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,23l5,2V23l-5-2.5V18a1,1,0,0,0-2,0v2.5L18,23v2l5-2v3.5L21,28v1l3-1,3,1V28l-2-1.5Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H16V26H6V6h4V8h2V6h8V8h2V6h4v7h2V6A2,2,0,0,0,26,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,11a5.0083,5.0083,0,0,0-4.8989,4H11.8989a5,5,0,1,0,0,2h8.2022A5,5,0,1,0,25,11Zm0,8a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,28a2.8828,2.8828,0,0,1-1-.1816v-.0059a3.7662,3.7662,0,0,1-2.0532-2.1338A.971.971,0,0,0,25,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,21,28a3.44,3.44,0,0,1-3.0532-2.3213A.9894.9894,0,0,0,17,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,13,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,5,28H2v2H5a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0,5.1433,5.1433,0,0,0,2.1379,1.62A4.8374,4.8374,0,0,0,29,30h1V28Z"}),(0,a.jsx)("path",{d:"M28,13.63,29.7573,15,31,13.4282,16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211v5.1875a3.6907,3.6907,0,0,1-2,2.0039V22.896a4.9958,4.9958,0,0,0,3-1.8833,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,25,23h5V21H28Zm-6.0513,5.0532a1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,17,21a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,13,18a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,9,21a3.37,3.37,0,0,1-3.0021-2.19L6,12.0615l9.991-7.79L26,12.0718,26.0017,21H25A3.4376,3.4376,0,0,1,21.9487,18.6836Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,28a2.8828,2.8828,0,0,1-1-.1816v-.0059a3.7662,3.7662,0,0,1-2.0532-2.1338A.971.971,0,0,0,25,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,21,28a3.44,3.44,0,0,1-3.0532-2.3213A.9894.9894,0,0,0,17,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,13,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,5,28H2v2H5a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0,5.1433,5.1433,0,0,0,2.1379,1.62A4.8374,4.8374,0,0,0,29,30h1V28Z"}),(0,a.jsx)("path",{fill:"none",d:"M23.75,11h-1.5V7h1.5ZM23,12a1,1,0,1,0,1,1A1,1,0,0,0,23,12Z"}),(0,a.jsx)("path",{d:"M29.9115,14.9355,23.6284,3.3706a.7181.7181,0,0,0-1.2568,0L16.0885,14.9355A.72.72,0,0,0,16.72,16H29.28A.72.72,0,0,0,29.9115,14.9355ZM22.25,7h1.5v4h-1.5ZM23,14a1,1,0,1,1,1-1A1,1,0,0,1,23,14Z"}),(0,a.jsx)("path",{d:"M28,21V18H26v3H25a3.4376,3.4376,0,0,1-3.0513-2.3164,1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,17,21a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,13,18a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,9,21a3.3663,3.3663,0,0,1-3-2.1855v-6.753l10-7.79,2.5327,1.9756.9682-1.7818L16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211v5.1875a3.6892,3.6892,0,0,1-2,2.0039V22.896a4.9958,4.9958,0,0,0,3-1.8833,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,25,23h5V21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4C2.9,2,2,2.9,2,4v24c0,1.1,0.9,2,2,2h15v-2c0-2.8,2.2-5,5-5v-2c-3.9,0-7,3.1-7,7h-3v-4h-2v4H4V4h8v14h2v-5h4v-2h-4V4 h14v7h-4v2h4v15h-4v2h4c1.1,0,2-0.9,2-2V4C30,2.9,29.1,2,28,2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,22.14V17a2,2,0,0,0-2-2H17V9.86a4,4,0,1,0-2,0V15H7a2,2,0,0,0-2,2v5.14a4,4,0,1,0,2,0V17H25v5.14a4,4,0,1,0,2,0ZM8,26a2,2,0,1,1-2-2A2,2,0,0,1,8,26ZM14,6a2,2,0,1,1,2,2A2,2,0,0,1,14,6ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,18H22a2.0023,2.0023,0,0,0-2,2v2H14.4141L10,17.5859V12h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,4v6a2.0023,2.0023,0,0,0,2,2H8v5.5859L3.293,22.293a.9994.9994,0,0,0,0,1.414l5,5a.9995.9995,0,0,0,1.414,0L14.4141,24H20v2a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V20A2.0023,2.0023,0,0,0,28,18ZM6,4h6v6H6ZM9,26.5859,5.4141,23,9,19.4141,12.5859,23ZM22,26V20h6v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,23H11.86a4.17,4.17,0,0,0-.43-1L22,11.43A3.86,3.86,0,0,0,24,12a4,4,0,1,0-3.86-5H11.86a4,4,0,1,0,0,2h8.28a4.17,4.17,0,0,0,.43,1L10,20.57A3.86,3.86,0,0,0,8,20a4,4,0,1,0,3.86,5H20v3h8V20H20ZM8,10a2,2,0,1,1,2-2A2,2,0,0,1,8,10ZM24,6a2,2,0,1,1-2,2A2,2,0,0,1,24,6ZM8,26a2,2,0,1,1,2-2A2,2,0,0,1,8,26Zm14-4h4v4H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,10H2V2h8ZM4,8H8V4H4Z"}),(0,a.jsx)("path",{d:"M30,30H22V22h8Zm-6-2h4V24H24Z"}),(0,a.jsx)("path",{d:"M20,27H8A6,6,0,0,1,8,15v2a4,4,0,0,0,0,8H20Z"}),(0,a.jsx)("path",{d:"M24,17V15a4,4,0,0,0,0-8H12V5H24a6,6,0,0,1,0,12Z"}),(0,a.jsx)("path",{d:"M19,11H13l-3,4,6,6,6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,30H22V22h8Zm-6-2h4V24H24Z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M19,11H13l-3,4,6,6,6-6Z"}),(0,a.jsx)("path",{d:"M24,17V15a4,4,0,0,0,0-8H12V5H24a6,6,0,0,1,0,12Z"}),(0,a.jsx)("path",{d:"M10,10H2V2h8ZM4,8H8V4H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,23h-8.1c0-.4-.2-.7-.4-1l10.5-10.5c.6.4,1.3.6,2,.6,2.2,0,4-1.8,4-4s-1.8-4-4-4-3.4,1.3-3.9,3h-7.1v2h7.1c0,.4.2.7.4,1l-10.5,10.5c-.6-.4-1.3-.6-2-.6-2.2,0-4,1.8-4,4s1.8,4,4,4,3.4-1.3,3.9-3h8.1v3h8v-8h-8v3ZM24,6c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM8,26c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM22,22h4v4h-4v-4ZM4,12V4l7,4-7,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,24H11.8625a4.13,4.13,0,0,0-.4284-1.02L21.98,12.4343A3.9943,3.9943,0,1,0,20.1414,8H14v2h6.1414a3.96,3.96,0,0,0,.4243,1.02L10.02,21.5656A3.9943,3.9943,0,1,0,11.8587,26H20v3h8V21H20ZM24,7a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,24,7ZM8,27a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,27Zm14-4h4v4H22Z"}),(0,a.jsx)("path",{d:"M9.6929,12.7505a5,5,0,0,1-.0005-7.5L11.0166,6.75a3,3,0,0,0-.0005,4.501Z"}),(0,a.jsx)("path",{d:"M7.0474,15.751a9,9,0,0,1,0-13.501l1.3232,1.5a7,7,0,0,0,0,10.501Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,24H16v2h4v3h8V21H20Zm2-1h4v4H22Z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M24,5a3.9962,3.9962,0,0,0-3.8579,3H14v2h6.1421a3.94,3.94,0,0,0,.4248,1.019L14,17.5862,15.4138,19l6.5672-6.5669A3.9521,3.9521,0,0,0,24,13a4,4,0,0,0,0-8Zm0,6a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,24,11Z"}),(0,a.jsx)("path",{d:"M9.6929,12.7505a5,5,0,0,1-.0005-7.5L11.0166,6.75a3,3,0,0,0-.0005,4.501Z"}),(0,a.jsx)("path",{d:"M7.0474,15.751a9,9,0,0,1,0-13.501l1.3232,1.5a7,7,0,0,0,0,10.501Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 19H30V21H18z"}),(0,a.jsx)("path",{d:"M18 23H30V25H18z"}),(0,a.jsx)("path",{d:"M18 27H26V29H18z"}),(0,a.jsx)("path",{d:"M24,4a3.9962,3.9962,0,0,0-3.8579,3H12V4H4v8h8V9h8.1421a3.94,3.94,0,0,0,.4248,1.019L10.019,20.5669A3.9521,3.9521,0,0,0,8,20a4,4,0,1,0,3.8579,5H16V23H11.8579a3.94,3.94,0,0,0-.4248-1.019L21.981,11.4331A3.9521,3.9521,0,0,0,24,12a4,4,0,0,0,0-8ZM10,10H6V6h4ZM8,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,26ZM24,10a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,24,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.8008,11.1382a8.9938,8.9938,0,0,0-17.6006,0A6.533,6.533,0,0,0,2,17.5H2V19a1,1,0,0,0,1,1H15a1,1,0,0,0,0-2H4v-.4966H4a4.5176,4.5176,0,0,1,4.144-4.4819l.8155-.064.0991-.812a6.9936,6.9936,0,0,1,13.8838,0l.0986.812.8154.064A4.4962,4.4962,0,0,1,23.5,22H7a1,1,0,0,0,0,2H23.5a6.4963,6.4963,0,0,0,1.3008-12.8618Z"}),(0,a.jsx)("rect",{width:"18",height:"2",x:"2",y:"26",rx:"1"}),e)});const n=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.17,6l3.42,3.41.58.59H28V26H4V6h7.17m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H16L12.59,4.59A2,2,0,0,0,11.17,4Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26 30 24 26 24z"}),(0,a.jsx)("path",{d:"M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h14v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v8h2v-8 C30,8.9,29.1,8,28,8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 20H30V22H16z"}),(0,a.jsx)("path",{d:"M16 24H30V26H16z"}),(0,a.jsx)("path",{d:"M16 28H23V30H16z"}),(0,a.jsx)("path",{d:"M14,26H4V6h7.17l3.42,3.41.58.59H28v8h2V10a2,2,0,0,0-2-2H16L12.59,4.59A2,2,0,0,0,11.17,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 28H23V30H16z"}),(0,a.jsx)("path",{d:"M16 24H30V26H16z"}),(0,a.jsx)("path",{d:"M16 20H30V22H16z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M28,8H16L12.5859,4.5859A2.0007,2.0007,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V18H4V6h7.1716l3.4141,3.4141L15.1716,10H28v8h2V10A2,2,0,0,0,28,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 13 16.59 14.41 19.17 17 10 17 10 19 19.17 19 16.59 21.59 18 23 23 18 18 13z"}),(0,a.jsx)("path",{d:"M11.1716,6l3.4142,3.4142L15.1716,10H28V26H4V6h7.1716m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H16L12.5858,4.5858A2,2,0,0,0,11.1716,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H25.4141L30,3.4141,28.5859,2,2,28.5859,3.4141,30l2-2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8Zm0,18H7.4141l16-16H28Z"}),(0,a.jsx)("path",{d:"M4,6h7.1716l3.4141,3.4141L15.1716,10H18V8H16L12.5859,4.5859A2.0007,2.0007,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V24H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H20.8284L17.4143,4.5859A2,2,0,0,0,16,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM8,26V14h8v6.17l-2.59-2.58L12,19l5,5,5-5-1.41-1.41L18,20.17V14a2.0025,2.0025,0,0,0-2-2H8a2.0025,2.0025,0,0,0-2,2V26H4V6H16l4,4h8v2H22v2h6V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H16L12.5857,4.5857A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H16a2,2,0,0,0,2-2V16.83l2.59,2.58L22,18l-5-5-5,5,1.41,1.41L16,16.83V26H4V6h7.1716l4,4H28V26H22v2h6a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H16L12.59,4.59A2,2,0,0,0,11.17,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM22,26H14V25a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm6,0H24V25a3,3,0,0,0-3-3H15a3,3,0,0,0-3,3v1H4V6h7.17l3.42,3.41.58.59H28Z"}),(0,a.jsx)("path",{d:"M14,17a4,4,0,1,0,4-4A4,4,0,0,0,14,17Zm4-2a2,2,0,1,1-2,2A2,2,0,0,1,18,15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,15h11c.5523,0,1-.4478,1-1v-7c0-.5523-.4477-1-1-1h-5l-.72-1.45c-.1711-.3395-.5199-.5527-.9-.55h-4.38c-.5523,0-1,.4477-1,1v4H6V2h-2v22c0,1.1025.897,2,2,2h9v3c0,.5522.4477,1,1,1h11c.5523,0,1-.4478,1-1v-7c0-.5523-.4477-1-1-1h-5l-.72-1.45c-.1711-.3395-.5199-.5527-.9-.55h-4.38c-.5523,0-1,.4477-1,1v4H6v-13h9v3c0,.5522.4477,1,1,1ZM17,6h2.76l.45.89.55,1.11h5.24v5h-9v-7ZM17,21h2.76l.45.89.55,1.11h5.24v5h-9v-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6a2.0021,2.0021,0,0,1-2-2V11A2.0021,2.0021,0,0,1,6,9h5.6665a2.0119,2.0119,0,0,1,1.2007.4L16.3335,12H26a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,26,28ZM11.6665,11H5.9985L6,26H26V14H15.6665Z"}),(0,a.jsx)("path",{d:"M28,9H17.6665l-4-3H6V4h7.6665a2.0119,2.0119,0,0,1,1.2007.4L18.3335,7H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,7h3v3h12v-3h3v8h2V7c0-1.1001-.9-2-2-2h-3v-1c0-1.1001-.9-2-2-2h-8c-1.1,0-2,.8999-2,2v1h-3c-1.1,0-2,.8999-2,2v21c0,1.1001.9,2,2,2h4v-2h-4V7ZM12,4h8v4h-8v-4ZM24.4141,18l-1.4141,1.4141,2.5859,2.5859h-7.5859c-2.2061,0-4,1.7944-4,4s1.7939,4,4,4h2v-2h-2c-1.1025,0-2-.897-2-2s.8975-2,2-2h7.5859l-2.5859,2.5859,1.4141,1.4141,5-5-5-5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23h7v7h-2v-3.3516c-1.6448,2.0405-4.1526,3.3516-7.0002,3.3516h-9.9998c-5,0-9-4-9-9v-8h2v8c0,3.8999,3.1001,7,7,7h10c2.4033,0,4.4941-1.1841,5.7517-3h-3.7517v-2ZM21,2h-9.9998c-2.8477,0-5.3555,1.311-7.0002,3.3516v-3.3516h-2v7h7v-2h-3.7517c1.2576-1.8159,3.3484-3,5.7517-3h10c3.8999,0,7,3.1001,7,7v8h2v-8c0-5-4-9-9-9ZM20.7212,12.0117v-2.0117h-7.7212v12h2.27v-5.0732h4.7461v-2.0117h-4.7461v-2.9033h5.4512Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("circle",{cx:"14.5",cy:"23.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"11.5",cy:"19.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"17.5",cy:"19.5",r:"1.5"}),(0,a.jsx)("path",{d:"M12.964 14.5H18.036V16.499H12.964z",transform:"rotate(-45 15.5 15.5)"}),(0,a.jsx)("path",{d:"M18.964 14.5H24.035999999999998V16.499H18.964z",transform:"rotate(-45 21.5 15.5)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.964 13.5H14.036000000000001V15.499H8.964z",transform:"rotate(-45 11.5 14.5)"}),(0,a.jsx)("path",{d:"M15.379 14.5H17.622V16.499H15.379z",transform:"rotate(-44.995 16.5 15.5)"}),(0,a.jsx)("circle",{cx:"10.5",cy:"22.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"7.5",cy:"18.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"13.5",cy:"18.5",r:"1.5"}),(0,a.jsx)("path",{d:"M14,28A10,10,0,0,1,14,8h4v5l6-6L18,1V6H14a12,12,0,0,0,0,24Z"}),(0,a.jsx)("path",{d:"M20,20H16v2h4v2H17v2h3v2H16v2h4a2.0027,2.0027,0,0,0,2-2V22A2.0023,2.0023,0,0,0,20,20Z"}),(0,a.jsx)("path",{d:"M28,30H26a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30Zm-2-8v6h2V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15.67 24 13.934 23 16.221 19 12.332 19 16.325 12 18.062 13 15.778 17 19.668 17 15.67 24z"}),(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,28A10,10,0,0,1,14,8h4v5l6-6L18,1V6H14a12,12,0,0,0,0,24Z"}),(0,a.jsx)("path",{d:"M11.67 24 9.934 23 12.221 19 8.332 19 12.325 12 14.062 13 11.778 17 15.668 17 11.67 24z"}),(0,a.jsx)("path",{d:"M20,20H16v2h4v2H17v2h3v2H16v2h4a2.0027,2.0027,0,0,0,2-2V22A2.0023,2.0023,0,0,0,20,20Z"}),(0,a.jsx)("path",{d:"M28,30H26a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30Zm-2-8v6h2V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m20,6c0,1.8584,1.2798,3.4106,3,3.8579v5.1421h-14v-5.1421c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4c0,1.8584,1.2798,3.4106,3,3.8579v5.1421c0,1.103.897,2,2,2h6v5.1421c-1.7202.4473-3,1.9995-3,3.8579,0,2.2056,1.7944,4,4,4s4-1.7944,4-4c0-1.8584-1.2798-3.4106-3-3.8579v-5.1421h6c1.103,0,2-.897,2-2v-5.1421c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4Zm-14,0c0-1.103.897-2,2-2s2,.897,2,2c0,1.103-.897,2-2,2s-2-.897-2-2Zm12,20c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2ZM26,6c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M26 21H30V23H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M26 9H30V11H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M24 11 24 9 20 9 20 4 14 4 14 28 20 28 20 23 24 23 24 21 20 21 20 11 24 11z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10.1719 15 2 15 2 17 10.1719 17 7.5859 19.5859 9 21 14 16 9 11 7.5859 12.4141 10.1719 15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H8C6.8,6,6,6.8,6,8v14c0,1.2,0.8,2,2,2h8v-2H8V8h20v14h-7.2L16,28.8l1.6,1.2l4.2-6H28c1.2,0,2-0.8,2-2V8 C30,6.8,29.2,6,28,6z"}),(0,a.jsx)("path",{d:"M4,18H2V5c0-1.7,1.3-3,3-3h13v2H5C4.4,4,4,4.4,4,5V18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M19.63,22.13a2.84,2.84,0,0,1-1.28-.27,2.44,2.44,0,0,1-.89-.77,3.57,3.57,0,0,1-.52-1.25,7.69,7.69,0,0,1-.17-1.68,7.83,7.83,0,0,1,.17-1.68,3.65,3.65,0,0,1,.52-1.25,2.44,2.44,0,0,1,.89-.77,2.84,2.84,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.23,5.23,0,0,1,.7,2.93,5.23,5.23,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.63,22.13Zm0-1.22a1.07,1.07,0,0,0,1-.55A3.38,3.38,0,0,0,21,18.85V17.47a3.31,3.31,0,0,0-.29-1.5,1.23,1.23,0,0,0-2.06,0,3.31,3.31,0,0,0-.29,1.5v1.38a3.38,3.38,0,0,0,.29,1.51A1.06,1.06,0,0,0,19.63,20.91Z"}),(0,a.jsx)("path",{d:"M10.63,22V20.82h2V15.63l-1.86,1-.55-1.06,2.32-1.3H14v6.5h1.78V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M19.64,22.13a2.81,2.81,0,0,1-1.28-.27,2.36,2.36,0,0,1-.89-.77A3.39,3.39,0,0,1,17,19.84a7.12,7.12,0,0,1-.17-1.68A7.24,7.24,0,0,1,17,16.48a3.46,3.46,0,0,1,.52-1.25,2.36,2.36,0,0,1,.89-.77,2.81,2.81,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.31,5.31,0,0,1,.7,2.93,5.31,5.31,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.64,22.13Zm0-1.22a1,1,0,0,0,1-.55,3.24,3.24,0,0,0,.3-1.51V17.47a3.17,3.17,0,0,0-.3-1.5,1.22,1.22,0,0,0-2.05,0,3.18,3.18,0,0,0-.29,1.5v1.38a3.25,3.25,0,0,0,.29,1.51A1,1,0,0,0,19.64,20.91Z"}),(0,a.jsx)("path",{d:"M12.62,17.42a1.46,1.46,0,0,0,1-.27.84.84,0,0,0,.31-.68v-.08a.94.94,0,0,0-.3-.74,1.2,1.2,0,0,0-.83-.27,1.65,1.65,0,0,0-.89.24,2.1,2.1,0,0,0-.68.68l-.93-.83a5.37,5.37,0,0,1,.44-.51,2.7,2.7,0,0,1,.54-.4,2.55,2.55,0,0,1,.7-.27,3.25,3.25,0,0,1,.87-.1,3.94,3.94,0,0,1,1.06.14,2.33,2.33,0,0,1,.82.4,1.91,1.91,0,0,1,.54.63,1.87,1.87,0,0,1,.18.83,2,2,0,0,1-.11.67,1.82,1.82,0,0,1-.32.52,1.79,1.79,0,0,1-.47.36,2.27,2.27,0,0,1-.57.2V18a2.34,2.34,0,0,1,.63.21,1.7,1.7,0,0,1,.51.38,1.89,1.89,0,0,1,.34.55,2.07,2.07,0,0,1,.12.73,2,2,0,0,1-.2.92,2,2,0,0,1-.58.72,2.66,2.66,0,0,1-.89.45,3.76,3.76,0,0,1-1.15.16,4.1,4.1,0,0,1-1-.11A3.1,3.1,0,0,1,11,21.7a2.76,2.76,0,0,1-.56-.45A4.22,4.22,0,0,1,10,20.7l1.07-.81a3.07,3.07,0,0,0,.28.42,1.94,1.94,0,0,0,.36.34,1.57,1.57,0,0,0,.45.22,2,2,0,0,0,.57.07,1.45,1.45,0,0,0,1-.3,1.12,1.12,0,0,0,.34-.85v-.08a1,1,0,0,0-.37-.8,1.78,1.78,0,0,0-1.06-.28h-.76V17.42Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M18.58,15.58H15.13L15,18.15H15a4.83,4.83,0,0,1,.26-.45,1.59,1.59,0,0,1,.33-.35,1.53,1.53,0,0,1,.44-.23,2,2,0,0,1,.6-.08,2.54,2.54,0,0,1,.92.16,2.06,2.06,0,0,1,.74.48,2.28,2.28,0,0,1,.5.77,2.73,2.73,0,0,1,.18,1,2.87,2.87,0,0,1-.19,1.07,2.36,2.36,0,0,1-.55.84,2.44,2.44,0,0,1-.89.55,3.23,3.23,0,0,1-1.21.2,3.79,3.79,0,0,1-.94-.11,3,3,0,0,1-.74-.32,2.45,2.45,0,0,1-.55-.45,4.13,4.13,0,0,1-.41-.55l1.06-.81.27.41a1.82,1.82,0,0,0,.34.34,1.59,1.59,0,0,0,.43.22,1.52,1.52,0,0,0,.55.08,1.29,1.29,0,0,0,1-.36,1.41,1.41,0,0,0,.33-1V19.5a1.18,1.18,0,0,0-1.28-1.27,1.44,1.44,0,0,0-.77.18,1.94,1.94,0,0,0-.48.39l-1.19-.17.29-4.31h4.52Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,12V6H21v6a5,5,0,0,1-10,0V4h5.5859L14.293,6.293a.9994.9994,0,0,0,0,1.414L15.5859,9,13.293,11.293l1.414,1.414,3-3a.9994.9994,0,0,0,0-1.414L16.4141,7,19.707,3.707A1,1,0,0,0,19,2H10A1,1,0,0,0,9,3v9a7.0053,7.0053,0,0,0,6,6.92V28H10v2H22V28H17V18.92A7.0053,7.0053,0,0,0,23,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30c-2.4146,0-4.4348-1.7206-4.8997-4h-5.1003c-1.1028,0-2-.8972-2-2v-5h1c1.6543,0,3-1.3458,3-3s-1.3457-3-3-3h-1v-5c0-1.1028.8972-2,2-2h5.1003c.4648-2.2794,2.4851-4,4.8997-4s4.4348,1.7206,4.8997,4h5.1003c1.1028,0,2,.8972,2,2v5h-1c-1.6543,0-3,1.3458-3,3s1.3457,3,3,3h1v5c0,1.1028-.8972,2-2,2h-5.1003c-.4648,2.2794-2.4851,4-4.8997,4ZM6,20.8995v3.1005h7v1c0,1.6542,1.3457,3,3,3s3-1.3458,3-3v-1h7v-3.1005c-2.2793-.4646-4-2.485-4-4.8995s1.7207-4.4349,4-4.8995v-3.1005h-7v-1c0-1.6542-1.3457-3-3-3s-3,1.3458-3,3v1h-7v3.1005c2.2793.4646,4,2.485,4,4.8995s-1.7207,4.4349-4,4.8995Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,10H7a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V16H12V28H8V19H6V13a1.0009,1.0009,0,0,1,1-1H25a1.0009,1.0009,0,0,1,1,1v6H24v9H20V16H18V28a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21a2.0023,2.0023,0,0,0,2-2V13A3.0033,3.0033,0,0,0,25,10Z"}),(0,a.jsx)("path",{d:"M10,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,10,9Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,10,3Z"}),(0,a.jsx)("path",{d:"M22,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,22,9Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,22,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,15a6.0025,6.0025,0,0,0-3.1067-5.2529A3.9792,3.9792,0,0,0,24,7H22a2.0023,2.0023,0,0,1-2,2,6.004,6.004,0,0,0-5.9946,5.8921A7.0005,7.0005,0,0,1,12,10,3.9961,3.9961,0,0,0,9,6.1419V4H7V6.1419A3.9961,3.9961,0,0,0,4,10v5H2v1a14,14,0,0,0,28,0V15Zm-6-4a4.0045,4.0045,0,0,1,4,4H16A4.0045,4.0045,0,0,1,20,11ZM6,10a2,2,0,1,1,4,0,8.991,8.991,0,0,0,1.5322,5H6ZM16,28A12.0166,12.0166,0,0,1,4.0415,17h23.917A12.0166,12.0166,0,0,1,16,28Z"}),e)});const w=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19.6262,29.5256,19.11,27.5935A12.0035,12.0035,0,0,0,25.2312,8.3323l1.5376-1.2788a14.0033,14.0033,0,0,1-7.1426,22.4721Z"}),(0,a.jsx)("path",{d:"M10,29H8V25.18l.8037-.1607C10.2617,24.728,12,23.6206,12,20V18.6182l-4-2V14.3818l4-2V12c0-5.4673,3.9253-9,10-9h2V6.82l-.8037.1607C21.7383,7.272,20,8.3794,20,12v.3818l4,2v2.2364l-4,2V20C20,25.4673,16.0747,29,10,29Zm0-2c4.9346,0,8-2.6821,8-7V17.3818L21.7642,15.5,18,13.6182V12c0-4.5781,2.3853-6.1924,4-6.76V5c-4.9346,0-8,2.6821-8,7v1.6182L10.2358,15.5,14,17.3818V20c0,4.5781-2.3853,6.1924-4,6.76Z"}),(0,a.jsx)("path",{d:"M5.2312,24.9465A14.0032,14.0032,0,0,1,12.3779,2.4734l.5161,1.9321A12.0035,12.0035,0,0,0,6.7688,23.6677Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12.3,13l-1.3,13.2c-.1.9926-.9,1.8-1.9,1.8h-5.1v-2h5l1.3-13h-4.3v-2h4.5l.5-5.2c.0916-1.0019,1-1.8,2-1.8h5v2h-5l-.5,5h4.5v2h-4.7ZM16,19v7c0,1.1.9,2,2,2h2v-2h-2v-7h2v-2h-2c-1.1,0-2,.9-2,2ZM26,17h-2v2h2v7h-2v2h2c1.1,0,2-.9,2-2v-7c0-1.1-.9-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 18 24 18 22 21.897 20 18 18 18 20.905 23 18 28 20 28 22 24.201 24 28 26 28 23.098 23 26 18z"}),(0,a.jsx)("path",{d:"M19,6V4H13.9133a1.9906,1.9906,0,0,0-1.9919,1.8188L11.2686,13H7v2h4.0867l-1,11H5v2h5.0867a1.9906,1.9906,0,0,0,1.9919-1.8188L13.0952,15H18V13H13.2769l.6364-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,8H9c-1.1,0-2,.9-2,2v3.6c0,.5.2,1,.6,1.4l7.4,7.4v5.6c0,1.1.9,2,2,2h4c1.1,0,2-.9,2-2v-5.6l7.4-7.4c.4-.4.6-.9.6-1.4v-3.6c0-1.1-.9-2-2-2ZM29,13.6l-8,8v6.4h-4v-6.4l-8-8v-3.6h20v3.6ZM4,7.6l1,1v2.8l-2.4-2.4c-.4-.4-.6-.9-.6-1.4v-3.6c0-1.1.9-2,2-2h20c1.1,0,2,.9,2,2v2h-2v-2H4v3.6h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.4,15.6l2.6,2.6h0l2.6-2.6,1.4,1.4-4,4-4-4,1.4-1.4ZM21.4,13.4l2.6-2.6h0l2.6,2.6,1.4-1.4-4-4-4,4,1.4,1.4ZM26,4H4c-1.1,0-2,.9-2,2v3.2c0,.5.2,1,.6,1.4l7.4,7.4v8c0,1.1.9,2,2,2h4c1.1,0,2-.9,2-2v-4h-2v4h-4v-8.8l-.6-.6-7.4-7.4v-3.2h22v-2h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,12H17V4h3V2H12V4h3v8H12a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h3v8H12v2h8V28H17V20h3a2,2,0,0,0,2-2V14A2,2,0,0,0,20,12Zm-8,6V14h8v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.51,26a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,19l2.33-8.84A5.54,5.54,0,0,1,7.11,6.73a5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,9h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.57,5.57,0,0,1,2.59,3.41L29.81,19a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,21H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,26ZM9.83,8a3.49,3.49,0,0,0-1.72.46,3.6,3.6,0,0,0-1.66,2.19L4.12,19.49A3.6,3.6,0,0,0,6.6,23.88a3.43,3.43,0,0,0,2.62-.34,3.54,3.54,0,0,0,1.66-2.19L11.5,19h9l.61,2.35a3.58,3.58,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.55,3.55,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,8Z"}),(0,a.jsx)("path",{d:"M10,16a2,2,0,1,1,2-2A2,2,0,0,1,10,16Zm0-2Z"}),(0,a.jsx)("circle",{cx:"22",cy:"12",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"20",cy:"14",r:"1"}),(0,a.jsx)("circle",{cx:"24",cy:"14",r:"1"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.51,30a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,23l2.33-8.84a5.54,5.54,0,0,1,2.59-3.41,5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,13h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.55,5.55,0,0,1,2.59,3.41L29.81,23a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,25H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,30ZM9.83,12a3.49,3.49,0,0,0-1.72.46,3.58,3.58,0,0,0-1.66,2.19L4.12,23.49A3.6,3.6,0,0,0,6.6,27.88a3.43,3.43,0,0,0,2.62-.34,3.57,3.57,0,0,0,1.66-2.19L11.5,23h9l.61,2.35a3.6,3.6,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.53,3.53,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,12Z"}),(0,a.jsx)("path",{d:"M10,20a2,2,0,1,1,2-2A2,2,0,0,1,10,20Zm0-2Z"}),(0,a.jsx)("circle",{cx:"22",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"20",r:"1"}),(0,a.jsx)("circle",{cx:"20",cy:"18",r:"1"}),(0,a.jsx)("circle",{cx:"24",cy:"18",r:"1"}),(0,a.jsx)("path",{d:"M13.75,9l-1.5-1.33a5,5,0,0,1,7.5,0L18.25,9a3,3,0,0,0-4.5,0Z"}),(0,a.jsx)("path",{d:"M21.25,6.37a7,7,0,0,0-10.5,0L9.25,5.05a9,9,0,0,1,13.5,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23h-.1315l.9635-1.4453A1.0008,1.0008,0,0,0,24,21V12.0005c0-9.8858-7.92-10-8-10A1,1,0,0,0,15,3l-.0005,2H14a.9956.9956,0,0,0-.581.1865l-7,5a1,1,0,0,0-.3676,1.13l1,3a.9976.9976,0,0,0,1.09.6733l4.87-.6958L9.1519,20.47a1,1,0,0,0,.0161,1.085L10.1315,23H10a3.0033,3.0033,0,0,0-3,3v4H26V26A3.0033,3.0033,0,0,0,23,23Zm-7.1519-9.47a1,1,0,0,0-.99-1.52l-6.1738.8819-.5025-1.5078L14.32,7.0005H15.999a1,1,0,0,0,1-.9995L17,4.1289C18.5013,4.4636,21.2167,5.67,21.86,10H19v2h3v2H19v2h3v2H19v2h3v.6973L20.4648,23h-7.93L11.19,20.9824ZM24,28H9V26a1.0009,1.0009,0,0,1,1-1H23a1.0006,1.0006,0,0,1,1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 10H15V12H8z"}),(0,a.jsx)("path",{d:"M28.4142,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5644,3.5644,0,0,0,2.7654,3.5251A3.5062,3.5062,0,0,0,29,24.5V9.4144A2,2,0,0,0,28.4142,8ZM17,26H6V6H17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M8 10H15V12H8z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M28.4143,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5645,3.5645,0,0,0,2.7654,3.5249A3.506,3.506,0,0,0,29,24.5V9.4146A2,2,0,0,0,28.4143,8ZM15,12H8V10h7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,16a1.9857,1.9857,0,0,0-.5859-1.4141L24.6211,8.793,27.489,5.9253a2,2,0,1,0-1.414-1.4141L23.207,7.3789l-5.7929-5.793a1.9995,1.9995,0,0,0-2.8282,0L8.793,7.3789,5.925,4.5112A2,2,0,1,0,4.511,5.9253L7.3789,8.793l-5.793,5.7929a1.9995,1.9995,0,0,0,0,2.8282l5.793,5.7929L4.511,26.0747a2,2,0,1,0,1.414,1.4141l2.868-2.8677,5.7929,5.793a1.9995,1.9995,0,0,0,2.8282,0l5.7929-5.793,2.868,2.8677a2,2,0,1,0,1.414-1.4141L24.6211,23.207l5.793-5.7929A1.9866,1.9866,0,0,0,31,16Zm-7.793,5.793L20.4141,19,19,20.4141l2.793,2.7929L16,29l-5.793-5.793L13,20.4141,11.5859,19,8.793,21.793,3,16l5.7925-5.7935L11.5859,13,13,11.5859,10.2065,8.7925,16,3l5.7935,5.7925L19,11.5859,20.4141,13l2.7934-2.7935L29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,18.1841V13.8159a3.0007,3.0007,0,1,0-2,0v4.3687a3,3,0,1,0,2,0ZM16,10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,16,10Zm0,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,22Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19.8779,12.1218a.4186.4186,0,0,0-.437-.0971l-9.1666,3.3335a.4167.4167,0,0,0-.0122.7786l4.0006,1.6,1.6,4.0007A.4168.4168,0,0,0,16.25,22h.0067a.4169.4169,0,0,0,.3849-.2743l3.3333-9.1669A.4165.4165,0,0,0,19.8779,12.1218Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,14H14V12a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A2.0023,2.0023,0,0,0,19,14Zm0,7H13V16h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,11v6.4678a5.0216,5.0216,0,0,0,2.8613,4.52L16,23l2.1387-1.0127A5.0216,5.0216,0,0,0,21,17.4678V11Zm8,6.4678a3.012,3.012,0,0,1-1.7168,2.7109L16,20.7861l-1.2832-.6074A3.012,3.012,0,0,1,13,17.4678V13h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,22H19V20a1.0011,1.0011,0,0,0-1-1H14a1.0011,1.0011,0,0,0-1,1v2H11V20a3.0033,3.0033,0,0,1,3-3h4a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M16,16a3.5,3.5,0,1,1,3.5-3.5A3.5041,3.5041,0,0,1,16,16Zm0-5a1.5,1.5,0,1,0,1.5,1.5A1.5017,1.5017,0,0,0,16,11Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,14.2783V12a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A1.9929,1.9929,0,0,0,20,14.2783ZM16,10a2.0023,2.0023,0,0,1,2,2v2H14V12A2.0023,2.0023,0,0,1,16,10Zm3,11H13V16h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,21.9847c0-.4595-.0568-.9053-.155-1.3354l2.155-.8273-.7167-1.8671-2.2063.8469c-.4529-.7197-1.0501-1.3392-1.7568-1.8106l.9695-2.1777-1.8271-.8135-.9706,2.1801c-.478-.123-.9761-.1954-1.492-.1954s-1.014.0724-1.492.1954l-.9706-2.1801-1.8271.8135.9695,2.1777c-.7067.4714-1.3039,1.0909-1.7568,1.8106l-2.2063-.8469-.7167,1.8671,2.155.8273c-.0983.4302-.155.8759-.155,1.3354,0,.4396.0507.8672.1408,1.2802l-2.1408.9531.8135,1.8271,2.08-.9261c.442.7173,1.0259,1.3374,1.7191,1.8134l-.9023,2.3508,1.8671.7167.856-2.2299c.5004.1357,1.0239.2146,1.5666.2146s1.0662-.0789,1.5666-.2146l.856,2.2299,1.8671-.7167-.9023-2.3508c.6932-.476,1.2772-1.0961,1.7191-1.8134l2.08.9261.8135-1.8271-2.1408-.9531c.0901-.413.1408-.8406.1408-1.2802Zm-6,4c-2.2061,0-4-1.7944-4-4s1.7939-4,4-4,4,1.7944,4,4-1.7939,4-4,4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m13.471,14.8852l1.4788,1.4788,1.4142-1.4142-1.4788-1.4787c.5146-.7222.871-1.5616,1.0245-2.471h2.0903v-2h-2.0903c-.1535-.9094-.5098-1.7488-1.0245-2.471l1.4788-1.4788-1.4142-1.4142-1.4788,1.4788c-.7222-.5146-1.5616-.871-2.471-1.0245v-2.0903h-2v2.0903c-.9094.1535-1.7488.5099-2.471,1.0245l-1.4788-1.4788-1.4142,1.4142,1.4788,1.4788c-.5146.7222-.871,1.5616-1.0245,2.471H2v2h2.0903c.1535.9094.5098,1.7488,1.0245,2.471l-1.4788,1.4787,1.4142,1.4142,1.4788-1.4788c.7222.5146,1.5616.871,2.471,1.0245v2.0903h2v-2.0903c.9094-.1535,1.7488-.5098,2.471-1.0245Zm-7.471-4.8852c0-2.2056,1.7939-4,4-4s4,1.7944,4,4-1.7939,4-4,4-4-1.7944-4-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.5,4H8.5L1.7158,13.0454,16,29.5269,30.2842,13.0454ZM27,12H21.5543l-3.75-6H22.5ZM10.3021,14l3.7536,10.23L5.19,14Zm2.13,0H19.568l-3.569,9.7212Zm.3725-2L16,6.8867,19.1957,12Zm8.8935,2H26.81L17.9427,24.2314ZM9.5,6h4.6957l-3.75,6H5Z"}),e)})},9249(e,t,r){r.d(t,{_V:()=>c,vG:()=>i,vg:()=>w,ww:()=>n});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M23.5,4H8.5L1.7158,13.0454,6.01,18l1.5114-1.31L5.19,14h5.2554L16,22.8867,21.5544,14H26.81L15.8125,26.6919,17.3242,28l12.96-14.9546ZM5,12,9.5,6h4.6958l-3.75,6ZM16,6.8867,19.1958,12H12.8042Zm0,12.2266L12.8044,14h6.3912ZM21.5542,12l-3.75-6H22.5L27,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,19.9307a8,8,0,1,0-2,0V22H10v2h5v4h2V24h5V22H17ZM10,12a6,6,0,1,1,6,6A6.0066,6.0066,0,0,1,10,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,4V6h6.5859l-7.6884,7.6885a8.028,8.028,0,1,0,1.414,1.414L26,7.4141V14h2V4ZM12,26a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,12,26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,24v4H8V24H6v4H6a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2h0V24Z"}),(0,a.jsx)("path",{d:"M21 21 19.586 19.586 17 22.172 17 14 15 14 15 22.172 12.414 19.586 11 21 16 26 21 21z"}),(0,a.jsx)("path",{d:"M28 4 28 2 22 2 22 12 24 12 24 8 27 8 27 6 24 6 24 4 28 4z"}),(0,a.jsx)("path",{d:"M17,12H13V2h4a3.0033,3.0033,0,0,1,3,3V9A3.0033,3.0033,0,0,1,17,12Zm-2-2h2a1.0011,1.0011,0,0,0,1-1V5a1.0011,1.0011,0,0,0-1-1H15Z"}),(0,a.jsx)("path",{d:"M9,2H4V12H6V9H9a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,9,2ZM6,7V4H9l.001,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2,12v8a3,3,0,0,0,3,3h5V15H6v2H8v4H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1h5V9H5A3,3,0,0,0,2,12Z"}),(0,a.jsx)("path",{d:"M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z"}),(0,a.jsx)("path",{d:"M12 9 12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,10H23.2383A4.4867,4.4867,0,0,0,16,4.7065,4.4873,4.4873,0,0,0,8.7617,10H6a2.0025,2.0025,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2V28a2.0025,2.0025,0,0,0,2,2H24a2.0025,2.0025,0,0,0,2-2V18a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,26,10ZM17,7.5A2.5,2.5,0,1,1,19.5,10H17ZM12.5,5A2.503,2.503,0,0,1,15,7.5V10H12.5a2.5,2.5,0,0,1,0-5ZM6,12h9v4H6Zm2,6h7V28H8ZM24.0012,28H17V18h7ZM17,16V12h9l.0012,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12.9,7c-.4-1.7-2-3-3.9-3s-3.4,1.3-3.9,3h-3.1v2h3.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h17.1v-2H12.9ZM9,10c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM23,12c-1.9,0-3.4,1.3-3.9,3H2v2h17.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h3.1v-2h-3.1c-.4-1.7-2-3-3.9-3ZM23,18c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM14,20c-1.9,0-3.4,1.3-3.9,3H2v2h8.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h12.1v-2h-12.1c-.4-1.7-2-3-3.9-3ZM14,26c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m15,22l-1.4099,1.4102,2.5798,2.5898H4V8h-2v18c0,1.1025.8972,2,2,2h12.1699l-2.5798,2.5898,1.4099,1.4102,5-5-5-5Z"}),(0,a.jsx)("circle",{cx:"11",cy:"16",r:"1"}),(0,a.jsx)("path",{d:"m24,20H8c-1.1028,0-2-.8972-2-2v-4c0-1.1028.8972-2,2-2h16c1.1028,0,2,.8972,2,2v4c0,1.1028-.8972,2-2,2Zm-16-6v4h16v-4H8Z"}),(0,a.jsx)("path",{d:"m28,4h-12.1699l2.5801-2.5898L17,0l-5,5,5,5,1.4102-1.4102-2.5801-2.5898h12.1699v18h2V6c0-1.1025-.8972-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,4a7,7,0,1,1-7,7,7,7,0,0,1,7-7m0-2a9,9,0,1,0,9,9A9,9,0,0,0,14,2Z"}),(0,a.jsx)("path",{d:"M28,11a13.9563,13.9563,0,0,0-4.1051-9.8949L22.4813,2.5187A11.9944,11.9944,0,0,1,5.5568,19.5194l-.0381-.0381L4.1051,20.8949A13.9563,13.9563,0,0,0,14,25v3H10v2H20V28H16V24.84A14.0094,14.0094,0,0,0,28,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,4H6A2.0023,2.0023,0,0,0,4,6V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM22,26V22H18v4H14V22H10V18h4V14H10V10h4V6h4v4h4V6h4V26Z"}),(0,a.jsx)("path",{d:"M14 10H18V14H14z"}),(0,a.jsx)("path",{d:"M14 18H18V22H14z"}),(0,a.jsx)("path",{d:"M18 14H22V18H18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M3 18H5V30H3z"}),(0,a.jsx)("path",{d:"M9 24H11V30H9z"}),(0,a.jsx)("path",{d:"M15 16H17V30H15z"}),(0,a.jsx)("path",{d:"M21 20H23V30H21z"}),(0,a.jsx)("path",{d:"M27 14H29V30H27z"}),(0,a.jsx)("path",{d:"M28,2c-1.1046,0-2,.8954-2,2,0,.178.0307.3475.0743.5117l-3.5624,3.5627c-.1644-.0437-.3339-.0745-.512-.0745-.3171,0-.6129.0805-.8793.2119l-3.1332-2.0887c.0026-.0416.0125-.081.0125-.1232,0-1.1046-.8954-2-2-2s-2,.8954-2,2c0,.279.0578.5443.1609.7855l-3.9287,5.238c-.0771-.009-.1527-.0234-.2322-.0234-.178,0-.3474.0307-.5116.0743l-3.5627-3.5627c.0436-.1642.0743-.3336.0743-.5116,0-1.1046-.8954-2-2-2s-2,.8954-2,2,.8954,2,2,2c.178,0,.3474-.0307.5116-.0743l3.5627,3.5627c-.0436.1642-.0743.3336-.0743.5116,0,1.1046.8954,2,2,2s2-.8954,2-2c0-.279-.0578-.5443-.1609-.7855l3.9286-5.238c.0771.009.1527.0234.2323.0234.3171,0,.6129-.0805.8793-.2119l3.1332,2.0887c-.0026.0416-.0125.081-.0125.1232,0,1.1046.8954,2,2,2s2-.8954,2-2c0-.178-.0307-.3474-.0743-.5116l3.5627-3.5627c.1642.0436.3336.0743.5116.0743,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H22a2.0023,2.0023,0,0,1-2-2V22a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,30Zm-6-8h-.0012L22,28h6V22Z"}),(0,a.jsx)("path",{d:"M18,26H12a3.0033,3.0033,0,0,1-3-3V19h2v4a1.001,1.001,0,0,0,1,1h6Z"}),(0,a.jsx)("path",{d:"M26,18H24V15a1.001,1.001,0,0,0-1-1H18V12h5a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M15,18a.9986.9986,0,0,1-.4971-.1323L10,15.2886,5.4968,17.8677a1,1,0,0,1-1.4712-1.0938l1.0618-4.572L2.269,9.1824a1,1,0,0,1,.5662-1.6687l4.2-.7019L9.1006,2.5627a1,1,0,0,1,1.7881-.0214l2.2046,4.271,4.0764.7021a1,1,0,0,1,.5613,1.668l-2.8184,3.02,1.0613,4.5718A1,1,0,0,1,15,18Zm-5-5s.343.18.4971.2686l3.01,1.7241-.7837-3.3763,2.282-2.4453-3.2331-.5569-1.7456-3.382L8.3829,8.6144l-3.3809.565,2.2745,2.437-.7841,3.3763,3.0105-1.7241C9.657,13.18,10,13,10,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,4H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6A2,2,0,0,0,12,4Zm0,8H6V6h6Z"}),(0,a.jsx)("path",{d:"M26,4H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,8H20V6h6Z"}),(0,a.jsx)("path",{d:"M12,18H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V20A2,2,0,0,0,12,18Zm0,8H6V20h6Z"}),(0,a.jsx)("path",{d:"M26,18H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V20A2,2,0,0,0,26,18Zm0,8H20V20h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,30H29V27a3,3,0,0,0-3-3H22a3,3,0,0,0-3,3v3H17V27a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z"}),(0,a.jsx)("path",{d:"M24,12a3,3,0,1,1-3,3,3,3,0,0,1,3-3m0-2a5,5,0,1,0,5,5A5,5,0,0,0,24,10Z"}),(0,a.jsx)("path",{d:"M15,22H13V19a3,3,0,0,0-3-3H6a3,3,0,0,0-3,3v3H1V19a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z"}),(0,a.jsx)("path",{d:"M8,4A3,3,0,1,1,5,7,3,3,0,0,1,8,4M8,2a5,5,0,1,0,5,5A5,5,0,0,0,8,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,19H6V17a3.0033,3.0033,0,0,1,3-3h5v2H9a1.0011,1.0011,0,0,0-1,1Z"}),(0,a.jsx)("path",{d:"M12,13a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,12,13Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,12,7Z"}),(0,a.jsx)("path",{d:"M20,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,20,20Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,20,14Z"}),(0,a.jsx)("path",{d:"M26,26H24V24a1.0011,1.0011,0,0,0-1-1H17a1.0011,1.0011,0,0,0-1,1v2H14V24a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,11H11a3,3,0,0,0-3,3v4h2V14a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v1h2V14A3,3,0,0,0,17,11Z"}),(0,a.jsx)("path",{d:"M10,6a4,4,0,1,0,4-4A4,4,0,0,0,10,6Zm6,0a2,2,0,1,1-2-2A2,2,0,0,1,16,6Z"}),(0,a.jsx)("path",{d:"M22,27H16a2.0021,2.0021,0,0,1-2-2V19a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,22,27Zm-6-8v6h6V19Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,30H8V27H4v3H2V27a2.0023,2.0023,0,0,1,2-2H8a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M30,30H28V27H24v3H22V27a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M20,30H18V27H14v3H12V27a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("circle",{cx:"16",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"6",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"26",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"21",cy:"18",r:"2"}),(0,a.jsx)("circle",{cx:"11",cy:"18",r:"2"}),(0,a.jsx)("path",{d:"M26,14H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2v8A2.0023,2.0023,0,0,1,26,14ZM6,4v8H26V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,24H10a2.0021,2.0021,0,0,1-2-2V10a2.0021,2.0021,0,0,1,2-2H22a2.0021,2.0021,0,0,1,2,2V22A2.0021,2.0021,0,0,1,22,24ZM10,10V22H22V10Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,21H9V19a3.0033,3.0033,0,0,1,3-3h6v2H12a1.0011,1.0011,0,0,0-1,1Z"}),(0,a.jsx)("path",{d:"M15,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,15,15Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,15,9Z"}),(0,a.jsx)("path",{d:"M24,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,22Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,16Z"}),(0,a.jsx)("path",{d:"M30,28H28V26a1.0011,1.0011,0,0,0-1-1H21a1.0011,1.0011,0,0,0-1,1v2H18V26a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M14,27.7334l-5.2344-2.791A8.9858,8.9858,0,0,1,4,17V4H24v6h2V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13V9H9V19h4v4H23V13Zm-8-2h6v6H11ZM21,21H15V19h4V15h2Z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 10 15 10 15 15 10 15 10 17 15 17 15 22 17 22 17 17 22 17 22 15 17 15 17 10z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 18.18 10.41 14.59 9 16 14 21 23 12 21.59 10.581 14 18.18z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,8v2h6.5859L18,18.5859,13.707,14.293a.9994.9994,0,0,0-1.414,0L2,24.5859,3.4141,26,13,16.4141l4.293,4.2929a.9994.9994,0,0,0,1.414,0L28,11.4141V18h2V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"20",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"23",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"26",cy:"8",r:"1"}),(0,a.jsx)("path",{d:"M28,4H4A2.0023,2.0023,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4Zm0,2v4H4V6ZM4,12h6V26H4Zm8,14V12H28V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z"}),(0,a.jsx)("path",{d:"M28,4H4A2.002,2.002,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H14V26H4V12H28v3h2V6A2.0023,2.0023,0,0,0,28,4Zm0,6H4V6H28Z"}),(0,a.jsx)("circle",{cx:"20",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"23",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"26",cy:"8",r:"1"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 9 18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21.5",cy:"29.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"24.5",cy:"25.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"7.5",cy:"25.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"4.5",cy:"29.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"10.499",cy:"29.5",r:"1.5"}),(0,a.jsx)("path",{d:"M15.868 30.496 14.132 29.504 17.276 24 11.277 24 16.132 15.504 17.868 16.496 14.723 22 20.724 22 15.868 30.496z"}),(0,a.jsx)("path",{d:"M23.5,22H23V20h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,20H9v2H8.5A6.4973,6.4973,0,0,1,7.2,9.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.37,20.52,17,15.41V13.86A4,4,0,1,0,12,10h2a2,2,0,1,1,4,.34A2.08,2.08,0,0,1,15.89,12h0a.89.89,0,0,0-.89.89v2.52L5.63,20.52A3.1,3.1,0,0,0,4.25,22a2.83,2.83,0,0,0,2.56,4H25.19a2.83,2.83,0,0,0,2.56-4A3.1,3.1,0,0,0,26.37,20.52ZM25.19,24H6.81A.81.81,0,0,1,6,23.19a1,1,0,0,1,.52-.88L16,17.14l9.48,5.17a1,1,0,0,1,.52.88A.81.81,0,0,1,25.19,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,17A11.0109,11.0109,0,0,1,17,27.9492V14h6V12H17V9.8579a4,4,0,1,0-2,0V12H9v2h6V27.9492A11.0109,11.0109,0,0,1,5,17H3a13,13,0,0,0,26,0ZM14,6a2,2,0,1,1,2,2A2.0023,2.0023,0,0,1,14,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21.5",cy:"7.5",r:"1.5"}),(0,a.jsx)("path",{d:"M14.4143,20H9V14.5857l6.03-6.03A5.3518,5.3518,0,0,1,15,8a6,6,0,1,1,6,6,5.3583,5.3583,0,0,1-.5559-.03ZM11,18h2.5857l6.1706-6.1709.5174.0957A3.935,3.935,0,0,0,21,12a4.0507,4.0507,0,1,0-3.925-3.2729l.0952.5166L11,15.4143Z"}),(0,a.jsx)("path",{d:"M28,20H19v2h9v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"}),(0,a.jsx)("circle",{cx:"7",cy:"25",r:"1"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,12V10H22V4H20v6H12V4H10v6H4v2h6v8H4v2h6v6h2V22h8v6h2V22h6V20H22V12Zm-8,8H12V12h8Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,28H3a1,1,0,0,1,0-2H19a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M15,20H3a1,1,0,0,1,0-2H15a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M24.5 23.5H28.5V25.5H24.5z",transform:"rotate(45 26.5 24.5)"}),(0,a.jsx)("path",{d:"M28 15H32V17H28z"}),(0,a.jsx)("path",{d:"M24.5 6.5H28.5V8.5H24.5z",transform:"rotate(-45 26.5 7.5)"}),(0,a.jsx)("path",{d:"M17 2H19V6H17z"}),(0,a.jsx)("path",{d:"M7.5 6.5H11.5V8.5H7.5z",transform:"rotate(225 9.5 7.5)"}),(0,a.jsx)("path",{d:"M18,8a8.0092,8.0092,0,0,0-8,8h2a6,6,0,1,1,6,6H7a1,1,0,0,0,0,2H18A8,8,0,0,0,18,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,22H13a1,1,0,0,0,0,2h9.6772a11.0991,11.0991,0,0,1-7.5561,2.9976c-.1384,0-.2783.0048-.4177,0a11.0945,11.0945,0,0,1-3.201-21.584,15.1528,15.1528,0,0,0-.0488,6.5869h2.0457a13.15,13.15,0,0,1,.39-7.6206A1.015,1.015,0,0,0,12.98,3a.9825.9825,0,0,0-.1746.0156A13.0958,13.0958,0,0,0,14.63,28.9971c.164.0063.3281,0,.4907,0A13.04,13.04,0,0,0,25.3779,24H29a1,1,0,0,0,0-2Z"}),(0,a.jsx)("path",{d:"M27,20H17a1,1,0,0,1,0-2H27a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M25,16H13a1,1,0,0,1,0-2H25a1,1,0,0,1,0,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM4,24V8H28V24Z"}),(0,a.jsx)("path",{d:"M22,11H18V21h4a3,3,0,0,0,3-3V14A3,3,0,0,0,22,11Zm1,7a1,1,0,0,1-1,1H20V13h2a1,1,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M13 11 13 15 10 15 10 11 8 11 8 21 10 21 10 17 13 17 13 21 15 21 15 11 13 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,13H20v6h2a1,1,0,0,0,1-1V14A1,1,0,0,0,22,13Z"}),(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM15,21H13V17H10v4H8V11h2v4h3V11h2Zm10-3a3,3,0,0,1-3,3H18V11h4a3,3,0,0,1,3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,15V11a2,2,0,0,0-2-2H22V23h2V17h1.48l2.34,6H30l-2.33-6H28A2,2,0,0,0,30,15Zm-6-4h4v4H24Z"}),(0,a.jsx)("path",{d:"M16,23H12V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,16,23Zm-2-2h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H14Z"}),(0,a.jsx)("path",{d:"M8 9 8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,7v18h-3v-6h-10v6h-3V7h3v9h10V7h3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16V15A9,9,0,0,0,7,15v1A5,5,0,0,0,7,26H9V15a7,7,0,0,1,14,0V26h2a5,5,0,0,0,0-10ZM4,21a3,3,0,0,1,3-3v6A3,3,0,0,1,4,21Zm21,3V18a3,3,0,0,1,0,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,10h-.06A9,9,0,0,0,7.06,10H7A5,5,0,0,0,7,20H9V11a7,7,0,0,1,14,0V21a4,4,0,0,1-3.17,3.91,4,4,0,1,0,.05,2A6,6,0,0,0,25,21V20a5,5,0,0,0,0-10ZM4,15a3,3,0,0,1,3-3v6A3,3,0,0,1,4,15ZM16,28a2,2,0,1,1,2-2A2,2,0,0,1,16,28Zm9-10V12a3,3,0,0,1,0,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,28H13a2.0023,2.0023,0,0,1-2-2V21H6a2.0023,2.0023,0,0,1-2-2V13a2.002,2.002,0,0,1,2-2h5V6a2.002,2.002,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v5h5a2.0023,2.0023,0,0,1,2,2v6a2.0027,2.0027,0,0,1-2,2H21v5A2.0027,2.0027,0,0,1,19,28ZM6,13v6h7v7h6V19h7V13H19V6H13v7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30V28A10.0114,10.0114,0,0,0,28,18h2A12.0134,12.0134,0,0,1,18,30Z"}),(0,a.jsx)("path",{d:"M18,26V24a6.0066,6.0066,0,0,0,6-6h2A8.0092,8.0092,0,0,1,18,26Z"}),(0,a.jsx)("path",{d:"M18,22V20a2.0023,2.0023,0,0,0,2-2h2A4.0042,4.0042,0,0,1,18,22Z"}),(0,a.jsx)("path",{d:"M10,2a9.01,9.01,0,0,0-9,9H3a7,7,0,0,1,14,0,7.09,7.09,0,0,1-3.501,6.1348L13,17.4229v3.0732a2.9354,2.9354,0,0,1-.9009,2.1514,4.1824,4.1824,0,0,1-4.6318,1.03A4.0918,4.0918,0,0,1,5,20H3a6.1156,6.1156,0,0,0,3.6694,5.5117,5.7822,5.7822,0,0,0,2.3145.4863A6.5854,6.5854,0,0,0,13.4624,24.11,4.94,4.94,0,0,0,15,20.4961V18.5537A9.1077,9.1077,0,0,0,19,11,9.01,9.01,0,0,0,10,2Z"}),(0,a.jsx)("path",{d:"M9.28,8.0825A3.0061,3.0061,0,0,1,13,11h2a4.9786,4.9786,0,0,0-1.8843-3.9111A5.0414,5.0414,0,0,0,8.835,6.1323,4.95,4.95,0,0,0,5.1323,9.835,5.0318,5.0318,0,0,0,7.436,15.2935,3.0777,3.0777,0,0,1,9,17.9229V20h2V17.9229a5.0608,5.0608,0,0,0-2.5371-4.3458A3.0016,3.0016,0,0,1,9.28,8.0825Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 18H22V20H20z"}),(0,a.jsx)("path",{d:"M28 16H30V18H28z"}),(0,a.jsx)("path",{d:"M14 6H16V8H14z"}),(0,a.jsx)("path",{d:"M16,22H12V16a2.0023,2.0023,0,0,0-2-2H4a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h6v4a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V24A2.0023,2.0023,0,0,0,16,22ZM4,22V16h6v6Zm8,6V24h4v4Z"}),(0,a.jsx)("path",{d:"M28,30H24a2.0021,2.0021,0,0,1-2-2V24a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,28,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,2H22a2.0023,2.0023,0,0,0-2,2v6H18a2.0023,2.0023,0,0,0-2,2v2a2.0023,2.0023,0,0,0,2,2h2a2.0023,2.0023,0,0,0,2-2V12h6a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2ZM18,14V12h2v2Zm4-4V4h6v6Z"}),(0,a.jsx)("path",{d:"M8,10H4A2.0021,2.0021,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H8a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,8,10ZM4,4V8H8V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21",cy:"20",r:"2"}),(0,a.jsx)("circle",{cx:"14",cy:"12",r:"2"}),(0,a.jsx)("circle",{cx:"29",cy:"19",r:"1"}),(0,a.jsx)("path",{d:"M26.5,30A3.5,3.5,0,1,1,30,26.5,3.5041,3.5041,0,0,1,26.5,30Zm0-5A1.5,1.5,0,1,0,28,26.5,1.5017,1.5017,0,0,0,26.5,25Z"}),(0,a.jsx)("path",{d:"M14,30a3.958,3.958,0,0,1-2.126-.6211,6.9977,6.9977,0,1,1,4.1109-6.8384A3.9916,3.9916,0,0,1,14,30Zm-1.8843-3.0278.5391.4946a1.9915,1.9915,0,1,0,2.0039-3.343l-.6909-.2432.03-.8467a5.0085,5.0085,0,1,0-2.5166,4.3023Z"}),(0,a.jsx)("path",{d:"M24,16a6.0067,6.0067,0,0,1-6-6,5.3246,5.3246,0,0,1,.0269-.5327A3.9564,3.9564,0,0,1,16,6a4.0045,4.0045,0,0,1,4-4,3.9564,3.9564,0,0,1,3.4673,2.0271C23.6484,4.009,23.8252,4,24,4a6,6,0,0,1,0,12ZM20,4a2.0021,2.0021,0,0,0-2,2,1.9805,1.9805,0,0,0,1.43,1.9023l.9018.2706-.2153.9162A3.9938,3.9938,0,1,0,24,6a4.0064,4.0064,0,0,0-.9121.1162l-.9155.2141-.27-.9006A1.9807,1.9807,0,0,0,20,4Z"}),(0,a.jsx)("path",{d:"M6.5,11A4.5,4.5,0,1,1,11,6.5,4.5051,4.5051,0,0,1,6.5,11Zm0-7A2.5,2.5,0,1,0,9,6.5,2.503,2.503,0,0,0,6.5,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,3H5A2.0023,2.0023,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0023,2.0023,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3ZM19,9H13V5h6Zm0,2v4H13V11Zm-8,0v4H5V11Zm0,6v4H5V17Zm2,0h6v4H13Zm8-2V11h6l0,4ZM5,23h6v4H5Zm16,4V23h6v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3ZM9,21H5V17H9Zm2,2h4v4H11Zm6,0h4v4H17Zm0-8V11h4v4Zm4-6H17V5h4Zm2,2h4v4H23ZM15,5V15H5V5Zm8,22V17h4V27Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,8V6H8V8H18v4H4V8H2v8H4V14h6.2192l2.0533,8.2129A4.9923,4.9923,0,0,0,17.123,26H26a4.0045,4.0045,0,0,0,4-4V19.3623a2.0007,2.0007,0,0,0-.4639-1.28L25.0684,12.72A1.9968,1.9968,0,0,0,23.5317,12H20V8ZM26,24H17.123a2.9949,2.9949,0,0,1-2.91-2.2725L12.2808,14H18v6H28v2A2.0023,2.0023,0,0,1,26,24ZM23.5317,14l3.3333,4H20V14Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},i){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M8,14c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S11.3,14,8,14z"}),(0,a.jsx)("circle",{cx:"8",cy:"11.8",r:".8"}),(0,a.jsx)("path",{d:"M8.5,4H7.8C6.5,4,5.5,5,5.5,6.2c0,0,0,0,0,0v0.2h1V6.2C6.5,5.6,7.1,5,7.8,5h0.8c0.7,0,1.2,0.6,1.2,1.2S9.2,7.5,8.5,7.5h-1 v2.2h1V8.5c1.2,0,2.2-1,2.2-2.2S9.7,4,8.5,4z"}),e):l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("circle",{cx:"16",cy:"23.5",r:"1.5"}),(0,a.jsx)("path",{d:"M17,8H15.5A4.49,4.49,0,0,0,11,12.5V13h2v-.5A2.5,2.5,0,0,1,15.5,10H17a2.5,2.5,0,0,1,0,5H15v4.5h2V17a4.5,4.5,0,0,0,0-9Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,23a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Zm1.1421-7.754v2.5014h-2.25V15h2.125a2.3763,2.3763,0,0,0,0-4.7526h-1.5a2.3777,2.3777,0,0,0-2.375,2.375V13.26h-2.25v-.6377A4.6279,4.6279,0,0,1,15.5171,8h1.5a4.6238,4.6238,0,0,1,.125,9.246Z"}),(0,a.jsx)("path",{fill:"none",d:"M16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Zm1.1421-7.754v2.5014h-2.25V15h2.125a2.3763,2.3763,0,0,0,0-4.7526h-1.5a2.3777,2.3777,0,0,0-2.375,2.375V13.26h-2.25v-.6377A4.6279,4.6279,0,0,1,15.5171,8h1.5a4.6238,4.6238,0,0,1,.125,9.246Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,10H21a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21a2.0023,2.0023,0,0,0,2-2V13A3.0033,3.0033,0,0,0,27,10Zm1,9H26v9H22V19H20V13a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M20,5a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,20,5Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,22,5Z"}),(0,a.jsx)("path",{d:"M14,16V13a3.0033,3.0033,0,0,0-3-3H5a3.0033,3.0033,0,0,0-3,3v3H0v2H16V16ZM4,13a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v3H4Z"}),(0,a.jsx)("path",{d:"M4,5A4,4,0,1,1,8,9,4.0042,4.0042,0,0,1,4,5ZM6,5A2,2,0,1,0,8,3,2.0023,2.0023,0,0,0,6,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m23,29h-14c-.3555,0-.6846-.189-.8638-.4961L1.1362,16.5039c-.1816-.3113-.1816-.6965,0-1.0078L8.1362,3.4961c.1792-.3071.5083-.4961.8638-.4961h14c.3555,0,.6846.189.8638.4961l7,12c.1816.3113.1816.6965,0,1.0078l-7,12c-.1792.3071-.5083.4961-.8638.4961Zm-13.4258-2h12.8516l6.4165-11-6.4165-11h-12.8516l-6.4165,11,6.4165,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30.8508,15.4487l-6.9641-11.9165c-.1926-.3301-.5437-.5322-.9224-.5322h-13.9287c-.3787,0-.7297.2021-.9224.5322L1.1492,15.4487c-.199.3403-.199.7622,0,1.1025l6.9641,11.9165c.1926.3301.5437.5322.9224.5322h13.9287c.3787,0,.7297-.2021.9224-.5322l6.9641-11.9165c.199-.3403.199-.7622,0-1.1025Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m3,23v-14c0-.3555.189-.6846.4961-.8638L15.4961,1.1362c.3113-.1816.6965-.1816,1.0078,0l12,7c.3071.1792.4961.5083.4961.8638v14c0,.3555-.189.6846-.4961.8638l-12,7c-.3113.1816-.6965.1816-1.0078,0l-12-7c-.3071-.1792-.4961-.5083-.4961-.8638Zm2-13.4258v12.8516l11,6.4165,11-6.4165v-12.8516l-11-6.4165-11,6.4165Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16.5513,30.8508l11.9165-6.9641c.3301-.1926.5322-.5437.5322-.9224v-13.9287c0-.3787-.2021-.7297-.5322-.9224L16.5513,1.1492c-.3403-.199-.7622-.199-1.1025,0L3.5322,8.1133c-.3301.1926-.5322.5437-.5322.9224v13.9287c0,.3787.2021.7297.5322.9224l11.9165,6.9641c.3403.199.7622.199,1.1025,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 2H6V6H2z"}),(0,a.jsx)("path",{d:"M10 2H14V6H10z"}),(0,a.jsx)("path",{d:"M18 2H22V6H18z"}),(0,a.jsx)("path",{d:"M26 2H30V6H26z"}),(0,a.jsx)("path",{d:"M2 10H6V14H2z"}),(0,a.jsx)("path",{d:"M10 10H14V14H10z"}),(0,a.jsx)("path",{d:"M18 10H22V14H18z"}),(0,a.jsx)("path",{d:"M26 10H30V14H26z"}),(0,a.jsx)("path",{d:"M2 18H6V22H2z"}),(0,a.jsx)("path",{d:"M10 18H14V22H10z"}),(0,a.jsx)("path",{d:"M18 18H22V22H18z"}),(0,a.jsx)("path",{d:"M26 18H30V22H26z"}),(0,a.jsx)("path",{d:"M2 26H6V30H2z"}),(0,a.jsx)("path",{d:"M10 26H14V30H10z"}),(0,a.jsx)("path",{d:"M18 26H22V30H18z"}),(0,a.jsx)("path",{d:"M26 26H30V30H26z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29 9 21 9 21 13 23 13 23 11 26.847 11 22 23 24.157 23 29 11 29 9z"}),(0,a.jsx)("path",{d:"M14 21 14 9 12 9 12 23 20 23 20 21 14 21z"}),(0,a.jsx)("path",{d:"M8 9 8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"16",r:"5"}),(0,a.jsx)("path",{d:"M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26.0012L26,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"19",cy:"19",r:"4"}),(0,a.jsx)("path",{d:"M28,30H10a2.0023,2.0023,0,0,1-2-2V10a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30ZM10,10V28H28V10Z"}),(0,a.jsx)("path",{d:"M11 2 2 2 2 11 4 11 4 4 11 4 11 2z"}),e)});const n=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.6123,2.2138a1.01,1.01,0,0,0-1.2427,0L1,13.4194l1.2427,1.5717L4,13.6209V26a2.0041,2.0041,0,0,0,2,2H26a2.0037,2.0037,0,0,0,2-2V13.63L29.7573,15,31,13.4282ZM18,26H14V18h4Zm2,0V18a2.0023,2.0023,0,0,0-2-2H14a2.002,2.002,0,0,0-2,2v8H6V12.0615l10-7.79,10,7.8005V26Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,17h-4v-2h4v2ZM22,17h-4v-2h4v2ZM14,17h-4v-2h4v2ZM6,17H2v-2h4v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2,15h28v2H2v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H4a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,30ZM4,20H3.9985L4,28H28V20Z"}),(0,a.jsx)("path",{d:"M28,14H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,14ZM4,4H3.9985L4,12H28V4Z"}),e)});const w=l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21 10 17 10 17 6 15 6 15 10 11 10 11 12 15 12 15 16 17 16 17 12 21 12 21 10z"}),(0,a.jsx)("path",{d:"M28,10H26V4a2.0023,2.0023,0,0,0-2-2H8A2.0023,2.0023,0,0,0,6,4v6H4a2.0023,2.0023,0,0,0-2,2V30H30V12A2.0023,2.0023,0,0,0,28,10ZM14,28V22h4v6Zm6,0V21a1,1,0,0,0-1-1H13a1,1,0,0,0-1,1v7H4V12H8V4H24v8h4V28Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17a2.0023,2.0023,0,0,0-2,2v6H4V14H2V30H4V26H28v4h2V21A5.0059,5.0059,0,0,0,25,16Zm3,8H17V18h8a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M9.5,17A1.5,1.5,0,1,1,8,18.5,1.5017,1.5017,0,0,1,9.5,17m0-2A3.5,3.5,0,1,0,13,18.5,3.5,3.5,0,0,0,9.5,15Z"}),(0,a.jsx)("path",{d:"M21 6 17 6 17 2 15 2 15 6 11 6 11 8 15 8 15 12 17 12 17 8 21 8 21 6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.5,15A1.5,1.5,0,1,1,8,16.5,1.5,1.5,0,0,1,9.5,15m0-2A3.5,3.5,0,1,0,13,16.5,3.5,3.5,0,0,0,9.5,13Z"}),(0,a.jsx)("path",{d:"M25,14H17a2,2,0,0,0-2,2v6H4V10.6L16,4.14l12.53,6.74.94-1.76-13-7a1,1,0,0,0-.94,0l-13,7A1,1,0,0,0,2,10V30H4V24H28v6h2V19A5,5,0,0,0,25,14Zm-8,8V16h8a3,3,0,0,1,3,3v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 19H17V21H15z"}),(0,a.jsx)("path",{d:"M15 23H17V25H15z"}),(0,a.jsx)("path",{d:"M23,11.67V4h3V2H6V4H9v7.67a2,2,0,0,0,.4,1.2L11.75,16,9.4,19.13a2,2,0,0,0-.4,1.2V28H6v2H26V28H23V20.33a2,2,0,0,0-.4-1.2L20.25,16l2.35-3.13A2,2,0,0,0,23,11.67ZM21,4v7H11V4Zm0,16.33V28H11V20.33L14.25,16,12,13h8l-2.25,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28 19 28 11 26 11 26 21 32 21 32 19 28 19z"}),(0,a.jsx)("path",{d:"M24 11 22 11 20.5 15 19 11 17 11 17 21 19 21 19 14 20.5 18 22 14 22 21 24 21 24 11z"}),(0,a.jsx)("path",{d:"M9 13 11 13 11 21 13 21 13 13 15 13 15 11 9 11 9 13z"}),(0,a.jsx)("path",{d:"M5 11 5 15 2 15 2 11 0 11 0 21 2 21 2 17 5 17 5 21 7 21 7 11 5 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M28 14 28 6 26 6 26 16 32 16 32 14 28 14z"}),(0,a.jsx)("path",{d:"M24 6 22 6 20.5 10 19 6 17 6 17 16 19 16 19 9 20.5 13 22 9 22 16 24 16 24 6z"}),(0,a.jsx)("path",{d:"M9 8 11 8 11 16 13 16 13 8 15 8 15 6 9 6 9 8z"}),(0,a.jsx)("path",{d:"M5 6 5 10 2 10 2 6 0 6 0 16 2 16 2 12 5 12 5 16 7 16 7 6 5 6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,11H25V21h2V18h3a2.0027,2.0027,0,0,0,2-2V13A2.0023,2.0023,0,0,0,30,11Zm-3,5V13h3l.001,3Z"}),(0,a.jsx)("path",{d:"M10 13 12 13 12 21 14 21 14 13 16 13 16 11 10 11 10 13z"}),(0,a.jsx)("path",{d:"M23 11 17 11 17 13 19 13 19 21 21 21 21 13 23 13 23 11z"}),(0,a.jsx)("path",{d:"M6 11 6 15 3 15 3 11 1 11 1 21 3 21 3 17 6 17 6 21 8 21 8 11 6 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.4761,13.9932,16.8472,3.4365a1.04,1.04,0,0,0-1.6944,0L8.4941,14.0444A9.9861,9.9861,0,0,0,7,19a9,9,0,0,0,18,0A10.0632,10.0632,0,0,0,23.4761,13.9932ZM16,26.0005a7.0089,7.0089,0,0,1-7-7,7.978,7.978,0,0,1,1.2183-3.9438l.935-1.4888L21.2271,23.6411A6.9772,6.9772,0,0,1,16,26.0005Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,12a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L25.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L29.3154,6.11A3.9693,3.9693,0,0,1,30,8.223,3.8978,3.8978,0,0,1,26,12Zm0-7.2368L24.3438,7.2257A1.89,1.89,0,0,0,24,8.223a2.0139,2.0139,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z"}),(0,a.jsx)("path",{d:"M23.5,30H8.5A6.4962,6.4962,0,0,1,7.2,17.1381a8.9938,8.9938,0,0,1,17.6006,0A6.4964,6.4964,0,0,1,23.5,30ZM16,12a7,7,0,0,0-6.9414,6.1452l-.0991.8122-.8155.064A4.4962,4.4962,0,0,0,8.5,28h15a4.4962,4.4962,0,0,0,.3564-8.9786l-.8154-.064-.0986-.8122A7.0022,7.0022,0,0,0,16,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.6521,4.1821l-2.177,2.5142L19.0713,8.3174,20.7864,9.605A7.9361,7.9361,0,0,1,23.9963,16l.0008.0576.0017.0415c.018.4317.2412,10.1113-14.6538,11.7222l2.18-2.5176,1.4039-1.6211L11.2139,22.395A7.9361,7.9361,0,0,1,8.0037,16l-.0008-.0576-.0017-.0415C7.9832,15.47,7.7605,5.8071,22.6521,4.1821M24.9978,2c-.0164,0-.0327,0-.0493.001C5.2532,2.9146,6.0037,16,6.0037,16a9.975,9.975,0,0,0,4.0095,7.9946L6.2368,28.3555A1.0044,1.0044,0,0,0,7.0022,30c.0164,0,.0327,0,.0493-.001C26.7468,29.0854,25.9963,16,25.9963,16a9.9756,9.9756,0,0,0-4.0092-7.9946l3.7761-4.3609A1.0044,1.0044,0,0,0,24.9978,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,24.1836V20H15v4.1836a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M26,12a3.9962,3.9962,0,0,0-3.8579,3H9.8579a4,4,0,1,0,0,2H22.1421A3.9934,3.9934,0,1,0,26,12ZM6,18a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,6,18Zm20,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,26,18Z"}),(0,a.jsx)("path",{d:"M19,5a3,3,0,1,0-4,2.8164V12h2V7.8164A2.9917,2.9917,0,0,0,19,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,22a3.9583,3.9583,0,0,0-2.02.5659L17.4141,16,23.981,9.4331A3.9521,3.9521,0,0,0,26,10a4,4,0,1,0-4-4,3.951,3.951,0,0,0,.5669,2.019L16,14.5859,9.4343,8.02A3.9577,3.9577,0,0,0,10,6a4,4,0,1,0-4,4,3.9583,3.9583,0,0,0,2.02-.5659L14.5859,16,8.019,22.5669A3.9521,3.9521,0,0,0,6,22a4,4,0,1,0,4,4,3.951,3.951,0,0,0-.5669-2.019L16,17.4141,22.5657,23.98A3.9577,3.9577,0,0,0,22,26a4,4,0,1,0,4-4ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28,26c-.7384,0-1.3762.4047-1.7226,1h-5.2774l7.7998-10.4004c.2275-.3027.2642-.708.0947-1.0469s-.5156-.5527-.8945-.5527h-10.1843c-.4141-1.1615-1.5138-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.3019,0,2.4016-.8385,2.8157-2h8.1843l-7.7998,10.4004c-.2275.3027-.2642.708-.0947,1.0469s.5156.5527.8945.5527h7.2774c.3464.5953.9842,1,1.7226,1,1.1046,0,2-.8954,2-2s-.8954-2-2-2Zm-13-9c-.5513,0-1-.4482-1-1s.4487-1,1-1,1,.4482,1,1-.4487,1-1,1Z"}),(0,a.jsx)("path",{d:"m16,21h-2v4.5859L4.4139,16,14,6.4142v4.5858h2v-6h10v8h2V5c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2v22c0,1.1046.8954,2,2,2h12v-8ZM4,5h8.5858L4,13.5858V5Zm0,22v-8.5858l8.5858,8.5858H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5.5 23 2 30 9 30 5.5 23z"}),(0,a.jsx)("path",{d:"m26,15v2c1.1025,0,2,.8975,2,2v5c0,1.1025-.8975,2-2,2H10v2h16c2.2061,0,4-1.7939,4-4v-5c0-2.2056-1.7939-4-4-4Z"}),(0,a.jsx)("path",{d:"m14,24c-.4463,0-.8389-.2959-.9614-.7251l-1.793-6.2749h-3.2456v-2h4c.4463,0,.8389.2959.9614.7251l1.0386,3.6348,3.0386-10.6348c.1226-.4292.5151-.7251.9614-.7251s.8389.2959.9614.7251l1.793,6.2749h3.2456v2h-4c-.4463,0-.8389-.2959-.9614-.7251l-1.0386-3.6348-3.0386,10.6348c-.1226.4292-.5151.7251-.9614.7251Z"}),(0,a.jsx)("path",{d:"m4,13v-5c0-1.103.897-2,2-2h16v-2H6c-2.2056,0-4,1.7944-4,4v5c0,2.2056,1.7944,4,4,4v-2c-1.103,0-2-.897-2-2Z"}),(0,a.jsx)("circle",{cx:"27",cy:"5",r:"3"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,12c-1.1393,0-2.1624.484-2.8915,1.2505l-3.1586-1.7552c.0272-.162.05-.3257.05-.4954,0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.0923.5928,2.0405,1.4676,2.5651l-.8963,4.4782c-1.4501.2102-2.5713,1.4492-2.5713,2.9567,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-.0867-.0183-.1684-.0256-.2533l4.9317-2.2424c.7339.9048,1.8404,1.4957,3.0939,1.4957,2.2061,0,4-1.7939,4-4s-1.7939-4-4-4ZM12.9989,10.0002c.552,0,1.0004.4482,1.0004,1s-.4484,1-1.0004,1-1.0004-.4482-1.0004-1,.4484-1,1.0004-1ZM10.9982,22.0001c-.552,0-1.0004-.4482-1.0004-1s.4484-1,1.0004-1c.4135,0,.7687.2517.9209.6099l.0009.002c.0504.1194.0785.2505.0785.3881,0,.5518-.4484,1-1.0004,1ZM13.1545,18.9224c-.1838-.1906-.395-.3505-.6233-.4874l.8966-4.4782c.5893-.0854,1.1195-.3394,1.5463-.7159l3.1684,1.7599c-.0835.3213-.1418.6522-.1418.9993,0,.2355.0303.4633.0695.6877l-4.9158,2.2345ZM22.0022,18.0002c-1.1029,0-2.0007-.8975-2.0007-2s.8978-2,2.0007-2,2.0007.8975,2.0007,2-.8978,2-2.0007,2ZM27.0908,11.4079c.6175,1.4903.9125,3.0496.9092,4.5921-.0033,1.5629-.3128,3.1085-.9009,4.5475l1.7934.8965c.7238-1.7181,1.1039-3.5704,1.1075-5.444.0035-1.7996-.3405-3.6188-1.061-5.3572-2.2286-5.3799-7.4473-8.6357-12.939-8.6428-1.7888-.0023-3.6066.3401-5.3595,1.0661l.7655,1.8474c1.5025-.6221,3.0607-.9156,4.594-.9135,4.7072.0063,9.1801,2.7969,11.0908,7.4079ZM20.594,27.0868c-1.5026.6222-3.0607.9152-4.594.9132-4.7075-.0062-9.1802-2.797-11.0908-7.4076-.6175-1.4904-.9125-3.0498-.9092-4.5924.0033-1.5627.3128-3.1082.9009-4.5472l-1.7934-.8965c-.7237,1.718-1.1039,3.5702-1.1075,5.4437-.0035,1.7997.3404,3.619,1.061,5.3576,1.4775,3.5657,4.2683,6.1985,7.582,7.5705,1.6852.6977,3.5055,1.0695,5.357,1.0719,1.7887.0024,3.6064-.3399,5.3594-1.0658l-.7654-1.8474ZM25,23c-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2-.88-2-2-2ZM7,5c-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2-.88-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,19c-.2045,0-.404.0212-.597.0604l-2.5553-4.2578c.711-.7224,1.1523-1.7111,1.1523-2.8026,0-2.2061-1.7939-4-4-4s-4,1.7939-4,4c0,1.0931.4424,2.0834,1.1552,2.806l-3.111,5.1983c-.0151-.0003-.0291-.0043-.0443-.0043-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2c0-.3502-.0941-.6718-.2466-.9555l3.1263-5.2239c.3578.1053.7288.1794,1.1203.1794.3933,0,.7659-.0747,1.1251-.1809l2.5706,4.2833c-.428.5187-.6957,1.1741-.6957,1.8976,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3ZM14,12c0-1.1025.8975-2,2-2s2,.8975,2,2-.8975,2-2,2-2-.8975-2-2ZM22,23c-.5518,0-1-.4482-1-1s.4482-1,1-1,1,.4482,1,1-.4482,1-1,1ZM30,16.9995v-.0005h0c-.0005-7.7192-6.2805-13.999-14-13.999S2,9.2803,2,17c0,4.1558,2.0088,7.644,3.3611,8.8938,1.0293.9512,2.5835,2.1062,4.6389,2.1062,3.3086,0,6-2.6917,6-6,0-.834-.168-1.6416-.5-2.4006l-1.832.8008c.2197.5049.332,1.0432.332,1.5999,0,2.2056-1.7939,4-4,4s-4-1.7944-4-4,1.7939-4,4-4v-2c-2.5745,0-4.7689,1.6328-5.6187,3.9148-.2546-.9341-.3813-1.9031-.3813-2.9148,0-6.6167,5.3828-12,12-12s12,5.3833,12,12h.001c0,1.0518-.1367,2.0977-.4053,3.1084l1.9316.5156c.3145-1.1804.4734-2.3997.4727-3.624h0v-.0005Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,6h-2v10h2V6ZM28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362l-4,2.3333c-.3071.1792-.4961.5081-.4961.8638v8.6667h2V4.9076l3-1.7499,11,6.4166v3.4257h2v-4c0-.3557-.189-.6846-.4961-.8638ZM4.9987,22.4315v-13.4315h-1.9987v14.006c0,.3559.1889.6849.4958.8642l10.4971,6.1298,1.0072-1.7282h-.0001s-10.0013-5.8403-10.0013-5.8403ZM22,26.9999h2v-9.9999h-2v9.9999ZM27,27h2v-6h-2v6ZM17,27h2v-8h-2v8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,11c-.75,0-1.39.4-1.73,1h-10.27c-2.21,0-4,1.79-4,4,0,.73.21,1.41.56,2h-6.83c-.34-.6-.98-1-1.73-1-1.12,0-2,.88-2,2s.88,2,2,2c.75,0,1.39-.4,1.73-1h10.27c2.21,0,4-1.79,4-4,0-.73-.21-1.41-.56-2h6.83c.34.6.98,1,1.73,1,1.12,0,2-.88,2-2s-.88-2-2-2ZM18,16c0,1.1-.9,2-2,2s-2-.9-2-2,.9-2,2-2,2,.9,2,2ZM5.05,15h-2c0-7.29,5.08-12,12.95-12h10v2h-10c-6.75,0-10.95,3.83-10.95,10ZM16.05,29H6.05v-2h10c6.14,0,10.95-4.39,10.95-10h2c0,6.73-5.69,12-12.95,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,26V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141-3.5859-3.586v10.1719h12v2H7c-1.104-.0013-1.9987-.896-2-2Z"}),(0,a.jsx)("path",{d:"M31,18h-3v-2h-2v2h-1c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h4v2h-6s0,2,0,2h3v2h2v-2h1c1.1046,0,2-.8954,2-2v-2c0-1.1046-.8954-2-2-2h-4v-2h6v-2Z"}),(0,a.jsx)("path",{d:"M28,12V6c-.0012-1.104-.896-1.9988-2-2H12v2h14v6"}),(0,a.jsx)("path",{d:"M2 6H7V8H2z"}),(0,a.jsx)("path",{d:"M2 2H10V4H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16,26h5c3.86,0,7-3.14,7-7v-2h-2v2c0,2.76-2.24,5-5,5h-5v2Z"}),(0,a.jsx)("path",{d:"m20.25,14c-2.34,0-4.25-1.91-4.25-4.25,0-1.79,1.14-3.38,2.78-3.99.74-2.21,2.84-3.76,5.22-3.76s4.48,1.55,5.22,3.76c1.65.61,2.78,2.19,2.78,3.99,0,2.29-1.86,4.19-4.14,4.25h-7.61Zm3.75-10c-1.64,0-3.08,1.17-3.42,2.77l-.14.64-.64.13c-1.04.21-1.8,1.14-1.8,2.2,0,1.24,1.01,2.26,2.25,2.26h7.58c1.18-.03,2.17-1.05,2.17-2.26,0-1.06-.76-1.99-1.8-2.2l-.64-.13-.14-.64c-.34-1.6-1.78-2.77-3.42-2.77Z"}),(0,a.jsx)("path",{d:"m4,14h2v-2c0-2.76,2.24-5,5-5h4v-2h-4c-3.86,0-7,3.14-7,7v2Z"}),(0,a.jsx)("path",{d:"m10,17h-6c-1.1,0-2,.9-2,2v10c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-10c0-1.1-.9-2-2-2Zm0,2v2h-6v-2h6Zm0,4v2h-6v-2h6Zm-6,6v-2h6v2H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,32l-2.1387-1.0117c-1.7383-.8232-2.8613-2.5977-2.8613-4.5205v-6.4678h10v6.4678c0,1.9238-1.123,3.6973-2.8613,4.5195l-2.1387,1.0127Zm-1.2832-2.8203l1.2832,.6074,1.2832-.6074c1.043-.4932,1.7168-1.5576,1.7168-2.7119v-4.4678h-6v4.4678c0,1.1543,.6738,2.2188,1.7168,2.7119h0Z"}),(0,a.jsx)("path",{d:"M17,10.5859c-.3752-.375-.8838-.5859-1.4143-.5859h-5.5857c-1.1045,0-2,.8955-2,2v14c0,1.1045,.8955,2,2,2h9v-2H10V12h4v4c0,1.1045,.8955,2,2,2h4.2917c.6929,0,1.312-.4136,1.5771-1.0537,.2656-.6406,.1201-1.3711-.3701-1.8613l-4.4988-4.499Zm-1,5.4141v-3.5859l3.5852,3.5859h-3.5852Z"}),(0,a.jsx)("path",{d:"M28,6H16l-3.4141-3.4141c-.3752-.375-.8838-.5859-1.4143-.5859H4c-1.1045,0-2,.8955-2,2V24c0,1.1045,.8955,2,2,2h2v-2H4V4h7.1716l4,4h12.8284v10h2V8c0-1.1045-.8955-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,21c-2.7568,0-5-2.2432-5-5s2.2432-5,5-5,5,2.2432,5,5-2.2432,5-5,5ZM16,13c-1.6543,0-3,1.3457-3,3s1.3457,3,3,3,3-1.3457,3-3-1.3457-3-3-3ZM27,25c0-1.1046-.8954-2-2-2s-2,.8954-2,2,.8954,2,2,2,2-.8954,2-2ZM5,7c0,1.1046.8954,2,2,2s2-.8954,2-2-.8954-2-2-2-2,.8954-2,2ZM30,16c0-7.7197-6.2803-14-14-14-1.8638,0-3.6758.3623-5.3857,1.0771l.7715,1.8457c1.4644-.6123,3.0166-.9229,4.6143-.9229,6.2803,0,11.4492,4.8496,11.959,11h-4.959v2h7v-1ZM21.3857,28.9229l-.7715-1.8457c-1.4639.6123-3.0166.9229-4.6143.9229-6.2798,0-11.4487-4.8496-11.9585-11h4.9585v-2H2v1c0,7.7197,6.2803,14,14,14,1.8643,0,3.6768-.3623,5.3857-1.0771Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m24,21v2h1.7483c-2.2363,3.1196-5.8357,5-9.7483,5-6.6169,0-12-5.3833-12-12h-2c0,7.7197,6.2803,14,14,14,4.355,0,8.3743-2.001,11-5.3452v1.3452h2v-5h-5Z"}),(0,a.jsx)("path",{d:"m22.5046,11.6367l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z"}),(0,a.jsx)("path",{d:"m16,2c-4.355,0-8.3743,2.001-11,5.3452v-1.3452h-2v5h5v-2h-1.7483c2.2363-3.1196,5.8357-5,9.7483-5,6.6169,0,12,5.3833,12,12h2c0-7.7197-6.2803-14-14-14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,20v2h5.22a11.0163,11.0163,0,0,1-11.97,4.6533l-.4986,1.937A13,13,0,0,0,26,24.293V28h2V20Z"}),(0,a.jsx)("path",{d:"M25,3a4.0045,4.0045,0,0,0-4,4,3.954,3.954,0,0,0,.5669,2.019L9.019,21.5669A3.9521,3.9521,0,0,0,7,21a4,4,0,1,0,4,4,3.954,3.954,0,0,0-.5669-2.019L22.981,10.4331A3.9518,3.9518,0,0,0,25,11a4,4,0,0,0,0-8ZM7,27a2,2,0,1,1,2-2A2.002,2.002,0,0,1,7,27ZM25,9a2,2,0,1,1,2-2A2.002,2.002,0,0,1,25,9Z"}),(0,a.jsx)("path",{d:"M16,3A13.04,13.04,0,0,0,6,7.707V4H4v8h8V10H6.78a11.0163,11.0163,0,0,1,11.97-4.6533l.4986-1.937A13.0358,13.0358,0,0,0,16,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.69,16.37c.84.83,1.31,1.97,1.31,3.15,0,1.19-.47,2.33-1.32,3.17-.88.87-2.03,1.31-3.18,1.31s-2.31-.44-3.19-1.31c-.59-.59-7.76-7.72-10.76-10.7l-1.27-1.27c-.59-.61-1.46-.84-2.28-.66-.47.11-.91.31-1.26.66-.47.47-.73,1.1-.73,1.76s.26,1.29.73,1.76c.52.51,6.74,6.7,6.74,6.7l-1.42,1.41-6.74-6.7c-.85-.85-1.32-1.97-1.32-3.17s.47-2.32,1.32-3.17c.85-.85,1.98-1.31,3.18-1.31s2.33.47,3.18,1.31l1.27,1.27,10.76,10.7c.98.97,2.56.97,3.54,0,.47-.47.73-1.1.73-1.76s-.26-1.29-.73-1.76l-6.73-6.69,1.42-1.41,6.74,6.7h0l.01.01ZM16,2c2.21,0,4,1.79,4,4s-1.79,4-4,4h0c-2.21,0-4-1.79-4-4s1.79-4,4-4h0ZM16.02,8c1.09,0,1.98-.9,1.98-2s-.89-2-1.98-2h-.09c-1.1.03-1.96.95-1.93,2.04h0c.02,1.1.92,1.97,2.02,1.95h0v.01ZM20,26c0,2.21-1.79,4-4,4s-4-1.79-4-4,1.79-4,4-4,4,1.79,4,4ZM16.02,28c1.09,0,1.98-.9,1.98-2s-.89-2-1.98-2h-.09c-1.1.03-1.96.95-1.93,2.04h0c.02,1.1.92,1.97,2.02,1.95h0v.01Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,22.1V13h-2v9.1c-1.4,0.4-2.5,1.5-2.9,2.9H13v2h9.1c0.4,1.7,2,3,3.9,3c2.2,0,4-1.8,4-4C30,24.1,28.7,22.6,27,22.1z M26,28c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S27.1,28,26,28z"}),(0,a.jsx)("path",{d:"M10,30H2v-8h8V30z M4,28h4v-4H4V28z"}),(0,a.jsx)("path",{d:"M9.9,7H19V5H9.9C9.4,3.3,7.9,2,6,2C3.8,2,2,3.8,2,6c0,1.9,1.3,3.4,3,3.9V19h2V9.9C8.4,9.5,9.5,8.4,9.9,7z M6,8 C4.9,8,4,7.1,4,6s0.9-2,2-2s2,0.9,2,2S7.1,8,6,8z"}),(0,a.jsx)("path",{d:"M22 2 22 4 26.6 4 11 19.6 12.4 21 28 5.4 28 10 30 10 30 2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16,13c-3.4207,0-6,1.5049-6,3.5v8c0,1.9951,2.5793,3.5,6,3.5s6-1.5049,6-3.5v-8c0-1.9951-2.5793-3.5-6-3.5Zm0,2c2.4814,0,4,.9712,4,1.5s-1.5186,1.5-4,1.5-4-.9712-4-1.5,1.5186-1.5,4-1.5Zm0,11c-2.4814,0-4-.9712-4-1.5v-1.3525c1.0469.5342,2.4331.8525,4,.8525s2.9531-.3184,4-.8525v1.3525c0,.5288-1.5186,1.5-4,1.5Zm0-4c-2.4814,0-4-.9712-4-1.5v-1.3525c1.0469.5342,2.4331.8525,4,.8525s2.9531-.3184,4-.8525v1.3525c0,.5288-1.5186,1.5-4,1.5Z"}),(0,a.jsx)("path",{d:"m30,15.5c0,3.08-2.14,5.65-5.0099,6.3199v-2.0699c1.75-.62,3.0099-2.28,3.0099-4.25,0-2.33-1.83-4.29-4.15-4.4801l-.81-.0599-.1-.8099c-.43-3.5-3.42-6.15-6.94-6.15-3.53,0-6.52,2.65-6.95,6.15l-.1.8099-.81.0599c-2.32.1901-4.14,2.1501-4.14,4.4801,0,1.96,1.25,3.62,2.9901,4.24v2.08c-2.86-.6799-4.9901-3.25-4.9901-6.3199,0-3.1,2.22-5.75,5.2-6.36.86-4.1201,4.52-7.14,8.8-7.14,4.27,0,7.9301,3.0199,8.8,7.14,2.97.61,5.2,3.26,5.2,6.36Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31.3579,22h-8.397v-2.3287l3.6545-3.1277c1.3259-1.1389,1.7849-1.8019,1.7849-2.8047v-.238c0-.9009-.7991-1.3599-1.564-1.3599-1.1218,0-1.6658,.7649-1.9038,1.6658l-2.2268-.8499c.5271-1.6488,1.9038-3.0256,4.3687-3.0256,2.5667,0,4.0457,1.5128,4.0457,3.5696,0,2.0398-1.4619,3.2806-3.1619,4.6235l-2.2097,1.7339h5.6094v2.1417Z"}),(0,a.jsx)("path",{d:"M12.8291,9.4212h2.5159v5.1505h.085c.2549-.986,1.2407-1.6998,2.3967-1.6998,2.2607,0,3.4336,1.6318,3.4336,4.6575s-1.1729,4.6746-3.4336,4.6746c-1.156,0-2.1418-.731-2.3967-1.6998h-.085v1.4958h-2.5159V9.4212Zm5.8135,8.8901v-1.5469c0-1.1218-.697-1.8528-1.6489-1.8528s-1.6487,.4929-1.6487,1.3088v2.6348c0,.8159,.6968,1.3088,1.6487,1.3088s1.6489-.731,1.6489-1.8528Z"}),(0,a.jsx)("path",{d:"M1.1163,10.1351H5.5867c3.1448,0,5.2185,1.9889,5.2185,5.9325s-2.0737,5.9324-5.2185,5.9324H1.1163V10.1351Zm4.4704,9.5687c1.53,0,2.4819-.8329,2.4819-2.7197v-1.8358c0-1.8868-.9519-2.7197-2.4819-2.7197h-1.8867v7.2753h1.8867Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m22.5039,17.6362l-6-3.5c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362l-6,3.5c-.3071.1792-.4961.5083-.4961.8638v7c0,.3555.189.6846.4961.8638l6,3.5c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l6-3.5c.3071-.1792.4961-.5083.4961-.8638v-7c0-.3555-.189-.6846-.4961-.8638Zm-1.5039,6.1978l-2.5317-1.519c.0132-.1045.0317-.207.0317-.3149,0-1.0225-.6187-1.9014-1.5-2.2881v-2.9707l4,2.333v4.7598Zm-6-7.0928v2.9707c-.8813.3867-1.5,1.2656-1.5,2.2881,0,.1079.0186.2104.0317.3149l-2.5317,1.519v-4.7598l4-2.333Zm1,11.1011l-3.9517-2.3052,2.5071-1.5039c.4087.291.9055.4668,1.4446.4668s1.0359-.1758,1.4446-.4668l2.5071,1.5039-3.9517,2.3052Z"}),(0,a.jsx)("path",{d:"m24.8,9.14c-.87-4.12-4.52-7.14-8.8-7.14s-7.93,3.02-8.8,7.14c-2.97.6-5.2,3.26-5.2,6.36,0,3.07,2.14,5.63,5,6.31v-2.11c-1.74-.62-3-2.24-3-4.2,0-2.33,1.82-4.31,4.14-4.49l.82-.06.1-.81c.43-3.5,3.41-6.14,6.94-6.14s6.51,2.64,6.94,6.14l.1.81.82.06c2.32.19,4.14,2.16,4.14,4.49,0,1.95-1.26,3.59-3,4.21v2.11c2.86-.68,5-3.26,5-6.32,0-3.11-2.23-5.76-5.2-6.36Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,18c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM24,4c0-1.1-.9-2-2-2s-2,.9-2,2,.9,2,2,2,2-.9,2-2ZM24,28c0-1.1-.9-2-2-2s-2,.9-2,2,.9,2,2,2,2-.9,2-2ZM25,15h-4.11c1.3-1.27,2.11-3.04,2.11-5v-2h-2v2c0,2.76-2.24,5-5,5h-7v2h7c2.76,0,5,2.24,5,5v2h2v-2c0-1.96-.81-3.73-2.11-5h4.11v-2ZM11.63,20.29l-.04.02-1.31.77-1.28.76-5-2.96v-5.76l5-2.96,1.28.76,1.31.77.04.02,1.71,1.02,1.02-1.72-1.71-1.02-.04-.02-1.33-.78-1.77-1.05c-.16-.09-.33-.14-.51-.14s-.35.05-.51.14l-6,3.55c-.3.18-.49.51-.49.86v6.9c0,.35.19.68.49.86l6,3.55c.16.09.33.14.51.14s.35-.05.51-.14l1.77-1.05,1.33-.78.04-.02,1.71-1.02-1.02-1.72-1.71,1.02Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2.9668,20.038h12.0059v2H2.9668v-2ZM2.9668,25.038h12.0059v2H2.9668v-2ZM19,5.038h9.9668v2h-9.9668v-2ZM17,10.0345h11.9668v2h-11.9668v-2ZM26.5049,18.0883l-3.5357,3.5356-3.5356-3.5356-1.4141,1.414,3.5357,3.5357-3.5357,3.5356,1.4141,1.4141,3.5356-3.5357,3.5357,3.5357,1.414-1.4141-3.5356-3.5356,3.5356-3.5357-1.414-1.414ZM7.9667,9.213l-2.5899-2.5899-1.4099,1.41,4,4.0001,7.9998-8-1.4099-1.41-6.5901,6.5898Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"29",cy:"5",r:"2"}),(0,a.jsx)("circle",{cx:"29",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m7,13H1v6h6v-6Zm-2,4h-2v-2h2v2Z"}),(0,a.jsx)("path",{d:"m17.4999,6.6774c-1.316-1.67-3.3437-2.6774-5.4999-2.6774-2.4907,0-4.8135,1.3403-6.063,3.499l-1.1655,2.0186,1.7324,1,1.165-2.0176c.8921-1.542,2.5518-2.5,4.3311-2.5s3.439.958,4.3311,2.4995c.0048.0082.011.0154.0158.0236l-1.9328,3.348c-1.1128,1.9282-3.188,3.1274-5.415,3.1289l.001,1-.001,1c2.2271.002,4.3022,1.2002,5.415,3.1289l1.9326,3.347c-.0049.0084-.0112.0156-.0161.024-.8916,1.542-2.5513,2.5-4.3306,2.5s-3.439-.958-4.3306-2.499l-1.165-2.0186-1.7324,1,1.1655,2.0195c1.249,2.1572,3.5718,3.498,6.0625,3.498,2.1555,0,4.1829-1.0075,5.5004-2.6772,1.3154,1.6699,3.3427,2.6772,5.4996,2.6772h2v-2h-2c-1.7387,0-3.3566-.918-4.2612-2.3972.9349-1.003,2.254-1.6018,3.6547-1.6018h2.6064v-2h-2.6064c-1.7564,0-3.4199.6761-4.6906,1.824l-1.5565-2.6961c-.7776-1.3467-1.9164-2.4129-3.2465-3.1289,1.3301-.716,2.4688-1.7822,3.2465-3.1289l1.5565-2.6962c1.2706,1.1483,2.9341,1.8246,4.6906,1.8246h2.6064v-2h-2.6064c-1.4005,0-2.7194-.5986-3.6552-1.6017.9044-1.4795,2.5226-2.3978,4.2616-2.3978h2v-2h-2c-2.157,0-4.1844,1.0074-5.5001,2.6774Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29.9467,13.9356h-2c-.7368,0-1.3748.4051-1.7218,1H6.0151l2.625-7h7.3073v-2h-7.3073c-.8291,0-1.5811.521-1.873,1.2974l-2.5137,6.7026-2.3066-.0005v2l2,.0002v9.0002c0,1.103.8975,2,2,2v3h2v-3h16v3h2v-3c1.1025,0,2-.897,2-2v-9h2v-2ZM5.9467,24.9356v-3h3v-2h-3v-3h20v3h-3v2h3v3H5.9467Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M11.979 19.941H19.979V21.941H11.979z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29.5367 2.5256 22.9467 9.1154 20.3567 6.5255 18.9467 7.9356 22.9467 11.9356 30.9467 3.9356 29.5367 2.5256z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m20,16c-.0925,0-.1792.021-.27.0273l-.8916-2.6743c.7017-.5493,1.1616-1.3945,1.1616-2.353,0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,.3804.0784.7412.208,1.0762l-2.7224,2.333c-.4399-.2529-.9426-.4092-1.4856-.4092-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c.9915,0,1.865-.4893,2.4116-1.2324l3.6038,1.0811c-.002.0513-.0154.0996-.0154.1514,0,2.2056,1.7944,4,4,4s4-1.7944,4-4-1.7944-4-4-4Zm-3-6c.5513,0,1,.4487,1,1s-.4487,1-1,1-1-.4487-1-1,.4487-1,1-1Zm-7,8c-.5513,0-1-.4487-1-1s.4487-1,1-1,1,.4487,1,1-.4487,1-1,1Zm2.9849-1.1484c-.0161-.3257-.0806-.6372-.1929-.9277l2.7224-2.333c.4243.2441.908.3936,1.4294.4033l.885,2.6553c-.5046.3281-.9229.7695-1.2363,1.2842l-3.6077-1.082Zm7.0151,5.1484c-1.103,0-2-.8975-2-2s.897-2,2-2,2,.8975,2,2-.897,2-2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27.4961,9.8638l-11.4961-6.7061-8.4961,4.9561-1.0078-1.7275L15.4961,1.1362c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l12,7-1.0078,1.7275Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16.5039,30.8638l-1.0078-1.7275,11.5039-6.7106v-10.4257h2v11c0,.3557-.189.6846-.4961.8638l-12,7Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12.4961,29.1138l-9-5.25c-.3071-.1792-.4961-.5081-.4961-.8638v-14h2v13.4257l8.5039,4.9606-1.0078,1.7275Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m13.76,10.463l-3.297,3.297c-.6173.6173-.6173,1.6227,0,2.24l12.0044,12h5.5326v-5.5326l-12-12.0044c-.6173-.6173-1.6226-.6173-2.2399,0h0Zm12.24,12.8328v2.7042h-2.7042l-7.4409-7.4409,2.7042-2.7042,7.4409,7.4409Zm-8.855-8.8549l-2.7041,2.7041-2.2672-2.2672,2.7042-2.7042,2.2671,2.2673Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,2v8h-8v-2h4.92c-2.25-2.53-5.46-4-8.92-4-6.61,0-12,5.38-12,12,0,6.61,5.39,12,12,12h1v2h-1c-7.72,0-14-6.28-14-14S8.28,2,16,2c3.83,0,7.4,1.5499,10,4.23V2h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M18 26 26.1719 26 23.5859 28.5859 25 30 30 25 25 20 23.5859 21.4141 26.1719 24 18 24 18 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10 21H15V23H10z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10 16H20V18H10z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m24.7,9.3l-7-7c-.2-.2-.4-.3-.7-.3H7c-1.1,0-2,.8999-2,2v24c0,1.103.8975,2,2,2h8v-2h-8V4h8v6c0,1.1001.9,2,2,2h6v6h2v-8c0-.3-.1-.5-.3-.7Zm-7.7.7v-5.6001l5.6,5.6001h-5.6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31,22v-2h-2.1006c-.1299-.6372-.3845-1.2285-.7322-1.7529l1.4895-1.4897-1.4141-1.4141-1.4897,1.4897c-.5244-.3477-1.1157-.6021-1.7529-.7319v-2.1011h-2v2.1011c-.6372.1299-1.2285.3843-1.7529.7319l-1.4897-1.4897-1.4141,1.4141,1.4893,1.4897c-.3477.5244-.6021,1.1157-.7319,1.7529h-2.1006v2h2.1006c.1299.6372.3843,1.2285.7319,1.7532l-1.4893,1.4895,1.4141,1.4141,1.4897-1.4897c.5244.3477,1.1157.6021,1.7529.7319v2.1011h2v-2.1011c.6372-.1299,1.2285-.3843,1.7529-.7319l1.4897,1.4897,1.4141-1.4141-1.4895-1.4895c.3479-.5247.6023-1.116.7322-1.7532h2.1006Zm-7,2c-1.6567,0-3-1.3433-3-3s1.3433-3,3-3c1.6567,0,3,1.3433,3,3s-1.3433,3-3,3Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,6c0-2.7568-2.2432-5-5-5-1.7798,0-3.439.9575-4.3306,2.4995-.3201.5535-.5259,1.146-.6289,1.7944-1.1428-.8115-2.5352-1.2939-4.0405-1.2939C3.1401,4,0,7.1401,0,11c0,2.6981,1.5368,5.0403,3.7787,6.2083-1.0787.918-1.7787,2.2679-1.7787,3.7917,0,2.7568,2.2432,5,5,5,.7344,0,1.4265-.1685,2.0552-.4539.2764,2.4973,2.375,4.4539,4.9448,4.4539,1.335,0,2.5908-.52,3.5356-1.4639l-1.4141-1.415c-.5669.5669-1.3203.8789-2.1216.8789-1.6543,0-3-1.3457-3-3s1.3457-3,3-3v-2c-.7344,0-1.4265.1685-2.0552.4539-.1435-1.2966-.7849-2.4395-1.7218-3.2463,2.241-1.1685,3.777-3.51,3.777-6.2075,0-.1472-.0139-.2911-.0229-.4363.6199.2761,1.3018.4363,2.0229.4363,2.7568,0,5-2.2432,5-5Zm-7.5991-1.4995c.5352-.9253,1.5312-1.5005,2.5991-1.5005,1.6543,0,3,1.3457,3,3s-1.3457,3-3,3-3-1.3457-3-3h-.0293c.0352-.5762.1714-1.0522.4302-1.4995Zm-3.4009,16.4995c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Zm-3-5c-2.7568,0-5-2.2432-5-5s2.2432-5,5-5,5,2.2432,5,5-2.2432,5-5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,4h-3v1.9991l3-.0005v20.0015h-3v2h3c1.103,0,2-.897,2-2V6c0-1.103-.897-2-2-2Z"}),(0,a.jsx)("circle",{cx:"16",cy:"17",r:"2",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m22,4v24c0,1.103-.897,2-2,2H4c-1.103,0-2-.897-2-2V4c0-1.103.897-2,2-2h16c1.103,0,2,.897,2,2ZM4,28h16s0-24.0015,0-24.0015l-16,.0015v24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m4,10h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v4c0,1.1046.8954,2,2,2Zm0-6h4v4h-4v-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,22h-4c-1.1046,0-2,.8954-2,2v4c0,1.1046.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2Zm0,6h-4v-4h4v4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21.414,12.586l-1.414,1.414,6,6,6-6-1.414-1.414-3.586,3.586V7c0-1.1046-.8954-2-2-2h-13v2h13v9.172l-3.586-3.586Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m7,15.828l3.586,3.586,1.414-1.414-6-6L0,18l1.414,1.414,3.586-3.586v9.172c0,1.1046.8954,2,2,2h13v-2H7v-9.172Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27,30h-8c-2.2061,0-4-1.7939-4-4,0-1.8887,1.3164-3.4766,3.0801-3.8936.4219-2.332,2.4678-4.1064,4.9199-4.1064s4.498,1.7744,4.9199,4.1064c1.7637.417,3.0801,2.0049,3.0801,3.8936,0,2.2061-1.7939,4-4,4Zm-8-2h8c1.1025,0,2-.8975,2-2s-.8975-2-2-2h-1v-1c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3v1h-1c-1.1025,0-2,.8975-2,2s.8975,2,2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12,27h-2c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h2v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,15v-4c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v4h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m13,27h-3c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h3v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m25,27h-4c-1.1025,0-2-.8975-2-2v-4c0-1.1025.8975-2,2-2h4c1.1025,0,2,.8975,2,2v4c0,1.1025-.8975,2-2,2Zm-4-6h-.002l.002,4h4v-4h-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M25 15H27V17H25z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29 19H31V21H29z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29 23H31V25H29z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 21H17V23H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 25H17V27H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 29H17V31H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M19 29H21V31H19z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,13v-2c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v2h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M19 24H21V26H19z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m17,21h12c1.1046,0,2,.8954,2,2v4c0,1.1046-.8954,2-2,2h-12c-1.1046,0-2-.8954-2-2v-4c0-1.1046.8954-2,2-2Zm12,6v-4h-12v4h12Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12,27h-2c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h2v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,18v-7c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v7h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c-7.7197,0-14-6.2803-14-14h2c0,6.6167,5.3833,12,12,12s12-5.3833,12-12h2c0,7.7197-6.2803,14-14,14Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,26c-5.5139,0-10-4.4861-10-10h2c0,4.4111,3.5889,8,8,8s8-3.5889,8-8h2c0,5.5139-4.4861,10-10,10Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,20c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Zm0-6c-1.103,0-2,.897-2,2s.897,2,2,2,2-.897,2-2-.897-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-4.9719,0-9.4933,2.6113-12,6.7883v-4.7883h-2v8h8v-2h-4.3881c2.126-3.6848,6.0558-6,10.3881-6,3.2051,0,6.2188,1.248,8.4854,3.5146l1.4141-1.4141c-2.644-2.6445-6.1597-4.1006-9.8994-4.1006Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31.3242,11.2612c-2.5444-2.103-5.7671-3.2612-9.0737-3.2612h-.2505v2h.2505c2.6079,0,5.1543.8374,7.2456,2.3716-1.3672,3.3955-4.1621,5.9414-7.5483,7.0366.0347-.4028.0522-.8096.0522-1.2197,0-7.8237-6.3647-14.1885-14.1885-14.1885-.9282,0-1.8555.0903-2.7563.2681l-.6572.1299-.1299.6572c-.1777.9009-.2681,1.8281-.2681,2.7563,0,4.1244,1.7795,7.8315,4.5983,10.4264-.3759,1.2767-.5992,2.6185-.5992,4.0165l.001.0009c.0011,3.3049,1.159,6.5258,3.261,9.069l.4385.5303.6523-.2202c4.6675-1.5752,8.0962-5.4111,9.2368-10.0454,4.6343-1.1406,8.4702-4.5693,10.0454-9.2368l.2202-.6523-.5303-.4385ZM12.3716,29.4961c-1.5342-2.0913-2.3716-4.6377-2.3716-7.2456h-.0006c.0003-.9115.1136-1.7958.304-2.6512,2.2567,1.5145,4.9689,2.4008,7.8851,2.4008.4102,0,.8169-.0176,1.2197-.0522-1.0952,3.3862-3.6411,6.1812-7.0366,7.5483Zm7.5112-9.6133c-.5557.0771-1.1211.1172-1.6943.1172-2.7159,0-5.2186-.9039-7.2472-2.4116.8616-2.0793,2.2642-3.881,4.0479-5.204l-1.28-1.53c-1.8557,1.3905-3.3427,3.2305-4.3404,5.3458-2.0815-2.1875-3.3687-5.1378-3.3687-8.3887,0-.5684.0391-1.1357.1167-1.6948.5591-.0776,1.1265-.1167,1.6948-.1167,6.7207,0,12.1885,5.4678,12.1885,12.1885,0,.5732-.04,1.1387-.1172,1.6943Z"}),(0,a.jsx)("circle",{cx:"20",cy:"2",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"27",cy:"26",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"2",cy:"20",r:"2",strokeWidth:"0"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"4",cy:"22",r:"2"}),(0,a.jsx)("path",{d:"m13.5,30c-3.0586,0-5.9485-1.4867-7.7305-3.9771l1.6265-1.1638c1.4075,1.9667,3.6892,3.1409,6.104,3.1409,3.969,0,7.2578-3.1002,7.4873-7.0579l1.9966.1157c-.2908,5.0143-4.4565,8.9421-9.4839,8.9421Z"}),(0,a.jsx)("circle",{cx:"28",cy:"23",r:"2"}),(0,a.jsx)("path",{d:"m30.6411,19.0948l-1.9243-.5449c.188-.6638.2832-1.3535.2832-2.0499,0-4.1355-3.3645-7.5-7.5-7.5-1.0769,0-2.1157.223-3.0876.6628l-.8247-1.822c1.2329-.558,2.5491-.8408,3.9124-.8408,5.2383,0,9.5,4.2617,9.5,9.5,0,.8807-.1208,1.7537-.3589,2.5948Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"16",cy:"3",r:"2"}),(0,a.jsx)("path",{d:"m8.0254,19.8821c-3.0999-1.6578-5.0254-4.8696-5.0254-8.3821C3,6.4729,6.9277,2.307,11.9421,2.0161l.1157,1.9966c-3.9578.2297-7.0579,3.5186-7.0579,7.4873,0,2.7732,1.5208,5.3092,3.9688,6.6184l-.9434,1.7637Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"29",cy:"29",r:"2"}),(0,a.jsx)("path",{d:"m25,30h-8c-1.1028,0-2-.8972-2-2v-4h2v4h8v2Z"}),(0,a.jsx)("path",{d:"m30,25h-2v-8h-5v-2h5c1.1028,0,2,.8972,2,2v8Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("path",{d:"m9,17H4c-1.1028,0-2-.8972-2-2V7h2v8h5v2Z"}),(0,a.jsx)("path",{d:"m17,8h-2V4H7v-2h8c1.1028,0,2,.8972,2,2v4Z"}),(0,a.jsx)("circle",{cx:"3",cy:"3",r:"2"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"29",r:"2"}),(0,a.jsx)("path",{d:"m22.5,30h-2.5v-2h2.5c3.0327,0,5.5-2.4673,5.5-5.5,0-2.5634-1.7395-4.7644-4.23-5.3528l.46-1.9465c3.3972.8026,5.77,3.8042,5.77,7.2993,0,4.1355-3.3645,7.5-7.5,7.5Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"16",cy:"3",r:"2"}),(0,a.jsx)("path",{d:"m7.77,16.7993c-3.3972-.8026-5.77-3.8042-5.77-7.2993C2,5.3645,5.3645,2,9.5,2h2.5v2h-2.5c-3.0327,0-5.5,2.4673-5.5,5.5,0,2.5634,1.7395,4.7645,4.23,5.3528l-.46,1.9465Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m20,27c-2.9795,0-5.7693-1.1719-7.8555-3.2998l1.4282-1.4001c1.7068,1.7411,3.9895,2.7,6.4272,2.7,4.9626,0,9-4.0374,9-9,0-2.3705-.9138-4.6079-2.5732-6.3004l1.4282-1.4001c2.0281,2.0686,3.145,4.8033,3.145,7.7006,0,6.0654-4.9346,11-11,11Z"}),(0,a.jsx)("circle",{cx:"24",cy:"5",r:"2"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"8",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m4.2993,23.855c-2.1277-2.0861-3.2993-4.8757-3.2993-7.855C1,9.9346,5.9346,5,12,5c2.9795,0,5.7693,1.1719,7.8555,3.2998l-1.4282,1.4001c-1.7068-1.7411-3.9895-2.7-6.4272-2.7-4.9626,0-9,4.0374-9,9,0,2.4376.9587,4.7201,2.6997,6.427l-1.4004,1.428Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M2 17 17.1719 17 13.5859 20.5859 15 22 21 16 15 10 13.5859 11.4141 17.1719 15 2 15 2 17z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v3h2v-2.4258L16,3.1577l11,6.4165v12.8516l-11,6.4165-11.7275-6.8423-1.0078,1.7275,12.2314,7.1362c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l12-7c.3071-.1792.4961-.5083.4961-.8638v-14c0-.3555-.189-.6846-.4961-.8638Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM5,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM27,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM6,24v-3h9v3h2v-3h9v3h2v-3c0-1.1-.9-2-2-2h-9v-3h-2v3H6c-1.1,0-2,.9-2,2v3h2ZM21.7,6.1c-.8-2.4-3.1-4.1-5.7-4.1s-4.9,1.7-5.7,4.1c-1.9.3-3.3,1.9-3.3,3.9s1.8,4,4,4h10c2.2,0,4-1.8,4-4s-1.4-3.6-3.3-3.9ZM21,12h-10c-1.1,0-2-.9-2-2s.9-2,2-2h1c0-2.2,1.8-4,4-4s4,1.8,4,4h1c1.1,0,2,.9,2,2s-.9,2-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3482.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v14c0,.3555.189.6846.4961.8643l12,7c.1558.0908.3296.1357.5039.1357s.3481-.0449.5039-.1357l12-7c.3076-.1797.4961-.5088.4961-.8643v-14c0-.3555-.1885-.6846-.4961-.8638ZM16,3.1577l10.0155,5.8422-2.3773,1.3867-5.6382-3.2529c-.3105-.1787-.6895-.1787-1,0l-6.4995,3.75c-.1992.115-.3417.2961-.4235.5034l-4.0925-2.3873,10.0155-5.8422h0ZM12,14.8244l3,1.75v3.8291l-3-1.7307v-3.8484ZM16,14.8423l-4-2.3333v-.1813l5.5-3.1733,4.148,2.3933-5.648,3.2947h0ZM17,16.5744l6-3.5v5.5984l-5.5,3.1729-.5-.2885v-4.9828ZM5,10.741l5,2.9167v5.5923c0,.3574.1909.6875.5005.8662l4.4995,2.5961v5.5471l-10-5.8336v-11.6848ZM17,28.2594v-4.3932c.1553.0889.3271.1338.5.1338s.3447-.0449.5-.1338l6.5-3.75c.3096-.1787.5-.5088.5-.8662v-7.3423l2-1.1667v11.6848l-10,5.8336Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m15,24c-3.8594,0-7-3.1401-7-7s3.1406-7,7-7,7,3.1401,7,7-3.1406,7-7,7Zm0-12c-2.7568,0-5,2.2432-5,5s2.2432,5,5,5,5-2.2432,5-5-2.2432-5-5-5Z"}),(0,a.jsx)("path",{d:"m30,13h-2V4h-9v-2h9c1.1025,0,2,.897,2,2v9Z"}),(0,a.jsx)("path",{d:"m15,30c-7.168,0-13-5.8315-13-13S7.832,4,15,4v2c-6.0654,0-11,4.9346-11,11s4.9346,11,11,11,11-4.9346,11-11v-1h2v1c0,7.1685-5.832,13-13,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9 13H11V19H9z"}),(0,a.jsx)("path",{d:"M21 13H23V19H21z"}),(0,a.jsx)("path",{d:"M13 11H15V24H13z"}),(0,a.jsx)("path",{d:"M17 9H19V22H17z"}),(0,a.jsx)("circle",{cx:"22",cy:"5",r:"2"}),(0,a.jsx)("circle",{cx:"10",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m22.0916,28h-8.0916v-2h8.0916l5.9082-10-2.6992-4.5679,1.7227-1.0176,2.6992,4.5679c.3701.6274.3701,1.4077,0,2.0352l-5.9092,10c-.3574.6055-1.0176.9824-1.7217.9824Z"}),(0,a.jsx)("path",{d:"m4.9768,21.5859l-2.6992-4.5684c-.3701-.6274-.3701-1.4077,0-2.0352l5.9092-10c.3584-.606,1.0176-.9824,1.7217-.9824h8.0916v2h-8.0916l-5.9082,10,2.6992,4.5684-1.7227,1.0176Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M12 18 10 18 10 6 7 6 7 18 5 18 5 4 12 4 12 18z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M21 26 19 26 19 12 16 12 16 21.9946 14 21.9946 14 10 21 10 21 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M30 26 28 26 28 18 25 18 25 26 23 26 23 16 30 16 30 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M4 20 4 22 8.5859 22 2 28.5859 3.4141 30 10 23.4141 10 28 12 28 12 20 4 20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,25h-3v-3h3v3ZM29,22h-3v3h3v-3ZM24,27h-3v3h3v-3ZM29,27h-3v3h3v-3ZM20,8h-8v2h8v-2ZM17,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v15h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h11v-2ZM20,15h-8v2h8v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,10h-8v-2h8v2ZM17,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v15h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h11v-2ZM20,15h-8v2h8v-2ZM23.4,24.3l-3.7.5,2.7,2.6-.7,3.6,3.4-1.7,3.2,1.7-.7-3.6,2.7-2.6-3.6-.5-1.7-3.3s-1.6,3.3-1.6,3.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,10h-8v-2h8v2ZM16,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v17h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h10v-2ZM20,15h-8v2h8v-2ZM23,27.2l-2.6-2.6-1.4,1.4,4,4,7-7-1.4-1.4-5.6,5.6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m22,26v2H4V10h2v-2h-2c-1.1045,0-2,.8955-2,2v18c0,1.1045.8955,2,2,2h18c1.1045,0,2-.8955,2-2v-2h-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m30,5.9932v-1.9932c0-1.1046-.8954-2-2-2H10c-1.1046,0-2,.8954-2,2v18c0,1.1046.8954,2,2,2h18c1.1046,0,2-.8954,2-2v-3h-2v3H10V4h18v1.9932h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27.5,17h-9c-1.9297,0-3.5-1.5703-3.5-3.5,0-1.7935,1.3555-3.2759,3.0957-3.4766.4561-2.291,2.4814-4.0234,4.9043-4.0234s4.4482,1.7324,4.9043,4.0234c1.7402.2007,3.0957,1.6831,3.0957,3.4766,0,1.9297-1.5703,3.5-3.5,3.5Zm-9-5c-.8271,0-1.5.6729-1.5,1.5s.6729,1.5,1.5,1.5h9c.8271,0,1.5-.6729,1.5-1.5s-.6729-1.5-1.5-1.5h-1.5v-1c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3v1h-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30,30h-2v-2c0-.5513-.4482-1-1-1h-6c-.5518,0-1,.4487-1,1v2h-2v-2c0-1.6543,1.3457-3,3-3h6c1.6543,0,3,1.3457,3,3v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m24,24c-2.2061,0-4-1.7944-4-4s1.7939-4,4-4,4,1.7944,4,4-1.7939,4-4,4Zm0-6c-1.1025,0-2,.897-2,2s.8975,2,2,2,2-.897,2-2-.8975-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 20H10V22H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 20H18V22H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 16H10V18H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 16H18V18H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 12H10V14H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 12H18V14H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,5h-3v-1c0-1.103-.8975-2-2-2h-6c-1.1025,0-2,.897-2,2v1h-3c-1.1025,0-2,.897-2,2v19c0,1.103.8975,2,2,2h9v-2H5V7h3v2h10v-2h3v6.9999h2v-6.9999c0-1.103-.8975-2-2-2Zm-5,2h-6v-3h6v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31,29.5859l-8.5479-8.5469c-2.0986,2.5171-5.178,3.9609-8.4521,3.9609-6.0654,0-11-4.9346-11-11S7.9346,3,14,3s11,4.9346,11,11c0,1.6001-.3354,3.1416-.9968,4.583l1.8174.834c.7827-1.7041,1.1794-3.5269,1.1794-5.417,0-7.168-5.8318-13-13-13S1,6.832,1,14s5.8318,13,13,13c3.1343,0,6.1025-1.1387,8.4395-3.1465l7.1465,7.1465,1.4141-1.4141Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m17,15c-.8066,0-1.5369.3237-2.0767.8438l-2.96-1.4805c.0146-.1201.0366-.2388.0366-.3633s-.022-.2432-.0366-.3633l2.96-1.4805c.5398.52,1.27.8438,2.0767.8438,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3-3,1.3457-3,3c0,.1245.022.2432.0366.3633l-2.96,1.4805c-.5398-.52-1.27-.8438-2.0767-.8438-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c.8066,0,1.5369-.3237,2.0767-.8438l2.96,1.4805c-.0146.1201-.0366.2388-.0366.3633,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3Zm0-6c.5515,0,1,.4482,1,1s-.4485,1-1,1-1-.4482-1-1,.4485-1,1-1Zm-8,6c-.5515,0-1-.4482-1-1s.4485-1,1-1,1,.4482,1,1-.4485,1-1,1Zm8,4c-.5515,0-1-.4482-1-1s.4485-1,1-1,1,.4482,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,27v-6h-2v4.6l-9.6-9.6L15,6.4v4.6h2v-6h10v8h2V5c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v22c0,1.1.9,2,2,2h12v-2ZM5,5h8.6L5,13.6V5ZM5,27v-8.6l8.6,8.6H5ZM26.6,19l-3.7-3.7c-.2-.2-.4-.3-.6-.3h-3.5c-.6-1.6-2.3-2.4-3.8-1.8-.9.3-1.6,1-1.8,1.9-.5,1.6.4,3.3,2,3.7,1.5.5,3.1-.3,3.7-1.8h3l3.8,3.8c.1.1.3.2.5.2h3.9v-2s-3.5,0-3.5,0ZM16,17c-.6,0-1-.4-1-1s.4-1,1-1,1,.4,1,1-.4,1-1,1ZM24.8,23c-.4-1.2-1.5-2-2.8-2s-3,1.3-3,3,1.4,3,3,3,2.4-.8,2.8-2h5.2v-2h-5.2ZM22,25c-.5,0-1-.5-1-1s.5-1,1-1,1,.5,1,1-.4,1-1,1ZM26,27h4v2h-4v-2ZM28,15h2v2h-2v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,5,25Z"}),(0,a.jsx)("path",{d:"M16,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,16,25Z"}),(0,a.jsx)("path",{d:"M27,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,27,25Z"}),(0,a.jsx)("path",{d:"M28,23H26V11a2.0059,2.0059,0,0,0-2-2H22V7h2a4.0118,4.0118,0,0,1,4,4Z"}),(0,a.jsx)("path",{d:"M15 12H17V23H15z"}),(0,a.jsx)("path",{d:"M6,23H4V11A4.0118,4.0118,0,0,1,8,7h2V9H8a2.0059,2.0059,0,0,0-2,2Z"}),(0,a.jsx)("path",{d:"M16,2,14.7,4.6343l-2.9057.42,2.1029,2.0514L13.4,10,16,8.6343,18.6,10l-.4972-2.8943,2.1029-2.0486L17.3,4.6343Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,3v2h-12.4258l-6.4238,11.0117,3.6408,6.5537.7783-2.5654,1.9139.5806-1.7417,5.7416-5.7416-1.7416.5806-1.9139s1.2918.3851,2.375.712l-3.8296-6.8933c-.1719-.3086-.168-.6846.0098-.9893L8.1357,3.4961c.1797-.3076.5088-.4961.8643-.4961h13ZM23,29c.3555,0,.6846-.1885.8643-.4961l7-12c.1777-.3047.1816-.6807.0098-.9893l-3.8296-6.8933c1.0832.3269,2.375.712,2.375.712l.5806-1.9139-5.7416-1.7416-1.7417,5.7416,1.9139.5806.7783-2.5654,3.6408,6.5537-6.4238,11.0117h-12.4258v2h13-.0002ZM21,16c0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5,5-2.2432,5-5ZM19,16c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},i){return l.createElement(h.A,{width:t,height:t,ref:i,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,28.4l-0.9-1.8c4-2.1,6.5-6.2,6.5-10.6c0-6.6-5.4-12-12-12c-1.3,0-2.5,0.2-3.7,0.6l-0.6-1.9C13.1,2.2,14.5,2,16,2 c7.7,0,14,6.3,14,14C30,21.2,27.1,26,22.5,28.4z"}),(0,a.jsx)("path",{d:"M20.5,23.8l-1-1.7c2.2-1.2,3.5-3.6,3.5-6.1c0-3.9-3.1-7-7-7c-0.6,0-1.2,0.1-1.8,0.2l-0.5-1.9C14.5,7.1,15.2,7,16,7 c5,0,9,4,9,9C25,19.2,23.3,22.2,20.5,23.8z"}),(0,a.jsx)("path",{d:"M9.5,28.4C4.9,26,2,21.2,2,16c0-1.5,0.2-2.9,0.7-4.3l1.9,0.6C4.2,13.5,4,14.7,4,16c0,4.5,2.5,8.6,6.5,10.6L9.5,28.4z"}),(0,a.jsx)("path",{d:"M11.5,23.8C8.7,22.2,7,19.2,7,16c0-0.8,0.1-1.5,0.3-2.2l1.9,0.5C9.1,14.8,9,15.4,9,16c0,2.5,1.3,4.8,3.5,6.1L11.5,23.8z"}),(0,a.jsx)("path",{d:"M20,16c0-2.2-1.8-4-4-4c-0.7,0-1.4,0.2-2,0.6L8.9,7.5C9,7.3,9,7.2,9,7c0-1.1-0.9-2-2-2S5,5.9,5,7s0.9,2,2,2 c0.2,0,0.3,0,0.5-0.1l5.1,5.1c-0.4,0.6-0.6,1.3-0.6,2c0,1.9,1.3,3.4,3,3.9v7.4c-0.6,0.3-1,1-1,1.7c0,1.1,0.9,2,2,2s2-0.9,2-2 c0-0.7-0.4-1.4-1-1.7v-7.4C18.7,19.4,20,17.9,20,16z M16,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S17.1,18,16,18z"}),e)})},8493(e,t,r){var h=r(7656),l="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},a=h.useState,i=h.useEffect,c=h.useLayoutEffect,n=h.useDebugValue;function w(e){var t=e.getSnapshot;e=e.value;try{var r=t();return!l(e,r)}catch(e){return!0}}var s="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var r=t(),h=a({inst:{value:r,getSnapshot:t}}),l=h[0].inst,s=h[1];return c(function(){l.value=r,l.getSnapshot=t,w(l)&&s({inst:l})},[e,r,t]),i(function(){return w(l)&&s({inst:l}),e(function(){w(l)&&s({inst:l})})},[e]),n(r),r};t.useSyncExternalStore=void 0!==h.useSyncExternalStore?h.useSyncExternalStore:s},9888(e,t,r){e.exports=r(8493)}}]);
|
|
2
|
+
"use strict";(self.webpackChunk_epcare_esm_report_builder=self.webpackChunk_epcare_esm_report_builder||[]).push([[146],{4535(e,t,r){r.d(t,{B8:()=>n,MQ:()=>c,aZ:()=>w,zg:()=>i});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 18v-2h-2.1c-.1-.6-.4-1.2-.7-1.8l1.5-1.5-1.4-1.4-1.5 1.5c-.5-.3-1.1-.6-1.8-.7V10h-2v2.1c-.6.1-1.2.4-1.8.7l-1.5-1.5-1.4 1.4 1.5 1.5c-.3.5-.6 1.1-.7 1.8H9v2h2.1c.1.6.4 1.2.7 1.8l-1.5 1.5 1.4 1.4 1.5-1.5c.5.3 1.1.6 1.8.7V24h2v-2.1c.6-.1 1.2-.4 1.8-.7l1.5 1.5 1.4-1.4-1.5-1.5c.3-.5.6-1.1.7-1.8H23Zm-7 2c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3Z"}),(0,a.jsx)("path",{d:"m29.9483 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5623 2.059 16.2811 2 16.0001 2s-.5623.0591-.8242.1777L5.7687 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8857 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.1143 28H10.886L4 19.4414l2.593-11.187L16 4l9.407 4.2549L28 19.4414 21.1142 28Z"}),(0,a.jsx)("path",{fill:"none",d:"M0 0h32v32H0z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H18v2h5v2H19a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V15A2.0023,2.0023,0,0,0,23,13Zm0,8H19V19h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2.002,2.002,0,0,0-2,2V23H9V18h4v5h2V11A2.002,2.002,0,0,0,13,9ZM9,16V11h4v5Z"}),(0,a.jsx)("path",{d:"M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 19H24V21H18z"}),(0,a.jsx)("path",{d:"M18 15H30V17H18z"}),(0,a.jsx)("path",{d:"M18 11H30V13H18z"}),(0,a.jsx)("path",{d:"M14,21V19H9V17H7v2H2v2h8.2148a8.5914,8.5914,0,0,1-2.2159,3.9771A9.2731,9.2731,0,0,1,6.5521,23H4.3334a10.8553,10.8553,0,0,0,2.1451,3.2966A14.6584,14.6584,0,0,1,3,28.127L3.7021,30a16.42,16.42,0,0,0,4.2907-2.3362A16.4883,16.4883,0,0,0,12.2979,30L13,28.127A14.664,14.664,0,0,1,9.5228,26.3,10.3132,10.3132,0,0,0,12.2516,21Z"}),(0,a.jsx)("path",{d:"M11.1666,13H13.333L8.75,2H6.5832L2,13H4.1664L5,11h5.3335ZM5.8331,9,7.6665,4.6,9.5,9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,24H6a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,6,6H26a2.0023,2.0023,0,0,1,2,2V22A2.0027,2.0027,0,0,1,26,24ZM6,8V22H26V8Z",transform:"translate(0 .005)"}),(0,a.jsx)("path",{d:"M2 26.005H30V28.005H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,2H12A9.9842,9.9842,0,0,0,7.0349,20.6553C7.0249,20.7705,7,20.8818,7,21a3.9929,3.9929,0,0,0,2.9106,3.83A4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,3.9966,3.9966,0,0,0,2.93-2.88H20A10,10,0,0,0,20,2ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm9-3H14.8579a3.9841,3.9841,0,0,0-7.15-1.2637A7.99,7.99,0,0,1,12,4h8a8,8,0,0,1,0,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.6245,2.2193a1.0005,1.0005,0,0,0-1.0972-.1006L17.9353,7.8,3.366,2.0694a1,1,0,0,0-1.28,1.3369l6.4353,14.479A3.965,3.965,0,0,0,9.9106,24.83,4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,4.0021,4.0021,0,0,0,2.93-2.88H23.24a2,2,0,0,0,1.9273-1.4649L29.9634,3.2676A1,1,0,0,0,29.6245,2.2193ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm12.24-3H14.8579a3.897,3.897,0,0,0-4.5117-2.9336L4.905,4.8238,18.0647,10,27.41,4.9878Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,14H3c-0.6,0-1-0.4-1-1V3c0-0.6,0.4-1,1-1h5v1H3v10h10V8h1v5C14,13.6,13.6,14,13,14z"}),(0,a.jsx)("path",{d:"M10 1 10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6a2.0027,2.0027,0,0,1-2-2V6A2.0027,2.0027,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0027,2.0027,0,0,1,26,28Z"}),(0,a.jsx)("path",{d:"M20 2 20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M26,22v6H6V22H26m0-2H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 10.59 17 14.17 17 2 15 2 15 14.17 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"}),(0,a.jsx)("path",{d:"M8 24H20V26H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M26,4v6H6V4H26m0-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 21.41 17 17.83 17 30 15 30 15 17.83 11.41 21.41 10 20 16 14 22 20 20.59 21.41z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M26,22v6H6V22H26m0-2H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 4.59 17 8.17 17 0 15 0 15 8.17 11.41 4.59 10 6 16 12 22 6 20.59 4.59z"}),(0,a.jsx)("path",{d:"M20.59 10.59 16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"}),(0,a.jsx)("path",{d:"M8 24H20V26H8z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,24a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,15.12,16,21.8643,28.5259,15.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,24Z"}),(0,a.jsx)("path",{d:"M16,30a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,21.12,16,27.8643,28.5259,21.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,30Z"}),(0,a.jsx)("path",{d:"M16,18a.9967.9967,0,0,1-.4741-.12l-13-7a1,1,0,0,1,0-1.7607l13-7a.9982.9982,0,0,1,.9482,0l13,7a1,1,0,0,1,0,1.7607l-13,7A.9967.9967,0,0,1,16,18ZM5.1094,10,16,15.8643,26.8906,10,16,4.1358Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,24c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m29.4741,9.1196L16,1.8643v2.2715l10.8906,5.8643-10.8906,5.8643v2.2715l13.4741-7.2554c.324-.1743.5259-.5122.5259-.8804s-.2019-.7061-.5259-.8804Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4.4141,9.4141l3.5859-3.586v8.1719s2,0,2,0V5.8281s3.5859,3.5859,3.5859,3.5859l1.4141-1.414L9,2,3,8l1.4141,1.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("rect",{width:"6",height:"6",x:"4",y:"20",rx:"1"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M9.5,12h-5a.5.5,0,0,1-.4473-.7236l2.5-5.0224a.5206.5206,0,0,1,.8945,0l2.5,5.0225A.5.5,0,0,1,9.5,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H18v2h5v2H19a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V15A2,2,0,0,0,23,13Zm0,8H19V19h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2,2,0,0,0-2,2V23H9V18h4v5h2V11A2,2,0,0,0,13,9ZM9,16V11h4v5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H19V9H17V23h6a2,2,0,0,0,2-2V15A2,2,0,0,0,23,13Zm-4,8V15h4v6Z"}),(0,a.jsx)("path",{d:"M15,12a3,3,0,0,0-3-3H7V23h5a3,3,0,0,0,3-3V18a3,3,0,0,0-.78-2A3,3,0,0,0,15,14ZM9,11h3a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H9Zm4,9a1,1,0,0,1-1,1H9V17h3a1,1,0,0,1,1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,23H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h5v2H19v6h5Z"}),(0,a.jsx)("path",{d:"M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,9v4H19a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6V9Zm-4,6h4v6H19Z"}),(0,a.jsx)("path",{d:"M11,23H7V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,11,23ZM9,21h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,19V15a2.0023,2.0023,0,0,0-2-2H19a2.0023,2.0023,0,0,0-2,2v6a2.0077,2.0077,0,0,0,2,2h5V21H19V19Zm-6-4h4v2H19Z"}),(0,a.jsx)("path",{d:"M15 11 15 9 7 9 7 23 15 23 15 21 9 21 9 17 14 17 14 15 9 15 9 11 15 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 11 16 9 8 9 8 23 10 23 10 17 15 17 15 15 10 15 10 11 16 11z"}),(0,a.jsx)("path",{d:"M24,11V9H21a2,2,0,0,0-2,2v2H17v2h2v8h2V15h3V13H21V11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h4v2H18v2h5a2,2,0,0,0,2-2V13Zm4,8H19V15h4Z"}),(0,a.jsx)("path",{d:"M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h4V17H11V15h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13 9 13 15 9 15 9 9 7 9 7 23 9 23 9 17 13 17 13 23 15 23 15 9 13 9z"}),(0,a.jsx)("path",{d:"M23,13H19V9H17V23h2V15h4v8h2V15A2,2,0,0,0,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 11 13 11 13 21 10 21 10 23 18 23 18 21 15 21 15 11 18 11 18 9 10 9 10 11z"}),(0,a.jsx)("path",{d:"M20 13H22V23H20z"}),(0,a.jsx)("path",{d:"M20 9H22V11H20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 9H22V11H20z"}),(0,a.jsx)("path",{d:"M20,25H17v2h3a2,2,0,0,0,2-2V13H20Z"}),(0,a.jsx)("path",{d:"M14,23H10a2,2,0,0,1-2-2V19h2v2h4V9h2V21A2,2,0,0,1,14,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 12.89 9 9 15.55 9 9 7 9 7 23 9 23 9 18.71 9.93 17.22 12.89 23 15 23 11.11 15.43 15 9z"}),(0,a.jsx)("path",{d:"M22.78 23 25 23 21.22 17 25 13 22.76 13 19 17.17 19 9 17 9 17 23 19 23 19 19.25 19.96 18.21 22.78 23z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 21 11 9 9 9 9 23 17 23 17 21 11 21z"}),(0,a.jsx)("path",{d:"M23,23H21a2,2,0,0,1-2-2V9h2V21h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H16V23h2V15h2v8h2V15h2v8h2V15A2,2,0,0,0,24,13Z"}),(0,a.jsx)("path",{d:"M12 9 10.48 14 10 15.98 9.54 14 8 9 6 9 6 23 8 23 8 15 7.84 13 8.42 15 10 19.63 11.58 15 12.16 13 12 15 12 23 14 23 14 9 12 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,23H23V15H19v8H17V13h6a2,2,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M13 19 9.32 9 7 9 7 23 9 23 9 13 12.68 23 15 23 15 9 13 9 13 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v6A2,2,0,0,1,23,23Zm-4-8v6h4V15Z"}),(0,a.jsx)("path",{d:"M13,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h4a2,2,0,0,1,2,2V21A2,2,0,0,1,13,23ZM9,11V21h4V11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H17V27h2V23h4a2,2,0,0,0,2-2V15A2,2,0,0,0,23,13Zm-4,8V15h4v6Z"}),(0,a.jsx)("path",{d:"M9,23H7V9h6a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H9Zm0-7h4V11H9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h4v4h2V13Zm4,8H19V15h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2h1v2a2,2,0,0,0,2,2h2V25H12V23h1a2,2,0,0,0,2-2V11A2,2,0,0,0,13,9ZM9,21V11h4V21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,15V11a2,2,0,0,0-2-2H8V23h2V17h1.48l2.34,6H16l-2.33-6H14A2,2,0,0,0,16,15Zm-6-4h4v4H10Z"}),(0,a.jsx)("path",{d:"M24 13 18 13 18 23 20 23 20 15 24 15 24 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,23H17V21h5V19H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h5v2H19v2h3a2,2,0,0,1,2,2v2A2,2,0,0,1,22,23Z"}),(0,a.jsx)("path",{d:"M13,23H7V21h6V17H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,13,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 11 11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11z"}),(0,a.jsx)("path",{d:"M23,15V13H20V11H18v2H16v2h2v6a2,2,0,0,0,2,2h3V21H20V15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23H19a2,2,0,0,1-2-2V13h2v8h4V13h2v8A2,2,0,0,1,23,23Z"}),(0,a.jsx)("path",{d:"M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 13 23.25 13 21 22.03 18.79 13 17 13 19.5 23 22.5 23 25 13z"}),(0,a.jsx)("path",{d:"M13 9 11 22 9 9 7 9 9.52 23 12.48 23 15 9 13 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.3 13 23.39 21.61 22 13 20 13 18.61 21.61 17.7 13 16 13 17.36 23 19.64 23 21 14.63 22.36 23 24.64 23 26 13 24.3 13z"}),(0,a.jsx)("path",{d:"M12.21 9 11.87 17 11.61 21.54 11.2 18 10.52 12.54 8.5 12.54 7.82 18 7.41 21.54 7.16 17 6.81 9 5.01 9 6.01 23 8.28 23 9.04 18.07 9.5 14 9.51 13.97 9.52 14 9.98 18.07 10.74 23 13.01 23 14.01 9 12.21 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 13 9 11 15 9 9 7 9 9.75 16 7 23 9 23 11 17 13 23 15 23 12.24 16 15 9z"}),(0,a.jsx)("path",{d:"M25 13 23 13 21 16.9 19 13 17 13 19.91 18 17 23 19 23 21 19.2 23 23 25 23 22.1 18 25 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 13 9 11 16 9 9 7 9 10 18 10 23 12 23 12 18 12 18 15 9z"}),(0,a.jsx)("path",{d:"M23,13l-2,7.52L19.08,13H17l3.15,9.87L19.53,25H17v2h2.26a2,2,0,0,0,1.91-1.42L25,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 15 25 13 17 13 17 15 22.5 15 17 21 17 23 25 23 25 21 19.51 21 25 15z"}),(0,a.jsx)("path",{d:"M15 9 7 9 7 11 13 11 7 21 7 23 15 23 15 21 9 21 15 11 15 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 6H22V8H10z"}),(0,a.jsx)("path",{d:"M10 10H22V12H10z"}),(0,a.jsx)("path",{d:"M10 24H16V26H10z"}),(0,a.jsx)("path",{d:"M10 14H16V16H10z"}),(0,a.jsx)("path",{d:"M24,30H8a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,8,2H24a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,24,30ZM8,4V28H24V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 24H12V26H8z"}),(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a8,8,0,1,0,8,8A8.0092,8.0092,0,0,0,22,14Zm5.91,7H25.9563a12.03,12.03,0,0,0-1.2183-4.3325A6.01,6.01,0,0,1,27.91,21Zm-7.8545,0A10.0135,10.0135,0,0,1,22,16.0146,10.0121,10.0121,0,0,1,23.9448,21Zm3.89,2A10.01,10.01,0,0,1,22,27.9854,10.0121,10.0121,0,0,1,20.0552,23Zm-4.6831-6.332A12.0265,12.0265,0,0,0,18.0435,21H16.09A6.01,6.01,0,0,1,19.2617,16.668ZM16.09,23h1.9532a12.0265,12.0265,0,0,0,1.2182,4.332A6.01,6.01,0,0,1,16.09,23Zm8.6482,4.332A12.0242,12.0242,0,0,0,25.9565,23H27.91A6.0088,6.0088,0,0,1,24.7385,27.332Z"}),(0,a.jsx)("path",{d:"M6 14H12V16H6z"}),(0,a.jsx)("path",{d:"M6 6H18V8H6z"}),(0,a.jsx)("path",{d:"M6 10H18V12H6z"}),(0,a.jsx)("path",{d:"M6 24H12V26H6z"}),(0,a.jsx)("path",{d:"M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H20a2.0021,2.0021,0,0,1,2,2v8H20V4H4V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 24H14V26H8z"}),(0,a.jsx)("path",{d:"M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z"}),(0,a.jsx)("path",{d:"M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M20,13V11H17.8579a3.94,3.94,0,0,0-.4248-1.019L18.95,8.4644,17.5356,7.05,16.019,8.5669A3.9443,3.9443,0,0,0,15,8.1421V6H13V8.1421a3.9443,3.9443,0,0,0-1.019.4248L10.4644,7.05,9.05,8.4644,10.5669,9.981A3.94,3.94,0,0,0,10.1421,11H8v2h2.1421a3.94,3.94,0,0,0,.4248,1.019L9.05,15.5356,10.4644,16.95l1.5166-1.5166A3.9443,3.9443,0,0,0,13,15.8579V18h2V15.8579a3.9443,3.9443,0,0,0,1.019-.4248L17.5356,16.95,18.95,15.5356,17.4331,14.019A3.94,3.94,0,0,0,17.8579,13Zm-6,1a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,14,14Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 24H14V26H8z"}),(0,a.jsx)("path",{d:"M27,25H21a3,3,0,0,0-3,3v2h2V28a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V28A3,3,0,0,0,27,25Z"}),(0,a.jsx)("path",{d:"M24,24a4,4,0,1,0-4-4A4,4,0,0,0,24,24Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,24,18Z"}),(0,a.jsx)("path",{d:"M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M17,15H11a3,3,0,0,0-3,3v1h2V18a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v1h2V18A3,3,0,0,0,17,15Z"}),(0,a.jsx)("path",{d:"M14,14a4,4,0,1,0-4-4A4,4,0,0,0,14,14Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,14,8Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.2261,22.812a13.9664,13.9664,0,0,0,0-13.624L28.4141,9a2.0021,2.0021,0,0,0,0-2.8281l-2.5857-2.586a2.0028,2.0028,0,0,0-2.8284,0l-.1877.1875a13.9687,13.9687,0,0,0-13.6243,0L9,3.5859a2.0024,2.0024,0,0,0-2.8284,0L3.5859,6.1719A2.0021,2.0021,0,0,0,3.5859,9l.1878.1875a13.97,13.97,0,0,0,0,13.625L3.5859,23a2.0021,2.0021,0,0,0,0,2.8281l2.5857,2.586a2.0021,2.0021,0,0,0,2.8284,0l.188-.188a13.9687,13.9687,0,0,0,13.6243.0005L23,28.4141a2.0021,2.0021,0,0,0,2.8284,0l2.5857-2.586a2.0021,2.0021,0,0,0,0-2.8281ZM28,16a11.973,11.973,0,0,1-1.2546,5.3315l-3.8948-3.895a6.9808,6.9808,0,0,0,0-2.873l3.8948-3.895A11.973,11.973,0,0,1,28,16ZM27,7.5859l-4.9346,4.9346A7.0434,7.0434,0,0,0,19.48,9.9346L24.4143,5ZM16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21ZM21.3154,5.2705,17.4365,9.1494a6.9808,6.9808,0,0,0-2.873,0L10.6846,5.2705A12.2484,12.2484,0,0,1,21.3154,5.2705ZM7.5859,5l4.9346,4.9346a7.0449,7.0449,0,0,0-2.5859,2.5859L5,7.5859ZM4,16a11.9716,11.9716,0,0,1,1.2546-5.3311l3.8948,3.8946a6.9808,6.9808,0,0,0,0,2.873L5.2546,21.3311A11.9716,11.9716,0,0,1,4,16ZM7.5857,27,5,24.4141,9.9346,19.48a7.0434,7.0434,0,0,0,2.5859,2.5859Zm3.0989-.27,3.8789-3.8789a6.9808,6.9808,0,0,0,2.873,0L21.3154,26.73A12.2484,12.2484,0,0,1,10.6846,26.73Zm13.73.27L19.48,22.0654A7.0449,7.0449,0,0,0,22.0654,19.48L27,24.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.5 1H8.5V3.5H7.5z"}),(0,a.jsx)("path",{d:"M10.8 3.4H13.3V4.4H10.8z",transform:"rotate(-45 12.041 3.923)"}),(0,a.jsx)("path",{d:"M12.5 7.5H15V8.5H12.5z"}),(0,a.jsx)("path",{d:"M11.6 10.8H12.6V13.3H11.6z",transform:"rotate(-45 12.075 12.04)"}),(0,a.jsx)("path",{d:"M7.5 12.5H8.5V15H7.5z"}),(0,a.jsx)("path",{d:"M2.7 11.6H5.2V12.6H2.7z",transform:"rotate(-45 3.96 12.078)"}),(0,a.jsx)("path",{d:"M1 7.5H3.5V8.5H1z"}),(0,a.jsx)("path",{d:"M3.4 2.7H4.4V5.2H3.4z",transform:"rotate(-45 3.925 3.961)"}),(0,a.jsx)("path",{d:"M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6 M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 2H17V7H15z"}),(0,a.jsx)("path",{d:"M21.668 6.854H26.625999999999998V8.854H21.668z",transform:"rotate(-45 24.147 7.853)"}),(0,a.jsx)("path",{d:"M25 15H30V17H25z"}),(0,a.jsx)("path",{d:"M23.147 21.668H25.147V26.625999999999998H23.147z",transform:"rotate(-45 24.147 24.146)"}),(0,a.jsx)("path",{d:"M15 25H17V30H15z"}),(0,a.jsx)("path",{d:"M5.375 23.147H10.333V25.147H5.375z",transform:"rotate(-45 7.853 24.146)"}),(0,a.jsx)("path",{d:"M2 15H7V17H2z"}),(0,a.jsx)("path",{d:"M6.854 5.375H8.854V10.333H6.854z",transform:"rotate(-45 7.854 7.853)"}),(0,a.jsx)("path",{d:"M16,12a4,4,0,1,1-4,4,4.0045,4.0045,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 2H17V7H15z"}),(0,a.jsx)("path",{d:"M21.668 6.854H26.625999999999998V8.854H21.668z",transform:"rotate(-45 24.147 7.853)"}),(0,a.jsx)("path",{d:"M25 15H30V17H25z"}),(0,a.jsx)("path",{d:"M23.147 21.668H25.147V26.625999999999998H23.147z",transform:"rotate(-45 24.147 24.146)"}),(0,a.jsx)("path",{d:"M15 25H17V30H15z"}),(0,a.jsx)("path",{d:"M5.375 23.147H10.333V25.147H5.375z",transform:"rotate(-45 7.853 24.146)"}),(0,a.jsx)("path",{d:"M2 15H7V17H2z"}),(0,a.jsx)("path",{d:"M6.854 5.375H8.854V10.333H6.854z",transform:"rotate(-45 7.854 7.853)"}),(0,a.jsx)("path",{d:"M16,10a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.25,6.76a6,6,0,0,0-8.5,0l1.42,1.42a4,4,0,1,1,5.67,5.67l-8,8a4,4,0,1,1-5.67-5.66l1.41-1.42-1.41-1.42-1.42,1.42a6,6,0,0,0,0,8.5A6,6,0,0,0,17,25a6,6,0,0,0,4.27-1.76l8-8A6,6,0,0,0,29.25,6.76Z"}),(0,a.jsx)("path",{d:"M4.19,24.82a4,4,0,0,1,0-5.67l8-8a4,4,0,0,1,5.67,0A3.94,3.94,0,0,1,19,14a4,4,0,0,1-1.17,2.85L15.71,19l1.42,1.42,2.12-2.12a6,6,0,0,0-8.51-8.51l-8,8a6,6,0,0,0,0,8.51A6,6,0,0,0,7,28a6.07,6.07,0,0,0,4.28-1.76L9.86,24.82A4,4,0,0,1,4.19,24.82Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.5,24.6506L24.6506,4.5l2.8494,2.8494L7.3494,27.5l-2.8494-2.8494Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5.293,25.2929L25.293,5.2929l1.4141,1.4141L6.707,26.707l-1.4141-1.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.8945,23.542l-1.7238-3.4473a1.9994,1.9994,0,0,0-1.7886-1.1054h-.4683a14.887,14.887,0,0,0-1.8193-4.5977C23.0647,12.4429,22,10.4277,22,8A6,6,0,0,0,10,8a13.0041,13.0041,0,0,1-2.0486,6.2153,14.7022,14.7022,0,0,0-1.8708,4.7759H5.6184a2.0007,2.0007,0,0,0-1.7893,1.106L2.1055,23.5439a1,1,0,0,0,.0971,1.0508L6.2319,29.92a2.9995,2.9995,0,0,0,3.8482.6519l1.8735-1.1241A13.8223,13.8223,0,0,0,16,30a13.8034,13.8034,0,0,0,4.0488-.5527L21.92,30.57a2.9819,2.9819,0,0,0,1.5385.43,3.0385,3.0385,0,0,0,2.3389-1.1187l4-5.2885A1.001,1.001,0,0,0,29.8945,23.542Zm-7.5683-8.2158a14.8311,14.8311,0,0,1,1.5591,3.6631H21.738a16.6591,16.6591,0,0,0-.98-2.6455,12.7083,12.7083,0,0,1-.8789-2.4454,8.8046,8.8046,0,0,0,1.0034-1.4277l.0384-.0718A30.746,30.746,0,0,0,22.3262,15.3262ZM12,21a9.3959,9.3959,0,0,1,1.0728-3.8516c.2563-.5825.5158-1.1757.726-1.7993a4.0474,4.0474,0,0,0,4.4024,0c.21.6236.47,1.2168.726,1.7993A9.3959,9.3959,0,0,1,20,21c0,1.2881-.4146,3-4,3S12,22.2881,12,21Zm6.5105-8.5752A3.6265,3.6265,0,0,1,16,14a3.6273,3.6273,0,0,1-2.5107-1.5757,7.6356,7.6356,0,0,1,5.0212,0ZM12,8a4,4,0,0,1,8,0,10.9164,10.9164,0,0,0,.4673,3.1152A7.9811,7.9811,0,0,0,19,10.4849V8H17v2.0542a9.2522,9.2522,0,0,0-2,0V8H13v2.4849a7.9019,7.9019,0,0,0-1.4785.6372A10.7093,10.7093,0,0,0,12,8ZM9.7146,15.1592A29.8007,29.8007,0,0,0,11.0693,12.38l.0484.09a8.8046,8.8046,0,0,0,1.0034,1.4277,12.7083,12.7083,0,0,1-.8789,2.4454,16.6574,16.6574,0,0,0-.981,2.6474H8.1047A14.0567,14.0567,0,0,1,9.7146,15.1592Zm1.3708,12.4775L9.0508,28.8574a.9866.9866,0,0,1-1.2529-.1806L4.1724,23.8833l1.4458-2.8921h3.706L11.49,26.3853A1.0036,1.0036,0,0,1,11.0854,27.6367Zm2.316.1177a2.9571,2.9571,0,0,0-.0562-2.11A9.03,9.03,0,0,0,16,26a9.0237,9.0237,0,0,0,2.6562-.3564,2.9889,2.9889,0,0,0-.0546,2.11,13.8722,13.8722,0,0,1-5.2,0Zm10.83.8833a.996.996,0,0,1-1.2827.2178l-2.0342-1.2207h0a1.01,1.01,0,0,1-.396-1.273l2.157-5.3725h3.7058l1.4461,2.892Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.6121,20.5215A6.1582,6.1582,0,0,0,24,16.5254C24,13.4785,21.9812,11,19.5,11A4.2435,4.2435,0,0,0,16,13.06,4.2435,4.2435,0,0,0,12.5,11C10.0188,11,8,13.4785,8,16.5254a6.1593,6.1593,0,0,0,1.3879,3.9961c-.5688.3686-.9389.6416-.988.6787a1,1,0,0,0-.1807,1.4248C8.6592,23.1748,12.6169,28,16,28s7.3408-4.8252,7.7808-5.375A1,1,0,0,0,23.6,21.2C23.551,21.1631,23.1812,20.89,22.6121,20.5215ZM12.5,13c1.3552,0,2.5,1.6143,2.5,3.5254v1.5664a9.1005,9.1005,0,0,0-1.0244.2314A2.6411,2.6411,0,0,0,14,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.38,2.38,0,0,0,.4072,1.3623c-.0813.0415-.1687.0806-.248.1221A4.0291,4.0291,0,0,1,10,16.5254C10,14.6143,11.1448,13,12.5,13ZM16,26c-1.5691,0-3.9648-2.084-5.52-3.8057C11.9,21.2788,14.2656,20,16,20s4.1,1.2788,5.52,2.1943C19.9648,23.916,17.5691,26,16,26Zm4.8408-6.5156c-.0793-.0415-.1667-.0806-.248-.1221A2.38,2.38,0,0,0,21,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.6411,2.6411,0,0,0,.0244.3232A9.1005,9.1005,0,0,0,17,18.0918V16.5254C17,14.6143,18.1448,13,19.5,13S22,14.6143,22,16.5254A4.0291,4.0291,0,0,1,20.8408,19.4844Z"}),(0,a.jsx)("path",{d:"M30,30a3.8876,3.8876,0,0,1-4-4V14A10,10,0,0,0,6,14V26a3.8876,3.8876,0,0,1-4,4V28a1.8793,1.8793,0,0,0,2-2V14a12,12,0,0,1,24,0V26a1.8825,1.8825,0,0,0,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M26 2H28V30H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m20,25H6c-1.1046,0-2-.8954-2-2v-14c0-1.1046.8954-2,2-2h14c1.1046,0,2,.8954,2,2v14c0,1.1046-.8954,2-2,2Zm0-16H6v14h14v-14Z"}),e)});const n=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 6H28V8H10z"}),(0,a.jsx)("path",{d:"M10 24H28V26H10z"}),(0,a.jsx)("path",{d:"M10 15H28V17H10z"}),(0,a.jsx)("path",{d:"M4 15H6V17H4z"}),(0,a.jsx)("path",{d:"M4 6H6V8H4z"}),(0,a.jsx)("path",{d:"M4 24H6V26H4z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M10,14H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,10,14ZM4,6v6h6.0012L10,6Z"}),(0,a.jsx)("path",{d:"M10,28H4a2.0023,2.0023,0,0,1-2-2V20a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,10,28ZM4,20v6h6.0012L10,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"3.5",cy:"4.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"3.5",cy:"11.5",r:"1.5"}),(0,a.jsx)("path",{d:"M8 11H15V12H8z"}),(0,a.jsx)("path",{d:"M8 4H15V5H8z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"7",cy:"9",r:"3"}),(0,a.jsx)("circle",{cx:"7",cy:"23",r:"3"}),(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M14 19.4 12.6 18 6 24.6 3.4 22 2 23.4 6 27.4z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M14 5.4 12.6 4 6 10.6 3.4 8 2 9.4 6 13.4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 19.4 28.6 18 22 24.6 19.4 22 18 23.4 22 27.4z"}),(0,a.jsx)("path",{d:"M2 22H16V24H2z"}),(0,a.jsx)("path",{d:"M30 5.4 28.6 4 22 10.6 19.4 8 18 9.4 22 13.4z"}),(0,a.jsx)("path",{d:"M2 8H16V10H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,6V2H2V12h9V30H30V6ZM4,10V4H24V6H11v4ZM28,28H13V8H28Z"}),(0,a.jsx)("path",{d:"M15 11H17V13H15z"}),(0,a.jsx)("path",{d:"M19 11H26V13H19z"}),(0,a.jsx)("path",{d:"M15 17H17V19H15z"}),(0,a.jsx)("path",{d:"M19 17H26V19H19z"}),(0,a.jsx)("path",{d:"M15 23H17V25H15z"}),(0,a.jsx)("path",{d:"M19 23H26V25H19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M8 12 8 4 6 4 6 5 4 5 4 7 6 7 6 12 4 12 4 14 6 14 8 14 10 14 10 12 8 12z"}),(0,a.jsx)("path",{d:"M10,28H4V24a2,2,0,0,1,2-2H8V20H4V18H8a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H6v2h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,28h-6v-4c0-1.1,0.9-2,2-2h2v-2h-4v-2h4c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-2v2h4V28z"}),(0,a.jsx)("path",{d:"M2 22H16V24H2z"}),(0,a.jsx)("path",{d:"M26 12 26 4 24 4 24 5 22 5 22 7 24 7 24 12 22 12 22 14 24 14 26 14 28 14 28 12z"}),(0,a.jsx)("path",{d:"M2 8H16V10H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,4h-2v22c0,1.1025.897,2,2,2h5v-2h-5v-6h5v-2h-5v-6h5v-2h-5v-6ZM16,12h2v-2h-2v2ZM20,10v2h7v-2h-7ZM16,20h2v-2h-2v2ZM20,20h7v-2h-7v2ZM16,28h2v-2h-2v2ZM20,28h7v-2h-7v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V14H15v2H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M9,2V12H23V2Zm2,2h2v6H11Zm10,6H15V4h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M20,10V2H12v8ZM14,8V4h4V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M16,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 8H17V10H15z"}),(0,a.jsx)("path",{d:"M19 8H21V10H19z"}),(0,a.jsx)("path",{d:"M11 8H13V10H11z"}),(0,a.jsx)("path",{d:"M25,16H17V13H15v3H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M11 3H21V5H11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17V10H15v6H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M11 5H21V7H11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v4H7V18h8v4h2V18h8v4h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M20,10V2H12v8h8ZM14,8V4h4V8Z"}),(0,a.jsx)("path",{d:"M26,24a2.9948,2.9948,0,0,0-2.8157,2H18.8157a2.982,2.982,0,0,0-5.6314,0H8.8157a3,3,0,1,0,0,2h4.3686a2.982,2.982,0,0,0,5.6314,0h4.3686A2.9947,2.9947,0,1,0,26,24ZM6,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,28Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,28Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 15H22V17H10z"}),(0,a.jsx)("path",{d:"M8.7,6.2852A2.9665,2.9665,0,0,0,9,5,3,3,0,1,0,6,8a2.96,2.96,0,0,0,1.2852-.3008L10,10.4141V13h2V9.5859ZM6,6A1,1,0,1,1,7,5,1.0009,1.0009,0,0,1,6,6Z"}),(0,a.jsx)("path",{d:"M19,5a3,3,0,1,0-4,2.8154V13h2V7.8159A2.9957,2.9957,0,0,0,19,5ZM16,6a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,6Z"}),(0,a.jsx)("path",{d:"M26,2a3.0033,3.0033,0,0,0-3,3,2.9665,2.9665,0,0,0,.3,1.2852L20,9.5859V13h2V10.4141l2.7148-2.7149A2.96,2.96,0,0,0,26,8a3,3,0,0,0,0-6Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,6Z"}),(0,a.jsx)("path",{d:"M12,19H10v2.5859L7.2854,24.3008A2.9609,2.9609,0,0,0,6,24a3,3,0,1,0,3,3,2.9665,2.9665,0,0,0-.3-1.2852L12,22.4141ZM6,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,28Z"}),(0,a.jsx)("path",{d:"M17,24.1841V19H15v5.1841a3,3,0,1,0,2,0ZM16,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M26,24a2.9609,2.9609,0,0,0-1.2854.3008L22,21.5859V19H20v3.4141l3.3,3.3007A2.9665,2.9665,0,0,0,23,27a3,3,0,1,0,3-3Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,30H2V24H8ZM4,28H6V26H4Z"}),(0,a.jsx)("path",{d:"M19,30H13V24h6Zm-4-2h2V26H15Z"}),(0,a.jsx)("path",{d:"M30,30H24V24h6Zm-4-2h2V26H26Z"}),(0,a.jsx)("path",{d:"M16,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,10Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,16,4Z"}),(0,a.jsx)("path",{d:"M26,16H21a4.0045,4.0045,0,0,1-4-4H15a4.0045,4.0045,0,0,1-4,4H6a2.0023,2.0023,0,0,0-2,2v4H6V18h5A5.9694,5.9694,0,0,0,15,16.46V22h2V16.46A5.9694,5.9694,0,0,0,21,18h5v4h2V18A2.0023,2.0023,0,0,0,26,16Z"}),e)});const w=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,18a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,18Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,10Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,1,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),(0,a.jsx)("path",{d:"M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M15 16H17V18H15z"}),(0,a.jsx)("path",{d:"M15 12H17V14H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Zm-4-2H15v2h2Zm0-4H15v2h2Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm1,16H15V16h2Zm0-4H15V12h2Zm4,4H19V10H13v8H11V10a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,12.9835a1,1,0,0,0,.6289.9448l9.6015,3.8409,3.8407,9.6019A1,1,0,0,0,19,28h.0162a1.0009,1.0009,0,0,0,.9238-.6582l8-22.0007A1,1,0,0,0,26.658,4.0594l-22,8A1.0011,1.0011,0,0,0,4,12.9835Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,17Z"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"4",fill:"none"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"20.5",r:"1.5"}),(0,a.jsx)("path",{d:"M15 7H17V16H15z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Zm-1.125-6h2.25V7h-2.25Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2ZM14.875,7h2.25v9h-2.25ZM16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm4.2109,11.7021L16.002,18l-4.2129-4.2979a2.7992,2.7992,0,0,1,0-3.8964,2.6619,2.6619,0,0,1,3.8159,0l.397.4057.393-.4057a2.6619,2.6619,0,0,1,3.8159,0A2.7992,2.7992,0,0,1,20.2109,13.7021Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M17 18 17 11 13 11 13 13 15 13 15 18 12 18 12 20 20 20 20 18 17 18z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m15.5,6c-.8284,0-1.5.6716-1.5,1.5s.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30l-8.4355-9.9487c-.0479-.0571-.3481-.4516-.3481-.4516-1.4507-1.9268-2.2163-4.2065-2.2163-6.5998,0-6.0641,4.9346-11,11-11s11,4.9359,11,11c0,2.3933-.7656,4.673-2.2148,6.5973l-.0015.0024s-.3003.3944-.3447.4474l-8.439,9.9528Zm-7.1875-11.605c.001.0007.2334.3083.2866.3744l6.9009,8.1385,6.9102-8.1498c.0439-.0552.2783-.3649.2788-.3656,1.1851-1.5746,1.811-3.4376,1.811-5.3925,0-4.9615-4.0376-9-9-9S7,8.0385,7,13c0,1.9559.627,3.8199,1.8125,5.395h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-6.0654,0-11,4.936-11,11,0,2.3931.7656,4.6729,2.2163,6.5996,0,0,.3003.3945.3481.4517l8.4355,9.9487,8.439-9.9526c.0444-.0532.3447-.4478.3447-.4478l.0015-.0024c1.4492-1.9243,2.2148-4.2041,2.2148-6.5972,0-6.064-4.9346-11-11-11Zm-.5,4c.8284,0,1.5.6714,1.5,1.5s-.6716,1.5-1.5,1.5-1.5-.6714-1.5-1.5.6716-1.5,1.5-1.5Zm4.5,14h-8v-2h3v-5h-2v-2h4v7h3v2Z"}),(0,a.jsx)("path",{fill:"none",strokeWidth:"0",d:"m15.5,6c.8284,0,1.5.6714,1.5,1.5s-.6716,1.5-1.5,1.5-1.5-.6714-1.5-1.5.6716-1.5,1.5-1.5Zm4.5,14h-8v-2h3v-5h-2v-2h4v7h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M16,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,14Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,16,10Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Zm-1-8a3,3,0,1,0-3,3A3.0033,3.0033,0,0,0,19,11Zm-2,0a1,1,0,1,1-1-1A1.0011,1.0011,0,0,1,17,11Z"}),(0,a.jsx)("circle",{cx:"16",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,6a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,8Zm4,11H18V17H14v2H12V17a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30h2V28a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v2h2V28a3.0033,3.0033,0,0,0-3-3H21a3.0033,3.0033,0,0,0-3,3Z"}),(0,a.jsx)("path",{d:"M24,24a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,24,24Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,24,18Z"}),(0,a.jsx)("path",{d:"M25.3418,10.06l-22-8A1,1,0,0,0,2.06,3.3415l8,22A1.001,1.001,0,0,0,10.9839,26H11a1,1,0,0,0,.9287-.6289L15.77,15.7692l9.6016-3.8408a1,1,0,0,0-.0293-1.8687ZM14.6284,14.0709v0l-.3979.1591-.1591.3979,0,0-3.0269,7.5678L4.6719,4.6715l17.5244,6.3726Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 7 17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16 7 17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm3.6,16L16,15.7085,12.4,18l.6-4.0742-3-2.7529,4.2-.5064L16,7l1.9116,3.6665L22,11.1729l-3,2.7529Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,14H22V8A6,6,0,0,0,10,8v6H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16A2,2,0,0,0,24,14ZM12,8a4,4,0,0,1,8,0v6H12ZM24,28H8V16H24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30.4461,20.1005c-.1386-.0692-.2914-.1052-.4464-.1053h-10c-.5522,0-1.0001.4474-1.0002.9998,0,.1338.0268.2662.0789.3895l5.0268,10.0581c.1694.3388.5158.5527.8946.5527.3788,0,.7253-.2139.8947-.5527l5-10c.2468-.4944.046-1.0953-.4484-1.342h0ZM8,16h16v2h2v-2c0-1.1046-.8954-2-2-2h-2v-6c0-3.3137-2.6863-6-6-6s-6,2.6863-6,6v6h-2c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h11v-2h-11v-12ZM12,8c0-2.2092,1.7908-4,4-4s4,1.7908,4,4v6h-8v-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"9",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M27,22v-4c0-1.1046-.8954-2-2-2h-8v-4h9c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H6c-1.1046,0-2,.8954-2,2v6c0,1.1046,.8954,2,2,2H15v4H7c-1.1046,0-2,.8954-2,2v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1v-4H15v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1v-4h8v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1Zm-19,6H4v-4h4v4Zm10-4v4h-4v-4h4ZM6,10V4H26v6H6ZM28,28h-4v-4h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,30H14a2,2,0,0,1-2-2V25h2v3H26V4H14V7H12V4a2,2,0,0,1,2-2H26a2,2,0,0,1,2,2V28A2,2,0,0,1,26,30Z"}),(0,a.jsx)("path",{d:"M14.59 20.59 18.17 17 4 17 4 15 18.17 15 14.59 11.41 16 10 22 16 16 22 14.59 20.59z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.5,16h4.9L16,10.8L13.5,16z"}),(0,a.jsx)("path",{d:"M16,3L3,7.6l2.7,15.8L16,29l10.3-5.6L29,7.6L16,3z M21.1,21.6l-1.5-3.2h-7.1l-1.5,3.2H8.6L16,5.3l7.4,16.2H21.1z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.8,27.7L17.5,3.1C17.2,2.4,16.6,2,15.9,2c-0.7,0-1.3,0.4-1.6,1.1L3,30h3.9l4.5-11.1l13.3,10.7c0.5,0.4,0.9,0.6,1.4,0.6 c1,0,1.9-0.7,1.9-1.8C28,28.2,27.9,28,27.8,27.7z M15.9,7.5l6.7,16.4L12.5,16L15.9,7.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.2,6.9c2.7,2.1,5.7,6.3,6.8,8.5,1.1-2.2,4-6.4,6.8-8.5,2-1.5,5.2-2.6,5.2,1s-.4,6.2-.7,7c-.9,3.1-4,3.8-6.8,3.4,4.8.8,6.1,3.6,3.4,6.3-5.1,5.2-7.3-1.3-7.8-3,0-.3-.1-.5-.1-.3,0-.1,0,0-.1.3-.6,1.7-2.8,8.2-7.8,3-2.7-2.7-1.4-5.5,3.4-6.3-2.8.5-5.9-.3-6.8-3.4-.2-.9-.7-6.3-.7-7,0-3.7,3.2-2.5,5.2-1,0,0,0,0,0,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6.48,7.6v3.92H2V21H9.28V7.6Zm0,11.2H4.8v-5H6.48Z"}),(0,a.jsx)("path",{d:"M10.4 11.52H13.2V21.04H10.4z"}),(0,a.jsx)("path",{d:"M10.4 7.6H13.2V10.399999999999999H10.4z"}),(0,a.jsx)("path",{d:"M14.32,11.52V21H18.8v1.12H14.32V24.4H21.6V11.52ZM18.8,18.8H17.12v-5H18.8Z"}),(0,a.jsx)("path",{d:"M22.72,11.52V21H27.2v1.12H22.72V24.4H30V11.52ZM27.2,18.8H25.52v-5H27.2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.7,7.1C23.9,6.3,22,5.7,20,5.3c0,0-0.1,0-0.1,0c-0.2,0.4-0.5,1-0.7,1.5c-2.2-0.3-4.3-0.3-6.4,0c-0.2-0.5-0.5-1-0.7-1.5 c0,0-0.1,0-0.1,0c-2,0.3-3.9,0.9-5.7,1.8c0,0,0,0,0,0c-3.6,5.4-4.6,10.7-4.1,15.9c0,0,0,0.1,0,0.1c2.4,1.8,4.7,2.8,7,3.5 c0,0,0.1,0,0.1,0c0.5-0.7,1-1.5,1.4-2.3c0,0,0-0.1,0-0.1c-0.8-0.3-1.5-0.6-2.2-1c-0.1,0-0.1-0.1,0-0.1c0.1-0.1,0.3-0.2,0.4-0.3 c0,0,0.1,0,0.1,0c4.6,2.1,9.5,2.1,14.1,0c0,0,0.1,0,0.1,0c0.1,0.1,0.3,0.2,0.4,0.3c0.1,0,0,0.1,0,0.1c-0.7,0.4-1.4,0.8-2.2,1 c0,0-0.1,0.1,0,0.1c0.4,0.8,0.9,1.6,1.4,2.3c0,0,0.1,0,0.1,0c2.3-0.7,4.6-1.8,7-3.5c0,0,0,0,0-0.1C30.5,17,28.9,11.8,25.7,7.1 C25.7,7.1,25.7,7.1,25.7,7.1z M11.4,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C13.9,18.6,12.8,19.9,11.4,19.9z M20.7,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C23.2,18.6,22.1,19.9,20.7,19.9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.67,4H5.33A1.34,1.34,0,0,0,4,5.33V26.67A1.34,1.34,0,0,0,5.33,28H16.82V18.72H13.7V15.09h3.12V12.42c0-3.1,1.89-4.79,4.67-4.79.93,0,1.86,0,2.79.14V11H22.37c-1.51,0-1.8.72-1.8,1.77v2.31h3.6l-.47,3.63H20.57V28h6.1A1.34,1.34,0,0,0,28,26.67V5.33A1.34,1.34,0,0,0,26.67,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.6,11.6c1-0.6,1.7-1.5,2.1-2.6c0.4-1.1,0.4-2.2,0.1-3.3c-0.3-1.1-1-2-1.9-2.7c-0.9-0.7-2.1-1-3.2-1h-9.2 c-1.2,0-2.3,0.4-3.2,1C7.2,3.7,6.6,4.7,6.2,5.7C5.9,6.8,5.9,8,6.3,9c0.4,1.1,1.1,2,2.1,2.6c-0.7,0.5-1.4,1.1-1.8,1.9 C6.2,14.3,6,15.1,6,16c0,0.9,0.2,1.7,0.6,2.5c0.4,0.8,1,1.4,1.8,1.9c-1,0.6-1.7,1.5-2.1,2.6c-0.4,1.1-0.4,2.2-0.1,3.3 c0.3,1.1,1,2,2,2.7c0.9,0.7,2.1,1,3.2,1c1.4,0,2.8-0.6,3.9-1.5c1-1,1.6-2.3,1.6-3.7v-4.8c1,0.9,2.3,1.4,3.6,1.4h0.1 c1.2,0,2.3-0.4,3.2-1c0.9-0.7,1.6-1.6,1.9-2.7c0.3-1.1,0.3-2.2-0.1-3.3C25.3,13.1,24.5,12.2,23.6,11.6z M16.9,3.7h3.7 c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2s0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2 c-0.4,0.3-0.8,0.6-1.2,0.8c-0.5,0.2-1,0.2-1.4,0.2h-3.7V3.7z M11.4,3.7h3.7v7h-3.7c-0.9,0-1.8-0.4-2.4-1.1C8.3,9,8,8.1,8,7.2 s0.4-1.8,1-2.4C9.6,4.2,10.5,3.8,11.4,3.7L11.4,3.7z M7.8,16c0-0.9,0.4-1.8,1.1-2.5c0.7-0.7,1.6-1,2.6-1h3.7v7h-3.7 c-1,0-1.9-0.4-2.6-1C8.2,17.8,7.8,16.9,7.8,16L7.8,16z M15.1,24.7c0,1-0.4,1.9-1.1,2.5c-0.7,0.7-1.6,1-2.6,1c-0.5,0-1,0-1.4-0.2 c-0.5-0.2-0.9-0.4-1.2-0.7c-0.4-0.3-0.6-0.7-0.8-1.2c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.5,0.1-1,0.3-1.4c0.2-0.4,0.5-0.8,0.8-1.2 c0.4-0.3,0.8-0.6,1.2-0.8c0.5-0.2,1-0.2,1.4-0.2h3.7L15.1,24.7z M20.6,19.5h-0.1c-0.9,0-1.8-0.4-2.4-1.1c-0.6-0.7-1-1.5-1-2.4 c0-0.9,0.4-1.8,1-2.4c0.6-0.7,1.5-1,2.4-1.1h0.1c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2 c0.2,0.4,0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2c-0.4,0.3-0.8,0.6-1.2,0.8C21.6,19.5,21.1,19.5,20.6,19.5 L20.6,19.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"8",cy:"16",r:"6"}),(0,a.jsx)("circle",{cx:"24",cy:"16",r:"6"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.5242,14.8021L17.2022,2.5241c-.7013-.6988-1.8032-.6988-2.5045,0h0l-2.5045,2.4955,3.2057,3.1943c.8014-.2995,1.6029,0,2.2039.4991.6011.5989.8014,1.3975.5009,2.1961l3.1055,3.0945c.8014-.2995,1.6029,0,2.2039.4991.8014.7986.8014,2.1961,0,2.9947h0c-.8014.7986-2.2039.7986-3.0054,0-.6011-.5989-.8014-1.4973-.5009-2.2959l-2.9052-2.8948v7.5865c1.102.4991,1.5027,1.7968,1.0018,2.8948-.1002.1996-.2004.3993-.4007.5989-.8014.7986-2.2039.7986-3.0054,0h0c-.8014-.7986-.8014-2.1961,0-2.9947h0c.2004-.1996.4007-.3993.7013-.4991v-7.6863c-.3005-.0998-.5009-.2995-.7013-.4991-.6011-.5989-.8014-1.4973-.5009-2.2959l-3.2057-3.1943L2.4759,14.7023c-.7013.6988-.7013,1.7968,0,2.5954h0l12.2218,12.1783c.7013.6988,1.8032.6988,2.5045,0l12.2218-12.1783c.7013-.6988.7013-1.7968,0-2.5954"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M16,2a14,14,0,0,0-4.43,27.28c.7.13,1-.3,1-.67s0-1.21,0-2.38c-3.89.84-4.71-1.88-4.71-1.88A3.71,3.71,0,0,0,6.24,22.3c-1.27-.86.1-.85.1-.85A2.94,2.94,0,0,1,8.48,22.9a3,3,0,0,0,4.08,1.16,2.93,2.93,0,0,1,.88-1.87c-3.1-.36-6.37-1.56-6.37-6.92a5.4,5.4,0,0,1,1.44-3.76,5,5,0,0,1,.14-3.7s1.17-.38,3.85,1.43a13.3,13.3,0,0,1,7,0c2.67-1.81,3.84-1.43,3.84-1.43a5,5,0,0,1,.14,3.7,5.4,5.4,0,0,1,1.44,3.76c0,5.38-3.27,6.56-6.39,6.91a3.33,3.33,0,0,1,.95,2.59c0,1.87,0,3.38,0,3.84s.25.81,1,.67A14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28.5678,12.8926l-.0366-.0934-3.5388-9.2356c-.072-.181-.1995-.3346-.3642-.4386-.3375-.2095-.7699-.1863-1.083.0582-.1512.1228-.2608.2892-.3141.4765l-2.3894,7.3105h-9.6756l-2.3894-7.3105c-.0518-.1884-.1617-.3556-.3141-.4779-.3131-.2445-.7455-.2677-1.083-.0582-.1643.1045-.2917.2579-.3642.4386l-3.5456,9.2315-.0352.0934c-1.0465,2.7345-.1578,5.8315,2.1796,7.5948l.0122.0095.0325.023,5.3908,4.037,2.667,2.0185,1.6246,1.2265c.3905.2965.9308.2965,1.3213,0l1.6246-1.2265,2.667-2.0185,5.4233-4.0614.0135-.0108c2.3319-1.7635,3.219-4.8551,2.1769-7.5867Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10.8281,28H21.1719a3.43,3.43,0,0,0,3.43-3.43V10.3306h-3.43V24.57H7.3981A3.43,3.43,0,0,0,10.8281,28Z"}),(0,a.jsx)("path",{d:"M21.1719,4H10.8281a3.43,3.43,0,0,0-3.43,3.43v14.24h3.43V7.43H24.6019A3.43,3.43,0,0,0,21.1719,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22.406",cy:"9.594",r:"1.44"}),(0,a.jsx)("path",{d:"M16,9.8378A6.1622,6.1622,0,1,0,22.1622,16,6.1622,6.1622,0,0,0,16,9.8378ZM16,20a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z"}),(0,a.jsx)("path",{d:"M16,6.1622c3.2041,0,3.5837.0122,4.849.07a6.6418,6.6418,0,0,1,2.2283.4132,3.9748,3.9748,0,0,1,2.2774,2.2774,6.6418,6.6418,0,0,1,.4132,2.2283c.0577,1.2653.07,1.6449.07,4.849s-.0122,3.5837-.07,4.849a6.6418,6.6418,0,0,1-.4132,2.2283,3.9748,3.9748,0,0,1-2.2774,2.2774,6.6418,6.6418,0,0,1-2.2283.4132c-1.2652.0577-1.6446.07-4.849.07s-3.5838-.0122-4.849-.07a6.6418,6.6418,0,0,1-2.2283-.4132,3.9748,3.9748,0,0,1-2.2774-2.2774,6.6418,6.6418,0,0,1-.4132-2.2283c-.0577-1.2653-.07-1.6449-.07-4.849s.0122-3.5837.07-4.849a6.6418,6.6418,0,0,1,.4132-2.2283A3.9748,3.9748,0,0,1,8.9227,6.6453a6.6418,6.6418,0,0,1,2.2283-.4132c1.2653-.0577,1.6449-.07,4.849-.07M16,4c-3.259,0-3.6677.0138-4.9476.0722A8.8068,8.8068,0,0,0,8.14,4.63,6.1363,6.1363,0,0,0,4.63,8.14a8.8068,8.8068,0,0,0-.5578,2.9129C4.0138,12.3323,4,12.741,4,16s.0138,3.6677.0722,4.9476A8.8074,8.8074,0,0,0,4.63,23.8605a6.1363,6.1363,0,0,0,3.51,3.51,8.8068,8.8068,0,0,0,2.9129.5578C12.3323,27.9862,12.741,28,16,28s3.6677-.0138,4.9476-.0722a8.8074,8.8074,0,0,0,2.9129-.5578,6.1363,6.1363,0,0,0,3.51-3.51,8.8074,8.8074,0,0,0,.5578-2.9129C27.9862,19.6677,28,19.259,28,16s-.0138-3.6677-.0722-4.9476A8.8068,8.8068,0,0,0,27.37,8.14a6.1363,6.1363,0,0,0-3.51-3.5095,8.8074,8.8074,0,0,0-2.9129-.5578C19.6677,4.0138,19.259,4,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,4v24h24V4H4z M12.1,9c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4c0,0,0,0,0,0c-0.8,0-1.4-0.6-1.4-1.4 C10.8,9.6,11.4,9,12.1,9z M21.5,22.2c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1l0.7-2.4c0.1-0.2,0.1-0.5,0.1-0.7 c0-0.8-0.5-1.3-1.2-1.3c-1,0-1.6,0.7-1.9,2L15.9,22h-2.3l0.4-1.7c-0.7,1.1-1.6,1.8-2.8,1.8c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1 l1.1-4.3H8.7L9.2,13h3.9l-1.5,6.1c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.4,0.2,0.5,0.5,0.6c0.2,0,1.6,0,2.4-1.8l1-4.1h-1.6l0.5-1.8h3.5 l-0.5,2.1c0.6-1.2,1.9-2.2,3.1-2.2c1.3,0,2.4,0.9,2.4,2.7c0,0.5-0.1,1-0.2,1.5l-0.7,2.4c-0.1,0.2-0.1,0.4-0.1,0.6 c0,0.4,0.2,0.6,0.5,0.6c0.3,0,0.7-0.2,1.2-1.5l0.9,0.4C23.7,21.4,22.7,22.2,21.5,22.2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.0766,3.5878a1.69,1.69,0,1,1-1.76-1.5853,1.67,1.67,0,0,1,1.76,1.5853Z"}),(0,a.jsx)("path",{d:"M16.2191,23.1113c-4.4866,0-8.43-1.61-10.4688-3.9882a11.1618,11.1618,0,0,0,20.9377,0C24.6541,21.5011,20.7257,23.1113,16.2191,23.1113Z"}),(0,a.jsx)("path",{d:"M16.2191,7.6483c4.4867,0,8.43,1.61,10.4689,3.9881a11.1618,11.1618,0,0,0-20.9377,0C7.7892,9.2535,11.7126,7.6483,16.2191,7.6483Z"}),(0,a.jsx)("path",{d:"M10.0427,27.7388a2.1085,2.1085,0,1,1-.2031-.7976,2.1278,2.1278,0,0,1,.2031.7976Z"}),(0,a.jsx)("path",{d:"M6.26,7.1064A1.2263,1.2263,0,1,1,7.4517,5.83,1.2415,1.2415,0,0,1,6.26,7.1064Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14.1233,26.9328a1.1122,1.1122,0,1,1-1.1121-1.1122,1.112,1.112,0,0,1,1.1121,1.1122"}),(0,a.jsx)("path",{d:"M21.0257,26.9328a1.1122,1.1122,0,1,1-1.1122-1.1122,1.1121,1.1121,0,0,1,1.1122,1.1122"}),(0,a.jsx)("path",{d:"M9.999 5.797H10.973V6.771H9.999z",transform:"rotate(-86.462 10.486 6.284)"}),(0,a.jsx)("path",{d:"M26.4275,16.3825l-.0013.001a13.0868,13.0868,0,0,0-5.1431-4.1825c-.3754-.1667-.7543-.3142-1.1354-.4454.0128-.0314.0277-.0615.04-.0933a4.83,4.83,0,0,0-2.9861-6.319,5.9368,5.9368,0,0,0-1.9962-.3558c-.0366-.1253-.1165-.6743.58-2.1571L14.3742,2q-.17.236-.3368.4661c-.384.5309-.7549,1.0444-1.1029,1.55a2.1657,2.1657,0,0,0-1.4486-.6771L9.8543,3.2377H9.852l-.0025,0c-.0429-.0025-.0864-.0039-.1293-.0039A2.1877,2.1877,0,0,0,7.54,5.2825L7.4388,6.9169l0,.003,0,.0028A2.1882,2.1882,0,0,0,9.4854,9.23l1.1673.0723a5.1711,5.1711,0,0,0,.47,2.688,13.1954,13.1954,0,0,0-4.2637,2.9C3,18.7883,3,23.06,3,26.4916v2.0706l1.524-1.6163A12.3293,12.3293,0,0,0,5.8548,30H7.8367A10.7091,10.7091,0,0,1,5.878,25.51l2.2353-2.3708L6.963,26.745l2.03-1.4774c3.5858-2.61,7.8678-3.2093,12.7263-1.7826a4.6276,4.6276,0,0,0,5.2189-1.468c.0441-.0628.0828-.128.1228-.1926a9.6141,9.6141,0,0,1,.1638,1.7454,12.4214,12.4214,0,0,1-1.61,6.43h1.877A14.4022,14.4022,0,0,0,28.87,23.57,12.2666,12.2666,0,0,0,26.4275,16.3825ZM13.8455,5.9257a1.5872,1.5872,0,0,0,1.3983.7068,4.2111,4.2111,0,0,1,1.44.2719,3.17,3.17,0,0,1,1.0279,5.4638l-.4752-.5849-.0032-.004a1.7048,1.7048,0,0,0-3.0235.9865,3.2143,3.2143,0,0,1-1.899-3.5412,8.4815,8.4815,0,0,1,1.4374-3.466A1.642,1.642,0,0,0,13.8455,5.9257Zm3.49,9.2589-.6072.4962a.2675.2675,0,0,1-.376-.038l-.1264-.1549a.2791.2791,0,0,1,.0394-.3927l.6-.49-1.235-1.5158a.362.362,0,1,1,.5611-.4575l3.4546,4.2517a.3619.3619,0,0,1-.1988.5815.3566.3566,0,0,1-.0816.0094.3609.3609,0,0,1-.2806-.1332l-.3441-.4239-1.2215.9971a.2815.2815,0,0,1-.3965-.04l-.5532-.6775a.2786.2786,0,0,1,.04-.3919l1.2275-1.002ZM9.08,7.0184l.1014-1.6342A.5394.5394,0,0,1,9.72,4.8781l.0326.001,1.6335.1013a.5387.5387,0,0,1,.5046.5716l-.0073.1182a10.6739,10.6739,0,0,0-.9028,2.0046L9.5859,7.5886A.5407.5407,0,0,1,9.08,7.0184ZM25.5944,21.07a2.9883,2.9883,0,0,1-3.4112.8373c-4.5313-1.3305-8.6289-1.0534-12.2124.82l1.9069-5.978-7.203,7.6393a11.67,11.67,0,0,1,3.3532-8.3419,11.4953,11.4953,0,0,1,4.1073-2.6908,5.42,5.42,0,0,0,2.2411,1.2214,4.714,4.714,0,0,0,.5627.12,1.6258,1.6258,0,0,0,.2449,1.6416l.0847.1038a1.6247,1.6247,0,0,0,.2594,1.605l.5532.6777a1.6276,1.6276,0,0,0,2.29.2314l.3314-.2705a1.7079,1.7079,0,0,0,1.9867-2.6535l-1.9427-2.3911a4.88,4.88,0,0,0,.4863-.456,12.449,12.449,0,0,1,1.3829.5181,11.419,11.419,0,0,1,4.5085,3.6838C26.0987,18.7278,26.2745,20.1043,25.5944,21.07Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15.134 17.189 15.999 17.605 16.862 17.19 17.076 16.259 16.479 15.512 15.518 15.512 14.919 16.257 15.134 17.189z"}),(0,a.jsx)("path",{d:"M14.2166,13.88l.0024.0019a.5239.5239,0,0,0,.8321-.4013l0-.003.0127-.0063L15.242,10.33c-.2173.0268-.43.0635-.6333.1094a6.2,6.2,0,0,0-2.9727,1.6176l2.5752,1.8257Z"}),(0,a.jsx)("path",{d:"M12.8347,16.2622l.003-.001a.5241.5241,0,0,0,.206-.9008l-.0024-.002.0029-.0127-2.3515-2.1035a6.1775,6.1775,0,0,0-.8746,3.9l3.0142-.87Z"}),(0,a.jsx)("path",{d:"M13.8645,18.501a.5229.5229,0,0,0-.6059-.3989l-.0034,0-.0049-.0063-3.0908.5249a6.2052,6.2052,0,0,0,2.4863,3.1108l1.1972-2.8935-.0087-.0117.0009-.003A.5184.5184,0,0,0,13.8645,18.501Z"}),(0,a.jsx)("path",{d:"M16.4622,19.6431l-.0015-.0025a.53.53,0,0,0-.48-.2759.5269.5269,0,0,0-.4434.2769l-.0015.0029H15.533l-1.52,2.7481a6.2277,6.2277,0,0,0,3.38.1723c.207-.0468.41-.104.6044-.1684l-1.5234-2.7534Z"}),(0,a.jsx)("path",{d:"M18.7371,18.09l-.0034,0a.51.51,0,0,0-.1206-.0088.5263.5263,0,0,0-.4546.7319l.001.0024-.004.0054,1.21,2.9234A6.185,6.185,0,0,0,21.86,18.61l-3.1176-.5269Z"}),(0,a.jsx)("path",{d:"M21.2893,13.2437,18.951,15.3364l.0014.0064-.0024.0019a.5249.5249,0,0,0,.2055.9014l.0035.0005.0024.0132,3.0293.872a6.2915,6.2915,0,0,0-.9014-3.8881Z"}),(0,a.jsx)("path",{d:"M16.9383,13.4673l0,.0029a.5161.5161,0,0,0,.1143.3037.5236.5236,0,0,0,.7192.0967l.0025-.0019.0088.0039,2.5586-1.814a6.2307,6.2307,0,0,0-3.584-1.7285l.1777,3.1357Z"}),(0,a.jsx)("path",{d:"M30.3806,19.0376,27.9016,8.2705a1.9057,1.9057,0,0,0-1.038-1.291L16.83,2.1885a1.9332,1.9332,0,0,0-1.6656,0L5.1326,6.9819a1.9072,1.9072,0,0,0-1.0381,1.291L1.6194,19.04A1.89,1.89,0,0,0,1.88,20.499a1.8364,1.8364,0,0,0,.1088.1514l6.9439,8.6338a1.9244,1.9244,0,0,0,1.5.7158l11.1357-.0024a1.9251,1.9251,0,0,0,1.5-.7149L30.01,20.6479A1.8911,1.8911,0,0,0,30.3806,19.0376Zm-3.8115-.13a.6432.6432,0,0,1-.7812.4429l-.0039,0-.0049-.001-.0069-.0019-.0048-.002-.0572-.0117c-.0346-.0068-.07-.0142-.0981-.0215a2.4643,2.4643,0,0,1-.3589-.1328c-.0576-.0249-.1172-.0513-.1807-.0752l-.0175-.0063a5.5192,5.5192,0,0,0-1.0284-.3013.4119.4119,0,0,0-.2954.0981l-.0371.0254-.0019.0015-.002,0c-.0439-.0088-.1748-.0322-.2519-.0444a7.8166,7.8166,0,0,1-3.459,4.351c.0093.022.02.05.0307.0806a.9352.9352,0,0,0,.0669.1567l.002.002-.001.0029-.0166.042a.4148.4148,0,0,0-.03.3091,5.69,5.69,0,0,0,.5322.9517c.0376.0561.0757.1084.1128.1591a2.4,2.4,0,0,1,.2095.32c.0166.0312.0371.0752.0552.1137l.0229.0484a.6083.6083,0,1,1-1.0947.5176l-.0224-.0455c-.0186-.038-.0381-.0776-.0518-.1088a2.5059,2.5059,0,0,1-.1211-.3658c-.0166-.0595-.0337-.1215-.0537-.185l-.0059-.0166a5.5441,5.5441,0,0,0-.4052-.9922.4177.4177,0,0,0-.2627-.1709l-.0415-.0127-.0015,0-.0015-.0019c-.01-.0171-.0337-.0611-.0595-.1075-.0235-.042-.0484-.0874-.0664-.12a7.8868,7.8868,0,0,1-1.0269.3091,7.7588,7.7588,0,0,1-4.51-.3233l-.1352.2442-.002.001a.481.481,0,0,0-.2563.124,2.2827,2.2827,0,0,0-.336.7207c-.04.1172-.08.2383-.1279.3569-.0205.064-.0376.127-.0537.188a2.4747,2.4747,0,0,1-.12.3623c-.0127.03-.0313.0669-.0493.1025l-.0245.0494h0l-.0005.0024-.0019.002a.6773.6773,0,0,1-.5952.3945.5484.5484,0,0,1-.24-.0542.6426.6426,0,0,1-.2578-.86c.0088-.0171.0176-.0371.0274-.0576.0171-.0371.0346-.0757.05-.1045a2.53,2.53,0,0,1,.21-.3222c.0367-.05.0747-.1026.1118-.1578a5.8209,5.8209,0,0,0,.543-.976.5889.5889,0,0,0-.0532-.336l0-.0019,0-.002.1074-.2573a7.8224,7.8224,0,0,1-3.46-4.32l-.2593.0444-.0015-.001-.0264-.0151a.5961.5961,0,0,0-.3159-.106,5.5447,5.5447,0,0,0-1.0283.3013l-.0171.0064c-.062.0239-.1211.0488-.1782.0732a2.4949,2.4949,0,0,1-.3613.1333c-.0308.0083-.0708.0171-.1094.0249l-.0459.01-.0049.0019-.0068.002-.0049.001-.0039,0a.6078.6078,0,1,1-.2695-1.18l.0039-.001.0053-.0015.002,0,.0034-.0009.0469-.0113c.04-.01.081-.02.1133-.0258a2.4132,2.4132,0,0,1,.3808-.0357c.063-.0024.1284-.0054.1958-.0107l.0142-.0015A5.554,5.554,0,0,0,7.77,17.92a.72.72,0,0,0,.231-.227l.0244-.0318.001-.0014.0014,0,.2471-.0718a7.7765,7.7765,0,0,1,1.2246-5.4126l-.19-.17,0-.002-.0044-.0278a.5983.5983,0,0,0-.1153-.3159,5.6171,5.6171,0,0,0-.8916-.6265c-.0585-.0342-.1157-.0649-.1713-.0942a2.4731,2.4731,0,0,1-.3267-.1973c-.0264-.0195-.0586-.0459-.0894-.0713l-.0356-.0288L7.67,10.6387l-.0049-.0039A.7045.7045,0,0,1,7.4041,10.2a.5725.5725,0,0,1,.1128-.4575A.5835.5835,0,0,1,8,9.5288a.7226.7226,0,0,1,.4214.1592l.0361.0283c.0332.0259.07.0552.0972.0781a2.5254,2.5254,0,0,1,.2671.2759c.04.0469.0825.0952.1284.1441l.01.01a5.5221,5.5221,0,0,0,.7989.72.4159.4159,0,0,0,.31.0406l.043-.0069h.0019l.0015.001c.0357.0264.1484.1074.2134.1514a7.7273,7.7273,0,0,1,3.9233-2.24,7.9671,7.9671,0,0,1,1.0816-.1665l.0141-.2515.001-.0014a.6486.6486,0,0,0,.1939-.3076,5.5779,5.5779,0,0,0-.066-1.0791l-.0009-.0088c-.0093-.0664-.021-.13-.0328-.1914a2.5611,2.5611,0,0,1-.0493-.38c-.0009-.03-.0005-.0679,0-.1045l.0005-.05-.0005-.0073,0-.0093a.6088.6088,0,1,1,1.211,0l.0009.0605c.001.0386.0015.0791.0005.11a2.5348,2.5348,0,0,1-.0493.38c-.0117.0615-.0234.125-.0327.1914l-.0039.0317a5.4479,5.4479,0,0,0-.064,1.0567.4132.4132,0,0,0,.1616.2666l.0328.03.0019.0015v.0019c.0015.0435.0083.1836.0137.2637a7.79,7.79,0,0,1,2.7173.7559,7.8812,7.8812,0,0,1,2.2632,1.65l.226-.1612h.002l.0312.002a.5914.5914,0,0,0,.33-.041,5.4885,5.4885,0,0,0,.7871-.71l.0215-.022c.0454-.0478.0869-.0952.1274-.1416a2.57,2.57,0,0,1,.27-.2783c.0263-.0229.062-.05.0967-.0776l.0366-.0288a.6088.6088,0,1,1,.7544.9472l-.0435.0357c-.0307.0254-.063.0517-.0884.0708a2.4733,2.4733,0,0,1-.3266.1968c-.0562.0293-.1143.06-.1734.0947a5.6889,5.6889,0,0,0-.8921.6269.4152.4152,0,0,0-.1079.293l-.0034.044v.0019l-.0014.001c-.0162.0146-.0508.0459-.0914.082s-.0864.0772-.1186.1065a7.7983,7.7983,0,0,1,1.25,5.3994l.24.07.001.001.0171.0254a.6014.6014,0,0,0,.24.2334,5.595,5.595,0,0,0,1.063.1757l.0122.001c.0674.0059.1328.0083.1963.0108a2.4617,2.4617,0,0,1,.38.0356c.0312.0059.0713.0156.11.0254l.0644.0156A.643.643,0,0,1,26.5691,18.9077Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.2,4H5.8C4.8,4,4,4.8,4,5.7v20.5c0,0.9,0.8,1.7,1.8,1.7h20.4c1,0,1.8-0.8,1.8-1.7V5.7C28,4.8,27.2,4,26.2,4z M11.1,24.4 H7.6V13h3.5V24.4z M9.4,11.4c-1.1,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.1,0,2.1,0.9,2.1,2.1S10.5,11.4,9.4,11.4z M24.5,24.3 H21v-5.6c0-1.3,0-3.1-1.9-3.1c-1.9,0-2.1,1.5-2.1,2.9v5.7h-3.5V13h3.3v1.5h0.1c0.5-0.9,1.7-1.9,3.4-1.9c3.6,0,4.3,2.4,4.3,5.5V24.3z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.49,23.71h-.76c-2.26,0-4.52,0-6.78,0a3.12,3.12,0,0,1-2.41-1A14.91,14.91,0,0,1,10,18.88c-1.3-2.6-2.54-5.22-3.82-7.82-.39-.8-.82-1.56-1.28-2.32A7.84,7.84,0,0,0,2,5.6c1.24,0,2.41,0,3.57,0a45.63,45.63,0,0,1,7,.61,8.09,8.09,0,0,1,6.34,5.09,48.51,48.51,0,0,1,2.17,7.36A26,26,0,0,0,22.49,23.71Z"}),(0,a.jsx)("path",{d:"M28.1,26.38a2.93,2.93,0,0,1-2.74-2.64,42.08,42.08,0,0,1-.14-4.9,48,48,0,0,0-.61-7.58,3.75,3.75,0,0,0-.83-2h2.65c.54,0,.73.37.89.78A12.1,12.1,0,0,1,28,13.28c.29,2.72.31,5.45.33,8.18a10.94,10.94,0,0,0,0,1.15c.09.78.4,1.1,1.17,1.08.5,0,.5-.06.5-.06v2.69A8.62,8.62,0,0,1,28.1,26.38Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m29.0581,11.1929c0-6.0742-3.9797-7.8545-3.9797-7.8545-2.0066-.9214-5.4522-1.3091-9.0318-1.3384h-.0879c-3.5798.0293-7.023.417-9.0296,1.3384,0,0-3.98,1.7803-3.98,7.8545,0,1.3911-.0271,3.0537.0171,4.8174.1445,5.9404,1.0889,11.7945,6.5811,13.2481,2.5322.6704,4.7063.8105,6.4573.7144,3.1755-.1758,4.958-1.1333,4.958-1.1333l-.1047-2.3037s-2.269.7153-4.8176.6284c-2.5249-.0869-5.1902-.2725-5.5986-3.3726-.0378-.272-.0566-.563-.0566-.8691,0,0,2.4785.606,5.6196.75,1.9207.0879,3.7219-.1128,5.5515-.3311,3.5083-.4189,6.563-2.5806,6.9468-4.5557.605-3.1113.5552-7.5928.5552-7.5928Zm-4.6943,7.8257h-2.9138v-7.1382c0-1.5049-.6331-2.2686-1.8997-2.2686-1.4002,0-2.1018.9058-2.1018,2.6973v3.9077h-2.8967v-3.9077c0-1.7915-.7019-2.6973-2.1021-2.6973-1.2666,0-1.8997.7637-1.8997,2.2686v7.1382h-2.9138v-7.3545c0-1.5029.3828-2.6978,1.1516-3.5811.7927-.8838,1.8308-1.3369,3.1196-1.3369,1.491,0,2.6204.5732,3.367,1.7192l.7256,1.2168.7261-1.2168c.7463-1.146,1.8755-1.7192,3.3667-1.7192,1.2886,0,2.3267.4531,3.1196,1.3369.7686.8833,1.1514,2.0781,1.1514,3.5811v7.3545Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,16c0,3.7-0.6,6.7-1.4,6.7c-0.8,0-1.4-3-1.4-6.7s0.6-6.7,1.4-6.7C29.4,9.3,30,12.3,30,16"}),(0,a.jsx)("path",{d:"M26.5,16c0,4.1-1.8,7.5-3.9,7.5s-3.9-3.4-3.9-7.5s1.8-7.5,3.9-7.5S26.5,11.9,26.5,16"}),(0,a.jsx)("path",{d:"M17.8,16c0,4.4-3.5,8-7.9,8S2,20.4,2,16s3.5-8,7.9-8S17.8,11.6,17.8,16"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.2916,25.8339c-.1264.1266-.1264.3324,0,.459l2.0453,2.0453c.3803.3801.3803.9964,0,1.3766-.19.1901-.4392.2852-.6883.2852s-.4983-.0951-.6883-.2852l-2.0454-2.0453c-.8856-.8855-.8856-2.3266,0-3.2121l9.9609-9.9609c.5515-.5516.8554-1.285.8554-2.065s-.3039-1.5134-.8554-2.0651l-.0574-.0574c-1.1387-1.1386-2.9916-1.1387-4.1303,0l-8.2027,8.2027-.1147.1147c-.1901.1901-.4392.2852-.6884.2852s-.4983-.0951-.6884-.2852c-.3802-.3801-.3802-.9964,0-1.3766l.1147-.1147,8.2029-8.2029c.5515-.5516.8553-1.285.8553-2.0651s-.3037-1.5134-.8553-2.065c-.5517-.5516-1.285-.8554-2.0651-.8554s-1.5134.3037-2.065.8554L5.168,15.8159c-.3801.3801-.9966.3801-1.3767,0s-.3802-.9965,0-1.3767L14.8049,3.4256c.9194-.9193,2.1417-1.4256,3.4417-1.4256s2.5226.5063,3.4419,1.4256c.9193.9193,1.4255,2.1416,1.4255,3.4417,0,.2332-.0169.4637-.049.6906,1.4645-.2075,3.0061.2505,4.1301,1.3745l.0574.0574c.9194.9193,1.4258,2.1416,1.4258,3.4418s-.5064,2.5224-1.4258,3.4417l-9.9608,9.9608ZM24.4417,13.0625c.3803-.3802.3803-.9965,0-1.3767-.3799-.3801-.9966-.3801-1.3766,0l-8.1455,8.1454c-1.1384,1.1387-2.9912,1.1387-4.1301.0002-.5516-.5517-.8554-1.2851-.8554-2.0651s.3038-1.5134.8554-2.0651l8.1453-8.1455c.3803-.3802.3803-.9965,0-1.3767-.3799-.3801-.9966-.3801-1.3766,0l-8.1455,8.1455c-.9194.9194-1.4257,2.1418-1.4257,3.4418s.5063,2.5224,1.4257,3.4419c.9489.9488,2.1953,1.4231,3.4417,1.4231s2.4929-.4744,3.4418-1.4233l8.1454-8.1454Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,28V4h24v24H4z M8.5,8.5v15H16v-12h4.5v12h3v-15H8.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.4612,15.7968A12.1352,12.1352,0,0,0,25.2821,11.48L29,10.13a11.9879,11.9879,0,0,0-1.0281-1.7382l-1.7431.635a11.9884,11.9884,0,0,0-21.71,7.9129l1.7477-.6412a12.19,12.19,0,0,0,.3309,1.9846L2.8838,19.6384A12.1451,12.1451,0,0,0,4.7565,23.7l1.9663-.7163.0026.0039a11.8856,11.8856,0,0,0,4.67,3.8909A12.013,12.013,0,0,0,27.34,21.0743a11.8725,11.8725,0,0,0,1.08-5.992Zm-2.92,3.4967a7.8,7.8,0,0,1-10.3533,3.7744,7.7207,7.7207,0,0,1-2.2714-1.6128l-1.9846.7235a7.84,7.84,0,0,1-2.0742-3.9895l.0009-.0008,3.7242-1.3566a7.8175,7.8175,0,0,1-.1232-2.0653l-1.7517.6362A7.7729,7.7729,0,0,1,19.7645,8.94h.0067a7.7442,7.7442,0,0,1,2.2646,1.615L23.78,9.921a7.8014,7.8014,0,0,1,1.229,1.6558l-3.71,1.3595a7.8245,7.8245,0,0,1,.9766,4.3882l1.9685-.7151A7.6714,7.6714,0,0,1,23.5411,19.2935Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2a14,14,0,0,0-5.1,27,13.24,13.24,0,0,1,0-4l1.65-7A5.05,5.05,0,0,1,12.17,16c0-1.94,1.13-3.4,2.53-3.4a1.76,1.76,0,0,1,1.77,2c0,1.2-.76,3-1.16,4.66a2,2,0,0,0,2.08,2.53c2.48,0,4.4-2.63,4.4-6.41a5.53,5.53,0,0,0-5.85-5.7,6.06,6.06,0,0,0-6.32,6.08,5.42,5.42,0,0,0,1,3.19.44.44,0,0,1,.1.4c-.11.44-.35,1.4-.39,1.59s-.21.31-.47.19c-1.75-.82-2.84-3.37-2.84-5.43,0-4.41,3.21-8.47,9.25-8.47,4.85,0,8.63,3.46,8.63,8.09,0,4.82-3,8.7-7.27,8.7a3.76,3.76,0,0,1-3.21-1.6l-.87,3.33a15.55,15.55,0,0,1-1.74,3.67A14.17,14.17,0,0,0,16,30,14,14,0,0,0,16,2"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.4882,9.14v2.9663a4.2843,4.2843,0,0,1-4.173,4.2352H12.6431a3.4077,3.4077,0,0,0-3.34,3.3945v6.3607c0,1.81,1.5742,2.8751,3.34,3.3945a11.1762,11.1762,0,0,0,6.6721,0c1.6817-.4869,3.34-1.4668,3.34-3.3945V23.55H15.983v-.8486H25.9951c1.9414,0,2.6648-1.3542,3.34-3.3867a11.4642,11.4642,0,0,0,0-6.7889c-.48-1.9327-1.3961-3.3867-3.34-3.3867ZM19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z"}),(0,a.jsx)("path",{fill:"none",d:"M19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z"}),(0,a.jsx)("path",{d:"M15.8351,2a19.0717,19.0717,0,0,0-3.192.2725c-2.8268.4994-3.34,1.5447-3.34,3.4723V8.2909h6.68V9.14H6.7962a4.1708,4.1708,0,0,0-4.173,3.3867,12.4855,12.4855,0,0,0,0,6.7889c.4748,1.9776,1.6088,3.3867,3.55,3.3867H8.47V19.65a4.2449,4.2449,0,0,1,4.173-4.15h6.6721a3.3654,3.3654,0,0,0,3.34-3.3944V5.745a3.729,3.729,0,0,0-3.34-3.4723A20.8377,20.8377,0,0,0,15.8351,2ZM12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z"}),(0,a.jsx)("path",{fill:"none",d:"M12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,23.86H27a1.72,1.72,0,0,1-1.73,1.72c-1.15,0-1.82-.86-2.58-2a11,11,0,0,0,4.79-9.1c.09-7.19-5.85-11.89-12.17-11.89S3,7.37,3,14.37,9,26.16,15.17,26.16a10.71,10.71,0,0,0,3.07-.48c1.15,2.11,2.59,3.74,5.46,3.74A5,5,0,0,0,29,23.86Zm-8.14-3.45a6.31,6.31,0,0,0-5.56-3.16,6,6,0,0,0-3.74,1.15L12.2,20a2.56,2.56,0,0,1,.86-.1c1.82,0,3,1.53,4.12,3.64a7.58,7.58,0,0,1-1.91.19C10.86,23.76,9,20.6,9,14.47s1.91-9.3,6.23-9.3,6.32,3.16,6.32,9.3A20.68,20.68,0,0,1,20.83,20.41Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M30,14.7842c0-5.1782-6.2681-9.376-14-9.376S2,9.606,2,14.7842c0,4.6147,4.9814,8.4419,11.5361,9.2226v2.9917l4.7762-.0019,0-2.9741a19.3812,19.3812,0,0,0,3.3418-.6646L23.593,27l5.3975-.0024-3.253-5.4849C28.3625,19.8086,30,17.4263,30,14.7842Zm-22.4983.7c0-3.54,4.7644-6.41,10.6414-6.41s10.2138,1.9629,10.2138,6.41A5.4694,5.4694,0,0,1,24.9587,20.61a3.2252,3.2252,0,0,0-.2978-.1749,10.4735,10.4735,0,0,0-1.34-.5048s4.1743-.31,4.1743-4.4659-4.3684-4.2343-4.3684-4.2343H13.5361V21.2554C9.97,20.22,7.5017,18.0283,7.5017,15.4839Zm13.7422,1.8452-2.8928.001.0014-2.6812,2.8914.0015a1.2476,1.2476,0,0,1,1.34,1.3149A1.3232,1.3232,0,0,1,21.2439,17.3291Zm-2.9326,3.4946h1.2825a.8785.8785,0,0,1,.6406.291,3.2917,3.2917,0,0,1,.51.63,22.4033,22.4033,0,0,1-2.4326.1455Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,11.6c-0.3-0.1-0.6-0.2-0.9-0.3c0-0.2,0.1-0.4,0.1-0.6c0.7-3.3,0.2-6-1.3-6.9c-1.5-0.8-3.9,0-6.3,2.1 c-0.2,0.2-0.5,0.4-0.7,0.6c-0.2-0.1-0.3-0.3-0.5-0.4C13,3.9,10.5,3,9,3.9c-1.5,0.8-1.9,3.4-1.3,6.5c0.1,0.3,0.1,0.6,0.2,0.9 c-0.4,0.1-0.7,0.2-1,0.3c-3,1-4.9,2.7-4.9,4.3c0,1.7,2,3.5,5.1,4.5c0.2,0.1,0.5,0.2,0.8,0.2c-0.1,0.3-0.2,0.7-0.2,1 c-0.6,3.1-0.1,5.5,1.3,6.4c1.5,0.9,4,0,6.5-2.2c0.2-0.2,0.4-0.4,0.6-0.5c0.2,0.2,0.5,0.5,0.8,0.7c2.4,2.1,4.7,2.9,6.2,2 c1.5-0.9,2-3.5,1.4-6.7c0-0.2-0.1-0.5-0.2-0.8c0.2-0.1,0.4-0.1,0.5-0.2c3.2-1.1,5.3-2.8,5.3-4.5C30,14.3,28,12.7,25,11.6z M17.5,6.9 c2.1-1.8,4-2.5,4.9-2c0.9,0.5,1.3,2.7,0.7,5.6c0,0.2-0.1,0.4-0.1,0.6c-1.2-0.3-2.5-0.5-3.7-0.6c-0.7-1-1.5-2-2.4-3 C17.1,7.3,17.3,7.1,17.5,6.9L17.5,6.9z M10.3,17.4c0.3,0.5,0.5,1,0.8,1.5c0.3,0.5,0.6,1,0.9,1.4c-0.9-0.1-1.7-0.2-2.6-0.4 C9.6,19.1,9.9,18.3,10.3,17.4z M10.3,14.6c-0.4-0.8-0.6-1.6-0.9-2.4c0.8-0.2,1.7-0.3,2.5-0.4c-0.3,0.5-0.6,0.9-0.9,1.4 C10.8,13.6,10.5,14.1,10.3,14.6L10.3,14.6z M10.9,16c0.4-0.8,0.8-1.5,1.2-2.3c0.4-0.7,0.9-1.5,1.4-2.2c0.8-0.1,1.7-0.1,2.6-0.1 c0.9,0,1.7,0,2.6,0.1c0.5,0.7,0.9,1.4,1.3,2.2c0.4,0.7,0.8,1.5,1.2,2.3c-0.4,0.8-0.8,1.5-1.2,2.3c-0.4,0.7-0.9,1.5-1.3,2.2 c-0.8,0.1-1.7,0.1-2.6,0.1c-0.9,0-1.7,0-2.5-0.1c-0.5-0.7-0.9-1.4-1.4-2.2C11.7,17.5,11.3,16.8,10.9,16L10.9,16z M20.9,18.9 c0.3-0.5,0.6-1,0.8-1.5c0.4,0.8,0.7,1.6,0.9,2.5c-0.9,0.2-1.7,0.3-2.6,0.4C20.4,19.8,20.7,19.3,20.9,18.9z M21.7,14.6 c-0.3-0.5-0.5-1-0.8-1.5c-0.3-0.5-0.6-0.9-0.8-1.4c0.9,0.1,1.7,0.3,2.6,0.4C22.4,13,22.1,13.8,21.7,14.6z M16,8.3 c0.6,0.6,1.1,1.3,1.6,2c-1.1-0.1-2.2-0.1-3.3,0C14.9,9.6,15.5,8.9,16,8.3z M9.6,4.9c0.9-0.5,3,0.2,5.2,2.2c0.1,0.1,0.3,0.3,0.4,0.4 c-0.9,0.9-1.7,1.9-2.4,3c-1.3,0.1-2.5,0.3-3.7,0.6c-0.1-0.3-0.1-0.6-0.2-0.9C8.3,7.5,8.7,5.4,9.6,4.9z M8.2,19.6 c-0.2-0.1-0.5-0.1-0.7-0.2c-1.4-0.5-2.5-1.1-3.3-1.7c-0.7-0.6-1-1.2-1-1.7c0-1,1.5-2.3,4.1-3.2c0.3-0.1,0.6-0.2,1-0.3 C8.6,13.7,9,14.9,9.6,16C9,17.2,8.6,18.4,8.2,19.6z M14.7,25.1c-1.1,1-2.2,1.6-3.1,2c-0.9,0.3-1.5,0.3-2,0.1 c-0.9-0.5-1.3-2.5-0.8-5.1C8.9,21.7,9,21.4,9,21c1.2,0.3,2.5,0.5,3.8,0.5c0.7,1,1.5,2,2.4,3C15,24.7,14.9,24.9,14.7,25.1z M16,23.7 c-0.6-0.6-1.1-1.3-1.7-2c0.5,0,1.1,0,1.6,0c0.6,0,1.1,0,1.7,0C17.2,22.4,16.6,23.1,16,23.7z M23.3,25.4c-0.2,0.9-0.5,1.5-0.9,1.7 c-0.9,0.5-2.8-0.2-4.8-1.9c-0.2-0.2-0.5-0.4-0.7-0.6c0.8-0.9,1.6-1.9,2.3-3c1.3-0.1,2.5-0.3,3.8-0.6c0.1,0.2,0.1,0.5,0.2,0.7 C23.5,23.1,23.5,24.4,23.3,25.4z M24.3,19.4c-0.2,0-0.3,0.1-0.5,0.1c-0.4-1.2-0.9-2.4-1.4-3.6c0.5-1.1,1-2.3,1.4-3.5 c0.3,0.1,0.6,0.2,0.8,0.3c2.6,0.9,4.2,2.2,4.2,3.2C28.8,17.1,27.1,18.5,24.3,19.4z"}),(0,a.jsx)("path",{d:"M16,18.5c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.7,0.9-1.1c0.2-0.5,0.2-1,0.1-1.5c-0.1-0.5-0.3-0.9-0.7-1.3 c-0.3-0.4-0.8-0.6-1.3-0.7c-0.5-0.1-1,0-1.5,0.1c-0.5,0.2-0.9,0.5-1.1,0.9c-0.3,0.4-0.4,0.9-0.4,1.4c0,0.3,0.1,0.7,0.2,1 c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.5,0.4,0.8,0.5C15.3,18.4,15.7,18.5,16,18.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.2148,13.1793c.2327-.501-.4158-.9337-.9252-.8189-.3831.0863-.8737.7158-1.0126,1.0705.0842.5294,1.6957.2715,1.9378-.2516ZM12.8453,12.7614c.06.5895-.6263.5432-1.0515.5242.2484-.3642.5768-.7484,1.0515-.5242ZM16,21.8211c.9062-.0084,1.2-1.8673.4673-2.0052-.0768-.0137-.2548-.0231-.4673-.0253-.2126.0021-.3906.0116-.4674.0253-.7326.1379-.4389,1.9968.4674,2.0052ZM12.154,19.6017c1.2337-.0746,1.1996-2.8773-.0815-2.8101-1.4228.0746-1.2452,2.8903.0815,2.8101ZM26.8406,9.7584c-.52-.6715-1.2484-2.2767-2.0789-2.4473-1.2431-.2547-2.1147.3842-2.923,1.221-1.6652-1.2252-3.7147-2.3188-5.8387-2.3052-2.1241-.0137-4.1736,1.08-5.8387,2.3052-.8084-.8368-1.68-1.4757-2.9231-1.221-.8305.1705-1.5589,1.7758-2.0789,2.4473-.9073,1.1747-3.1978,3.1746-3.1588,4.7346.0484,1.9073,4.4714,7.2376,6.3776,7.5229.4211.0631.7842-.0421,1.1874-.0842.7214,1.4147,1.8981,2.4644,3.2742,3.1268,1.9797.953,4.3409.953,6.3207,0,1.376-.6624,2.5527-1.7121,3.2742-3.1268.4031.0421.7662.1473,1.1873.0842,1.9062-.2853,6.3292-5.6156,6.3777-7.5229.0389-1.56-2.2515-3.5599-3.1589-4.7346h-.0001ZM11.1285,9.2016c1.6884-1.1799,3.2167-1.8304,4.8715-1.7957,1.6547-.0347,3.183.6158,4.8714,1.7957.3747.261,1.4536,1.0516,1.6978,1.3547.5905.7305.5526,3.2515.5853,4.204h-2.1263c-.9337,0-1.8673.001-2.801,0-.3168,0-.6905.201-.9157.421-.6642.6505-.2316,1.52-.2632,2.3157-.3494-.1453-.6979-.2-1.0483-.2084-.3505.0084-.699.0632-1.0484.2084-.0316-.7958.401-1.6652-.2632-2.3157-.2252-.22-.5989-.421-.9157-.421-.9337.001-1.8673,0-2.801,0h-2.1263c.0327-.9526-.0052-3.4736.5853-4.204.2442-.3032,1.3231-1.0937,1.6978-1.3547ZM8.6855,20.9191c-1.3947-.0516-5.3871-4.9725-5.5187-6.3293-.1126-1.1673,2.2062-3.2589,2.9399-4.1998.3547-.4537,1.14-2.0147,1.641-2.0473.4168-.0263,1.3157.5378,1.5052.9052.3968.7684-.179.8516-.4274,1.4389-.5137,1.2126-.3632,2.7736-.4127,4.062-.782.1769-1.4136.5273-1.361,1.4294.0253.4453.9062,3.3241,1.141,3.7094.3074.5042.8189.7263,1.3894.7684l-.8968.2632h0ZM9.3718,20.2338c-.4716.0221-.7389-.319-.9337-.6968-.2158-.4189-1.0146-3.0568-1.0431-3.4894-.0347-.52.5684-.8505,1.0294-.8652,0,1.7273.481,3.4041.9473,5.0514h0ZM8.8455,15.1814h5.1051c.3379.0674.7642.5432.7852.9.0264.4274-.3221,2.5242-.4452,3.0189-.0569.2274-.1937.6463-.3453.8126-.5737.6305-3.1567.1979-4.0346.3084-.5968-1.6241-.8789-3.3209-1.0652-5.0399ZM16,24.7495c-2.481-.18-4.9062-1.5852-5.7861-4.0946.9337-.0937,2.0989.1274,2.9999,0,1.6063-.2263,1.34-1.7242,1.7368-2.8957.3389-.1053.6926-.1579,1.0494-.1705.3568.0126.7104.0652,1.0494.1705.3968,1.1715.1305,2.6694,1.7368,2.8957.901.1274,2.0662-.0937,2.9999,0-.8799,2.5094-3.3051,3.9146-5.7861,4.0946ZM18.0546,19.9128c-.1516-.1663-.2884-.5853-.3452-.8126-.1232-.4947-.4716-2.5915-.4453-3.0189.0211-.3568.4473-.8326.7852-.9h5.1051c-.1863,1.7189-.4684,3.4157-1.0652,5.0399-.8779-.1105-3.4609.3221-4.0346-.3084ZM23.5755,15.1825c.4611.0147,1.0641.3452,1.0294.8652-.0284.4326-.8273,3.0704-1.0431,3.4894-.1948.3779-.4621.7189-.9337.6968.4663-1.6473.9473-3.3241.9473-5.0514h.0001ZM23.3144,20.9191l-.8968-.2632c.5705-.0421,1.082-.2642,1.3894-.7684.2347-.3853,1.1157-3.2641,1.141-3.7094.0527-.9021-.5789-1.2526-1.361-1.4294-.0495-1.2883.101-2.8494-.4127-4.062-.2484-.5873-.8242-.6705-.4273-1.4389.1895-.3674,1.0884-.9315,1.5052-.9052.501.0326,1.2863,1.5936,1.641,2.0473.7336.941,3.0526,3.0325,2.9399,4.1998-.1315,1.3568-4.124,6.2777-5.5187,6.3293h0ZM20.723,13.4309c-.1389-.3547-.6295-.9842-1.0126-1.0705-.5095-.1147-1.1579.3179-.9252.8189.2421.5231,1.8536.781,1.9378.2516ZM20.2061,13.2857c-.4252.0189-1.1115.0652-1.0515-.5242.4747-.2242.8031.16,1.0515.5242ZM16,22.0274c-.6074,1.041-1.6042.2295-2.3115-.4252.3514,1.0421,1.1141,1.8438,1.985,2.1157.2104.0657.4424.0657.6529,0,.871-.2719,1.6337-1.0736,1.985-2.1157-.7073.6547-1.7042,1.4662-2.3115.4252h.0001ZM16.4631,23.3104c-.2929.1281-.6333.1281-.9262,0-.213-.0932-.4126-.2253-.5853-.3925.3663-.0379.7895-.0547,1.0484-.2895.2589.2347.682.2516,1.0483.2895-.1727.1671-.3723.2993-.5853.3925h.0001ZM19.9274,16.7916c-1.2811-.0672-1.3152,2.7355-.0814,2.8101,1.3266.0803,1.5042-2.7354.0814-2.8101Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.9104,20.5859h0l-5-11c-.1577-.3452-.5061-.5859-.9104-.5859s-.7529,.2407-.9104,.5859l-5,11c-.0576,.1265-.0896,.2661-.0896,.4141,0,.5522,.4478,1,1,1,.4043,0,.7527-.2407,.9104-.5859l1.9985-4.3965,6.4978,4.7876c.166,.1226,.3711,.1948,.5933,.1948,.5522,0,1-.4478,1-1,0-.1479-.032-.2881-.0896-.4141Zm-5.9104-8.1689l2.499,5.498-3.7441-2.7588,1.2451-2.7393Z"}),(0,a.jsx)("path",{d:"M16,30c-7.7197,0-14-6.2803-14-14S8.2803,2,16,2s14,6.2803,14,14-6.2803,14-14,14Zm0-26c-6.6167,0-12,5.3833-12,12s5.3833,12,12,12,12-5.3833,12-12-5.3833-12-12-12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.1,3.2l7.7,0.9c0.2,0,0.3,0.1,0.4,0.2l5.7,7.7c0.2,0.2,0.2,0.5,0,0.7l-13.6,16c-0.1,0.1-0.3,0.1-0.4,0c0,0,0,0,0,0 l-13.6-16C2,12.5,2,12.2,2.1,12l5.7-7.7c0.1-0.1,0.2-0.2,0.4-0.2l7.7-0.9C16,3.2,16,3.2,16.1,3.2z M17.7,4.8c0,0-0.1,0-0.2,0 c0,0-0.1,0.1,0,0.2l0,0l4.3,5.4c0,0.1,0.1,0.1,0.1,0.2c0,0.2-0.1,0.3-0.3,0.3l0,0H10.4c-0.1,0-0.1,0-0.2-0.1 c-0.1-0.1-0.1-0.3-0.1-0.4l0,0L14.5,5c0,0,0-0.1,0-0.2c0,0-0.1,0-0.2,0l0,0l-5.9,5.9c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.2-0.1-0.2-0.2v0 l0.2-4.3c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1l0,0l-1.1,4.9c0,0.2-0.2,0.3-0.3,0.3l0,0l-2.8,0.6c-0.1,0-0.1,0.1-0.1,0.1 c0,0.1,0,0.1,0.1,0.1l0,0h2.7c0.2,0,0.3,0.1,0.4,0.2l0,0l6.6,11.8c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.1-0.1,0.1-0.2l0,0L8.6,12.9 c0,0,0-0.1,0-0.1c0-0.2,0.1-0.3,0.3-0.4l0,0h14.2c0.1,0,0.1,0,0.2,0c0.2,0.1,0.2,0.3,0.2,0.4l0,0l-5.3,11.3c0,0.1,0,0.2,0.1,0.2 c0.1,0,0.2,0,0.2-0.1l0,0L25,12.6c0.1-0.1,0.2-0.2,0.4-0.2l0,0h2.7c0.1,0,0.1,0,0.1-0.1c0-0.1,0-0.1-0.1-0.1l0,0l-2.8-0.6 c-0.2,0-0.3-0.2-0.4-0.3l0,0L24,6.3c0-0.1-0.1-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1v0l0.2,4.3c0,0.1,0,0.1-0.1,0.2 c-0.1,0.1-0.2,0.1-0.3,0l0,0L17.7,4.8z"}),e)})},9564(e,t,r){r.d(t,{jG:()=>c});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,20H17.83l2.58-2.59L19,16l-5,5,5,5,1.41-1.41L17.83,22H26v8h2V22A2,2,0,0,0,26,20Z"}),(0,a.jsx)("path",{d:"M23.71,9.29l-7-7A1,1,0,0,0,16,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2h8V28H6V4h8v6a2,2,0,0,0,2,2h6v2h2V10A1,1,0,0,0,23.71,9.29ZM16,4.41,21.59,10H16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,4v8H4V4H6 M6,3H4C3.4,3,3,3.4,3,4v8c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V4C7,3.4,6.6,3,6,3z"}),(0,a.jsx)("path",{d:"M12,4v8h-2V4H12 M12,3h-2C9.4,3,9,3.4,9,4v8c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V4C13,3.4,12.6,3,12,3z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,8V24H8V8h4m0-2H8A2,2,0,0,0,6,8V24a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M24,8V24H20V8h4m0-2H20a2,2,0,0,0-2,2V24a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,6H10A2,2,0,0,0,8,8V24a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M22,6H20a2,2,0,0,0-2,2V24a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7 5 6 5 6 11 7 11 7 5z"}),(0,a.jsx)("path",{d:"M10 5 9 5 9 11 10 11 10 5z"}),(0,a.jsx)("path",{d:"M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 10 12 10 12 22 14 22 14 10 14 10z"}),(0,a.jsx)("path",{d:"M20 10 18 10 18 22 20 22 20 10 20 10z"}),(0,a.jsx)("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M7,11H6V5h1V11z M10,11H9V5h1V11z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,22H12V10h2Zm6,0H18V10h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 11 12 11 12 22 14 22 14 11 14 11z"}),(0,a.jsx)("path",{d:"M20 11 18 11 18 22 20 22 20 11 20 11z"}),(0,a.jsx)("path",{d:"M16,2A13.9158,13.9158,0,0,1,26,6.2343V2h2v8H20V8h4.9217A11.9818,11.9818,0,1,0,28,16h2A14,14,0,1,1,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 11 12 11 12 22 14 22 14 11 14 11z"}),(0,a.jsx)("path",{d:"M20 11 18 11 18 22 20 22 20 11 20 11z"}),(0,a.jsx)("path",{d:"M16,2A13.9158,13.9158,0,0,0,6,6.2343V2H4v8h8V8H7.0783A11.9818,11.9818,0,1,1,4,16H2A14,14,0,1,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 11 20 9 12 9 12 23 20 23 20 21 14 21 14 17 19 17 19 15 14 15 14 11 20 11z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 16 14.407 19 11 19.414 13.5 21.667 13 25 16 23.125 19 25 18.5 21.667 21 19.414 17.5 19 16 16z"}),(0,a.jsx)("path",{d:"M12.414 17.414 16 13.834 16 13.834 19.588 17.416 21 16 16 11 11 16 12.414 17.414z"}),(0,a.jsx)("path",{d:"M12.414 12.414 16 8.834 16 8.834 19.588 12.416 21 11 16 6 11 11 12.414 12.414z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V10.9985H14Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 9 12 9 12 11 18 11 12 21 12 23 20 23 20 21 14 21 20 11 20 9z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z"}),(0,a.jsx)("path",{d:"M8,9H2V23H4V18H8a2,2,0,0,0,2-2V11A2,2,0,0,0,8,9Zm0,7H4V11H8Z"}),(0,a.jsx)("path",{d:"M16,23H12V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,16,23Zm-2-2h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M22 16 24 16 24 10 29 10 29 8 24 8 24 4 30 4 30 2 22 2 22 16z"}),(0,a.jsx)("path",{d:"M16,2H12V16h4a4,4,0,0,0,4-4V6A4,4,0,0,0,16,2Zm2,10a2,2,0,0,1-2,2H14V4h2a2,2,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M8,2H2V16H4V11H8a2,2,0,0,0,2-2V4A2,2,0,0,0,8,2ZM8,9H4V4H8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.6772,14l-1.2456-3.1143A2.9861,2.9861,0,0,0,17.646,9H13.5542a3.0018,3.0018,0,0,0-1.5439.4277L7,12.4336V18H9V13.5664l3-1.8V23.6973L8.5383,28.8906,10.2024,30,14,24.3027V11h3.646a.9949.9949,0,0,1,.9282.6289L20.3228,16H26V14Z"}),(0,a.jsx)("path",{d:"M17.051 18.316 19 24.162 19 30 21 30 21 23.838 18.949 17.684 17.051 18.316z"}),(0,a.jsx)("path",{d:"M16.5,8A3.5,3.5,0,1,1,20,4.5,3.5042,3.5042,0,0,1,16.5,8Zm0-5A1.5,1.5,0,1,0,18,4.5,1.5017,1.5017,0,0,0,16.5,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,30H17a2.0021,2.0021,0,0,1-2-2V23h2v5h3V23h2V19a1.0011,1.0011,0,0,0-1-1H12.2793l-2-6H4a1.0011,1.0011,0,0,0-1,1v6H5v9H9V21h2v7a2.0021,2.0021,0,0,1-2,2H5a2.0021,2.0021,0,0,1-2-2V21a2.0021,2.0021,0,0,1-2-2V13a3.0033,3.0033,0,0,1,3-3h6.2793a1.998,1.998,0,0,1,1.8975,1.3674L13.7207,16H21a3.0033,3.0033,0,0,1,3,3v4a2.0021,2.0021,0,0,1-2,2v3A2.0021,2.0021,0,0,1,20,30Z"}),(0,a.jsx)("path",{d:"M28,30H26V19h3V13a1.0011,1.0011,0,0,0-1-1H24V10h4a3.0033,3.0033,0,0,1,3,3v6a2.0021,2.0021,0,0,1-2,2H28Z"}),(0,a.jsx)("path",{d:"M7,9a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,7,9ZM7,3A2,2,0,1,0,9,5,2.0021,2.0021,0,0,0,7,3Z"}),(0,a.jsx)("path",{d:"M25,9a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,25,9Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,25,3Z"}),(0,a.jsx)("path",{d:"M18.5,15A3.5,3.5,0,1,1,22,11.5,3.5041,3.5041,0,0,1,18.5,15Zm0-5A1.5,1.5,0,1,0,20,11.5,1.5017,1.5017,0,0,0,18.5,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,16H17.4683l-5-6H5a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21H10v7H6V19H4V13a1.0009,1.0009,0,0,1,1-1h6.5317l5,6H26a1.0009,1.0009,0,0,1,1,1v3H25v6H22V22H20v6a2.0023,2.0023,0,0,0,2,2h3a2.0023,2.0023,0,0,0,2-2V24a2.0023,2.0023,0,0,0,2-2V19A3.0033,3.0033,0,0,0,26,16Z"}),(0,a.jsx)("path",{d:"M23.5,15A3.5,3.5,0,1,1,27,11.5,3.5042,3.5042,0,0,1,23.5,15Zm0-5A1.5,1.5,0,1,0,25,11.5,1.5017,1.5017,0,0,0,23.5,10Z"}),(0,a.jsx)("path",{d:"M8,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,8,9ZM8,3a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,8,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.3069,6.1069,30,3.4141,28.5859,2,25.8931,4.6929,24.8,3.6a1.9328,1.9328,0,0,0-2.8,0L4,21.6V28h6.4l18-18a1.9329,1.9329,0,0,0,0-2.8ZM9.6,26H6V22.4L23.4,5,27,8.6Z"}),(0,a.jsx)("path",{d:"M8.136 7.5H18.863999999999997V9.5H8.136z",transform:"rotate(-45 13.5 8.5)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,5.293l-3-3a.9994.9994,0,0,0-1.414,0L19.5859,8H17.0947A11.0118,11.0118,0,0,0,6.7124,15.3662L2.0562,28.67a1,1,0,0,0,1.2744,1.2739l13.3037-4.6562A11.012,11.012,0,0,0,24,14.9053V12.4141L29.707,6.707A.9994.9994,0,0,0,29.707,5.293Zm-7.414,6A1,1,0,0,0,22,12v2.9053A9.01,9.01,0,0,1,15.9731,23.4l-9.1677,3.209L16,17.4141,14.5859,16,5.3914,25.1948,8.6,16.0269A9.01,9.01,0,0,1,17.0947,10H20a1,1,0,0,0,.707-.293L26,4.4141,27.5859,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"9",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"23",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"16",r:"2"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM8,18a2,2,0,1,1,2-2A2,2,0,0,1,8,18Zm8,0a2,2,0,1,1,2-2A2,2,0,0,1,16,18Zm8,0a2,2,0,1,1,2-2A2,2,0,0,1,24,18Z"}),(0,a.jsx)("path",{fill:"none",d:"M10,16a2,2,0,1,1-2-2A2,2,0,0,1,10,16Zm6-2a2,2,0,1,0,2,2A2,2,0,0,0,16,14Zm8,0a2,2,0,1,0,2,2A2,2,0,0,0,24,14Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,27.7593l-11.8274-8.6831,4.5261-14.0762h14.6025l4.5261,14.0762-11.8274,8.6831m0,2.2407c.2078,0,.4158-.0645.5918-.1938l13-9.5444c.2599-.1907.4066-.4904.4082-.8009.0005-.1036-.0151-.2085-.0481-.3109l-4.9697-15.4561c-.1331-.4136-.5176-.6938-.9519-.6938H7.9697c-.4343,0-.8188.2803-.9519.6938l-4.9697,15.4561c-.0329.1021-.0485.2067-.0481.31.0013.3108.1481.6109.4082.8018l13,9.5444c.176.1294.384.1938.5918.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c.2078,0,.4158-.0645.5918-.1938l13-9.5444c.2599-.1907.4066-.4904.4082-.8009.0005-.1036-.0151-.2085-.0481-.3109l-4.9697-15.4561c-.1331-.4136-.5176-.6938-.9519-.6938H7.9697c-.4343,0-.8188.2803-.9519.6938l-4.9697,15.4561c-.0329.1021-.0485.2067-.0481.31.0013.3108.1481.6109.4082.8018l13,9.5444c.176.1294.384.1938.5918.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m4.2407,16L12.9238,4.1726l14.0762,4.5261v14.6025l-14.0762,4.5261-8.6831-11.8274m-2.2407,0c0,.2078.0645.4158.1938.5918l9.5444,13c.1907.2599.4904.4066.8009.4082.1036.0005.2085-.0151.3109-.0481l15.4561-4.9697c.4136-.1331.6938-.5176.6938-.9519V7.9697c0-.4343-.2803-.8188-.6938-.9519L12.8501,2.0481c-.1021-.0329-.2067-.0485-.31-.0481-.3108.0013-.6109.1481-.8018.4082L2.1938,15.4082c-.1294.176-.1938.384-.1938.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m2,16c0,.2078.0645.4158.1938.5918l9.5444,13c.1907.2599.4904.4066.8009.4082.1036.0005.2085-.0151.3109-.0481l15.4561-4.9697c.4136-.1331.6938-.5176.6938-.9519V7.9697c0-.4343-.2803-.8188-.6938-.9519L12.8501,2.0481c-.1021-.0329-.2067-.0485-.31-.0481-.3108.0013-.6109.1481-.8018.4082L2.1938,15.4082c-.1294.176-.1938.384-.1938.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,4.2407l11.8274,8.6831-4.5261,14.0762h-14.6025l-4.5261-14.0762,11.8274-8.6831m0-2.2407c-.2078,0-.4158.0645-.5918.1938L2.4082,11.7383c-.2599.1907-.4066.4904-.4082.8009-.0005.1036.0151.2085.0481.3109l4.9697,15.4561c.1331.4136.5176.6938.9519.6938h16.0605c.4343,0,.8188-.2803.9519-.6938l4.9697-15.4561c.0329-.1021.0485-.2067.0481-.31-.0013-.3108-.1481-.6109-.4082-.8018L16.5918,2.1938c-.176-.1294-.384-.1938-.5918-.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27.7593,16l-8.6831,11.8274-14.0762-4.5261v-14.6025l14.0762-4.5261,8.6831,11.8274m2.2407,0c0-.2078-.0645-.4158-.1938-.5918L20.2617,2.4082c-.1907-.2599-.4904-.4066-.8009-.4082-.1036-.0005-.2085.0151-.3109.0481L3.6938,7.0178c-.4136.1331-.6938.5176-.6938.9519v16.0605c0,.4343.2803.8188.6938.9519l15.4561,4.9697c.1021.0329.2067.0485.31.0481.3108-.0013.6109-.1481.8018-.4082l9.5444-13c.1294-.176.1938-.384.1938-.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30,16c0-.2078-.0645-.4158-.1938-.5918L20.2617,2.4082c-.1907-.2599-.4904-.4066-.8009-.4082-.1036-.0005-.2085.0151-.3109.0481L3.6938,7.0178c-.4136.1331-.6938.5176-.6938.9519v16.0605c0,.4343.2803.8188.6938.9519l15.4561,4.9697c.1021.0329.2067.0485.31.0481.3108-.0013.6109-.1481.8018-.4082l9.5444-13c.1294-.176.1938-.384.1938-.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-.2078,0-.4158.0645-.5918.1938L2.4082,11.7383c-.2599.1907-.4066.4904-.4082.8009-.0005.1036.0151.2085.0481.3109l4.9697,15.4561c.1331.4136.5176.6938.9519.6938h16.0605c.4343,0,.8188-.2803.9519-.6938l4.9697-15.4561c.0329-.1021.0485-.2067.0481-.31-.0013-.3108-.1481-.6109-.4082-.8018L16.5918,2.1938c-.176-.1294-.384-.1938-.5918-.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,14a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,9,14ZM9,6a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,9,6Z"}),(0,a.jsx)("path",{d:"M.029 15H31.97V17H.029z",transform:"rotate(-45 16 16)"}),(0,a.jsx)("path",{d:"M23,28a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,23,28Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,23,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,14a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,9,14Z"}),(0,a.jsx)("path",{d:"M.029 15H31.97V17H.029z",transform:"rotate(-45 16 16)"}),(0,a.jsx)("path",{d:"M23,28a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,23,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,2h-10C6,2,2,6,2,11v10c0,5,4,9,9,9h10c5,0,9-4,9-9v-10c0-5-4-9-9-9ZM28,21c0,3.9-3.1,7-7,7h-10c-3.9,0-7-3.1-7-7v-10c0-3.9,3.1-7,7-7h10c3.9,0,7,3.1,7,7v10ZM24,11h-6c-1.1,0-2,.9-2,2v6c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-6c0-1.1-.9-2-2-2ZM18,19v-6h6v6h-6ZM11,11l5,5-5,5-1.5-1.4,2.7-2.6h-6.2v-2h6.2l-2.7-2.6,1.5-1.4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30H14a2,2,0,0,1-2-2V21a2,2,0,0,1-2-2V13a3,3,0,0,1,3-3h6a3,3,0,0,1,3,3v6a2,2,0,0,1-2,2v7A2,2,0,0,1,18,30ZM13,12a.94.94,0,0,0-1,1v6h2v9h4V19h2V13a.94.94,0,0,0-1-1Z"}),(0,a.jsx)("path",{d:"M16,9a4,4,0,1,1,4-4h0A4,4,0,0,1,16,9Zm0-6a2,2,0,1,0,2,2h0a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,31H6a2.0059,2.0059,0,0,1-2-2V22a2.0059,2.0059,0,0,1-2-2V14a2.9465,2.9465,0,0,1,3-3h6a2.9465,2.9465,0,0,1,3,3v6a2.0059,2.0059,0,0,1-2,2v7A2.0059,2.0059,0,0,1,10,31ZM5,13a.9448.9448,0,0,0-1,1v6H6v9h4V20h2V14a.9448.9448,0,0,0-1-1Z"}),(0,a.jsx)("path",{d:"M8,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,8,10ZM8,4a2,2,0,1,0,2,2A2.002,2.002,0,0,0,8,4Z"}),(0,a.jsx)("path",{d:"M28.7663,4.2558A4.2121,4.2121,0,0,0,23,4.0321a4.2121,4.2121,0,0,0-5.7663.2237,4.319,4.319,0,0,0,0,6.0447L22.998,16.14,23,16.1376l.002.0019,5.7643-5.839A4.319,4.319,0,0,0,28.7663,4.2558ZM27.342,8.8948l-4.34,4.3973L23,13.29l-.002.002-4.34-4.3973a2.3085,2.3085,0,0,1,0-3.2338,2.2639,2.2639,0,0,1,3.1561,0l1.181,1.2074L23,6.8634l.0049.005,1.181-1.2074a2.2639,2.2639,0,0,1,3.1561,0A2.3085,2.3085,0,0,1,27.342,8.8948Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"7.5",cy:"9.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"13",cy:"13",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"21",r:"1"}),(0,a.jsx)("path",{d:"M25,14a8.9844,8.9844,0,0,0-7,3.3555V13a10.9054,10.9054,0,0,0-1.0093-4.5845l-.3569-.7768L15.811,7.87A2.9549,2.9549,0,0,1,15,8a3.0033,3.0033,0,0,1-3-3,2.9574,2.9574,0,0,1,.1294-.8105l.2324-.8233-.7773-.3569A10.9115,10.9115,0,0,0,7,2H2V9a10.8954,10.8954,0,0,0,2.2339,6.627l.3887.4277.54-.0381a5.5286,5.5286,0,0,1,5.3628,3.2559l.2207.497.5376.0845A11.0219,11.0219,0,0,0,13,20h3V30h2V26h3a9.01,9.01,0,0,0,9-9V14ZM12.1016,17.9468A7.51,7.51,0,0,0,5.5283,14,8.8945,8.8945,0,0,1,4,9V4H7a8.8624,8.8624,0,0,1,3.0259.53A4.2457,4.2457,0,0,0,10,5a4.9658,4.9658,0,0,0,5.47,4.9736A8.8793,8.8793,0,0,1,16,13v5H13A8.1153,8.1153,0,0,1,12.1016,17.9468ZM28,17a7.0078,7.0078,0,0,1-7,7H18V23a7.01,7.01,0,0,1,5.0212-6.7109A1.4971,1.4971,0,1,0,26,16.5a1.485,1.485,0,0,0-.0918-.5H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19 21H21V24H19z"}),(0,a.jsx)("path",{d:"M19 0H21V3H19z"}),(0,a.jsx)("path",{d:"M8 11H11V13H8z"}),(0,a.jsx)("path",{d:"M29 11H32V13H29z"}),(0,a.jsx)("path",{d:"M11.59 3.07H13.57V6.07H11.59z",transform:"rotate(-45 12.586 4.577)"}),(0,a.jsx)("path",{d:"M26.44 17.92H28.42V20.92H26.44z",transform:"rotate(-45 27.43 19.408)"}),(0,a.jsx)("path",{d:"M11.09 18.42H14.09V20.400000000000002H11.09z",transform:"rotate(-45 12.592 19.414)"}),(0,a.jsx)("path",{d:"M25.93 3.58H28.93V5.5600000000000005H25.93z",transform:"rotate(-45 27.423 4.57)"}),(0,a.jsx)("path",{d:"M20,5a7,7,0,1,0,7,7A7,7,0,0,0,20,5Zm0,12A5,5,0,0,1,20,7Z"}),(0,a.jsx)("path",{d:"M5,18H0V32H5a3,3,0,0,0,3-3V27a3,3,0,0,0-.78-2A3,3,0,0,0,8,23V21A3,3,0,0,0,5,18ZM2,20H5a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H2Zm4,9a1,1,0,0,1-1,1H2V26H5a1,1,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M2 2 9 2 9 0 0 0 0 9 2 9 2 2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 29H13V32H11z"}),(0,a.jsx)("path",{d:"M11 8H13V11H11z"}),(0,a.jsx)("path",{d:"M0 19H3V21H0z"}),(0,a.jsx)("path",{d:"M21 19H24V21H21z"}),(0,a.jsx)("path",{d:"M3.59 11.09H5.57V14.09H3.59z",transform:"rotate(-45 4.585 12.59)"}),(0,a.jsx)("path",{d:"M18.44 25.93H20.42V28.93H18.44z",transform:"rotate(-45 19.429 27.422)"}),(0,a.jsx)("path",{d:"M3.09 26.44H6.09V28.42H3.09z",transform:"rotate(-45 4.591 27.428)"}),(0,a.jsx)("path",{d:"M17.93 11.59H20.93V13.57H17.93z",transform:"rotate(-45 19.423 12.585)"}),(0,a.jsx)("path",{d:"M12,13a7,7,0,1,0,7,7A7,7,0,0,0,12,13Zm0,12a5,5,0,0,1,0-10Z"}),(0,a.jsx)("path",{d:"M2 2 9 2 9 0 0 0 0 9 2 9 2 2z"}),(0,a.jsx)("path",{d:"M30,0H26a2,2,0,0,0-2,2V12a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V2A2,2,0,0,0,30,0ZM26,12V2h4V12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.76,3h5.51a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.37,9.37,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5A1,1,0,0,0,5,6v.08C5.46,12,8.41,26,25.94,27A1,1,0,0,0,27,26.06V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 2H30V6H26z"}),(0,a.jsx)("path",{d:"M26 8H30V12H26z"}),(0,a.jsx)("path",{d:"M20 2H24V6H20z"}),(0,a.jsx)("path",{d:"M20 8H24V12H20z"}),(0,a.jsx)("path",{d:"M25,30h-.17C5.18,28.87,2.39,12.29,2,7.23A3,3,0,0,1,4.7611,4.0088Q4.88,4,5,4h5.27a2,2,0,0,1,1.86,1.26L13.65,9a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,23,18.35l3.77,1.51A2,2,0,0,1,28,21.72V27A3,3,0,0,1,25,30ZM5,6a1,1,0,0,0-1.0032.9968c0,.0278.001.0555.0032.0832C4.46,13,7.41,27,24.94,28a1,1,0,0,0,1.0581-.9382Q26,27.0309,26,27V21.72l-3.77-1.51-2.87,2.85L18.88,23C10.18,21.91,9,13.21,9,13.12l-.06-.48,2.84-2.87L10.28,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),(0,a.jsx)("path",{d:"M24.41 9 28 5.41 26.59 4 23 7.59 19.41 4 18 5.41 21.59 9 18 12.59 19.41 14 23 10.41 26.59 14 28 12.59 24.41 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M24.41 9 28 5.41 26.59 4 23 7.59 19.41 4 18 5.41 21.59 9 18 12.59 19.41 14 23 10.41 26.59 14 28 12.59 24.41 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.33,21.48l2.24-2.24a2.19,2.19,0,0,1,2.34-.48l2.73,1.09a2.18,2.18,0,0,1,1.36,2v5A2.17,2.17,0,0,1,26.72,29C7.59,27.81,3.73,11.61,3,5.41A2.17,2.17,0,0,1,5.17,3H10a2.16,2.16,0,0,1,2,1.36l1.09,2.73a2.16,2.16,0,0,1-.47,2.34l-2.24,2.24S11.67,20.4,20.33,21.48Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),(0,a.jsx)("path",{d:"M27 13 27 11 22.414 11 29 4.414 27.586 3 21 9.586 21 5 19 5 19 13 27 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M27 13 27 11 22.414 11 29 4.414 27.586 3 21 9.586 21 5 19 5 19 13 27 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 14H18V16H16z"}),(0,a.jsx)("path",{d:"M20 14H22V16H20z"}),(0,a.jsx)("path",{d:"M24 14H26V16H24z"}),(0,a.jsx)("path",{d:"M16 18H18V20H16z"}),(0,a.jsx)("path",{d:"M20 18H22V20H20z"}),(0,a.jsx)("path",{d:"M24 18H26V20H24z"}),(0,a.jsx)("path",{d:"M16 22H18V24H16z"}),(0,a.jsx)("path",{d:"M20 22H22V24H20z"}),(0,a.jsx)("path",{d:"M24 22H26V24H24z"}),(0,a.jsx)("path",{d:"M16 10H26V12H16z"}),(0,a.jsx)("path",{d:"M28,6H14V5a2.0025,2.0025,0,0,0-2-2H8A2.0025,2.0025,0,0,0,6,5V6H4A2.0025,2.0025,0,0,0,2,8V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V8A2.0025,2.0025,0,0,0,28,6ZM8,5h4V22H8ZM28,26H4V8H6V22a2.0025,2.0025,0,0,0,2,2h4a2.0025,2.0025,0,0,0,2-2V8H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.19,18.56A25.66,25.66,0,0,1,5,6.08V6A1,1,0,0,1,6,5h5.28l1.5,3.77L9.94,11.64l.06.48a13,13,0,0,0,1.46,4.17l1.46-1.46a9.34,9.34,0,0,1-.84-2.52l2.13-2.15A2,2,0,0,0,14.65,8L13.13,4.26A2,2,0,0,0,11.27,3H5.76A3,3,0,0,0,3,6.23,28,28,0,0,0,7.79,20Z"}),(0,a.jsx)("path",{d:"M27.77,18.86,24,17.35a2,2,0,0,0-2.17.41l-2.17,2.15A9.17,9.17,0,0,1,15.45,18L30,3.41,28.59,2,2,28.59,3.41,30l7-7c3.38,3.18,8.28,5.62,15.39,6H26a3,3,0,0,0,3-3V20.72A2,2,0,0,0,27.77,18.86ZM27,26v.06a1,1,0,0,1-1.06.94c-6.51-.37-11-2.54-14.11-5.42L14,19.44A10.77,10.77,0,0,0,19.88,22l.48.06,2.87-2.85L27,20.72Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.74,19.56l-2.52-1a2,2,0,0,0-2.15.44L20,21.06a9.93,9.93,0,0,1-5.35-2.29L30,3.41,28.59,2,2,28.59,3.41,30l7.93-7.92c3.24,3.12,7.89,5.5,14.55,5.92A2,2,0,0,0,28,26V21.41A2,2,0,0,0,26.74,19.56Z"}),(0,a.jsx)("path",{d:"M8.15,18.19l3.52-3.52A11.68,11.68,0,0,1,10.85,12l2.07-2.07a2,2,0,0,0,.44-2.15l-1-2.52A2,2,0,0,0,10.5,4H6A2,2,0,0,0,4,6.22,29,29,0,0,0,8.15,18.19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-0.2C6.2,27.9,3.4,11.3,3,6.2C2.9,4.6,4.1,3.1,5.8,3C5.8,3,5.9,3,6,3h5.3c0.8,0,1.6,0.5,1.9,1.3L14.6,8 c0.3,0.7,0.1,1.6-0.4,2.2l-2.1,2.1c0.7,3.9,3.7,6.9,7.6,7.6l2.2-2.1c0.6-0.6,1.4-0.7,2.2-0.4l3.8,1.5c0.7,0.3,1.2,1,1.2,1.9V26 C29,27.7,27.7,29,26,29z M6,5C5.4,5,5,5.4,5,6c0,0,0,0.1,0,0.1C5.5,12,8.4,26,25.9,27c0.6,0,1-0.4,1.1-0.9c0,0,0,0,0-0.1v-5.3 l-3.8-1.5l-2.9,2.9L19.9,22c-8.7-1.1-9.9-9.8-9.9-9.9l-0.1-0.5l2.8-2.9L11.3,5H6z"}),(0,a.jsx)("path",{d:"M20 4 20 6 24.6 6 18 12.6 19.4 14 26 7.4 26 12 28 12 28 4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M20 4 20 6 24.586 6 18 12.586 19.414 14 26 7.414 26 12 28 12 28 4 20 4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z"}),(0,a.jsx)("path",{d:"M25,30h-.17C5.18,28.87,2.39,12.29,2,7.23A3,3,0,0,1,4.7611,4.0088Q4.88,4,5,4h5.27a2,2,0,0,1,1.86,1.26L13.65,9a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,23,18.35l3.77,1.51A2,2,0,0,1,28,21.72V27A3,3,0,0,1,25,30ZM5,6a1,1,0,0,0-1.0032.9968c0,.0278.001.0555.0032.0832C4.46,13,7.41,27,24.94,28a1,1,0,0,0,1.0581-.9382Q26,27.0309,26,27V21.72l-3.77-1.51-2.87,2.85L18.88,23C10.18,21.91,9,13.21,9,13.12l-.06-.48,2.84-2.87L10.28,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H22a3.0033,3.0033,0,0,0-3-3V8A5.0057,5.0057,0,0,1,24,13Z"}),(0,a.jsx)("path",{d:"M28,13H26a7.0078,7.0078,0,0,0-7-7V4A9.01,9.01,0,0,1,28,13Z"}),(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H22a3.0033,3.0033,0,0,0-3-3V8A5.0057,5.0057,0,0,1,24,13Z"}),(0,a.jsx)("path",{d:"M28,13H26a7.0078,7.0078,0,0,0-7-7V4A9.01,9.01,0,0,1,28,13Z"}),(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.303,10a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,19l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,10Z"}),(0,a.jsx)("path",{d:"M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,12a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,12Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,6Z"}),(0,a.jsx)("path",{d:"M26,22H21.8472L21.18,18H24V16H8v2h2.82l-.6668,4H6v2H9.82l-.6668,4H11.18l.6668-4h8.3056l.6668,4h2.0276L22.18,24H26ZM12.18,22l.6665-4h6.3062l.6665,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.5,14H20V12H18V11H16v1.0508A2.5,2.5,0,0,0,16.5,17h1a.5.5,0,0,1,0,1H14v2h2v1h2V19.9492A2.5,2.5,0,0,0,17.5,15h-1a.5.5,0,0,1,0-1Z"}),(0,a.jsx)("path",{d:"M29,13H26.98A5.7789,5.7789,0,0,0,25,8.8525V5a1,1,0,0,0-1.6-.8L19.6665,7H15c-5.5095,0-9.4634,3.2412-9.9485,8H5a1.0009,1.0009,0,0,1-1-1V12H2v2a3.0033,3.0033,0,0,0,3,3h.07A9.1733,9.1733,0,0,0,9,23.5566V27a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V25h3v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V23.6372A5.0926,5.0926,0,0,0,26.8188,20H29a1,1,0,0,0,1-1V14A1,1,0,0,0,29,13Zm-1,5H25.124c-.3052,2.7529-.8235,3.4854-3.124,4.3154V26H20V23H13v3H11V22.3779A7.013,7.013,0,0,1,7,16c0-4.8354,4.0181-7,8-7h5.3335L23,7V9.7764c2.4182,1.8593,1.9126,3.186,2.0183,5.2236H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13 11H20V13H13z"}),(0,a.jsx)("path",{d:"M29,13H26.98A5.7791,5.7791,0,0,0,25,8.8525V5a1,1,0,0,0-1.6-.8L19.6665,7H15c-5.5095,0-9.4634,3.2412-9.9485,8H5a1.0009,1.0009,0,0,1-1-1V12H2v2a3.0033,3.0033,0,0,0,3,3h.07A9.1733,9.1733,0,0,0,9,23.5566V27a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V25h3v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V23.6372A5.0928,5.0928,0,0,0,26.8188,20H29a1,1,0,0,0,1-1V14A1,1,0,0,0,29,13Zm-1,5H25.124c-.3052,2.7529-.8235,3.4854-3.124,4.3154V26H20V23H13v3H11V22.3779A7.0129,7.0129,0,0,1,7,16c0-4.8354,4.0181-7,8-7h5.3335L23,7V9.7764c2.4182,1.8593,1.9126,3.186,2.0183,5.2236H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.999,6.999,0,0,0,12.2855,4.5878A7.9969,7.9969,0,1,0,22,14Zm0,2a6.0046,6.0046,0,0,1,5.91,5H16.09A6.0046,6.0046,0,0,1,22,16ZM6,9A5,5,0,0,1,16,9v6H6Zm5,19a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9566,7.9566,0,0,0-.7242,8.9315A4.9885,4.9885,0,0,1,11,28Zm11,0a6.0046,6.0046,0,0,1-5.91-5H27.91A6.0046,6.0046,0,0,1,22,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.9857,6.9857,0,0,0,12.2756,4.5768A7.9966,7.9966,0,1,0,22,14ZM11,4a5.0059,5.0059,0,0,1,5,5v6H6V9A5.0059,5.0059,0,0,1,11,4Zm0,24a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9564,7.9564,0,0,0-.7239,8.9319A5.0147,5.0147,0,0,1,11,28Zm11,0a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M25 21 23 21 23 19 21 19 21 21 19 21 19 23 21 23 21 25 23 25 23 23 25 23 25 21z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.9857,6.9857,0,0,0,12.2756,4.5768A7.9966,7.9966,0,1,0,22,14ZM11,4a5.0059,5.0059,0,0,1,5,5v6H6V9A5.0059,5.0059,0,0,1,11,4Zm0,24a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9564,7.9564,0,0,0-.7239,8.9319A5.0147,5.0147,0,0,1,11,28Zm11,0a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M19 21H25V23H19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.59,13.31,30,11.9,20,2,18.69,3.42,19.87,4.6,8.38,14.32,6.66,12.61,5.25,14l5.66,5.68L2,28.58,3.41,30l8.91-8.91L18,26.75l1.39-1.42-1.71-1.71L27.4,12.13ZM16.26,22.2,9.8,15.74,21.29,6,26,10.71Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5858,13.3137,30,11.9,20,2,18.6858,3.415l1.1858,1.1857L8.38,14.3225,6.6641,12.6067,5.25,14l5.6572,5.6773L2,28.5831,3.41,30l8.9111-8.9087L18,26.7482l1.3929-1.414L17.6765,23.618l9.724-11.4895Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,12h6c1.1028,0,2-.8975,2-2V4c0-1.1025-.8972-2-2-2h-6c-1.1028,0-2,.8975-2,2v2h-9c-2.7571,0-5,2.2432-5,5h-2c-1.1028,0-2,.8975-2,2v6c0,1.1025.8972,2,2,2h2c0,2.7568,2.2429,5,5,5h9v2c0,1.1025.8972,2,2,2h6c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2h-6c-1.1028,0-2,.8975-2,2v2h-9c-1.6543,0-3-1.3457-3-3h2c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2h-2c0-1.6543,1.3457-3,3-3h9v2c0,1.1025.8972,2,2,2ZM22,22h6v6h-6l-.0012-6h.0012ZM10,13v6h-6l-.0012-6h6.0012ZM22,4h6v6h-6l-.0012-6h.0012Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.1,2H3.9c-1.1,0-1.9.9-1.9,1.9v24.2c0,1.1.9,1.9,1.9,1.9h24.2c1.1,0,1.9-.9,1.9-1.9V3.9c0-1.1-.9-1.9-1.9-1.9ZM28,28H4V8h24s0,20,0,20ZM28,6H4v-2h24s0,2,0,2ZM22,19l-1.4,1.4-2.6-2.6v6.2c0,1.1-.9,2-2,2h-6v-2h6v-6.2l-2.6,2.6-1.4-1.4,5-5,5,5ZM8,12v-2h16v2H8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h24c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM28,28H4V8h24v20ZM28,6H4v-2h24v2ZM22,10h2v16h-2v-16ZM15,14l5,5-5,5-1.4-1.4,2.6-2.6h-6.2c-1.1,0-2-.9-2-2v-6h2v6h6.2l-2.6-2.6,1.4-1.4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,8c0-0.4-0.2-0.7-0.5-0.9l-7-4C23.3,3,23.2,3,23,3s-0.3,0-0.5,0.1L16,6.8L9.5,3.1C9.3,3,9.2,3,9,3S8.7,3,8.5,3.1l-7,4 C1.2,7.3,1,7.6,1,8v20c0,0.6,0.4,1,1,1c0.2,0,0.3-0.1,0.5-0.1l0,0L9,25.2l6.5,3.7C15.7,29,15.8,29,16,29s0.3,0,0.5-0.1l6.5-3.7 l6.5,3.7l0,0c0.1,0.1,0.3,0.1,0.5,0.1c0.6,0,1-0.4,1-1V8z M3,8.6l5-2.9v17.7l-5,2.9V8.6z M15,26.3l-5-2.9V5.7l5,2.9V26.3z M22,23.4 l-5,2.9V8.6l5-2.9V23.4z M24,23.4V5.7l5,2.9l0,17.7L24,23.4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.37,14.75,20,10V6a4,4,0,0,0-8,0v4L2.63,14.75a1,1,0,0,0-.63.93v5a1,1,0,0,0,1,1,1,1,0,0,0,.29-.05L12,18v5L8.55,24.72a1,1,0,0,0-.55.9V29a1,1,0,0,0,1,1,.9.9,0,0,0,.28,0L16,28l6.72,2A.9.9,0,0,0,23,30a1,1,0,0,0,1-1V25.62a1,1,0,0,0-.55-.9L20,23V18l8.71,3.61a1,1,0,0,0,.29.05,1,1,0,0,0,1-1v-5A1,1,0,0,0,29.37,14.75ZM28,19.15,18,15v9.24l4,2v1.43l-6-1.75-6,1.75V26.24l4-2V15L4,19.15V16.3l10-5.07V6a2,2,0,0,1,4,0v5.23L28,16.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5845,14.585l-3.12-1.8721A4.9951,4.9951,0,0,0,22.8921,12H7.7808L7.16,9.5151A1.9975,1.9975,0,0,0,5.2192,8H4a2.0023,2.0023,0,0,0-2,2v7a3.0033,3.0033,0,0,0,3,3h7v6a2.0023,2.0023,0,0,0,2,2h1.3071A2.0086,2.0086,0,0,0,17.18,26.7021L19.6929,20h7.3916a2.9152,2.9152,0,0,0,1.5-5.415ZM27.0845,18H18.3071l-3,8H14V18H5a1.0009,1.0009,0,0,1-1-1V10H5.2192l1,4H10v2h2V14h3v2h2V14h3v2h2V14h.8921a2.9977,2.9977,0,0,1,1.5434.4277l3.12,1.8721a.9154.9154,0,0,1-.4712,1.7Z"}),(0,a.jsx)("path",{d:"M14,4h1.3228l2.4,6h2.1545L17.18,3.2573A1.9906,1.9906,0,0,0,15.3228,2H14a2.0023,2.0023,0,0,0-2,2v6h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,30H28a4.9316,4.9316,0,0,1-4-1.9873,5.0192,5.0192,0,0,1-8,0,5.0192,5.0192,0,0,1-8,0A4.9316,4.9316,0,0,1,4,30H2V28H4a3.44,3.44,0,0,0,3.0532-2.3215A.9712.9712,0,0,1,8,25a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,12,28a3.44,3.44,0,0,0,3.0532-2.3215A.99.99,0,0,1,16,25a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,20,28a3.44,3.44,0,0,0,3.0532-2.3215,1,1,0,0,1,1.8955.0053A3.4381,3.4381,0,0,0,28,28h2Z"}),(0,a.jsx)("path",{d:"M28,6v4H25.5L23.4,7.2A3.0129,3.0129,0,0,0,21,6H15a3.0033,3.0033,0,0,0-3,3v1H8.6182L7.8945,8.5527l-1-2A1,1,0,0,0,6,6H3A1,1,0,0,0,2,7v6a3.0033,3.0033,0,0,0,3,3h6.82l-.6666,4H7a1,1,0,0,0,0,2H27a1,1,0,0,0,0-2H22.847L22.18,16h.1629a4.9662,4.9662,0,0,0,3.5351-1.4648L28,12.4141V16h2V6ZM14,9a1.0009,1.0009,0,0,1,1-1h6a1.0045,1.0045,0,0,1,.8.4L23,10H14Zm6.82,11H13.18l.6666-4h6.306Zm1.5237-6H5a1.0009,1.0009,0,0,1-1-1V8H5.3818l.7237,1.4473L7.3818,12h18.204l-1.1214,1.1211A2.9789,2.9789,0,0,1,22.3433,14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,25V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141L7,15.8281V25H19v2H7A2.0024,2.0024,0,0,1,5,25Z"}),(0,a.jsx)("path",{d:"M24,22h4a2.002,2.002,0,0,1,2,2v4a2.002,2.002,0,0,1-2,2H24a2.002,2.002,0,0,1-2-2V24A2.002,2.002,0,0,1,24,22Zm4,6V24H23.9985L24,28Z"}),(0,a.jsx)("path",{d:"M27,6v9.1719l3.5859-3.586L32,13l-6,6-6-6,1.4141-1.4141L25,15.1719V6H13V4H25A2.0024,2.0024,0,0,1,27,6Z"}),(0,a.jsx)("path",{d:"M2 6H8V8H2z"}),(0,a.jsx)("path",{d:"M2 2H10V4H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28,28H4c-1.1028,0-2-.8972-2-2v-6h2v6h24v-6h2v6c0,1.1028-.8972,2-2,2Z"}),(0,a.jsx)("path",{d:"m17,17v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m9,17v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m17,9v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m5,5v8c0,.5522.4477,1,1,1h8c.5523,0,1-.4478,1-1V5c0-.5523-.4477-1-1-1H6c-.5523,0-1,.4477-1,1Zm2,1h6v6h-6v-6Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M3.5,14C3.2,14,3,13.8,3,13.5v-11c0-0.2,0.1-0.3,0.2-0.4C3.4,2,3.6,2,3.8,2.1l9.5,5.5c0.2,0.1,0.3,0.4,0.2,0.7 c0,0.1-0.1,0.1-0.2,0.2l-9.5,5.5C3.7,14,3.6,14,3.5,14z M4,3.4v9.3L12,8L4,3.4z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28ZM8,6.6909V25.3088L24.9248,16Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11.7,8.4l-5.5,3c-0.2,0.1-0.3,0.1-0.5,0c-0.2-0.1-0.2-0.3-0.2-0.4V5 c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3C12,7.7,12.1,8,11.9,8.2C11.9,8.3,11.8,8.4,11.7,8.4L11.7,8.4z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.4473,14.8945-12,6A1,1,0,0,1,10,22V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z"}),(0,a.jsx)("path",{d:"M6,11.5c-0.1,0-0.2,0-0.3-0.1c-0.2-0.1-0.2-0.3-0.2-0.4V5c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3 C12,7.7,12.1,8,11.9,8.2c0,0.1-0.1,0.2-0.2,0.2l-5.5,3C6.2,11.5,6.1,11.5,6,11.5z M6.5,5.8v4.3l4-2.2L6.5,5.8z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Zm1-11.3821v8.7642L20.7642,16Z"}),(0,a.jsx)("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11.7,8.4l-5.5,3c-0.2,0.1-0.3,0.1-0.5,0c-0.2-0.1-0.2-0.3-0.2-0.4V5 c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3C12,7.7,12.1,8,11.9,8.2C11.9,8.3,11.8,8.4,11.7,8.4L11.7,8.4z"}),(0,a.jsx)("path",{d:"M6.5 10.2 10.5 8 6.5 5.8z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Zm1-11.3821v8.7642L20.7642,16Z"}),(0,a.jsx)("path",{d:"M12 20.382 20.764 16 12 11.618 12 20.382z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.4473,14.8945-12,6A1,1,0,0,1,10,22V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 6H22V8H4z"}),(0,a.jsx)("path",{d:"M4 12H22V14H4z"}),(0,a.jsx)("path",{d:"M4 18H16V20H4z"}),(0,a.jsx)("path",{d:"M21 18 28 23 21 28 21 18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,9h8v2h-3v10h3v2h-8v-2h3v-10h-3v-2ZM14,21v-12h-2v14h8v-2h-6ZM4,18h4c1.103,0,2-.897,2-2v-5c0-1.103-.897-2-2-2H2v14h2v-5ZM4,10.9985h4v5.0015h-4v-5.0015Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2v6a8.0073,8.0073,0,0,0,7,7.9307V30h2V23.9307A8.0073,8.0073,0,0,0,24,16V10A2,2,0,0,0,22,8Zm0,8a6,6,0,0,1-12,0V10H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2v6a8.0073,8.0073,0,0,0,7,7.9307V30h2V23.9307A8.0073,8.0073,0,0,0,24,16V10A2,2,0,0,0,22,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,23H24a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H24V21h4V17H26V15h4Z"}),(0,a.jsx)("path",{d:"M18 19 14.32 9 12 9 12 23 14 23 14 13 17.68 23 20 23 20 9 18 9 18 19z"}),(0,a.jsx)("path",{d:"M4,23H2V9H8a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H4Zm0-7H8V11H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.0009,13c-.5165.0019-1.0234.1398-1.4696.4-.5478-.8691-1.5021-1.3974-2.5293-1.4-.5165.0019-1.0234.1398-1.4696.4-.749-1.1788-2.2121-1.6847-3.529-1.22v-5.18h0c0-1.6569-1.3427-3-2.9991-3s-2.9991,1.3431-2.9991,3v11.1l-2.2293-1.52h0c-.5111-.3807-1.1323-.5843-1.7695-.58-1.6564-.0041-3.0024,1.3357-3.0065,2.9926-.002.8025.3175,1.5723.8871,2.1374l7.9976,7.3c1.1323,1.0137,2.5992,1.5729,4.1188,1.57h4.9985c3.8648,0,6.9979-3.134,6.9979-7v-6c0-1.6569-1.3427-3-2.9991-3h.0002ZM26.0006,22c0,2.7614-2.2379,5-4.9985,5h-4.9985c-1.0105.0122-1.991-.3432-2.7592-1l-7.9476-7.3c-.1847-.1863-.2888-.4377-.2899-.7,0-.5523.4476-1,.9997-1,.2163,0,.4268.0702.5998.2l5.3984,3.7V6c0-.5523.4476-1,.9997-1s.9997.4477.9997,1h0v11h1.9994v-3c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v3h1.9994v-2c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v2h1.9994v-1c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H18a2.0021,2.0021,0,0,1-2-2V18a2.0021,2.0021,0,0,1,2-2h2v2H18V28H28V18H26V16h2a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),(0,a.jsx)("path",{d:"M14,16H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H14a2.0021,2.0021,0,0,1,2,2V6H14V4H4V14H14V12h2v2A2.0021,2.0021,0,0,1,14,16Z"}),(0,a.jsx)("path",{d:"M26,9a2.9926,2.9926,0,0,0-5.8157-1H9v2H20.1843A2.9939,2.9939,0,0,0,22,11.8154V23h2V11.8159A2.9958,2.9958,0,0,0,26,9Zm-3,1a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,23,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.71 12.29 7.41 6 13 6 13 4 4 4 4 13 6 13 6 7.41 12.29 13.71 13.71 12.29z"}),(0,a.jsx)("path",{d:"M28,30H12a2,2,0,0,1-2-2V18h2V28H28V12H18V10H28a2,2,0,0,1,2,2V28A2,2,0,0,1,28,30Z"}),(0,a.jsx)("path",{d:"M22,15H17v2h5v2H18a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V17A2,2,0,0,0,22,15Zm0,8H18V21h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 24H12V30H10z"}),(0,a.jsx)("path",{d:"M21,20H7a3.0033,3.0033,0,0,1-3-3V6H2V17a5.0059,5.0059,0,0,0,5,5H21a4.9419,4.9419,0,0,1,2.105.481L17,28.5859,18.4141,30l6.3071-6.3071A4.96,4.96,0,0,1,26,27v3h2V27A7.0078,7.0078,0,0,0,21,20Z"}),(0,a.jsx)("path",{d:"M25.2746,4.0386l-7-2a1.0013,1.0013,0,0,0-.55,0l-7,2A.9993.9993,0,0,0,10.03,5.2422L11,9.123V11A7,7,0,1,0,25,11V9.123l.97-3.8808A.9993.9993,0,0,0,25.2746,4.0386ZM18,4.04l5.7952,1.6558L23.219,8H19V6H17V8H12.781l-.5762-2.3042ZM18,16a5.0058,5.0058,0,0,1-5-5V10H23v1A5.0058,5.0058,0,0,1,18,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,18A6,6,0,1,0,20,22.46v7.54l4-1.8926,4,1.8926V22.46A5.98,5.98,0,0,0,30,18Zm-4,8.84-2-.9467L22,26.84V23.65a5.8877,5.8877,0,0,0,4,0ZM24,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,22Z"}),(0,a.jsx)("path",{d:"M9 14H16V16H9z"}),(0,a.jsx)("path",{d:"M9 8H19V10H9z"}),(0,a.jsx)("path",{d:"M6,30a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V8H22V4H6V28H16v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6c-1.1025,0-2-.8975-2-2V6c0-1.1025.8975-2,2-2h8v2H6v20h20v-8.0267h2v8.0267c0,1.1025-.8975,2-2,2ZM28,14v-2l-6.586-.0266L30,3.3875l-1.4142-1.4142-8.5861,8.586.0003-6.5593h-2v10l9.9999-.0269v.0269Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,4H10A2.0059,2.0059,0,0,0,8,6V20a2.0059,2.0059,0,0,0,2,2H28a2.0059,2.0059,0,0,0,2-2V6A2.0059,2.0059,0,0,0,28,4Zm0,16H10V6H28Z"}),(0,a.jsx)("path",{d:"M18,26H4V16H6V14H4a2.0059,2.0059,0,0,0-2,2V26a2.0059,2.0059,0,0,0,2,2H18a2.0059,2.0059,0,0,0,2-2V24H18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m19,7v-3.3999c0-.8837-.7164-1.6001-1.6001-1.6001H4v2h13v3h-6c-1.1046,0-2,.8954-2,2v14c0,1.1046.8954,2,2,2h6v3H4v2h13.3999c.8837,0,1.6001-.7164,1.6001-1.6001v-3.3999h6c1.1046,0,2-.8954,2-2v-14c0-1.1046-.8954-2-2-2h-6Zm6,16h-14v-14h14v14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,28c-3.5928,0-6.9666-1.5903-9.2566-4.3632l1.542-1.2737c1.9087,2.3113,4.7207,3.6368,7.7146,3.6368,5.5139,0,10-4.486,10-10s-4.4861-10-10-10c-2.9939,0-5.8059,1.3256-7.7146,3.6368l-1.542-1.2737c2.29-2.7728,5.6638-4.3632,9.2566-4.3632,6.6169,0,12,5.3832,12,12s-5.3831,12-12,12Z"}),(0,a.jsx)("path",{d:"M23 16 16 9 14.5859 10.4141 19.1719 15 2 15 2 17 19.1719 17 14.5859 21.5859 16 23 23 16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 16 23 9 21.5859 10.4141 26.1719 15 9 15 9 17 26.1719 17 21.5859 21.5859 23 23 30 16z"}),(0,a.jsx)("path",{d:"M14,28c-6.6167,0-12-5.3832-12-12S7.3833,4,14,4c2.335,0,4.5986,.6714,6.5461,1.9414l-1.0923,1.6753c-1.6221-1.0576-3.5078-1.6167-5.4539-1.6167-5.5139,0-10,4.486-10,10s4.4861,10,10,10c1.946,0,3.8318-.5591,5.4539-1.6167l1.0923,1.6753c-1.9475,1.27-4.2112,1.9414-6.5461,1.9414Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m21,7h-2v-3.3999c0-.8999-.7002-1.6001-1.6001-1.6001H4v2h13v3h-2c-3.3,0-6,2.7002-6,6v6c0,3.2998,2.7,6,6,6h2v3H4v2h13.3999c.8999,0,1.6001-.7002,1.6001-1.6001v-3.3999h2c3.3,0,6-2.7002,6-6v-6c0-3.2998-2.7-6-6-6Zm4,12c0,2.2002-1.8,4-4,4h-6c-2.2,0-4-1.7998-4-4v-6c0-2.2002,1.8-4,4-4h6c2.2,0,4,1.7998,4,4v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,10H22V6a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2v4H4a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM12,6h8v4H12ZM4,26V12H28V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.2,2.9l-0.5,0.9c2.6,1.5,3.5,4.9,2,7.5s-4.9,3.5-7.5,2s-3.5-4.9-2-7.5c0.5-0.8,1.2-1.5,2-2L4.8,2.9 c-3.1,1.8-4.2,5.8-2.4,8.9s5.8,4.2,8.9,2.4s4.2-5.8,2.4-8.9C13.1,4.3,12.2,3.4,11.2,2.9z"}),(0,a.jsx)("path",{d:"M7.5 1H8.5V8H7.5z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,5.74l-1,1.73a11,11,0,1,1-11,0l-1-1.73a13,13,0,1,0,13,0Z"}),(0,a.jsx)("path",{d:"M15 2H17V16H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.0166,29.9937c-7.7085,0-13.9863-6.2646-13.9995-13.9761-.0068-3.7358,1.4443-7.2534,4.0854-9.9043l1.417,1.4121c-2.2642,2.272-3.5083,5.2866-3.5024,8.4888.0054,3.2056,1.2588,6.2168,3.5293,8.4795,2.2651,2.2573,5.2725,3.5,8.4702,3.5h.021c1.3477-.0024,2.6533-.2212,3.8799-.6514l.6611,1.8877c-1.4385.5039-2.9653.7612-4.5381.7637h-.0239Z"}),(0,a.jsx)("path",{d:"M15,16h2v4h2c1.1046,0,2,.8954,2,2v3h-2v-3h-2v3h-2v-3h-2v3h-2v-3c0-1.1046.8954-2,2-2h2v-4Z"}),(0,a.jsx)("path",{d:"M23,26h0c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z"}),(0,a.jsx)("path",{d:"M9,4h0c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z"}),(0,a.jsx)("path",{d:"M20.9199,10.1064c-.4219-2.332-2.4678-4.1064-4.9199-4.1064s-4.498,1.7744-4.9199,4.1064c-1.7637.417-3.0801,2.0049-3.0801,3.8936,0,2.2061,1.7939,4,4,4h1v-2h-1c-1.1025,0-2-.8975-2-2s.8975-2,2-2h1v-1c0-1.6543,1.3457-3,3-3s3,1.3457,3,3v1h1c1.1025,0,2,.8975,2,2s-.8975,2-2,2h-1v2h1c2.2061,0,4-1.7939,4-4,0-1.8887-1.3164-3.4766-3.0801-3.8936Z"}),(0,a.jsx)("path",{d:"M25.8999,25.8885l-1.4141-1.4141c2.2681-2.2681,3.5171-5.2808,3.5171-8.4829,0-6.6167-5.3833-12-12-12-1.3491,0-2.6548.2168-3.8809.644l-.6582-1.8887c1.4385-.501,2.9653-.7554,4.5391-.7554,7.7197,0,14,6.2803,14,14,0,3.7363-1.457,7.251-4.103,9.897Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,16h0c0,.3369.024.6749.0714,1.006l-1.9795.2832c-.061-.4238-.0919-.858-.0919-1.2892,0-4.9629,4.0376-9,9-9,2.0435,0,4.0444.7041,5.6348,1.9814l-1.2529,1.5596c-1.2544-1.0083-2.7696-1.541-4.3819-1.541-3.8599,0-6.9999,3.1401-6.9999,7.0001h-.0001ZM8,20c0,.5522.4478,1,1,1s1-.4478,1-1-.4478-1-1-1-1,.4478-1,1ZM16,4c6.6166,0,12,5.3833,12,12h2c0-7.7197-6.2803-14-14-14-1.6431,0-3.2529.2822-4.7846.8389l.6836,1.8799c1.3115-.4771,2.6913-.7188,4.101-.7188ZM22,12c0,.5522.4478,1,1,1s1-.4478,1-1-.4478-1-1-1-1,.4478-1,1ZM9,6c.5522,0,1-.4478,1-1s-.4478-1-1-1-1,.4478-1,1,.4478,1,1,1ZM4,16h0c0-3.2051,1.2481-6.2188,3.5147-8.4854l-1.4141-1.4141c-2.6445,2.6445-4.1006,6.1603-4.1006,9.8995,0,7.7197,6.2803,14,14,14v-2c-6.6166,0-12-5.3832-12-12ZM28.5,25.5c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-.4617.1135-.8942.3006-1.2853l-5.5153-5.5153c-.3911.1871-.8236.3006-1.2853.3006-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3c0,.4617-.1135.8942-.3006,1.2853l5.5153,5.5153c.3911-.1871.8236-.3006,1.2853-.3006,1.6543,0,3,1.3456,3,2.9999h0ZM16,17c.5513,0,1-.4487,1-1s-.4487-1-1-1-1,.4487-1,1,.4487,1,1,1ZM26.5,25.5c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 11 25 11 25 23 27 23 27 11 30 11 30 9 22 9 22 11z"}),(0,a.jsx)("path",{d:"M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V10.9985H14Z"}),(0,a.jsx)("path",{d:"M4,23H2V9H8a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H4Zm0-7H8V10.9985H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.0001,14.0001v4h-2v-4s2,0,2,0ZM30.0001,14.0001v4h-2v-4s2,0,2,0ZM4.0001,20.0001v4h-2v-4h2ZM6.0001,28.0001v2h-2c-1.1001,0-2-.9-2-2v-2h2v2h2ZM12.0001,28.0001v2h-4v-2h4ZM28,2H4c-1.1001,0-2,.9-2,2v8h2v-2h24v2h2V4c0-1.1-.8999-2-2-2ZM25.5802,22.4099l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM19.4202,27.5899l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59ZM24.9152,20.5769l-1.915-.577-2.915,9.423,1.915.577,2.915-9.423Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 10H17V18H15z"}),(0,a.jsx)("path",{d:"M20 14H22V18H20z"}),(0,a.jsx)("path",{d:"M10 12H12V18H10z"}),(0,a.jsx)("path",{d:"M25,4H17V2H15V4H7A2,2,0,0,0,5,6V20a2,2,0,0,0,2,2h8v6H11v2H21V28H17V22h8a2,2,0,0,0,2-2V6A2,2,0,0,0,25,4Zm0,16H7V6H25Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.5053,16l8.1591-7.2529A1,1,0,0,0,25,7H22V2H20V9h2.37L16,14.6621,9.63,9H12V2H10V7H7a1,1,0,0,0-.6646,1.7471L14.4945,16,6.3353,23.2529A1,1,0,0,0,7,25h3v5h2V23H9.63L16,17.3379,22.37,23H20v7h2V25h3a1,1,0,0,0,.6645-1.7471Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,30H10V25H6l10-9,10,9H22Z"}),(0,a.jsx)("path",{d:"M16,16,6,7h4V2H22V7h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm8,15H11.85l5.58,5.5728L16,24,8,16l8-8,1.43,1.3926L11.85,15H24Z"}),(0,a.jsx)("path",{fill:"none",d:"M16 8 17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 8 17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2v2c6.63,0,12,5.37,12,12s-5.37,12-12,12v2c7.73,0,14-6.27,14-14S23.73,2,16,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m8.24,25.14l-1.29,1.53c1.23,1.04,2.64,1.87,4.18,2.44l.68-1.88c-1.32-.49-2.53-1.2-3.58-2.09h.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4.19,18l-1.97.41c.28,1.63.84,3.16,1.64,4.54l1.73-.95c-.68-1.18-1.16-2.61-1.4-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m5.59,10l-1.73-1c-.79,1.38-1.35,2.96-1.64,4.59l1.97.35c.24-1.39.72-2.75,1.4-3.93v-.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m11.82,4.76l-.68-1.88c-1.54.57-2.95,1.4-4.18,2.44l1.29,1.53c1.05-.89,2.26-1.6,3.58-2.09h-.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,12v-2h-4v-3h-2v3h-2c-1.103,0-2,.897-2,2v3c0,1.103.897,2,2,2h6v3h-8v2h4v3h2v-3h2c1.103,0,2-.8975,2-2v-3c0-1.103-.897-2-2-2h-6v-3h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,2h-5v2h5v24h-5v2h5c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m23,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4,4h5V2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h5v-2H4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M3 11H11V13H3z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M3 19H11V21H3z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M5 15H13V17H5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27,21h-2c0-2.8226,0-7.0881-10.0903-8.0042l.1807-1.9917c11.9097,1.0811,11.9097,6.8802,11.9097,9.9958Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16.9097,20.9958c-11.9097-1.0811-11.9097-6.8802-11.9097-9.9958h2c0,2.8226,0,7.0881,10.0903,8.0042l-.1807,1.9917Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m23,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m17,15.0698v-6.9536c1.6909.2793,3.084,1.1021,4.2219,2.5117l1.5562-1.2559c-1.5195-1.8823-3.4619-2.9736-5.7781-3.2759v-3.0962h-2v3.022c-3.6152.2192-6,2.2603-6,5.2202,0,4.2739,3.1265,5.1191,6,5.5586v7.1616c-2.7192-.1777-4.0186-1.1001-5.2219-2.5903l-1.5562,1.2559c1.7703,2.1934,3.7332,3.168,6.7781,3.3369v3.0352h2v-3.0449c3.7256-.3042,6-2.3271,6-5.4399,0-4.209-3.1428-5.0156-6-5.4453Zm-6-3.8276c0-2.1533,2.0293-3.0537,4-3.2134v6.7466c-2.5696-.4238-4-1.043-4-3.5332Zm6,12.71v-6.8574c2.5669.4155,4,1.0044,4,3.4204,0,2.5361-2.1902,3.2656-4,3.437Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,9H25V3H7V9H4a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2H7v6H25V23h3a2,2,0,0,0,2-2V11A2,2,0,0,0,28,9ZM9,5H23V9H9ZM23,27H9V17H23Zm5-6H25V15H7v6H4V11H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23v3h-14.5c-2.5,0-4.5-2-4.5-4.5s2-4.5,4.5-4.5h.5v-2h-.5c-3.6,0-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5h14.5v3h8v-8h-8ZM29,29h-4v-4h4v4ZM23.5,4h-14.5V1H1v8h8v-3h14.5c2.5,0,4.5,2,4.5,4.5s-2,4.5-4.5,4.5h-.5v2h.5c3.6,0,6.5-2.9,6.5-6.5s-2.9-6.5-6.5-6.5ZM7,7H3V3h4v4ZM20,15h-1v-2c0-1.7-1.3-3-3-3s-3,1.3-3,3v2h-1c-.6,0-1,.4-1,1v5c0,.6.4,1,1,1h8c.6,0,1-.4,1-1v-5c0-.6-.4-1-1-1ZM15,13c0-.6.4-1,1-1s1,.4,1,1v2h-2v-2ZM19,20h-6v-3h6v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m12,25c-.7383,0-1.3762.4048-1.7227,1h-5.6301l2.6479-5.0923c.2273.0552.4609.0923.7048.0923,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3-3,1.3457-3,3c0,.6787.2349,1.2979.6162,1.8013l-3.5034,6.7373c-.1611.3101-.1489.6816.0325.9805.1812.2983.5054.481.8547.481h7.2773c.3464.5952.9844,1,1.7227,1,1.1045,0,2-.8955,2-2s-.8955-2-2-2Zm-4-8c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1Z"}),(0,a.jsx)("path",{d:"m29.8872,26.5386l-4.041-7.771c.0986-.2363.1538-.4956.1538-.7676,0-1.1045-.8955-2-2-2s-2,.8955-2,2,.8955,2,2,2c.0757,0,.1477-.0142.2212-.0225l3.1316,6.0225h-4.5371c-.4141-1.1611-1.5137-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.302,0,2.4016-.8389,2.8157-2h6.1843c.3494,0,.6736-.1826.8547-.481.1814-.2988.1936-.6704.0325-.9805Zm-9.8872,1.4614c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),(0,a.jsx)("path",{d:"m21,8c-.2439,0-.4778.0371-.7048.0923l-3.408-6.5537c-.1721-.3311-.5298-.5386-.8872-.5386s-.7151.2075-.8872.5386l-3.8914,7.4839c-.0737-.0083-.1458-.0225-.2214-.0225-1.1045,0-2,.8955-2,2s.8955,2,2,2,2-.8955,2-2c0-.272-.0552-.5312-.1538-.7676l3.1538-6.0649,2.6162,5.0312c-.3813.5034-.6162,1.1226-.6162,1.8013,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3Zm0,4c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m31,17c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.3018.8384,2.4014,2,2.8154v2.6104l-11,6.4165-10.0154-5.8423,22.5193-13.1362c.3071-.1792.4961-.5083.4961-.8638s-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v3.1846c-1.1616.4141-2,1.5137-2,2.8154,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-1.3018-.8384-2.4014-2-2.8159v-2.6099l11-6.4165,10.0154,5.8423L3.4961,22.1362c-.3071.1792-.4961.5083-.4961.8638s.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l12-7c.3071-.1792.4961-.5083.4961-.8638v-3.1841c1.1616-.4146,2-1.5142,2-2.8159Zm-27-1c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm24,2c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 18H14V20H8z"}),(0,a.jsx)("path",{d:"M8 22H18V24H8z"}),(0,a.jsx)("path",{d:"M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM18,6v4H14V6ZM6,26V6h6v6h8V6h6l.0012,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,6c0-.5522.4477-1,1-1s1,.4478,1,1-.4478,1-1,1-1-.4476-1-1ZM11,7c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM30,4v12.0001h-2v-6.0001H4v18.0001h7.9999v2h-7.9999c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2ZM28,4H4v4h24v-4ZM25.58,22.4101l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM19.42,27.5901l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59ZM24.915,20.5771l-1.915-.577-2.915,9.423,1.915.577,2.915-9.423Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,6c0-.5522.4477-1,1-1s1,.4478,1,1-.4478,1-1,1-1-.4476-1-1ZM11,7c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM30,4v12.0001h-2v-6.0001H4v18h7.9999v2h-7.9999c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2ZM28,4H4v4h24v-4ZM31,27.0001c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-.2228.0283-.4384.0746-.6475l-2.0746-1.1977-2.0746,1.1977c.0463.209.0746.4247.0746.6475,0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3c.7037,0,1.343.2536,1.8551.6607l2.1449-1.2383v-1.6068c-1.1615-.4141-2-1.5137-2-2.8157,0-1.6543,1.3457-3,3-3s3,1.3457,3,3c0,1.3019-.8385,2.4016-2,2.8157v1.6067l2.1449,1.2383c.5121-.4071,1.1514-.6607,1.8551-.6607,1.6543,0,3,1.3457,3,3h0ZM19,27.0001c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1ZM22,19.0001c0,.5513.4482,1,1,1s1-.4487,1-1-.4482-1-1-1-1,.4487-1,1ZM29,27.0001c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,21H4a2.0021,2.0021,0,0,1-2-2V13a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,21ZM4,13v6H28V13Z"}),(0,a.jsx)("path",{d:"M6 15H20V17H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,22a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z"}),(0,a.jsx)("path",{d:"M16,26a10.0162,10.0162,0,0,1-7.4531-3.3325l1.49-1.334A8,8,0,1,0,16,8V6a10,10,0,0,1,0,20Z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 21 17.4 22.4 14.8 25 23 25 23 27 14.8 27 17.4 29.6 16 31 11 26z"}),(0,a.jsx)("path",{d:"M6.3 19H17.6V21H6.3z",transform:"rotate(-45 12 20)"}),(0,a.jsx)("path",{d:"M23,22h-2v-5c0-0.3,0.1-0.5,0.3-0.7l4.1-4.1c1.7-1.7,2.6-4,2.6-6.4V4h-1.9c-2.4,0-4.7,0.9-6.4,2.6l-4.1,4.1 C15.5,10.9,15.3,11,15,11H7.5l-2.6,3.3l5.3,0.8l-0.3,2l-7-1c-0.4-0.1-0.7-0.3-0.8-0.6s-0.1-0.7,0.1-1l4-5C6.4,9.1,6.7,9,7,9h7.6 l3.8-3.8C20.4,3.1,23.2,2,26.1,2H28c1.1,0,2,0.9,2,2v1.9c0,2.9-1.1,5.7-3.2,7.8L23,17.4V22z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27 25.5859 25 23.5859 25 21 23 21 23 24.4141 25.5859 27 27 25.5859z"}),(0,a.jsx)("path",{d:"m24,31c-3.8599,0-7-3.1401-7-7s3.1401-7,7-7,7,3.1401,7,7-3.1401,7-7,7Zm0-12c-2.7571,0-5,2.2429-5,5s2.2429,5,5,5,5-2.2429,5-5-2.2429-5-5-5Z"}),(0,a.jsx)("path",{d:"m28,15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10Z"}),(0,a.jsx)("circle",{cx:"9",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"23",cy:"13",r:"2"}),(0,a.jsx)("path",{d:"m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m31.5,23c-.8271,0-1.5-.6729-1.5-1.5v-1.5c0-1.1025-.8972-2-2-2h-2v2h2v1.5c0,.98.4072,1.8643,1.0581,2.5-.6509.6357-1.0581,1.52-1.0581,2.5v1.5h-2v2h2c1.1028,0,2-.8975,2-2v-1.5c0-.8271.6729-1.5,1.5-1.5h.5v-2h-.5Z"}),(0,a.jsx)("path",{d:"m16,20v1.5c0,.8271-.6729,1.5-1.5,1.5h-.5v2h.5c.8271,0,1.5.6729,1.5,1.5v1.5c0,1.1025.8972,2,2,2h2v-2h-2v-1.5c0-.98-.4072-1.8643-1.0581-2.5.6509-.6357,1.0581-1.52,1.0581-2.5v-1.5h2v-2h-2c-1.1028,0-2,.8975-2,2Z"}),(0,a.jsx)("path",{d:"m28,15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10Z"}),(0,a.jsx)("circle",{cx:"23",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"9",cy:"13",r:"2"}),(0,a.jsx)("path",{d:"m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 16 22 24 20.6 22.6 27.2 16 20.6 9.4 22 8z"}),(0,a.jsx)("path",{d:"M12 15H20V17H12z"}),(0,a.jsx)("path",{d:"M2 16 10 8 11.4 9.4 4.8 16 11.4 22.6 10 24z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m25,22.1421v-13.1421c0-2.2056-1.7944-4-4-4h-4.1719l2.5859-2.5859-1.4141-1.4141-5,5,5,5,1.4141-1.4141-2.5859-2.5859h4.1719c1.1028,0,2,.8975,2,2v13.1421c-1.7202.4473-3,1.9995-3,3.8579,0,2.2056,1.7944,4,4,4s4-1.7944,4-4c0-1.8584-1.2798-3.4106-3-3.8579Zm-1,5.8579c-1.1028,0-2-.8975-2-2s.8972-2,2-2,2,.8975,2,2-.8972,2-2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4,6c0,1.8584,1.2798,3.4106,3,3.8579v12.2842c-1.7202.447-3,1.9993-3,3.8579,0,2.2061,1.7944,4,4,4s4-1.7939,4-4c0-1.8586-1.2798-3.4109-3-3.8579v-12.2842c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4Zm6,20c0,1.1025-.897,2-2,2s-2-.8975-2-2c0-1.1025.897-2,2-2s2,.8975,2,2Zm0-20c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,27.1781l-2.59-2.59-1.41,1.4119,4,4,7-7-1.41-1.4119-5.59,5.59ZM14,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM22,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM12,28h-6c-1.103,0-2-.8975-2-2V6c0-1.103.897-2,2-2h20c1.1025,0,2,.897,2,2v11h-2V6H6v20h6v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6Zm0,2v3H4V8ZM4,24V13H28V24Z"}),(0,a.jsx)("path",{d:"M6 20H16V22H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,22H19a2.0023,2.0023,0,0,1-2-2V10a2.002,2.002,0,0,1,2-2h6v2H19V20h6Z"}),(0,a.jsx)("path",{d:"M13,8H9a2.002,2.002,0,0,0-2,2V20a2.0023,2.0023,0,0,0,2,2h1v2a2.0023,2.0023,0,0,0,2,2h2V24H12V22h1a2.0023,2.0023,0,0,0,2-2V10A2.002,2.002,0,0,0,13,8ZM9,20V10h4V20Z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,1C7.729,1,1,7.729,1,16s6.729,15,15,15,15-6.729,15-15S24.271,1,16,1Zm6.5825,20.5c-.5203-.8926-1.4771-1.5-2.5825-1.5-.1821,0-.3586.0225-.532.0537l-1.7258-3.0205c6.7866.2388,10.1216,1.8262,10.2571,2.4668-.0979.4624-1.8899,1.4141-5.4167,2Zm-2.5825.5c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1ZM3,16c0-.5435.0442-1.0762.1094-1.6025.8552.666,2.1555,1.1973,3.7239,1.6025-1.5684.4053-2.8687.9365-3.7239,1.6025-.0652-.5264-.1094-1.0591-.1094-1.6025Zm6.4175-5.4995c.5205.8921,1.4773,1.4995,2.5825,1.4995.1821,0,.3586-.0225.532-.0537l1.7258,3.0205c-6.8042-.2393-10.1387-1.8335-10.2581-2.4619.0862-.4609,1.8784-1.416,5.4177-2.0044Zm2.5825-.5005c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm13.167,6c1.5681-.4053,2.8684-.9365,3.7236-1.6025.0652.5264.1094,1.0591.1094,1.6025s-.0442,1.0762-.1094,1.6025c-.8552-.666-2.1555-1.1973-3.7236-1.6025ZM16,3c4.9019,0,9.1758,2.7285,11.3901,6.7451-2.2891-.9961-5.7993-1.5513-9.3901-1.6997v1.999c6.6108.2695,9.8655,1.8232,9.9993,2.4556-.1431.6763-3.8533,2.4062-11.4236,2.4917l-2.3118-4.0454c.4524-.5254.7361-1.2002.7361-1.9463,0-1.6543-1.3457-3-3-3-1.4956,0-2.7285,1.1035-2.9531,2.5371-1.7056.2837-3.2363.6841-4.4351,1.2051,2.2151-4.0146,6.4878-6.7422,11.3882-6.7422Zm0,26c-4.9019,0-9.1758-2.7285-11.3901-6.7451,2.2891.9961,5.7993,1.5513,9.3901,1.6997v-1.999c-6.6282-.2705-9.8823-1.8306-10.0002-2.4507.126-.6729,3.8357-2.4106,11.4246-2.4966l2.3118,4.0454c-.4524.5254-.7361,1.2002-.7361,1.9463,0,1.6543,1.3457,3,3,3,1.4956,0,2.7285-1.1035,2.9531-2.5371,1.7056-.2837,3.2363-.6841,4.4351-1.2051-2.2151,4.0146-6.4878,6.7422-11.3882,6.7422Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"20",cy:"4",r:"2"}),(0,a.jsx)("circle",{cx:"8",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"28",cy:"12",r:"2"}),(0,a.jsx)("circle",{cx:"11",cy:"7",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"24",r:"2"}),(0,a.jsx)("path",{d:"M30,3.4131,28.5859,2,4,26.585V2H2V28a2,2,0,0,0,2,2H30V28H5.4131Z"}),e)})},5576(e,t,r){r.d(t,{M4:()=>i,gX:()=>c});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31 24 27 24 27 20 25 20 25 24 21 24 21 26 25 26 25 30 27 30 27 26 31 26 31 24z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2H17V28H7V7h3v3H22V7h3v9h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,20A6,6,0,1,0,20,24.46V32l4-1.8936L28,32V24.46A5.98,5.98,0,0,0,30,20Zm-4,8.84-2-.9467L22,28.84V25.65a5.8877,5.8877,0,0,0,4,0ZM24,24a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,24Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,26A3.5,3.5,0,1,1,26,22.5,3.5041,3.5041,0,0,1,22.5,26Zm0-5A1.5,1.5,0,1,0,24,22.5,1.5017,1.5017,0,0,0,22.5,21Z"}),(0,a.jsx)("path",{d:"M22.5,31A8.5,8.5,0,1,1,31,22.5,8.51,8.51,0,0,1,22.5,31Zm0-15A6.5,6.5,0,1,0,29,22.5,6.5074,6.5074,0,0,0,22.5,16Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h5V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 27.18 19.41 24.59 18 26 22 30 30 22 28.59 20.59 22 27.18z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V18h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"24",cy:"21",r:"2"}),(0,a.jsx)("path",{d:"M24,31l-4.7788-6.4019A5.9354,5.9354,0,0,1,18,21a6,6,0,0,1,12,0,5.9407,5.9407,0,0,1-1.2246,3.6028Zm0-14a4.0045,4.0045,0,0,0-4,4,3.9572,3.9572,0,0,0,.82,2.3972L24,27.6567l3.1763-4.2548A3.9627,3.9627,0,0,0,28,21,4.0045,4.0045,0,0,0,24,17Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.41 25 30 21.41 28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h9V28H7V7h3v3H22V7h3V17h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v6h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 17 25.23 21.32 30 22 26.5 25.167 28 30 23 27.208 18 30 19.5 25.167 16 22 20.9 21.32 23 17z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v7h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5,32a3.4762,3.4762,0,0,1-2.4751-1.0254L21.897,26.8469a6.496,6.496,0,0,1-7.3482-8.9563l.5879-1.34L19.293,20.707a1.0234,1.0234,0,0,0,1.4135,0,.999.999,0,0,0,.0005-1.4141l-4.1562-4.1565,1.34-.5881a6.4965,6.4965,0,0,1,8.9566,7.3486l4.1274,4.1282A3.5,3.5,0,0,1,28.5,32Zm-6.03-7.4087,4.9693,4.9692a1.5352,1.5352,0,0,0,2.1211,0,1.4985,1.4985,0,0,0,0-2.1208v0l-4.9692-4.97.188-.5823A4.496,4.496,0,0,0,20.5,16q-.126,0-.25.0068l1.8716,1.8721a2.9992,2.9992,0,0,1,0,4.2424,3.0722,3.0722,0,0,1-4.2427-.0005l-1.8716-1.8715Q16,20.3741,16,20.5A4.4968,4.4968,0,0,0,21.8877,24.78Z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2.0058,2.0058,0,0,0-2-2H12a2.0058,2.0058,0,0,0-2,2V5H7A2.0058,2.0058,0,0,0,5,7V28a2.0058,2.0058,0,0,0,2,2h7V28H7V7h3v3H22V7h3v5h2V7A2.0058,2.0058,0,0,0,25,5ZM20,8H12V4h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22",cy:"24",r:"2"}),(0,a.jsx)("path",{fill:"none",d:"M22,28a4,4,0,1,1,4-4A4.0039,4.0039,0,0,1,22,28Zm0-6a2,2,0,1,0,2,2A2.0027,2.0027,0,0,0,22,22Z"}),(0,a.jsx)("path",{d:"M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M12,28H7V7h3v3H22V7h3v9h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h5ZM12,4h8V8H12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,4V6H8v8a8,8,0,0,0,16,0V6h4V4ZM22,14a6,6,0,0,1-12,0V6h5v8h2V6h5Z"}),(0,a.jsx)("path",{d:"M11 26H13V28H11z"}),(0,a.jsx)("path",{d:"M7 24H9V26H7z"}),(0,a.jsx)("path",{d:"M15 24H17V26H15z"}),(0,a.jsx)("path",{d:"M19 26H21V28H19z"}),(0,a.jsx)("path",{d:"M23 24H25V26H23z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.39,16.08,22.7,13.21,20.16,8.87l-.08-.12A2,2,0,0,0,18.52,8h-8a2,2,0,0,0-1.67.89L5.46,14H3a1,1,0,0,0-1,1v9a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V17A1,1,0,0,0,29.39,16.08ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm14,0a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86a4,4,0,0,0-7.72,0H12.86a4,4,0,0,0-7.72,0H4V16H6a1,1,0,0,0,.83-.45L10.54,10h8l2.63,4.5a1,1,0,0,0,.47.42L28,17.66Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 28H30V30H16z"}),(0,a.jsx)("path",{d:"M27,26h-8c-1.1028,0-2-.8972-2-2v-5c0-1.1028,.8972-2,2-2h8c1.1028,0,2,.8972,2,2v5c0,1.1028-.8972,2-2,2Zm-8-7v5h8v-5h-8Z"}),(0,a.jsx)("path",{d:"M15,23h-5c-1.1028,0-2-.8972-2-2v-4h2v4h5v2Z"}),(0,a.jsx)("path",{d:"M2 13H16V15H2z"}),(0,a.jsx)("path",{d:"M13,11H5c-1.1028,0-2-.8972-2-2V4c0-1.1028,.8972-2,2-2H13c1.1028,0,2,.8972,2,2v5c0,1.1028-.8972,2-2,2ZM5,4v5H13V4H5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,17.26V6A4,4,0,0,0,5,6V17.26a7,7,0,1,0,8,0ZM9,4a2,2,0,0,1,2,2v7H7V6A2,2,0,0,1,9,4ZM9,28a5,5,0,0,1-2.5-9.33l.5-.28V15h4v3.39l.5.28A5,5,0,0,1,9,28Z"}),(0,a.jsx)("path",{d:"M20 4H30V6H20z"}),(0,a.jsx)("path",{d:"M20 10H27V12H20z"}),(0,a.jsx)("path",{d:"M20 16H30V18H20z"}),(0,a.jsx)("path",{d:"M20 22H27V24H20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,18H24a2.0023,2.0023,0,0,1-2-2V6a2.002,2.002,0,0,1,2-2h6V6H24V16h6Z"}),(0,a.jsx)("circle",{cx:"18",cy:"4",r:"2"}),(0,a.jsx)("path",{d:"M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,27H17a2.0023,2.0023,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h9v2H17V25h9Z"}),(0,a.jsx)("path",{d:"M8,13a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,8,13ZM8,7a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,8,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 6 30 4 22 4 22 18 24 18 24 12 29 12 29 10 24 10 24 6 30 6z"}),(0,a.jsx)("circle",{cx:"18",cy:"4",r:"2"}),(0,a.jsx)("path",{d:"M10,20.1841V12H8v8.1841a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 11 26 9 15 9 15 27 17 27 17 19 25 19 25 17 17 17 17 11 26 11z"}),(0,a.jsx)("path",{d:"M8,13a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,8,13ZM8,7a2,2,0,1,0,2,2h0A2.0059,2.0059,0,0,0,8,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,30H22a2.0059,2.0059,0,0,1-2-2V21a2.0059,2.0059,0,0,1-2-2V13a2.9465,2.9465,0,0,1,3-3h6a2.9465,2.9465,0,0,1,3,3v6a2.0059,2.0059,0,0,1-2,2v7A2.0059,2.0059,0,0,1,26,30ZM21,12a.9448.9448,0,0,0-1,1v6h2v9h4V19h2V13a.9448.9448,0,0,0-1-1Z"}),(0,a.jsx)("path",{d:"M24,9a4,4,0,1,1,4-4h0A4.0118,4.0118,0,0,1,24,9Zm0-6a2,2,0,1,0,2,2h0a2.0059,2.0059,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M10,20.1839V12H8v8.1839a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.167 16.89 21.72 13 27.167 9.109 29.684 9.948 30.316 8.051 28 7.279 28 5 26 5 26 7.485 21 11.057 21 5.367 23.555 3.664 22.445 2 20 3.63 17.555 2 16.445 3.664 19 5.367 19 11.057 16 8.914 16 11.372 18.28 13 16 14.628 16 17.086 19 14.943 19 21.703 22.445 24 23.555 22.336 21 20.633 21 14.943 26 18.515 26 21 28 21 28 18.721 30.316 17.948 29.684 16.051 27.167 16.89z"}),(0,a.jsx)("path",{d:"M12,23a3,3,0,0,1-6,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 13H30V15H26z"}),(0,a.jsx)("path",{d:"M23.121 5.879H27.121V7.879H23.121z",transform:"rotate(-45 25.121 6.879)"}),(0,a.jsx)("path",{d:"M24.121 19.121H26.121V23.121H24.121z",transform:"rotate(-45 25.121 21.121)"}),(0,a.jsx)("path",{d:"M17 2H19V6H17z"}),(0,a.jsx)("path",{d:"M18,8a6.0365,6.0365,0,0,0-1,.09v2.0518A3.9567,3.9567,0,0,1,18,10a4,4,0,0,1,0,8v2A6,6,0,0,0,18,8Z"}),(0,a.jsx)("path",{d:"M10,20.1839V7H8V20.1839a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M9,30A6.9931,6.9931,0,0,1,4,18.1108V7A5,5,0,0,1,14,7V18.1108A6.9931,6.9931,0,0,1,9,30ZM9,4A3.0033,3.0033,0,0,0,6,7V18.9834l-.332.2983a5,5,0,1,0,6.664,0L12,18.9834V7A3.0033,3.0033,0,0,0,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,8H24v6h2V11.541A5.939,5.939,0,0,1,28,16a6.0039,6.0039,0,0,1-5.0945,5.9243A7.0273,7.0273,0,0,0,20,17.2617V6a4,4,0,0,0-8,0V17.2617a6.996,6.996,0,1,0,10.9292,6.68A7.9794,7.9794,0,0,0,27.2651,10H30ZM14,6a2,2,0,0,1,4,0v7H14Zm2,22a4.9965,4.9965,0,0,1-2.499-9.3252L14,18.3857V15h4v3.3857l.499.2891A4.9965,4.9965,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M2,10a8.04,8.04,0,0,0,2.7349,6H2v2H8V12H6v2.4592A5.94,5.94,0,0,1,4,10a6.0066,6.0066,0,0,1,6-6V2A8.0092,8.0092,0,0,0,2,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 10H27V12H20z"}),(0,a.jsx)("path",{d:"M20 16H30V18H20z"}),(0,a.jsx)("path",{d:"M20 22H27V24H20z"}),(0,a.jsx)("path",{d:"M10,20.1839V7H8V20.1839a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M30,4H12.9744A4.9829,4.9829,0,0,0,4,7V18.1108a7,7,0,1,0,10,0V7a5.0019,5.0019,0,0,0-.1011-1H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 4H27V6H20z"}),(0,a.jsx)("path",{d:"M20 10H30V12H20z"}),(0,a.jsx)("path",{d:"M20 16H27V18H20z"}),(0,a.jsx)("path",{d:"M12,23a3,3,0,0,1-6,0Z"}),(0,a.jsx)("path",{d:"M30,22H15.9192A7.0107,7.0107,0,0,0,14,18.1108V7A5,5,0,0,0,4,7V18.1108A6.9946,6.9946,0,1,0,15.92,24H30ZM9,28a4.9933,4.9933,0,0,1-3.332-8.7183L6,18.9834V7a3,3,0,0,1,6,0V18.9834l.332.2983A4.9933,4.9933,0,0,1,9,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,9a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,9V7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,4a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,7a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,4a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,7H13V6A4,4,0,0,0,5,6V17.2617A7.0126,7.0126,0,1,0,13.8735,18H14a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,30,18V16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,26,13a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,22,16a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,18,13a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,14,16H13V9ZM7,6a2,2,0,0,1,4,0v6H7ZM9,28a4.9965,4.9965,0,0,1-2.499-9.3252L7,18.3857V14h4v4.3857l.499.2891A4.9965,4.9965,0,0,1,9,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,6v4H6V6H26m0-2H6A2,2,0,0,0,4,6v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M10,16V26H6V16h4m0-2H6a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M26,16V26H16V16H26m0-2H16a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V16a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("rect",{width:"4",height:"4",x:"20",y:"2",rx:"2"}),(0,a.jsx)("path",{d:"M11,16a1,1,0,0,1-.707-1.707l7-7a1,1,0,1,1,1.414,1.414l-7,7A.9962.9962,0,0,1,11,16Z"}),(0,a.jsx)("path",{d:"M23.707,24.293a8.3948,8.3948,0,0,0-4.72-2.209c.1992-.1641.3931-.3364.5777-.521a9.2447,9.2447,0,0,0,1.7334-9.9141l-1.8768.6973c1.11,2.9805.6346,5.8975-1.2722,7.8022a6.6964,6.6964,0,0,1-5.561,1.8047,9.7746,9.7746,0,0,1-5.771-2.7856c-2.9727-2.97-4.0759-8.2276-.9805-11.32,1.9068-1.9053,4.8267-2.38,7.8094-1.271l.6987-1.875C10.6616,3.333,6.8591,3.9961,4.4207,6.4331c-3.9427,3.9385-2.6761,10.4956.98,14.1489a11.8136,11.8136,0,0,0,6.9766,3.36c.21.022.4153.0234.6223.0332V24h4.9968a6.8463,6.8463,0,0,1,4.2962,1.707L26.5859,30,28,28.5859Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,4a8.9812,8.9812,0,0,0-8.1687,12.7549L2,25.5859,3.4141,27l8.4873-8.4873a9.0408,9.0408,0,0,0,1.5859,1.5859L10,23.5859,11.4141,25l3.8313-3.8311A8.9959,8.9959,0,1,0,19,4Zm6.9058,7.9058a7.005,7.005,0,0,1-5.8116-5.8116A7.005,7.005,0,0,1,25.9058,11.9058ZM12.0942,14.0942a7.005,7.005,0,0,1,5.8116,5.8116A7.005,7.005,0,0,1,12.0942,14.0942ZM19.93,19.9307a9.01,9.01,0,0,0-7.8611-7.8614,7.004,7.004,0,0,1,6-6,9.01,9.01,0,0,0,7.8611,7.8614A7.004,7.004,0,0,1,19.93,19.9307Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,26H25V24h3V8H25V6h3a2.0023,2.0023,0,0,1,2,2V24A2.0027,2.0027,0,0,1,28,26Z"}),(0,a.jsx)("circle",{cx:"23",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"9",cy:"16",r:"2"}),(0,a.jsx)("path",{d:"M7,26H4a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,4,6H7V8H4V24H7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,25h-3v-2h3V7h-3v-2h3c1.1025,0,2,.897,2,2v16c0,1.1025-.8975,2-2,2Z"}),(0,a.jsx)("circle",{cx:"23",cy:"15",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"16",cy:"15",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"9",cy:"15",r:"2",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4,17V7h3v-2h-3c-1.103,0-2,.897-2,2v10h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,2v4H6V6ZM6,26V12H26V26Z",transform:"translate(0 .01)"}),(0,a.jsx)("path",{d:"M10.76 16.18 13.58 19.01 10.76 21.84 12.17 23.25 16.41 19.01 12.17 14.77 10.76 16.18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 21H16V23H10z"}),(0,a.jsx)("path",{d:"M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,2v4H6V6ZM6,26V12H26V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 9.2 20.4 6.6 19 8 23 12 30 5 28.6 3.6z"}),(0,a.jsx)("path",{d:"M12 5.4 10.6 4 8 6.6 5.4 4 4 5.4 6.6 8 4 10.6 5.4 12 8 9.4 10.6 12 12 10.6 9.4 8z"}),(0,a.jsx)("path",{d:"M12 21.4 10.6 20 8 22.6 5.4 20 4 21.4 6.6 24 4 26.6 5.4 28 8 25.4 10.6 28 12 26.6 9.4 24z"}),(0,a.jsx)("path",{d:"M17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 6H26V8H6z"}),(0,a.jsx)("path",{d:"M10 12H22V14H10z"}),(0,a.jsx)("path",{d:"M6 18H26V20H6z"}),(0,a.jsx)("path",{d:"M10 24H22V26H10z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 6H26V8H6z"}),(0,a.jsx)("path",{d:"M6 12H26V14H6z"}),(0,a.jsx)("path",{d:"M6 18H26V20H6z"}),(0,a.jsx)("path",{d:"M6 24H26V26H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12 6H26V8H12z"}),(0,a.jsx)("path",{d:"M12 12H22V14H12z"}),(0,a.jsx)("path",{d:"M12 18H26V20H12z"}),(0,a.jsx)("path",{d:"M12 24H22V26H12z"}),(0,a.jsx)("path",{d:"M6 4H8V28H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,4H9V6h5V8H10a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V6A2.0023,2.0023,0,0,0,14,4Zm0,8H10V10h4Z"}),(0,a.jsx)("path",{d:"M22 26 22 18 20 18 20 19 18 19 18 21 20 21 20 26 18 26 18 28 24 28 24 26 22 26z"}),(0,a.jsx)("path",{d:"M2 2H4V16H2z"}),(0,a.jsx)("path",{d:"M28 16H30V30H28z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 6H20V8H6z"}),(0,a.jsx)("path",{d:"M10 12H20V14H10z"}),(0,a.jsx)("path",{d:"M6 18H20V20H6z"}),(0,a.jsx)("path",{d:"M10 24H20V26H10z"}),(0,a.jsx)("path",{d:"M24 4H26V28H24z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M1 8 1 10 7 10 7 24 9 24 9 10 15 10 15 8 1 8z"}),(0,a.jsx)("path",{d:"M17 8 17 10 23 10 23 24 25 24 25 10 31 10 31 8 17 8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.25,25H9V7h8.5a5.25,5.25,0,0,1,4,8.65A5.25,5.25,0,0,1,18.25,25ZM12,22h6.23a2.25,2.25,0,1,0,0-4.5H12Zm0-7.5h5.5a2.25,2.25,0,1,0,0-4.5H12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.4384,16.5715l-7.985-7.9856a2.0014,2.0014,0,0,0-2.8291,0l-5.3584,5.3584L9,2H7L2,16H4l.999-3h6l.8035,2.4077L4.5858,22.6244a2,2,0,0,0,0,2.8282L9.1316,30h9.5908l10.716-10.717A1.9173,1.9173,0,0,0,29.4384,16.5715ZM5.6653,11l2.331-7,2.3355,7Zm12.229,17H9.96L6,24.0381l6.3123-6.3115L20.24,25.6538Zm3.76-3.76-7.9275-7.9272L20.0393,10l7.9268,7.9272Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,21h2L17,4H15L8,21h2l1.61-4h8.74Zm-9.57-6,3.44-8.37h.26L19.54,15Z"}),(0,a.jsx)("path",{d:"M6 24H26V28H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,22.14V9.86A4,4,0,1,0,22.14,5H9.86A4,4,0,1,0,5,9.86V22.14A4,4,0,1,0,9.86,27H22.14A4,4,0,1,0,27,22.14ZM26,4a2,2,0,1,1-2,2A2,2,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2,2,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2,2,0,0,1,6,28Zm16.14-3H9.86A4,4,0,0,0,7,22.14V9.86A4,4,0,0,0,9.86,7H22.14A4,4,0,0,0,25,9.86V22.14A4,4,0,0,0,22.14,25ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),(0,a.jsx)("path",{d:"M21 11 11 11 11 13 15 13 15 22 17 22 17 13 21 13 21 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H28V30H4z"}),(0,a.jsx)("path",{d:"M26,14.54a1,1,0,0,0-.25-.69L17.17,4.33A1.09,1.09,0,0,0,17,4.2V2H15V5L4.32,14.74a1,1,0,0,0-.06,1.41l8.57,9.52a1,1,0,0,0,.69.33h.05a1,1,0,0,0,.68-.26L24,16.8V21a1,1,0,0,0,2,0V14.57S26,14.55,26,14.54Zm-12.35,9-7.23-8L15,7.67V12h2V7.13l6.59,7.33Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,12H20v2h5a1.0008,1.0008,0,0,1,1,1v2H22a3.0033,3.0033,0,0,0-3,3v1a3.0033,3.0033,0,0,0,3,3h6V15A3.0033,3.0033,0,0,0,25,12ZM22,22a1.0008,1.0008,0,0,1-1-1V20a1.0008,1.0008,0,0,1,1-1h4v3Z"}),(0,a.jsx)("path",{d:"M16,24h2L12,7H10L4,24H6l1.6936-5h6.6135ZM8.3711,17l2.4966-7.3711.2668.0005L13.63,17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 7 2 9 9 9 9 25 11 25 11 9 18 9 18 7 2 7z"}),(0,a.jsx)("path",{d:"M30 11.076 29.256 9.219 26 10.522 26 7 24 7 24 10.523 20.744 9.22 20 11.077 23.417 12.444 20.9 15.8 22.5 17 25 13.667 27.5 17 29.1 15.8 26.583 12.443 30 11.076z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,15H5a3,3,0,0,1-3-3V10A3,3,0,0,1,5,7h5V5A1,1,0,0,0,9,4H3V2H9a3,3,0,0,1,3,3ZM5,9a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1h5V9Z"}),(0,a.jsx)("path",{d:"M20,23v2a1,1,0,0,0,1,1h5V22H21A1,1,0,0,0,20,23Z"}),(0,a.jsx)("path",{d:"M2,30H30V2Zm26-2H21a3,3,0,0,1-3-3V23a3,3,0,0,1,3-3h5V18a1,1,0,0,0-1-1H19V15h6a3,3,0,0,1,3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 6H28V8H14z"}),(0,a.jsx)("path",{d:"M14 12H28V14H14z"}),(0,a.jsx)("path",{d:"M7 18H28V20H7z"}),(0,a.jsx)("path",{d:"M7 24H28V26H7z"}),(0,a.jsx)("path",{d:"M4 13.59 7.29 10 4 6.41 5.42 5 10.04 10 5.42 15 4 13.59z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 6H12V8H2z"}),(0,a.jsx)("path",{d:"M5 12H12V14H5z"}),(0,a.jsx)("path",{d:"M2 18H12V20H2z"}),(0,a.jsx)("path",{d:"M5 24H12V26H5z"}),(0,a.jsx)("path",{d:"M16 4H18V28H16z"}),(0,a.jsx)("path",{d:"M28.15 23.5 29.56 22.12 23.27 16 29.56 9.88 28.15 8.5 20.44 16 28.15 23.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 6H30V8H20z"}),(0,a.jsx)("path",{d:"M20 12H27V14H20z"}),(0,a.jsx)("path",{d:"M20 18H30V20H20z"}),(0,a.jsx)("path",{d:"M20 24H27V26H20z"}),(0,a.jsx)("path",{d:"M14 4H16V28H14z"}),(0,a.jsx)("path",{d:"M3.85 22.5 2.44 21.12 8.73 15 2.44 8.88 3.85 7.5 11.56 15 3.85 22.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 9 25 7 12 7 12 9 17.14 9 12.77 23 7 23 7 25 20 25 20 23 14.86 23 19.23 9 25 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 24 18.83 24 21.12 21.71 19.71 20.29 15 25 19.71 29.71 21.12 28.29 18.83 26 30 26 30 24z"}),(0,a.jsx)("path",{d:"M14 21 20 4 18 4 12 21 14 21z"}),(0,a.jsx)("path",{d:"M13 4 9 16 5 4 3 4 8 18 10 18 15 4 13 4z"}),(0,a.jsx)("path",{d:"M28,18h2L25,4H23L18,18h2l1-3h6Zm-6.33-5L24,6l2.33,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 13H30V15H14z"}),(0,a.jsx)("path",{d:"M15 28H30V30H15z"}),(0,a.jsx)("path",{d:"M25.85,27H28L23.64,17H21.36L17,27h2.15l.8-2h5.1Zm-5.1-4,1.75-4.37L24.25,23Z"}),(0,a.jsx)("path",{d:"M25.85,12H28L23.64,2H21.36L17,12h2.15l.8-2h5.1Zm-5.1-4L22.5,3.63,24.25,8Z"}),(0,a.jsx)("path",{d:"M6 15.83 8.58 18.41 10 17 6 13 2 17 3.41 18.42 6 15.83z"}),(0,a.jsx)("path",{d:"M6 27.17 3.42 24.59 2 26 6 30 10 26 8.59 24.58 6 27.17z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 6H30V8H17z"}),(0,a.jsx)("path",{d:"M17 12H27V14H17z"}),(0,a.jsx)("path",{d:"M17 18H30V20H17z"}),(0,a.jsx)("path",{d:"M17 24H27V26H17z"}),(0,a.jsx)("path",{d:"M11.59 13.41 8 9.83 8 9.83 4.41 13.42 3 12 8 7 13 12 11.59 13.41z"}),(0,a.jsx)("path",{d:"M11.59 18.59 8 22.17 8 22.17 4.41 18.58 3 20 8 25 13 20 11.59 18.59z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 24H20V26H6z"}),(0,a.jsx)("path",{d:"M6 18H26V20H6z"}),(0,a.jsx)("path",{d:"M6 12H26V14H6z"}),(0,a.jsx)("path",{d:"M6 6H26V8H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.5859,14.4141,24.1719,18H6V8H4V18a2.0024,2.0024,0,0,0,2,2H24.1719L20.586,23.5859,22,25l6-6-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 5 30 8 22 8 22 26 19 26 19 8 11 8 11 5 30 5z"}),(0,a.jsx)("path",{d:"M7 26 7 14 2 14 2 12 14 12 14 14 9 14 9 26 7 26z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,27H21a3,3,0,0,1-3-3V22a3,3,0,0,1,3-3h5V17a1,1,0,0,0-1-1H19V14h6a3,3,0,0,1,3,3Zm-7-6a1,1,0,0,0-1,1v2a1,1,0,0,0,1,1h5V21Z"}),(0,a.jsx)("path",{d:"M13,7h3V5H13a4,4,0,0,0-3,1.38A4,4,0,0,0,7,5H4V7H7A2,2,0,0,1,9,9v5H5v2H9v7a2,2,0,0,1-2,2H4v2H7a4,4,0,0,0,3-1.38A4,4,0,0,0,13,27h3V25H13a2,2,0,0,1-2-2V16h4V14H11V9A2,2,0,0,1,13,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 18H20V20H6z"}),(0,a.jsx)("path",{d:"M6 12H26V14H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 27 23 15 18 15 18 13 30 13 30 15 25 15 25 27 23 27z"}),(0,a.jsx)("path",{d:"M11 27 11 8 2 8 2 6 22 6 22 8 13 8 13 27 11 27z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,15H17.9563c-.4522-.1237-.9037-.2324-1.3381-.3352-2.8077-.6641-4.396-1.1506-4.396-3.4231a2.8684,2.8684,0,0,1,.7866-2.145,4.7888,4.7888,0,0,1,3.0137-1.09c2.8291-.07,4.1347.8894,5.2011,2.35l1.6153-1.1792a7.4727,7.4727,0,0,0-6.83-3.1706,6.7726,6.7726,0,0,0-4.4,1.6611,4.8274,4.8274,0,0,0-1.3862,3.5735A4.3723,4.3723,0,0,0,11.9573,15H4v2H17.6519c1.9668.57,3.1432,1.3123,3.1733,3.3579a3.119,3.119,0,0,1-.8623,2.3931A5.8241,5.8241,0,0,1,16.2432,24a6.6344,6.6344,0,0,1-5.1451-2.6912L9.5649,22.593A8.5262,8.5262,0,0,0,16.2119,26c.0088-.0012.042,0,.1,0A7.67,7.67,0,0,0,21.36,24.1812a5.0779,5.0779,0,0,0,1.4648-3.8531A4.952,4.952,0,0,0,21.6753,17H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 25 20 25 20 19 24 19 24 17 20 17 20 15 26 15 26 21 22 21 22 23 26 23 26 25z"}),(0,a.jsx)("path",{d:"M5 7 5 9 12 9 12 25 14 25 14 9 21 9 21 7 5 7z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29 17 23 17 23 11 27 11 27 9 23 9 23 7 29 7 29 13 25 13 25 15 29 15 29 17z"}),(0,a.jsx)("path",{d:"M4 7 4 9 11 9 11 25 13 25 13 9 20 9 20 7 4 7z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.29 19.29 23.88 20.71 26.17 23 5.83 23 8.12 20.71 6.71 19.29 2 24 6.71 28.71 8.12 27.29 5.83 25 26.17 25 23.88 27.29 25.29 28.71 30 24 25.29 19.29z"}),(0,a.jsx)("path",{d:"M26,17h2L23,3H21L16,17h2l1-3h6Zm-6.33-5L22,5l2.33,7Z"}),(0,a.jsx)("path",{d:"M14 3 10 15 6 3 4 3 9 17 11 17 16 3 14 3z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H28V28H4z"}),(0,a.jsx)("path",{d:"M16,23a7,7,0,0,1-7-7V5h2V16a5,5,0,0,0,10,0V5h2V16A7,7,0,0,1,16,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 28H30V30H16z"}),(0,a.jsx)("path",{d:"M16 23H30V25H16z"}),(0,a.jsx)("path",{d:"M10.8458,30H13L8.64,20H6.36L2,30H4.1542l.8-2h5.0916ZM5.7541,26,7.5,21.6347,9.2459,26Z"}),(0,a.jsx)("path",{d:"M2 15H30V17H2z"}),(0,a.jsx)("path",{d:"M16 7H30V9H16z"}),(0,a.jsx)("path",{d:"M16 2H30V4H16z"}),(0,a.jsx)("path",{d:"M10.8458,12H13L8.64,2H6.36L2,12H4.1542l.8-2h5.0916ZM5.7541,8,7.5,3.6347,9.2459,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 23H12V25H4z"}),(0,a.jsx)("path",{d:"M24.5232,14H4v2H24.5a3.5,3.5,0,0,1,0,7H18.8281l2.586-2.5859L20,19l-5,5,5,5,1.4141-1.4141L18.8281,25H24.533a5.5,5.5,0,0,0-.01-11Z"}),(0,a.jsx)("path",{d:"M4 5H28V7H4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.537,13.76,26.24,10.463a1.5862,1.5862,0,0,0-2.24,0L10,24.4674V30h5.5326L29.537,16a1.5862,1.5862,0,0,0,0-2.24ZM14.7042,28H12V25.2958l9.4409-9.4409,2.7042,2.7042ZM25.5591,17.145,22.855,14.4409l2.2672-2.2672,2.7042,2.7042Z"}),(0,a.jsx)("path",{d:"M11 17 13 17 13 10 16 10 16 8 8 8 8 10 11 10 11 17z"}),(0,a.jsx)("path",{d:"M8,20H4V4H20V8h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.7061,27.585a5.2615,5.2615,0,0,1-3.7227-8.9834l1.415,1.414a3.2638,3.2638,0,1,0,4.6153,4.6162l6.03-6.03a3.264,3.264,0,0,0-4.6162-4.6158l-1.414-1.414a5.2637,5.2637,0,0,1,7.4443,7.4438l-6.03,6.03A5.2461,5.2461,0,0,1,18.7061,27.585Z"}),(0,a.jsx)("path",{d:"M10.2642,29.9971A5.2619,5.2619,0,0,1,6.542,21.0137l6.03-6.03a5.2636,5.2636,0,1,1,7.4438,7.4438l-1.414-1.414a3.2639,3.2639,0,1,0-4.6158-4.6158l-6.03,6.03a3.264,3.264,0,0,0,4.6157,4.6162l1.414,1.4141A5.2452,5.2452,0,0,1,10.2642,29.9971Z"}),(0,a.jsx)("path",{d:"M2 10H10V12H2z"}),(0,a.jsx)("path",{d:"M2 6H14V8H2z"}),(0,a.jsx)("path",{d:"M2 2H14V4H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 10H16V12H8z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 2H20V4H8z"}),(0,a.jsx)("path",{d:"M4.7111,28l5.6312-9.9961,7.4341,6.49A2,2,0,0,0,20.86,23.96l6.9707-10.4034-1.6622-1.1132-7,10.4472-.07.1035-7.4345-6.4907a2.0032,2.0032,0,0,0-3.0806.5308L4,25.1826V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 28H26V30H18z"}),(0,a.jsx)("path",{d:"M18 24H30V26H18z"}),(0,a.jsx)("path",{d:"M18 20H30V22H18z"}),(0,a.jsx)("path",{d:"M16.001 26.473 16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.001 26.473 16 26.473 4.284 12.955 9.5 6 22.5 6 27.716 12.955 24.476 16.692 25.989 18.002 30.284 13.045 23.5 4 8.5 4 1.716 13.045 14.488 27.782 16.001 26.473z"}),(0,a.jsx)("path",{d:"M20 19 27 24 20 29 20 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,25a6.9908,6.9908,0,0,1-5.833-3.1287l1.666-1.1074a5.0007,5.0007,0,0,0,8.334,0l1.666,1.1074A6.9908,6.9908,0,0,1,20,25Z"}),(0,a.jsx)("path",{d:"M24,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,24,14Z"}),(0,a.jsx)("path",{d:"M16,14a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,16,14Z"}),(0,a.jsx)("path",{d:"M28,8H22V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V14a10.01,10.01,0,0,0,8.8027,9.9214A9.9989,9.9989,0,0,0,30,20V10A2.0023,2.0023,0,0,0,28,8ZM4,14V4H20V8H12a2.0023,2.0023,0,0,0-2,2V20a9.9628,9.9628,0,0,0,.168,1.78A8.0081,8.0081,0,0,1,4,14Zm24,6a8,8,0,0,1-16,0V10H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M7 5.828 7 24 9 24 9 5.828 12.586 9.414 14 8 8 2 2 8 3.414 9.414 7 5.828z"}),(0,a.jsx)("path",{d:"M23 5.828 23 24 25 24 25 5.828 28.586 9.414 30 8 24 2 18 8 19.414 9.414 23 5.828z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM6,6H26V16H24v2h2v2H24v2h2v2H24v2H22V24H20v2H18V24H16v2H14V24H12v2H10V24H8v2H6Z"}),(0,a.jsx)("path",{d:"M8 20H10V22H8z"}),(0,a.jsx)("path",{d:"M12 20H14V22H12z"}),(0,a.jsx)("path",{d:"M16 20H18V22H16z"}),(0,a.jsx)("path",{d:"M20 20H22V22H20z"}),(0,a.jsx)("path",{d:"M8 16H10V18H8z"}),(0,a.jsx)("path",{d:"M16 16H18V18H16z"}),(0,a.jsx)("path",{d:"M20 16H22V18H20z"}),(0,a.jsx)("path",{d:"M20 12H22V14H20z"}),(0,a.jsx)("path",{d:"M20 8H22V10H20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,30H4a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,30ZM4,24v4H8V24Z"}),(0,a.jsx)("path",{d:"M18,30H14a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,30H24a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,20H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H28a2,2,0,0,1,2,2V18A2,2,0,0,1,28,20ZM4,4V18H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,30H4a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,30ZM4,24v4H8V24Z"}),(0,a.jsx)("path",{d:"M18,30H14a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,30H24a2,2,0,0,1-2-2V24a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M8,20H4a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2H8a2,2,0,0,1,2,2v4A2,2,0,0,1,8,20ZM4,14v4H8V14Z"}),(0,a.jsx)("path",{d:"M18,20H14a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,20Zm-4-6v4h4V14Z"}),(0,a.jsx)("path",{d:"M28,20H24a2,2,0,0,1-2-2V14a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v4A2,2,0,0,1,28,20Zm-4-6v4h4V14Z"}),(0,a.jsx)("path",{d:"M8,10H4A2,2,0,0,1,2,8V4A2,2,0,0,1,4,2H8a2,2,0,0,1,2,2V8A2,2,0,0,1,8,10ZM4,4V8H8V4Z"}),(0,a.jsx)("path",{d:"M18,10H14a2,2,0,0,1-2-2V4a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V8A2,2,0,0,1,18,10ZM14,4V8h4V4Z"}),(0,a.jsx)("path",{d:"M28,10H24a2,2,0,0,1-2-2V4a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2V8A2,2,0,0,1,28,10ZM24,4V8h4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,12H4a2.0023,2.0023,0,0,0-2,2V28a2.002,2.002,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V14A2.0027,2.0027,0,0,0,28,12ZM20,28H12V27a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Zm8,0H22V27a3.0033,3.0033,0,0,0-3-3H13a3.0033,3.0033,0,0,0-3,3v1H4V14H28.002Z"}),(0,a.jsx)("path",{d:"M16,23a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,16,23Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,16,17Z"}),(0,a.jsx)("path",{d:"M30,4V8a2.0027,2.0027,0,0,1-2,2H24a2.0027,2.0027,0,0,1-2-2V4a2.0027,2.0027,0,0,1,2-2h4A2.0027,2.0027,0,0,1,30,4ZM28,8l.002-4H24V8Z"}),(0,a.jsx)("path",{d:"M20,4V8a2.0027,2.0027,0,0,1-2,2H14a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h4A2.0027,2.0027,0,0,1,20,4ZM18,8l.002-4H14V8Z"}),(0,a.jsx)("path",{d:"M10,4V8a2.0023,2.0023,0,0,1-2,2H4A2.0023,2.0023,0,0,1,2,8V4A2.0023,2.0023,0,0,1,4,2H8A2.0023,2.0023,0,0,1,10,4ZM8,8l.0015-4H4V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,16V9a7.0078,7.0078,0,0,0-7-7H2V16H8.4648l3.5774,5.3662.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H17a3.0033,3.0033,0,0,0,3-3V20h6A4.0045,4.0045,0,0,0,30,16ZM8,14H4V4H8Zm20,2a2.0025,2.0025,0,0,1-2,2H18v8a1.0008,1.0008,0,0,1-1,1H14.8672l-.9094-6.3662L10,14.6973V4H23a5.0057,5.0057,0,0,1,5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 2H7V16H2z"}),(0,a.jsx)("path",{d:"M23,2H9V16.8027l3.0422,4.5635.8453,5.9165A2.0094,2.0094,0,0,0,14.8672,29H15a3.0033,3.0033,0,0,0,3-3V20h8a4.0045,4.0045,0,0,0,4-4V9A7.0078,7.0078,0,0,0,23,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,12H20V6a3.0033,3.0033,0,0,0-3-3H14.8672a2.0094,2.0094,0,0,0-1.98,1.7173l-.8453,5.9165L8.4648,16H2V30H23a7.0078,7.0078,0,0,0,7-7V16A4.0045,4.0045,0,0,0,26,12ZM8,28H4V18H8Zm20-5a5.0057,5.0057,0,0,1-5,5H10V17.3027l3.9578-5.9365L14.8672,5H17a1.0008,1.0008,0,0,1,1,1v8h8a2.0025,2.0025,0,0,1,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 16H7V30H2z"}),(0,a.jsx)("path",{d:"M23,30H9V15.1973l3.0422-4.5635.8453-5.9165A2.0094,2.0094,0,0,1,14.8672,3H15a3.0033,3.0033,0,0,1,3,3v6h8a4.0045,4.0045,0,0,1,4,4v7A7.0078,7.0078,0,0,1,23,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.7637,13.9999h-5.7637l-.0024-4.4316c0-2.1011-1.2324-3.5684-2.9976-3.5684h-1c-1.5273,0-1.7539,1.5273-1.8755,2.3477-.0225.1509-.6826,4.8052-.6826,4.8052l-2.0431,3.8472H2v13h16.3325c3.6763,0,6.6675-2.9912,6.6675-6.6675v-5.103c0-2.3369-1.8989-4.2295-4.2363-4.2295h0ZM4,27.9999v-9h1.9998l-.0017,9h-1.9981ZM23,23.3324c0,2.5737-2.0938,4.6675-4.6675,4.6675h-10.3325v-9.751l2.3735-4.4692s.7983-5.6035.8433-5.7798h.7832c.9697,0,.9976,1.4077.9976,1.5684l.0024,6.4316h7.7637c1.2344,0,2.2363.9951,2.2363,2.2295v5.103ZM31,13.2295v5.103c0,2.321-1.194,4.3667-2.9983,5.5613l-1.0042-1.7393c1.2073-.8446,2.0024-2.2402,2.0024-3.8221v-5.103c0-1.2344-1.0019-2.2295-2.2363-2.2295h-7.7637l-.0024-6.4315c0-.1608-.0279-1.5685-.9976-1.5685h-.7832c-.0174.0681-.1475.948-.3002,2.0001h-2.0273c.1234-.8691.2266-1.5944.2352-1.6523.1216-.8206.3482-2.3478,1.8755-2.3478h1c1.7652,0,2.9976,1.4673,2.9976,3.5685l.0024,4.4315h5.7637c2.3374.0001,4.2363,1.8927,4.2363,4.2296Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,13.2295v5.103c0,2.7286-1.6495,5.0769-4.0023,6.1077v-8.2107c0-2.3369-2.1663-4.2478-4.2363-4.2295h-5.7637s-.0024-3.4316-.0024-3.4316c-.0933-2.0102-1.1168-3.4102-2.1021-3.5719.0672-.4727.2256-1.6102.2313-1.6488.1216-.8206.3482-2.3478,1.8755-2.3478h1c1.7652,0,2.9976,1.4673,2.9976,3.5685l.0024,4.4315h5.7637c2.3374.0001,4.2363,1.8927,4.2363,4.2296ZM20.7614,14h0s-5.7637-.0001-5.7637-.0001l-.0024-4.4315c0-2.1012-1.2324-3.5685-2.9976-3.5685h-1c-1.5273,0-1.7539,1.5272-1.8755,2.3478-.0225.1509-.6826,4.8052-.6826,4.8052l-1.4423,2.7158-.0019,14.1313h11.3348c3.6763,0,6.6675-2.9912,6.6675-6.6675v-5.103c0-2.3369-1.8989-4.2295-4.2363-4.2295ZM4.9951,30l.0026-13H1.9977v13s2.9974,0,2.9974,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z"}),(0,a.jsx)("path",{d:"M15.87 30.5 14.13 29.5 17.28 24 11.28 24 16.13 15.5 17.87 16.5 14.72 22 20.72 22 15.87 30.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.338 30 11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z"}),(0,a.jsx)("path",{d:"M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11Zm-4.0732,3.4893a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z"}),(0,a.jsx)("path",{d:"M26.732 16.233H29.732V18.233H26.732z",transform:"rotate(225 28.232 17.233)"}),(0,a.jsx)("path",{d:"M29 10H32V12H29z"}),(0,a.jsx)("path",{d:"M26.732 3.768H29.732V5.768H26.732z",transform:"rotate(-45 28.232 4.768)"}),(0,a.jsx)("path",{d:"M20 0H22V3H20z"}),(0,a.jsx)("path",{d:"M12.268 3.768H15.268V5.768H12.268z",transform:"rotate(225 13.768 4.768)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.338 30 11.602 29 13.889 25 10 25 13.993 18 15.73 19 13.446 23 17.337 23 13.338 30z"}),(0,a.jsx)("path",{d:"M29.844,13.0347a1.52,1.52,0,0,0-1.231-.8658,5.3562,5.3562,0,0,1-3.4094-1.7158A6.4652,6.4652,0,0,1,23.9187,4.06a1.6039,1.6039,0,0,0-.3-1.5459,1.4547,1.4547,0,0,0-1.3591-.4922l-.0191.0039a7.8544,7.8544,0,0,0-6.1054,6.48A7.3725,7.3725,0,0,0,13.5,8a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,25V23a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,23v2a5.9549,5.9549,0,0,0,5.88-7.1455,7.502,7.502,0,0,0,4.8669-3.3A1.537,1.537,0,0,0,29.844,13.0347Zm-5.6926,2.9179a5.9658,5.9658,0,0,0-3.502-2.7085A7.5084,7.5084,0,0,0,18.0288,9.55a6.0085,6.0085,0,0,1,3.77-5.3335,8.4582,8.4582,0,0,0,1.9392,7.5967A7.4037,7.4037,0,0,0,27.64,14.041,5.4419,5.4419,0,0,1,24.1514,15.9526Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7887.8947l-2,4A.9981.9981,0,0,1,21,30Z"}),(0,a.jsx)("path",{d:"M9,32a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7887.8947l-2,4A.9981.9981,0,0,1,9,32Z"}),(0,a.jsx)("path",{d:"M15.901 30.496 14.165 29.504 17.309 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z"}),(0,a.jsx)("path",{d:"M27.9516,15A4.399,4.399,0,0,1,28,15.5,4.5049,4.5049,0,0,1,23.5,20H23v2h.5A6.5075,6.5075,0,0,0,30,15.5c0-.17-.0312-.333-.0444-.5Z"}),(0,a.jsx)("path",{fill:"none",d:"M25.75,8h-1.5V4h1.5ZM25,9a1,1,0,1,0,1,1A1,1,0,0,0,25,9Z"}),(0,a.jsx)("path",{d:"M31.9115,11.9355,25.6283.3706a.7181.7181,0,0,0-1.2568,0L18.0883,11.9355A.72.72,0,0,0,18.72,13H31.28A.72.72,0,0,0,31.9115,11.9355ZM24.25,4h1.5V8h-1.5ZM25,11a1,1,0,1,1,1-1A1,1,0,0,1,25,11Z"}),(0,a.jsx)("path",{d:"M8.144,11.019l.8154-.0639.0991-.812a6.9863,6.9863,0,0,1,9.97-5.45L20,2.9468A8.9777,8.9777,0,0,0,7.2,9.1362,6.4929,6.4929,0,0,0,7.43,21.9043L6.1059,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.4471-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.3559-8.981Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,21,30Z"}),(0,a.jsx)("path",{d:"M9,32a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,9,32Z"}),(0,a.jsx)("path",{d:"M15.901 30.496 14.165 29.504 17.31 24 11.31 24 16.165 15.504 17.901 16.496 14.756 22 20.757 22 15.901 30.496z"}),(0,a.jsx)("path",{d:"M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0,6.4929,6.4929,0,0,0,.23,12.7681L6.106,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.447-1.3418A.9786.9786,0,0,0,9,20.01V20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20H23v2h.5A6.4974,6.4974,0,0,0,24.8008,9.1362Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,14a1,1,0,0,0,1-1V8a2,2,0,0,0-2-2H4A2,2,0,0,0,2,8v5a1,1,0,0,0,1,1,2,2,0,0,1,0,4,1,1,0,0,0-1,1v5a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V19a1,1,0,0,0-1-1,2,2,0,0,1,0-4Zm-1,5.87V24H21V21H19v3H4V19.87a4,4,0,0,0,0-7.74V8H19v3h2V8h7v4.13a4,4,0,0,0,0,7.74Z"}),(0,a.jsx)("path",{d:"M19 13H21V19H19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 7 9 2 4 7 5.413 8.416 8 5.833 8 14 10 14 10 5.833 12.586 8.414 14 7z"}),(0,a.jsx)("path",{d:"M26.586 7.586 24 10.167 24 2 22 2 22 10.167 19.413 7.584 18 9 23 14 28 9 26.586 7.586z"}),(0,a.jsx)("path",{d:"M20,20a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,17a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,20a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,8,17a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,4,20H2v2H4a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,20,22H30V20Z"}),(0,a.jsx)("path",{d:"M28,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,24,25a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,20,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,16,25a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,12,28H2v2H12a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,28,30h2V28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z"}),(0,a.jsx)("path",{d:"M12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11z"}),(0,a.jsx)("path",{d:"M2 11 5 11 5 23 7 23 7 11 10 11 10 9 2 9 2 11z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return 20===t||"20"===t||"20px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,19c-5,0-9-4-9-9s4-9,9-9s9,4,9,9S15,19,10,19z M10,2.3c-4.3,0-7.7,3.5-7.7,7.7s3.5,7.7,7.7,7.7s7.7-3.5,7.7-7.7 S14.3,2.3,10,2.3z"}),(0,a.jsx)("path",{d:"M13 13.9 9.4 10.3 9.4 4 10.6 4 10.6 9.7 13.9 13z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z"}),(0,a.jsx)("path",{d:"M20.59 22 15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16,2c-7.6001,0-14,6.3999-14,14s6.3999,14,14,14,14-6.3999,14-14S23.6001,2,16,2Zm4.5872,20l-5.5872-5.5898V7h2v8.582l5,5.0044-1.4128,1.4136Z"}),(0,a.jsx)("path",{fill:"none",d:"M20.5872 22 15 16.4099 15 7 17 7 17 15.5822 22 20.5866 20.5872 22z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.586 13 21 10.414 21 6 23 6 23 9.586 25 11.586 23.586 13z"}),(0,a.jsx)("path",{d:"M22,18a8,8,0,1,1,8-8A8.0092,8.0092,0,0,1,22,18ZM22,4a6,6,0,1,0,6,6A6.0066,6.0066,0,0,0,22,4Z"}),(0,a.jsx)("path",{d:"M8.63,18l7,6H30V22H16.37l-7-6H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H4V18Z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 11H17V20H15z"}),(0,a.jsx)("path",{d:"M13 2H19V4H13z"}),(0,a.jsx)("path",{d:"M28,9,26.58,7.59,24.33,9.84a10.94,10.94,0,1,0,1.18,1.65ZM16,26a9,9,0,1,1,9-9A9,9,0,0,1,16,26Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"24",r:"1",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m30,12c0-1.8237-1.2344-3.3496-2.9062-3.8286L7.2087,2.207c-.3838-.123-.7847-.207-1.2087-.207-2.2056,0-4,1.7944-4,4,0,.6025.1438,1.1689.3835,1.6816l8.1016,18.6782c.9185,2.1382,3.0442,3.6401,5.5149,3.6401,2.252,0,4.2161-1.249,5.2422-3.0889l8.002-12.5894c.4712-.6562.7559-1.4541.7559-2.3218Zm-14,6c-2.4155,0-4.4971,1.438-5.4475,3.5005l-5.0149-11.5474c.1536.0181.3042.0469.4624.0469,2.2056,0,4-1.7944,4-4,0-.3193-.0474-.6255-.1182-.9233l13.3882,4.0161c-.7771.73-1.27,1.7593-1.27,2.9072,0,2.1465,1.7029,3.8896,3.8267,3.9824l-4.0593,6.3809c-.7148-2.5146-3.0271-4.3633-5.7673-4.3633Zm12-6c0,1.1025-.8972,2-2,2s-2-.8975-2-2,.8972-2,2-2,2,.8975,2,2ZM6,4c1.1028,0,2,.8975,2,2s-.8972,2-2,2-2-.8975-2-2,.8972-2,2-2Zm10,24c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8h-12c-4.4,0-8,3.6-8,8s3.6,8,8,8h12c4.4,0,8-3.6,8-8s-3.6-8-8-8ZM10,20c-2.2,0-4-1.8-4-4s1.8-4,4-4,4,1.8,4,4-1.8,4-4,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,24h12c4.4,0,8-3.6,8-8s-3.6-8-8-8h-12c-4.4,0-8,3.6-8,8s3.6,8,8,8ZM22,12c2.2,0,4,1.8,4,4s-1.8,4-4,4-4-1.8-4-4,1.8-4,4-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,23.991h-12c-4.4111,0-8-3.5887-8-8s3.5889-8,8-8h12c4.4111,0,8,3.5887,8,8s-3.5889,8-8,8ZM10,9.991c-3.3086,0-6,2.6917-6,6s2.6914,6,6,6h12c3.3086,0,6-2.6917,6-6s-2.6914-6-6-6c0,0-12,0-12,0ZM13,15.991c0-1.6569-1.3431-3-3-3s-3,1.3431-3,3,1.3431,3,3,3,3-1.3431,3-3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,7.991h12c4.4111,0,8,3.5887,8,8s-3.5889,8-8,8h-12c-4.4111,0-8-3.5887-8-8S5.5889,7.991,10,7.991ZM22,21.991c3.3086,0,6-2.6917,6-6s-2.6914-6-6-6h-12c-3.3086,0-6,2.6917-6,6s2.6914,6,6,6h12ZM19,15.991c0,1.6569,1.3431,3,3,3s3-1.3431,3-3-1.3431-3-3-3-3,1.3431-3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,9H24V6a2,2,0,0,0-2-2H10A2,2,0,0,0,8,6V9H5a3,3,0,0,0-3,3V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A3,3,0,0,0,27,9ZM10,6H22V9H10ZM28,26H4V17h8v5h8V17h8ZM14,17h4v3H14ZM4,15V12a1,1,0,0,1,1-1H27a1,1,0,0,1,1,1v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.9141,24.5l4.257-4.2568-1.414-1.4141L7.5,23.0859l-.793-.7929a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414l3,3a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414ZM5,28.5859,3.4141,27,6,24.4141,7.5859,26Z"}),(0,a.jsx)("path",{d:"M24,30a6.0067,6.0067,0,0,1-6-6,5.84,5.84,0,0,1,.2109-1.5469l-8.664-8.6638A5.8483,5.8483,0,0,1,8,14,5.9757,5.9757,0,0,1,2.4228,5.8164l.5577-1.4219L6.293,7.707a1.0233,1.0233,0,0,0,1.4135,0,.999.999,0,0,0,0-1.4141L4.3936,2.979l1.4233-.5571A5.9772,5.9772,0,0,1,14,8a5.84,5.84,0,0,1-.2109,1.5469l8.664,8.6635A5.8548,5.8548,0,0,1,24,18a5.9755,5.9755,0,0,1,5.5771,8.1836L29.02,27.6055,25.707,24.293a1.0233,1.0233,0,0,0-1.4135,0,.999.999,0,0,0-.0005,1.4141L27.6055,29.02l-1.4219.5579A5.96,5.96,0,0,1,24,30ZM10.0625,11.4763,20.5234,21.9375l-.2392.6094A3.9754,3.9754,0,0,0,23.75,27.9922l-.8711-.8711a2.9992,2.9992,0,0,1,0-4.2424,3.0721,3.0721,0,0,1,4.2427.0005l.8706.8708a3.9759,3.9759,0,0,0-5.4458-3.4658l-.6094.2385-10.46-10.46.2392-.6094A3.9755,3.9755,0,0,0,8.2505,4.0078l.8706.8711a2.9992,2.9992,0,0,1,0,4.2424,3.0721,3.0721,0,0,1-4.2427-.0005L4.0078,8.25a3.975,3.975,0,0,0,5.4453,3.4656Z"}),(0,a.jsx)("path",{d:"M29.1226,2.85a3.0716,3.0716,0,0,0-4.2422,0L17.4,10.33l1.4141,1.414,7.48-7.48a1.0244,1.0244,0,0,1,1.4141,0,1.002,1.002,0,0,1,0,1.4145l-7.48,7.48,1.414,1.4141,7.48-7.4795A3.0031,3.0031,0,0,0,29.1226,2.85Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12.1,2A9.8,9.8,0,0,0,6.7,3.6L13.1,10a2.1,2.1,0,0,1,.2,3,2.1,2.1,0,0,1-3-.2L3.7,6.4A9.84,9.84,0,0,0,2,12.1,10.14,10.14,0,0,0,12.1,22.2a10.9,10.9,0,0,0,2.6-.3l6.7,6.7a5,5,0,0,0,7.1-7.1l-6.7-6.7a10.9,10.9,0,0,0,.3-2.6A10,10,0,0,0,12.1,2Zm8,10.1a7.61,7.61,0,0,1-.3,2.1l-.3,1.1.8.8L27,22.8a2.88,2.88,0,0,1,.9,2.1A2.72,2.72,0,0,1,27,27a2.9,2.9,0,0,1-4.2,0l-6.7-6.7-.8-.8-1.1.3a7.61,7.61,0,0,1-2.1.3,8.27,8.27,0,0,1-5.7-2.3A7.63,7.63,0,0,1,4,12.1a8.33,8.33,0,0,1,.3-2.2l4.4,4.4a4.14,4.14,0,0,0,5.9.2,4.14,4.14,0,0,0-.2-5.9L10,4.2a6.45,6.45,0,0,1,2-.3,8.27,8.27,0,0,1,5.7,2.3A8.49,8.49,0,0,1,20.1,12.1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.1,16l6.3-6.3c0.8-0.8,0.8-2,0-2.8l-4.2-4.2c-0.8-0.8-2-0.8-2.8,0L16,8.9L9.7,2.6c-0.8-0.8-2-0.8-2.8,0L2.6,6.8 c-0.8,0.8-0.8,2,0,2.8L8.9,16L2,22.9V30h7.1l6.9-6.9l6.3,6.3c0.8,0.8,2,0.8,2.8,0l4.2-4.2c0.8-0.8,0.8-2,0-2.8L23.1,16z M23.8,4 L28,8.2l-6.3,6.3l-4.2-4.2L23.8,4z M8.2,28H4v-4.2l6.3-6.3l4.2,4.2L8.2,28z M23.8,28L4,8.2L8.2,4l3.5,3.5L9.6,9.6l1.4,1.4l2.1-2.1 l4.2,4.2l-2.1,2.1l1.4,1.4l2.1-2.1l4.2,4.2L21,20.9l1.4,1.4l2.1-2.1l3.5,3.5L23.8,28z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,2.01c-.34-.01-.67-.01-1-.01C7.7,2,2,3.25,2,6v18c0,2.75,5.7,4,11,4,.33,0,.66,0,1-.01v-2.01c-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.66,0,1-.01v-2.01c-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.66,0,1-.01,4.99-.1501,10-1.4099,10-3.99v-6c0-2.5801-5.01-3.8401-10-3.99ZM22,11.99c-.15.52-2.82,1.8401-8,1.99-.32.01-.66.02-1,.02-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701.33,0,.67,0,1-.02,3.04-.0801,6.08-.5898,8-1.55v3.5601ZM14,7.98c-.32.01-.66.02-1,.02-5.84,0-8.84-1.46-9-1.98v-.01c.16-.55,3.16-2.01,9-2.01.34,0,.68.01,1,.02,5.15.1499,7.81,1.4399,8,1.98-.19.54-2.85,1.8301-8,1.98ZM30,28.585l-2.832-2.832c.524-.7905.833-1.7356.833-2.7529,0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5c1.0173,0,1.9624-.3091,2.7529-.833l2.832,2.832,1.4141-1.4141ZM23.001,26c-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3-1.3457,3-3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.999,28.5859l-2.832-2.832c.524-.7905.833-1.7356.833-2.7529,0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5c1.0173,0,1.9624-.3091,2.7529-.833l2.832,2.832,1.4141-1.4141ZM23,26.001c-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3-1.3457,3-3,3ZM28,2H4c-1.103,0-2,.8975-2,2v20c0,1.1025.897,2,2,2h10v-2H4v-14h24v4h2V4c0-1.1025-.897-2-2-2ZM4,8v-4h24v4H4ZM7,6c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1ZM10,6c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 26H20V28H16z"}),(0,a.jsx)("path",{d:"M12 22H18V24H12z"}),(0,a.jsx)("path",{d:"M8 18H18V20H8z"}),(0,a.jsx)("path",{d:"M8 14H20V16H8z"}),(0,a.jsx)("path",{d:"M10 10H24V12H10z"}),(0,a.jsx)("path",{d:"M8 6H26V8H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 4H18V6H2z"}),(0,a.jsx)("path",{d:"M4 8H16V10H4z"}),(0,a.jsx)("path",{d:"M2 12H14V14H2z"}),(0,a.jsx)("path",{d:"M2 16H12V18H2z"}),(0,a.jsx)("path",{d:"M4 20H12V22H4z"}),(0,a.jsx)("path",{d:"M8 24H14V26H8z"}),(0,a.jsx)("path",{d:"M12 28H16V30H12z"}),(0,a.jsx)("path",{fill:"none",d:"M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z"}),(0,a.jsx)("path",{d:"M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,8H18A5,5,0,0,0,8,8H6A7,7,0,0,1,20,8Z"}),(0,a.jsx)("path",{d:"M25,15a2.94,2.94,0,0,0-1.47.4A3,3,0,0,0,21,14a2.94,2.94,0,0,0-1.47.4A3,3,0,0,0,16,13.18V8h0a3,3,0,0,0-6,0V19.1L7.77,17.58h0A2.93,2.93,0,0,0,6,17a3,3,0,0,0-2.12,5.13l8,7.3A6.16,6.16,0,0,0,16,31h5a7,7,0,0,0,7-7V18A3,3,0,0,0,25,15Zm1,9a5,5,0,0,1-5,5H16a4.17,4.17,0,0,1-2.76-1L5.29,20.7A1,1,0,0,1,5,20a1,1,0,0,1,1.6-.8L12,22.9V8a1,1,0,0,1,2,0h0V19h2V16a1,1,0,0,1,2,0v3h2V17a1,1,0,0,1,2,0v2h2V18a1,1,0,0,1,2,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,2A6.0067,6.0067,0,0,0,7,8H9a4,4,0,0,1,8,0h2A6.0067,6.0067,0,0,0,13,2Z"}),(0,a.jsx)("path",{d:"M21,30H16.5606a4,4,0,0,1-2.7088-1.0566L4.6513,20.4771A2.0018,2.0018,0,0,1,4.77,17.4219a2.0743,2.0743,0,0,1,2.6578.1728L11,20.8569V8a2,2,0,0,1,4,0v7a2,2,0,0,1,4,0v1a2,2,0,0,1,4,0v1a2,2,0,0,1,4,0v7A6,6,0,0,1,21,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,24H18A5,5,0,0,1,8,24H6a7,7,0,0,0,14,0Z"}),(0,a.jsx)("path",{d:"M28,14V8a7.0085,7.0085,0,0,0-7-7H16a6.1457,6.1457,0,0,0-4.1055,1.5664L3.8833,9.874a2.9986,2.9986,0,0,0,3.881,4.55l.0008.0012L10,12.8955V24a3,3,0,0,0,6,0h0l0-5.1843a2.939,2.939,0,0,0,3.5294-1.2171A2.963,2.963,0,0,0,21,18a2.9936,2.9936,0,0,0,2.5292-1.4014A2.963,2.963,0,0,0,25,17,3.0033,3.0033,0,0,0,28,14Zm-2,0a1,1,0,0,1-2,0V13H22v2a1,1,0,0,1-2,0V13H18v3a1,1,0,0,1-2,0V13H14V24h.0005A1,1,0,0,1,12,24V9.1045L6.6,12.8008a.9993.9993,0,0,1-1.3081-1.5044l7.9507-7.2515A4.1483,4.1483,0,0,1,16,3h5a5.0059,5.0059,0,0,1,5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,30a6.0067,6.0067,0,0,1-6-6H9a4,4,0,0,0,8,0h2A6.0067,6.0067,0,0,1,13,30Z"}),(0,a.jsx)("path",{d:"M21,2H16.5606a4,4,0,0,0-2.7088,1.0566L4.6513,11.5229A2.0018,2.0018,0,0,0,4.77,14.5781a2.0743,2.0743,0,0,0,2.6578-.1728L11,11.1431V24a2,2,0,0,0,4,0V17a2,2,0,0,0,4,0V16a2,2,0,0,0,4,0V15a2,2,0,0,0,4,0V8A6,6,0,0,0,21,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,15H27A11,11,0,0,0,5,15H3a13,13,0,0,1,26,0Z"}),(0,a.jsx)("path",{d:"M25,28H23V15A7,7,0,1,0,9,15V28H7V15a9,9,0,0,1,18,0Z"}),(0,a.jsx)("path",{d:"M21,20H11V15a5,5,0,0,1,10,0Zm-8-2h6V15a3,3,0,0,0-6,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,12a3.0033,3.0033,0,0,0-3,3v3h6V15A3.0033,3.0033,0,0,0,16,12Z"}),(0,a.jsx)("path",{d:"M16,6a9.0092,9.0092,0,0,0-9,9V28H25V15A9.01,9.01,0,0,0,16,6Zm5,14H11V15a5,5,0,0,1,10,0Z"}),(0,a.jsx)("path",{d:"M29,15H27A11,11,0,0,0,5,15H3a13,13,0,0,1,26,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,21V20a1,1,0,0,1,2,0V30h2V20a3.0033,3.0033,0,0,0-3-3,2.964,2.964,0,0,0-1.4708.4014,2.9541,2.9541,0,0,0-4-1A2.9934,2.9934,0,0,0,19,15a2.96,2.96,0,0,0-1,.1846L18,10h0a3,3,0,0,0-6,0V21.1045L9.7651,19.5752l-.0008.001a2.999,2.999,0,0,0-3.881,4.55L12.3223,30l1.3479-1.478L7.2915,22.7036A.9908.9908,0,0,1,7,22a1.0005,1.0005,0,0,1,1.6-.8008L14,24.8955V10a1,1,0,0,1,2,0h0V21h2V18a1,1,0,0,1,2,0v3h2V19a1,1,0,0,1,2,0v2Z"}),(0,a.jsx)("path",{d:"M28,12H22V10h6V4H4v6H8v2H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m24,18l-4.7788-6.4019c-.7979-1.0562-1.2212-2.302-1.2212-3.5981,0-3.3083,2.6914-6,6-6s6,2.6917,6,6c0,1.2961-.4233,2.542-1.2246,3.6028l-4.7754,6.3972Zm0-14c-2.2056,0-4,1.7944-4,4,0,.8577.2837,1.6865.8203,2.3972l3.1797,4.2595,3.1763-4.2549c.54-.7153.8237-1.5442.8237-2.4019,0-2.2056-1.7944-4-4-4Z"}),(0,a.jsx)("circle",{cx:"24",cy:"8",r:"2"}),(0,a.jsx)("path",{d:"m28,18v4H4V6h10v-2H4c-1.1045,0-2,.8955-2,2v16c0,1.1045.8955,2,2,2h8v4h-4v2h16v-2h-4v-4h8c1.1046,0,2-.8955,2-2v-4h-2Zm-10,10h-4v-4h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,27.0001h9.0001v2H4c-1.1,0-2-.9-2-2V3.0001h2v7.9999h9v2H4v6h9v2H4v6.0001ZM10,2.9999v2h20v-2s-20,0-20,0ZM19.0001,13h10.9999v-2h-10.9999v2ZM19.0001,21h10.9999v-2h-10.9999v2ZM19.0001,29.0001h10.9999v-2h-10.9999v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 21H17V23H11z"}),(0,a.jsx)("path",{d:"M24.2456,8,25.96,14H30V12H27.4688l-1.3-4.5488A2.0077,2.0077,0,0,0,24.2456,6H22.8972l-.7287-2.5488A2.0077,2.0077,0,0,0,20.2456,2H7.7544A2.0078,2.0078,0,0,0,5.8315,3.4507L4.5312,8H2v2H6.04L7.7544,4H20.2456l.5715,2H11.7544A2.008,2.008,0,0,0,9.8315,7.45L8.8171,11H7.7144a1.9981,1.9981,0,0,0-1.8916,1.3516L4.5715,16H2v2H4v7a2.0025,2.0025,0,0,0,2,2v3H8V27H20v3h2V27a2.0025,2.0025,0,0,0,2-2V18h2V16H23.4287l-1.251-3.6475A1.9988,1.9988,0,0,0,20.2856,11H10.897l.8574-3ZM22,19v2H20v2h2v2H6V23H8V21H6V19Zm-.3429-2H6.3428l1.3716-4H20.2856Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 8 22 4 18 8 19.41 9.42 21 7.83 21 18 23 18 23 7.83 24.58 9.41 26 8z"}),(0,a.jsx)("path",{d:"M12.59 22.58 11 24.17 11 14 9 14 9 24.17 7.42 22.59 6 24 10 28 14 24 12.59 22.58z"}),(0,a.jsx)("path",{d:"M2 2H4V30H2z"}),(0,a.jsx)("path",{d:"M28 2H30V30H28z"}),(0,a.jsx)("path",{d:"M15 2H17V6H15z"}),(0,a.jsx)("path",{d:"M15 10H17V14H15z"}),(0,a.jsx)("path",{d:"M15 18H17V22H15z"}),(0,a.jsx)("path",{d:"M15 26H17V30H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 9.42 24.59 8 22.005 10.585 22 10.58 21.995 10.585 19.42 8.01 18 9.42 20.58 12 18 14.58 19.41 16 21.995 13.415 22 13.42 22.005 13.415 24.58 15.99 26 14.58 23.42 12 26 9.42z"}),(0,a.jsx)("path",{d:"M14 17.42 12.59 16 10.005 18.585 10 18.58 9.995 18.585 7.42 16.01 6 17.42 8.58 20 6 22.58 7.41 24 9.995 21.415 10 21.42 10.005 21.415 12.58 23.99 14 22.58 11.42 20 14 17.42z"}),(0,a.jsx)("path",{d:"M2 2H4V30H2z"}),(0,a.jsx)("path",{d:"M28 2H30V30H28z"}),(0,a.jsx)("path",{d:"M15 2H17V6H15z"}),(0,a.jsx)("path",{d:"M15 10H17V14H15z"}),(0,a.jsx)("path",{d:"M15 18H17V22H15z"}),(0,a.jsx)("path",{d:"M15 26H17V30H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M11.314 11.514H17.314V13.514H11.314z",transform:"rotate(-45 14.314 12.514)"}),(0,a.jsx)("path",{d:"M12.0815,23.4329l4.1168,2.3176a2.009,2.009,0,0,0,2.3853-.3344l8.8326-8.8326a2.0088,2.0088,0,0,0,.334-2.3856l-2.2977-4.136,1.79-1.79L25.8283,6.8577,24.4141,8.2719l-4.95-4.95a2.0026,2.0026,0,0,0-2.8285,0L14.5146,1.2008,13.1,2.615l2.1213,2.1214L6.7364,13.2216,4.6151,11.1,3.2009,12.5145l2.1213,2.1213a2.0025,2.0025,0,0,0,0,2.8285l4.95,4.95L8.8577,23.8282l1.4143,1.4142Zm13.92-8.2636-8.8328,8.8328-4.5456-2.5255L23.4767,10.6235ZM9.5649,18.8785l1.4142-1.4142L9.5649,16.05,8.1506,17.4643,6.7364,16.05,18.05,4.7364l1.4143,1.4142L18.05,7.5648,19.4644,8.979l1.4142-1.4142L22.2928,8.979,10.9791,20.2927Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 24H4V30H2z"}),(0,a.jsx)("path",{d:"M28 2H30V30H28z"}),(0,a.jsx)("path",{d:"M15 2H17V6H15z"}),(0,a.jsx)("path",{d:"M15 10H17V14H15z"}),(0,a.jsx)("path",{d:"M15 18H17V22H15z"}),(0,a.jsx)("path",{d:"M15 26H17V30H15z"}),(0,a.jsx)("path",{d:"M6,12A3.8978,3.8978,0,0,1,2,8.223a3.9017,3.9017,0,0,1,.6533-2.0639L5.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L9.3154,6.11A3.9693,3.9693,0,0,1,10,8.223,3.8978,3.8978,0,0,1,6,12Zm0-7.2368L4.3438,7.2257A1.89,1.89,0,0,0,4,8.223a1.9007,1.9007,0,0,0,2,1.7775A1.9007,1.9007,0,0,0,8,8.223a1.98,1.98,0,0,0-.375-1.0466Z"}),(0,a.jsx)("path",{d:"M11,11.7627,9.3438,14.2253A1.89,1.89,0,0,0,9,15.2226,1.9007,1.9007,0,0,0,11,17a1.9007,1.9007,0,0,0,2-1.7774,1.98,1.98,0,0,0-.375-1.0467Z"}),(0,a.jsx)("path",{d:"M6,15.7627,4.3438,18.2253A1.89,1.89,0,0,0,4,19.2226,1.9007,1.9007,0,0,0,6,21a1.9007,1.9007,0,0,0,2-1.7774,1.98,1.98,0,0,0-.375-1.0467Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.7957,28,18.9746,2.7754A1,1,0,0,0,18,2H14a1,1,0,0,0-.9746.7754L7.2043,28H4v2H28V28ZM19.9736,16H12.0264l.9229-4h6.1014Zm.4616,2,.923,4H10.6418l.923-4Zm-5.64-14h2.4092l1.3845,6H13.4109ZM10.18,24H21.82l.923,4H9.2573Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,3H11A5.0057,5.0057,0,0,0,6,8V20a4.99,4.99,0,0,0,3.582,4.77L7.7693,29H9.9451l1.7143-4h8.6812l1.7143,4h2.1758L22.418,24.77A4.99,4.99,0,0,0,26,20V8A5.0057,5.0057,0,0,0,21,3ZM11,5H21a2.9948,2.9948,0,0,1,2.8157,2H8.1843A2.9948,2.9948,0,0,1,11,5ZM24,19H21v2h2.8157A2.9948,2.9948,0,0,1,21,23H11a2.9948,2.9948,0,0,1-2.8157-2H11V19H8V17H24Zm0-4H8V9H24Z"}),e)})},3654(e,t,r){r.d(t,{bQ:()=>c});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"11",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"11",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"11",cy:"24",r:"1"}),(0,a.jsx)("path",{d:"M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2H18V27H8V21H26V5A2,2,0,0,0,24,3Zm0,16H8V13H24Zm0-8H8V5H24Z"}),(0,a.jsx)("path",{d:"M29 24.415 27.586 23 25 25.587 22.414 23 21 24.415 23.586 27 21 29.586 22.414 31 25 28.414 27.586 31 29 29.586 26.414 27 29 24.415z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 11H26V13H18z"}),(0,a.jsx)("path",{d:"M6 19H14V21H6z"}),(0,a.jsx)("path",{d:"M10,16a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,16Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,10,10Z"}),(0,a.jsx)("path",{d:"M22,24a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,24Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,22,18Z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 12 25 3 23 3 23 5 20 5 20 7 23 7 23 12 20 12 20 14 28 14 28 12 25 12z"}),(0,a.jsx)("path",{d:"m8.5,5c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),(0,a.jsx)("path",{d:"m23.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),(0,a.jsx)("path",{d:"M6 19 6 21 9.5859 21 4 26.5859 5.4141 28 11 22.4141 11 26 13 26 13 19 6 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m27,24c-.4622,0-.8948.1133-1.2859.2998l-4.8289-4.8291c.699-.981,1.1147-2.1768,1.1147-3.4707,0-3.3086-2.6917-6-6-6-1.2937,0-2.4897.416-3.4709,1.1147l-4.8289-4.8286c.1865-.3911.2998-.8237.2998-1.2861,0-1.6567-1.3433-3-3-3s-3,1.3433-3,3,1.3433,3,3,3c.4622,0,.8948-.1133,1.2859-.2998l4.8289,4.8291c-.699.981-1.1147,2.1768-1.1147,3.4707,0,3.3086,2.6917,6,6,6,1.2937,0,2.4897-.416,3.4709-1.1147l4.8289,4.8286c-.1865.3911-.2998.8237-.2998,1.2861,0,1.6567,1.3433,3,3,3s3-1.3433,3-3-1.3433-3-3-3Zm-11-4c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 12 25 3 23 3 23 5 20 5 20 7 23 7 23 12 20 12 20 14 28 14 28 12 25 12z"}),(0,a.jsx)("path",{d:"m8.5,5c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),(0,a.jsx)("path",{d:"m8.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),(0,a.jsx)("path",{d:"m23.5,20c1.9299,0,3.5,1.5701,3.5,3.5s-1.5701,3.5-3.5,3.5-3.5-1.5701-3.5-3.5,1.5701-3.5,3.5-3.5m0-2c-3.0376,0-5.5,2.4624-5.5,5.5s2.4624,5.5,5.5,5.5,5.5-2.4624,5.5-5.5-2.4624-5.5-5.5-5.5h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"9",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M27,22.14V18a2,2,0,0,0-2-2H17V12h9a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2h9v4H7a2,2,0,0,0-2,2v4.14a4,4,0,1,0,2,0V18h8v4H12v8h8V22H17V18h8v4.14a4,4,0,1,0,2,0ZM8,26a2,2,0,1,1-2-2A2,2,0,0,1,8,26Zm10-2v4H14V24ZM6,10V4H26v6ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16.4961,18.1318l-7-4c-.1536-.0879-.3248-.1318-.4961-.1318s-.3425.0439-.4961.1318l-7,4c-.3115.1777-.5039.5093-.5039.8682v8c0,.3589.1924.6904.5039.8682l7,4c.1536.0879.325.1318.4961.1318s.3425-.0439.4961-.1318l7-4c.3115-.1777.5039-.5093.5039-.8682v-8c0-.3589-.1924-.6904-.5039-.8682Zm-7.4961-1.98l4.9844,2.8481-4.9844,2.8481-4.9844-2.8481,4.9844-2.8481Zm-6,4.5713l5,2.8569v5.6968l-5-2.8569v-5.6968Zm7,8.5537v-5.6968l5-2.8569v5.6968l-5,2.8569Z"}),(0,a.jsx)("path",{d:"m28,19v5c0,1.1025-.8972,2-2,2h-3.1719l1.5859-1.5859-1.4141-1.4141-4,4,4,4,1.4141-1.4141-1.5859-1.5859h3.1719c2.2056,0,4-1.7944,4-4v-5h-2Z"}),(0,a.jsx)("path",{d:"m17.5039,15.0111l-2-1.1428c-.3115-.1781-.5039-.5094-.5039-.8683v-2h2v1.4197l1.4961.8549-.9922,1.7366Z"}),(0,a.jsx)("path",{d:"m25.5039,14.4175l-1.5039.8594v-2.2769h-2v2.2769l-1.5039-.8594-.9922,1.7368,3,1.7139c.1536.0879.325.1318.4961.1318s.3425-.0439.4961-.1318l3-1.7139-.9922-1.7368Z"}),(0,a.jsx)("path",{d:"m28.4961,15.0111l-.9922-1.7366,1.4961-.8549v-1.4197h2v2c0,.3589-.1924.6902-.5039.8683l-2,1.1428Z"}),(0,a.jsx)("path",{d:"M25.4961 8.7256 24.5039 6.9888 23 7.8481 21.4961 6.9888 20.5039 8.7256 22 9.5801 22 11 24 11 24 9.5801 25.4961 8.7256z"}),(0,a.jsx)("path",{d:"m30.4961,4.1318l-3-1.7144-.9922,1.7368,1.4805.8457-1.4805.8457.9922,1.7368,1.5039-.8594v2.2769h2v-4c0-.3589-.1924-.6904-.5039-.8682Z"}),(0,a.jsx)("path",{d:"m24.5039,3.0111l-1.5039-.8594-1.5039.8594-.9922-1.7366,2-1.1428C22.6575.0439,22.8287,0,23,0s.3425.0439.4961.1317l2,1.1428-.9922,1.7366Z"}),(0,a.jsx)("path",{d:"m19.4961,4.1543l-.9922-1.7368-3,1.7144c-.3115.1777-.5039.5093-.5039.8682v4h2v-2.2769l1.5039.8594.9922-1.7368-1.4805-.8457,1.4805-.8457Z"}),(0,a.jsx)("path",{d:"m9,1l-1.4141,1.4141,1.5859,1.5859h-3.1719c-2.2056,0-4,1.7944-4,4v5h2v-5c0-1.1025.8972-2,2-2h3.1719l-1.5859,1.5859,1.4141,1.4141,4-4L9,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,24a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,6,22Z"}),(0,a.jsx)("path",{d:"M16,4a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,16,2Z"}),(0,a.jsx)("path",{d:"M26,4a2,2,0,1,1-2,2,2,2,0,0,1,2-2m0-2a4,4,0,1,0,4,4A4,4,0,0,0,26,2Z"}),(0,a.jsx)("path",{d:"M18,24v4H14V24h4m2-2H12v8h8Z"}),(0,a.jsx)("path",{d:"M27,22.14V17a2,2,0,0,0-2-2H7V10h3V2H2v8H5v5a2,2,0,0,0,2,2H25v5.14a4,4,0,1,0,2,0ZM4,4H8V8H4ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22",cy:"24",r:"2"}),(0,a.jsx)("path",{d:"M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z"}),(0,a.jsx)("circle",{cx:"8",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"8",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"8",cy:"24",r:"1"}),(0,a.jsx)("path",{d:"M5,21h7V19H5V13H21v3h2V5a2,2,0,0,0-2-2H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2h7V27H5ZM5,5H21v6H5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22",cy:"24",r:"2"}),(0,a.jsx)("path",{d:"M29.7769,23.4785A8.64,8.64,0,0,0,22,18a8.64,8.64,0,0,0-7.7769,5.4785L14,24l.2231.5215A8.64,8.64,0,0,0,22,30a8.64,8.64,0,0,0,7.7769-5.4785L30,24ZM22,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M7 17H12V19H7z"}),(0,a.jsx)("path",{d:"M7 12H19V14H7z"}),(0,a.jsx)("path",{d:"M7 7H19V9H7z"}),(0,a.jsx)("path",{d:"M22,2,4,2A2.0058,2.0058,0,0,0,2,4V28a2.0058,2.0058,0,0,0,2,2h8V28H4V4H22V15h2V4A2.0058,2.0058,0,0,0,22,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,20H26v2h2v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"}),(0,a.jsx)("circle",{cx:"7",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M21,13a2.9609,2.9609,0,0,0-1.2854.3008L17.4141,11l2.3-2.3008A2.9609,2.9609,0,0,0,21,9a3,3,0,1,0-3-3,2.9665,2.9665,0,0,0,.3,1.2852L16,9.5859,13.7,7.2852A2.9665,2.9665,0,0,0,14,6a3,3,0,1,0-3,3,2.9609,2.9609,0,0,0,1.2854-.3008L14.5859,11l-2.3005,2.3008A2.9609,2.9609,0,0,0,11,13a3,3,0,1,0,3,3,2.9665,2.9665,0,0,0-.3-1.2852L16,12.4141l2.3,2.3007A2.9665,2.9665,0,0,0,18,16a3,3,0,1,0,3-3Zm0-8a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,21,5ZM10,6a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,10,6Zm1,11a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,11,17Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,21,17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12 11H14V17H12z"}),(0,a.jsx)("path",{d:"M7 13H9V17H7z"}),(0,a.jsx)("path",{d:"M2 7H4V17H2z"}),(0,a.jsx)("path",{d:"m30,28.5859l-7.5522-7.5522c1.5918-1.9082,2.5522-4.3604,2.5522-7.0337,0-6.0654-4.9346-11-11-11-2.4026,0-4.6853.7607-6.6013,2.2002l1.2012,1.5991c1.5669-1.1772,3.4343-1.7993,5.4001-1.7993,4.9626,0,9,4.0371,9,9s-4.0374,9-9,9c-2.8574,0-5.4819-1.312-7.2007-3.6001l-1.5991,1.2017c2.1001,2.7949,5.3076,4.3984,8.7998,4.3984,2.6733,0,5.1255-.9604,7.0337-2.5522l7.5522,7.5522,1.4141-1.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"7",cy:"7",r:"1"}),(0,a.jsx)("circle",{cx:"7",cy:"15",r:"1"}),(0,a.jsx)("circle",{cx:"7",cy:"23",r:"1"}),(0,a.jsx)("path",{d:"M12,26H4V20h8V18H4V12H22V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V26a2,2,0,0,0,2,2h8ZM4,4H20v6H4Z"}),(0,a.jsx)("path",{d:"M28,17v2.4131A6.996,6.996,0,1,0,22,30V28a5,5,0,1,1,4.5762-7H24v2h6V17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H20a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,2v7H20V4Zm0,9v6H20V13ZM20,28V21h8v7Z"}),(0,a.jsx)("path",{d:"M12 15 10 15 10 13 8 13 8 15 6 15 6 17 8 17 8 19 10 19 10 17 12 17 12 15z"}),(0,a.jsx)("path",{d:"M16,6V4H10A2.0023,2.0023,0,0,0,8,6V9.08A6.99,6.99,0,0,0,8,22.92V26a2.0023,2.0023,0,0,0,2,2h6V26H10V22.92A6.99,6.99,0,0,0,10,9.08V6ZM14,16a5,5,0,1,1-5-5A5.0059,5.0059,0,0,1,14,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),(0,a.jsx)("path",{d:"M13 7H15V14H13z"}),(0,a.jsx)("path",{d:"M8 7H10V14H8z"}),(0,a.jsx)("path",{d:"M22,14H20a2.0021,2.0021,0,0,1-2-2V9a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v3A2.0021,2.0021,0,0,1,22,14ZM20,9v3h2V9Z"}),(0,a.jsx)("path",{d:"M22 18H24V25H22z"}),(0,a.jsx)("path",{d:"M8 18H10V25H8z"}),(0,a.jsx)("path",{d:"M17,25H15a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v3A2.0021,2.0021,0,0,1,17,25Zm-2-5v3h2V20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,16a3.9612,3.9612,0,0,0-2.02.5657l-2.8586-2.8585,2.293-2.293a2,2,0,0,0,0-2.8284l-6-6a2,2,0,0,0-2.8284,0l-6,6a2,2,0,0,0,0,2.8284l2.293,2.293L8.02,16.5657A4.043,4.043,0,1,0,9.4343,17.98l2.8585-2.8586,2.293,2.293A1.9773,1.9773,0,0,0,15,17.7233V22H12v8h8V22H17V17.7233a1.9773,1.9773,0,0,0,.4142-.3091l2.293-2.293L22.5657,17.98A3.9885,3.9885,0,1,0,26,16ZM8,20a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,20Zm10,4v4H14V24h4Zm-2-8-6-6,6-6,6,6Zm10,6a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"16",r:"2"}),(0,a.jsx)("path",{d:"M30 17 30 15 23.83 15 26.41 12.41 25 11 20 16 25 21 26.41 19.59 23.83 17 30 17z"}),(0,a.jsx)("path",{d:"M15 23.83 15 30 17 30 17 23.83 19.59 26.41 21 25 16 20 11 25 12.41 26.41 15 23.83z"}),(0,a.jsx)("path",{d:"M7 11 5.59 12.41 8.17 15 2 15 2 17 8.17 17 5.59 19.59 7 21 12 16 7 11z"}),(0,a.jsx)("path",{d:"M17 8.17 17 2 15 2 15 8.17 12.41 5.59 11 7 16 12 21 7 19.59 5.59 17 8.17z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"14",cy:"14",r:"2"}),(0,a.jsx)("path",{d:"M20,30a.9967.9967,0,0,1-.707-.293L8.5859,19A2.0126,2.0126,0,0,1,8,17.5859V10a2.002,2.002,0,0,1,2-2h7.5859A1.9864,1.9864,0,0,1,19,8.5859L29.707,19.293a.9994.9994,0,0,1,0,1.414l-9,9A.9967.9967,0,0,1,20,30ZM10,10v7.5859l10,10L27.5859,20l-10-10Z"}),(0,a.jsx)("path",{d:"M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v8H28V4H4V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8h-8v2h8v-2ZM14,16h8v-2h-8v2ZM10,14h-2v-4h2v-2h-2v-4h18v12h2V4c0-1.1046-.8954-2-2-2H8c-1.1046,0-2,.8954-2,2v4h-2v2h2v4h-2v2h6v-2ZM4,20H1v10h3c1.6543,0,3-1.3457,3-3v-4c0-1.6543-1.3457-3-3-3ZM5,27c0,.5518-.4487,1-1,1h-1v-6h1c.5513,0,1,.4482,1,1v4ZM17,22v6c0,1.1025.8975,2,2,2h4v-2h-4v-6h4v-2h-4c-1.1025,0-2,.8975-2,2ZM9,22h2v6h-2v2h6v-2h-2v-6h2v-2h-6v2ZM25,20v2h2v8h2v-8h2v-2h-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,15H27V7H25v8H22V7H20v7.8262L7.5239,7.1484A1,1,0,0,0,6,8v7H2v2H6v7a1,1,0,0,0,1.5239.8516L20,17.1738V25h2V17h3v8h2V17h3ZM8,22.21V9.79L18.0918,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("switch",{children:(0,a.jsxs)("g",{children:[(0,a.jsx)("path",{d:"M28 13h2v2h-2zM23.778 4.797l1.414-1.414 1.414 1.414-1.414 1.414zM15 0h2v2h-2zM6.808 6.233 5.393 4.818l1.415-1.414 1.414 1.414zM2 13h2v2H2zM13 30h6v2h-6zM11 26h10v2H11zM16 4C10.5 4 6 8.5 6 14c0 4.4 2 6.3 3.5 7.6 1 .9 1.5 1.5 1.5 2.4h2c0-1.8-1.1-2.9-2.2-3.9C9.4 18.9 8 17.5 8 14c0-4.4 3.6-8 8-8s8 3.6 8 8c0 3.5-1.4 4.9-2.8 6.1-1.1 1-2.2 2-2.2 3.9h2c0-.9.5-1.5 1.5-2.4C24 20.3 26 18.4 26 14c0-5.5-4.5-10-10-10z"}),(0,a.jsx)("path",{fill:"none",d:"M0 0h32v32H0z"})]})}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("switch",{children:(0,a.jsxs)("g",{children:[(0,a.jsx)("path",{d:"M28 13h2v2h-2zM23.778 4.797l1.414-1.414 1.414 1.414-1.414 1.414zM15 0h2v2h-2zM6.808 6.233 5.393 4.818l1.415-1.414 1.414 1.414zM2 13h2v2H2zM20 13h-3v-3h-2v3h-3v2h3v3h2v-3h3zM13 30h6v2h-6zM11 26h10v2H11z"}),(0,a.jsx)("path",{d:"M16 4C10.5 4 6 8.5 6 14c0 4.4 2 6.3 3.5 7.6 1 .9 1.5 1.5 1.5 2.4h2c0-1.8-1.1-2.9-2.2-3.9C9.4 18.9 8 17.5 8 14c0-4.4 3.6-8 8-8s8 3.6 8 8c0 3.5-1.4 4.9-2.8 6.1-1.1 1-2.2 2-2.2 3.9h2c0-.9.5-1.5 1.5-2.4C24 20.3 26 18.4 26 14c0-5.5-4.5-10-10-10z"}),(0,a.jsx)("path",{fill:"none",d:"M0 0h32v32H0z"})]})}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8h-8v2h8v-2ZM14,16h8v-2h-8v2ZM10,14h-2v-4h2v-2h-2v-4h18v12h2V4c0-1.1046-.8954-2-2-2H8c-1.1046,0-2,.8954-2,2v4h-2v2h2v4h-2v2h6v-2ZM1,22v6c0,1.1025.8223,2,1.8335,2h4.1665v-6h-3v2h1v2h-2l.0142-6h3.9858v-2H2.8335c-1.0112,0-1.8335.8975-1.8335,2ZM21.1055,20h-2.2109c-1.0449,0-1.8945.8496-1.8945,1.8945v6.2109c0,1.0449.8496,1.8945,1.8945,1.8945h2.2109c1.0449,0,1.8945-.8496,1.8945-1.8945v-6.2109c0-1.0449-.8496-1.8945-1.8945-1.8945ZM21,28h-2v-6h2v6ZM11,20h-2v10h6v-2h-4v-8ZM31,22v-2h-4c-1.1025,0-2,.8975-2,2v2c0,1.1025.8975,2,2,2h2v2h-4v2h4c1.1025,0,2-.8975,2-2v-2c0-1.1025-.8975-2-2-2h-2v-2h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,24v2H15.8164a2.983,2.983,0,0,0-5.6328,0H4V24H2v6H4V28h6.1836a2.983,2.983,0,0,0,5.6328,0H28v2h2V24Z"}),(0,a.jsx)("path",{d:"M13 7.5 13 16.499 13 16.499 21 12 13 7.5z"}),(0,a.jsx)("path",{d:"M16,22A10,10,0,1,1,26,12,10.0113,10.0113,0,0,1,16,22ZM16,4a8,8,0,1,0,8,8A8.0092,8.0092,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsxs)("switch",{children:[(0,a.jsx)("foreignObject",{width:"1",height:"1",x:"0",y:"0",requiredExtensions:"http://ns.adobe.com/AdobeIllustrator/10.0/"}),(0,a.jsxs)("g",{children:[(0,a.jsx)("path",{d:"M24.6 24.4 27.2 27 27.2 27 24.6 29.6 26 31 30 27 26 23z"}),(0,a.jsx)("path",{d:"M22.4 24.4 19.8 27 19.8 27 22.4 29.6 21 31 17 27 21 23z"}),(0,a.jsx)("circle",{cx:"11",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"11",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"11",cy:"24",r:"1"}),(0,a.jsx)("path",{d:"M24,3H8C6.9,3,6,3.9,6,5v22c0,1.1,0.9,2,2,2h7v-2H8v-6h18V5C26,3.9,25.1,3,24,3z M24,19H8v-6h16V19z M24,11H8V5h16V11z"})]})]}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,30a5,5,0,1,1,5-5A5.0059,5.0059,0,0,1,7,30Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,7,22Z"}),(0,a.jsx)("path",{d:"M24,26H14V24H24V17H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6H18V8H8v7H24a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,24,26Z"}),(0,a.jsx)("path",{d:"M28,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M28,12H22a2.0023,2.0023,0,0,1-2-2V4a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,12ZM22,4v6h6V4Z"}),(0,a.jsx)("path",{d:"M24,26H16V24h8V17H8a2.0021,2.0021,0,0,1-2-2V8A2.0021,2.0021,0,0,1,8,6H18V8H8v7H24a2.0021,2.0021,0,0,1,2,2v7A2.0021,2.0021,0,0,1,24,26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,21.2783v-1.2783c0-2.2061-1.7944-4-4-4s-4,1.7939-4,4v1.2783c-.595.3469-1,.9849-1,1.7217v5c0,1.1025.897,2,2,2h6c1.103,0,2-.8975,2-2v-5c0-.7368-.405-1.3748-1-1.7217ZM25,18c1.103,0,2,.8975,2,2v1h-4v-1c0-1.1025.897-2,2-2ZM28,28h-6v-5h6v5ZM16,2.1299c-.98-.0898-2-.1299-3-.1299C7.7,2,2,3.25,2,6v18c0,2.75,5.7,4,11,4,1,0,2.02-.04,3-.1299v-2.0103c-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.02-.04,3-.1299v-2.0103c-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.02-.04,3-.1299,4.25-.4001,8-1.6401,8-3.8701v-6c0-2.23-3.75-3.47-8-3.8701ZM22,11.99c-.13.45-2.13,1.49-6,1.8699-.8999.0901-1.8999.1401-3,.1401-5.85,0-8.85-1.46-9-2v-3.5701c2.13,1.0701,5.64,1.5701,9,1.5701,1,0,2.01-.04,3-.1401,2.3301-.21,4.5-.6799,6-1.4299v3.5601ZM16,7.8599c-.8999.0901-1.8999.1401-3,.1401-5.84,0-8.84-1.46-9-1.98v-.01c.16-.55,3.16-2.01,9-2.01,1.1001,0,2.1001.05,3,.1401,3.8401.3699,5.8401,1.3999,6,1.8599-.1599.46-2.1599,1.49-6,1.8599Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,25V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141L7,15.8281V25H19v2H7A2.0024,2.0024,0,0,1,5,25Z"}),(0,a.jsx)("path",{d:"M24,22h4a2.002,2.002,0,0,1,2,2v4a2.002,2.002,0,0,1-2,2H24a2.002,2.002,0,0,1-2-2V24A2.002,2.002,0,0,1,24,22Zm4,6V24H23.9985L24,28Z"}),(0,a.jsx)("path",{d:"M27,6v9.1719l3.5859-3.586L32,13l-6,6-6-6,1.4141-1.4141L25,15.1719V6H13V4H25A2.0024,2.0024,0,0,1,27,6Z"}),(0,a.jsx)("path",{d:"M2 6H8V8H2z"}),(0,a.jsx)("path",{d:"M2 2H10V4H2z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 18H12V20H8z"}),(0,a.jsx)("path",{d:"M14 18H18V20H14z"}),(0,a.jsx)("path",{d:"M8 14H12V16H8z"}),(0,a.jsx)("path",{d:"M14 22H18V24H14z"}),(0,a.jsx)("path",{d:"M20 14H24V16H20z"}),(0,a.jsx)("path",{d:"M20 22H24V24H20z"}),(0,a.jsx)("path",{d:"M27,3H5A2.0025,2.0025,0,0,0,3,5V27a2.0025,2.0025,0,0,0,2,2H27a2.0025,2.0025,0,0,0,2-2V5A2.0025,2.0025,0,0,0,27,3Zm0,2,0,4H5V5ZM5,27V11H27l0,16Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M20 22H24V24H20z"}),(0,a.jsx)("path",{d:"M16 18H20V20H16z"}),(0,a.jsx)("path",{d:"M20 14H24V16H20z"}),(0,a.jsx)("path",{d:"M8 14H12V16H8z"}),(0,a.jsx)("path",{d:"M27,3H5A2.0027,2.0027,0,0,0,3,5V16H5V11H27V27H16v2H27a2.0027,2.0027,0,0,0,2-2V5A2.0027,2.0027,0,0,0,27,3Zm0,6H5V5H27Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,22a3.9553,3.9553,0,0,0-2.0193.5667L20.167,18.7529a4.9654,4.9654,0,0,0,0-5.5058L22.714,10.7A3.0284,3.0284,0,1,0,21.3,9.286l-2.547,2.547a4.9654,4.9654,0,0,0-5.5058,0L9.4332,8.0191A3.9553,3.9553,0,0,0,10,6a4,4,0,1,0-4,4,3.9553,3.9553,0,0,0,2.0191-.5668l3.8139,3.8139a4.9654,4.9654,0,0,0,0,5.5058L8.0192,22.5668A3.9556,3.9556,0,0,0,6,22a4,4,0,1,0,4,4,3.9553,3.9553,0,0,0-.5667-2.0192l3.8138-3.8138A4.9686,4.9686,0,0,0,15,20.8989v3.2848a3,3,0,1,0,2,0V20.8989a4.9686,4.9686,0,0,0,1.7529-.7319l3.8138,3.8137A3.9553,3.9553,0,0,0,22,26a4,4,0,1,0,4-4ZM16,13a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,13ZM4,6A2,2,0,1,1,6,8,2.002,2.002,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Zm20,0a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H17a2.002,2.002,0,0,0-2,2v6H4a2.002,2.002,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H15a2.0023,2.0023,0,0,0,2-2V22H28a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,2,0,4H17V4ZM15.0009,22H4V18H15ZM17,10H28.0007l.0005,4H17Zm-2,2v4H4V12ZM4,28V24H15.0011l0,4Zm13-8V16H28.0015l0,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,3a2.9913,2.9913,0,0,0-2.8163,2H21.858a3.9807,3.9807,0,0,0-7.716,0H9.858A3.9916,3.9916,0,1,0,5,9.858v4.284a3.9807,3.9807,0,0,0,0,7.716v3.3257a3,3,0,1,0,2,0V21.858a3.978,3.978,0,0,0,1.6729-.9034l3.3638,1.6819A2.9635,2.9635,0,0,0,12,23a3.0117,3.0117,0,1,0,.9221-2.1572L9.7744,19.269A3.95,3.95,0,0,0,10,18a3.9963,3.9963,0,0,0-3-3.858V9.858A3.9947,3.9947,0,0,0,9.858,7h4.284a3.9366,3.9366,0,0,0,4.7816,2.8818l1.8118,3.1705a3.0451,3.0451,0,1,0,1.7326-.9987L20.6893,8.941A3.9839,3.9839,0,0,0,21.858,7h3.3257A2.995,2.995,0,1,0,28,3ZM8,18a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,8,18ZM6,8A2,2,0,1,1,8,6,2.002,2.002,0,0,1,6,8ZM16,6a2,2,0,1,1,2,2A2.002,2.002,0,0,1,16,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,3H5A2.002,2.002,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0027,2.0027,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3Zm0,6H17V5H27ZM15,27H11V23h4Zm0-6H11V17h4ZM9,21H5V17H9Zm2-6V11H21v4Zm0-6V5h4V9Zm12,2h4l0,4H23ZM9,5V15H5V5ZM5,23H9v4H5Zm12,4V17H27.001l.001,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,20h-4v2h4v2h-3c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h5v-8c0-1.103-.8975-2-2-2Zm0,8h-3v-2h3v2Z"}),(0,a.jsx)("path",{d:"M24,22v-2h-3v-2h-2v2h-2v2h2v6c0,1.1025,.8975,2,2,2h3v-2h-3v-6h3Z"}),(0,a.jsx)("path",{d:"M14,20h-4v2h4v2h-3c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h5v-8c0-1.103-.8975-2-2-2Zm0,8h-3v-2h3v2Z"}),(0,a.jsx)("path",{d:"M5,16.0005v4H2c-1.1025,0-2,.897-2,2v5.9995c0,1.1025,.8975,2,2,2H7v-13.9995h-2Zm-3,5.9995h3v6H2v-6Z"}),(0,a.jsx)("path",{d:"M4,14V5h7.5857l4,4h12.4143v8h2V9c-.0013-1.1041-.8959-1.9987-2-2h-11.5857l-3.4143-3.4141c-.3742-.3764-.8835-.5873-1.4143-.5859H4c-1.1041,.0013-1.9987,.8959-2,2V14h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,29c-1.6543,0-3-1.3458-3-3s1.3457-3,3-3,3,1.3458,3,3-1.3457,3-3,3Zm0-4c-.5515,0-1,.4486-1,1s.4485,1,1,1,1-.4486,1-1-.4485-1-1-1Z"}),(0,a.jsx)("circle",{cx:"20",cy:"21",r:"2"}),(0,a.jsx)("path",{d:"M15,19c-1.6543,0-3-1.3458-3-3s1.3457-3,3-3,3,1.3458,3,3-1.3457,3-3,3Zm0-4c-.5515,0-1,.4486-1,1s.4485,1,1,1,1-.4486,1-1-.4485-1-1-1Z"}),(0,a.jsx)("path",{d:"M13,27H4c-1.104-.0013-1.9987-.896-2-2V5c.0013-1.104,.896-1.9987,2-2h7.5857c.5308-.0015,1.0401,.2095,1.4143,.5859l3.4143,3.4141h11.5857c1.104,.0013,1.9987,.896,2,2v7h-2v-7H15.5857l-4-4H4V25H13v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.8684,22.0684l1.7937-1.7476A4.2184,4.2184,0,0,0,23.95,21.9534c1.4026,0,2.0005-.5288,2.0005-1.38,0-.69-.4138-1.1267-1.4717-1.2646l-1.1958-.1612c-2.5754-.3217-4.0009-1.4484-4.0009-3.633,0-2.3225,1.8166-3.7942,4.5529-3.7942a5.7221,5.7221,0,0,1,4.691,1.8855l-1.7246,1.7246a3.9649,3.9649,0,0,0-2.8743-1.2876c-1.2649,0-1.8167.5059-1.8167,1.2417,0,.8049.4368,1.1726,1.5638,1.3567l1.2187.1609c2.6213.3679,3.886,1.5408,3.886,3.5412,0,2.3226-1.9546,3.9322-4.9439,3.9322A6.0942,6.0942,0,0,1,18.8684,22.0684Z"}),(0,a.jsx)("path",{d:"M4.24,7.95h5.8409c4.185,0,6.9213,2.69,6.9213,8.0254S14.2661,24,10.0811,24H4.24Zm5.8409,13.36c2.2534,0,3.7021-1.3338,3.7021-4.07V14.71c0-2.7364-1.4487-4.07-3.7021-4.07H7.2756V21.31Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.8281,22.0684l1.7937-1.7476A4.2185,4.2185,0,0,0,22.91,21.9534c1.4025,0,2-.5288,2-1.38,0-.69-.4138-1.1267-1.4716-1.2646l-1.1958-.1612c-2.5755-.3217-4.001-1.4484-4.001-3.633,0-2.3225,1.8166-3.7942,4.553-3.7942a5.722,5.722,0,0,1,4.6909,1.8855l-1.7246,1.7246a3.9643,3.9643,0,0,0-2.8743-1.2876c-1.2649,0-1.8166.5059-1.8166,1.2417,0,.8049.4367,1.1726,1.5637,1.3567l1.2187.1609c2.6214.3679,3.886,1.5408,3.886,3.5413,0,2.3225-1.9546,3.9321-4.9438,3.9321A6.0944,6.0944,0,0,1,17.8281,22.0684Z"}),(0,a.jsx)("path",{d:"M5.2471,24V7.95H15.825v2.69H8.2825v3.8862h6.6687v2.6905H8.2825V21.31H15.825V24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.84,24V11.9966H20.783v2h.1149a3.3115,3.3115,0,0,1,3.3572-2.2764c2.46,0,3.84,1.7017,3.84,4.6909V24H25.1519V16.7107c0-1.7017-.5748-2.5754-1.9776-2.5754-1.2187,0-2.3913.6438-2.3913,1.9314V24Z"}),(0,a.jsx)("path",{d:"M4.2236,24V7.95H14.8015v2.69H7.259v3.8862h6.6687v2.6905H7.259V21.31h7.5425V24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.84,24V11.9966H20.783v2h.1149a3.3115,3.3115,0,0,1,3.3572-2.2764c2.46,0,3.84,1.7017,3.84,4.6909V24H25.1519V16.7107c0-1.7017-.5748-2.5754-1.9776-2.5754-1.2187,0-2.3913.6438-2.3913,1.9314V24Z"}),(0,a.jsx)("path",{d:"M4.2236,24V7.95H14.8015v2.69H7.259v3.8862h6.6687v2.6905H7.259V21.31h7.5425V24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.9443,20.9417v-6.6h-1.77V11.9966h.92c.8735,0,1.1494-.4138,1.1494-1.2417V8.7083h2.6445v3.2883h2.46V14.342h-2.46v7.3125h2.2764V24H24.0488A2.778,2.778,0,0,1,20.9443,20.9417Z"}),(0,a.jsx)("path",{d:"M6.6846,24V7.95H17.2627v2.69H9.72v3.8862h6.669v2.6905H9.72V21.31h7.543V24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m23,32l-1.755-1,2.755-4h4v-7h-12v7h4v2h-4c-1.1025,0-2-.8975-2-2v-7c0-1.1025.8975-2,2-2h12c1.1025,0,2,.8975,2,2v7c0,1.1025-.8975,2-2,2h-3l-2,3Z"}),(0,a.jsx)("path",{d:"m13,2C7.7021,2,2,3.252,2,6v18c0,2.4033,4.3618,3.6626,9,3.9404v-2.0015c-4.5337-.2803-6.8674-1.4644-7-1.939v-3.5723c1.7065.856,4.3062,1.3442,7,1.5063v-1.9951c-4.5337-.2803-6.8674-1.4644-7-1.939v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723,5.2979,0,11-1.252,11-4v-6.0005c-.0007-2.748-5.7024-3.9995-11-3.9995ZM3.9985,6.0151c.1523-.5552,3.1514-2.0151,9.0015-2.0151,5.7976,0,8.7949,1.4341,8.9968,2-.2019.5659-3.1992,2-8.9968,2-5.8501,0-8.8491-1.46-9.0015-1.9849Zm18.0015,5.9722c-.1606.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.3481,28.875c-4.0473,0-5.5878-1.0579-5.5878-2.8284a2.2115,2.2115,0,0,1,2.1386-2.3v-.253a1.9726,1.9726,0,0,1-1.5405-2c0-1.242,1.0576-1.8628,2.207-2.1158v-.0918a3.6228,3.6228,0,0,1-2.1845-3.4953c0-2.4375,1.7246-4.07,4.9672-4.07A6.6717,6.6717,0,0,1,27.44,12.02v-.3908a1.5343,1.5343,0,0,1,1.7022-1.7476h1.8623v2.2534H28.4521v.322a3.5917,3.5917,0,0,1,1.8628,3.3343c0,2.4145-1.7016,4.0241-4.9668,4.0241a7.3662,7.3662,0,0,1-1.8393-.207,1.23,1.23,0,0,0-.8511,1.0808c0,.5979.5059.8967,1.564.8967H27.44c2.9434,0,4.208,1.2649,4.208,3.4263C31.6484,27.5183,29.9473,28.875,25.3481,28.875Zm1.4947-4.7371H22.75a1.473,1.473,0,0,0-.6211,1.2417c0,.92.6895,1.4717,2.5293,1.4717H26.13c1.9087,0,2.76-.4829,2.76-1.4946C28.89,24.5979,28.3374,24.1379,26.8428,24.1379Zm.667-8.163v-.3912c0-1.2187-.7588-1.84-2.1617-1.84s-2.1616.6209-2.1616,1.84v.3912c0,1.1955.7588,1.84,2.1616,1.84S27.51,17.17,27.51,15.9749Z"}),(0,a.jsx)("path",{d:"M2.2344,7.95H5.66l4.1162,7.8413h.0923l4.07-7.8413h3.2886V24H14.3525V12.48h-.0918L13.0186,15.032l-3.2881,6.07-3.2881-6.07L5.2007,12.48H5.1084V24H2.2344Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.98,28.875c-4.0474,0-5.5879-1.0579-5.5879-2.8284a2.2112,2.2112,0,0,1,2.1387-2.3v-.253a1.9725,1.9725,0,0,1-1.541-2c0-1.242,1.0576-1.8628,2.2075-2.1158v-.0918a3.622,3.622,0,0,1-2.1846-3.4953c0-2.4375,1.7246-4.07,4.9673-4.07a6.6768,6.6768,0,0,1,2.0923.2988v-.3908a1.5341,1.5341,0,0,1,1.7016-1.7476h1.8623v2.2534H26.0835v.322a3.5926,3.5926,0,0,1,1.8628,3.3343c0,2.4145-1.7022,4.0241-4.9668,4.0241a7.3717,7.3717,0,0,1-1.84-.207,1.23,1.23,0,0,0-.8505,1.0808c0,.5979.5058.8967,1.5634.8967h3.2193c2.9433,0,4.208,1.2649,4.208,3.4263C29.28,27.5183,27.5781,28.875,22.98,28.875Zm1.4941-4.7371H20.3809A1.474,1.474,0,0,0,19.76,25.38c0,.92.69,1.4717,2.5293,1.4717h1.4716c1.9092,0,2.76-.4829,2.76-1.4946C26.5205,24.5979,25.9688,24.1379,24.4736,24.1379Zm.667-8.163v-.3912c0-1.2187-.7588-1.84-2.1611-1.84s-2.1621.6209-2.1621,1.84v.3912c0,1.1955.7588,1.84,2.1621,1.84S25.1406,17.17,25.1406,15.9749Z"}),(0,a.jsx)("path",{d:"M4.603,24V7.95h7.22c2.9668,0,4.76,2,4.76,4.967,0,2.9893-1.7935,4.9668-4.76,4.9668H7.6387V24Zm3.0357-8.738h3.9092a1.6886,1.6886,0,0,0,1.8852-1.8167V12.3875a1.672,1.672,0,0,0-1.8852-1.7935H7.6387Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.9434,20.7346c0-2.46,1.8623-3.6792,5.1279-3.6792h2.0464v-.8738c0-1.3337-.6665-2.1154-2.23-2.1154a3.1249,3.1249,0,0,0-2.7363,1.5175L18.4033,14.02a5.0544,5.0544,0,0,1,4.6909-2.3c3.2422,0,4.9668,1.54,4.9668,4.2771v5.6567h1.1958V24H27.624a2.184,2.184,0,0,1-2.23-2.07h-.1377c-.3912,1.5408-1.7017,2.3455-3.4952,2.3455C19.3232,24.2759,17.9434,22.8733,17.9434,20.7346Zm7.1743-.3218V18.8262H23.2324c-1.541,0-2.3.5288-2.3,1.4717v.3908c0,.9658.667,1.4488,1.8164,1.4488C24.06,22.1375,25.1177,21.54,25.1177,20.4128Z"}),(0,a.jsx)("path",{d:"M6.9717,24H3.9365V7.95H11.18c2.92,0,4.7373,1.9316,4.7373,4.967a4.4237,4.4237,0,0,1-2.9893,4.553L16.2158,24h-3.38L9.8462,17.8145H6.9717Zm3.9092-8.738a1.689,1.689,0,0,0,1.8857-1.8167V12.3875a1.6723,1.6723,0,0,0-1.8857-1.7935H6.9717v4.668Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.7156,22h-.115a3.371,3.371,0,0,1-3.3113,2.2764c-3.0124,0-4.6912-2.2764-4.6912-6.3006,0-4.0012,1.6788-6.2546,4.6912-6.2546a3.3049,3.3049,0,0,1,3.3113,2.2534h.115v-6.99h2.9433V24H25.7156Zm0-2.1157V16.0667c0-1.1727-1.0808-1.9314-2.4837-1.9314A2.556,2.556,0,0,0,20.68,16.9636v2.07a2.5365,2.5365,0,0,0,2.5522,2.8052C24.6348,21.8384,25.7156,21.1257,25.7156,19.8838Z"}),(0,a.jsx)("path",{d:"M6.5576,24H3.5222V7.95h7.2434c2.92,0,4.7371,1.9316,4.7371,4.967a4.4237,4.4237,0,0,1-2.9893,4.553L15.8018,24h-3.38L9.4321,17.8145H6.5576Zm3.9092-8.738a1.6888,1.6888,0,0,0,1.8855-1.8167V12.3875a1.6722,1.6722,0,0,0-1.8855-1.7935H6.5576v4.668Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"23",r:"1"}),(0,a.jsx)("path",{d:"M8 22H20V24H8z"}),(0,a.jsx)("circle",{cx:"23",cy:"9",r:"1"}),(0,a.jsx)("path",{d:"M8 8H20V10H8z"}),(0,a.jsx)("path",{d:"M26,14a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2H8v4H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V20a2,2,0,0,0-2-2H24V14ZM6,6H26v6H6ZM26,26H6V20H26Zm-4-8H10V14H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.338 31 24.602 30 26.8895 26 23 26 26.993 19 28.73 20 26.4463 24 30.3367 24 26.338 31z"}),(0,a.jsx)("path",{d:"M8 14H12V16H8z"}),(0,a.jsx)("path",{d:"M20 14H24V16H20z"}),(0,a.jsx)("path",{d:"M8 18H12V20H8z"}),(0,a.jsx)("path",{d:"M14 18H18V20H14z"}),(0,a.jsx)("path",{d:"M14 22H18V24H14z"}),(0,a.jsx)("path",{d:"M5,11H27v5h2V5c0-1.1025-.8972-2-2-2H5c-1.1028,0-2,.8975-2,2V27c0,1.1025,.8972,2,2,2h15v-2H5V11ZM27,5v4H5V5H27Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,28v-6.1699l2.5898,2.5801,1.4102-1.4102-5-5-5,5,1.4102,1.4102,2.5898-2.5801v6.1699c0,1.1025,.8972,2,2,2h9v-2H8Z"}),(0,a.jsx)("path",{d:"M25,17c-2.8506,0-5,1.29-5,3v7c0,1.71,2.1494,3,5,3s5-1.29,5-3v-7c0-1.71-2.1494-3-5-3Zm0,2c1.936,0,3,.751,3,1s-1.064,1-3,1-3-.751-3-1,1.064-1,3-1Zm0,9c-1.936,0-3-.751-3-1v-4.5796c.8264,.3623,1.8508,.5796,3,.5796s2.1736-.2173,3-.5796v4.5796c0,.249-1.064,1-3,1Z"}),(0,a.jsx)("path",{d:"M28.5898,7.5898l-2.5898,2.5801V4c0-1.1025-.8972-2-2-2H15v2h9v6.1699l-2.5898-2.5801-1.4102,1.4102,5,5,5-5-1.4102-1.4102Z"}),(0,a.jsx)("path",{d:"M7,15c2.8506,0,5-1.29,5-3V5c0-1.71-2.1494-3-5-3S2,3.29,2,5v7c0,1.71,2.1494,3,5,3Zm0-11c1.936,0,3,.751,3,1s-1.064,1-3,1-3-.751-3-1,1.064-1,3-1Zm-3,3.4204c.8264,.3623,1.8508,.5796,3,.5796s2.1736-.2173,3-.5796v4.5796c0,.249-1.064,1-3,1s-3-.751-3-1V7.4204Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,3c-5.2979,0-11,1.252-11,4V25c0,2.748,5.7021,4,11,4s11-1.252,11-4V7c0-2.748-5.7021-4-11-4Zm0,2c5.7976,0,8.7949,1.4341,8.9968,2-.2019,.5659-3.1992,2-8.9968,2-5.8413,0-8.8394-1.4556-9-1.9824v-.0049c.1606-.5571,3.1587-2.0127,9-2.0127ZM7,9.4277c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723Zm0,6c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723Zm9,11.5723c-5.8501,0-8.8491-1.46-9-2v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596c-.1606,.5571-3.1587,2.0127-9,2.0127Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.5,17c-.936,0-1.8157.3647-2.4773,1.0273l1.4155,1.4131c.2834-.2842.6606-.4404,1.0618-.4404.8271,0,1.5.6729,1.5,1.5,0,.4006-.156.7773-.4392,1.0605l-4.9998,5c-.2834.2832-.6602.4395-1.061.4395-.8271,0-1.5-.6729-1.5-1.5,0-.4006.156-.7773.439-1.0605l-1.4146-1.4136c-.6606.6606-1.0244,1.5396-1.0244,2.4741,0,1.9299,1.5701,3.5,3.5,3.5.9353,0,1.8145-.3643,2.4753-1.0254l4.9998-4.9998c.6609-.6611,1.0249-1.54,1.0249-2.4749,0-1.9299-1.5701-3.5-3.5-3.5h0Z"}),(0,a.jsx)("path",{d:"M16.5,28c-.8271,0-1.5-.6729-1.5-1.5,0-.4006.156-.7773.4392-1.0605l4.9998-5c.2834-.2832.6602-.4395,1.061-.4395.8271,0,1.5.6729,1.5,1.5,0,.4006-.156.7773-.439,1.0605l1.4146,1.4136c.6606-.6606,1.0244-1.5396,1.0244-2.4741,0-1.9299-1.5701-3.5-3.5-3.5-.9353,0-1.8145.3643-2.4753,1.0254l-4.9998,4.9998c-.6609.6611-1.0249,1.54-1.0249,2.4749,0,1.9299,1.5701,3.5,3.5,3.5.936,0,1.8157-.3647,2.4773-1.0273l-1.4155-1.4131c-.2834.2842-.6606.4404-1.0618.4404h0Z"}),(0,a.jsx)("circle",{cx:"7",cy:"6",r:"1"}),(0,a.jsx)("path",{d:"M5.3433,23.1714l1.8286,1.8286h-3.1694l-.0024-1.75v-11.25h-2v11.2051h0v1.7949h.0002c.0012,1.1028.8992,2,2.0022,2h3.1694l-1.8286,1.8286,1.4141,1.4141,4.2427-4.2427-4.2427-4.2427-1.4141,1.4141Z"}),(0,a.jsx)("path",{d:"M4,10h16c1.1045,0,2-.8955,2-2v-1h3.9976l.0024,5h0v3h2v-6.4053h0v-1.5923c0-1.104-.8984-2.0024-2.0024-2.0024h-3.9976v-1c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2v4c0,1.1045.8955,2,2,2ZM4,4h16v4H4v-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.83,20l.34-2L25,17.15V13c0-.08,0-.15,0-.23l5.06-1.36-.51-1.93-4.83,1.29A9,9,0,0,0,20,5V2H18V4.23a8.81,8.81,0,0,0-4,0V2H12V5a9,9,0,0,0-4.71,5.82L2.46,9.48,2,11.41,7,12.77c0,.08,0,.15,0,.23v4.15L1.84,18l.32,2L7,19.18a8.9,8.9,0,0,0,.82,3.57L3.29,27.29l1.42,1.42,4.19-4.2a9,9,0,0,0,14.2,0l4.19,4.2,1.42-1.42-4.54-4.54A8.9,8.9,0,0,0,25,19.18ZM15,25.92A7,7,0,0,1,9,19V13h6ZM9.29,11a7,7,0,0,1,13.42,0ZM23,19a7,7,0,0,1-6,6.92V13h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,2v8h-4L16,2l-8,8h-4V2h-2v8c0,1.1025.8972,2,2,2h4l7,7v7.1719l-2.5859-2.5859-1.4141,1.4141,5,5,5-5-1.4141-1.4141-2.5859,2.5859v-7.1719l7-7h4c1.1028,0,2-.8975,2-2V2h-2Zm-12,15.1714l-6.1714-6.1714,6.1714-6.1714,6.1714,6.1714-6.1714,6.1714Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,12V4H22V7H18a2.0023,2.0023,0,0,0-2,2v6H10V12H2v8h8V17h6v6a2.0023,2.0023,0,0,0,2,2h4v3h8V20H22v3H18V9h4v3ZM8,18H4V14H8Zm16,4h4v4H24ZM24,6h4v4H24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m29,26H12c-.2651,0-.5195-.1053-.707-.2928L2.293,16.7072c-.3906-.3906-.3906-1.0237,0-1.4143L11.293,6.2928c.1875-.1875.4419-.2928.707-.2928h17c.5522,0,1,.4478,1,1v18c0,.5522-.4478,1-1,1Zm-16.5857-2h15.5857V8h-15.5857l-8,8,8,8Z"}),(0,a.jsx)("path",{d:"M20.4141 16 25 11.4141 23.5859 10 19 14.5859 14.4143 10 13 11.4141 17.5859 16 13 20.5859 14.4143 22 19 17.4141 23.5859 22 25 20.5859 20.4141 16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 16H16V18H4z"}),(0,a.jsx)("path",{d:"M2 11H12V13H2z"}),(0,a.jsx)("path",{d:"M29.9189,16.6064l-3-7A.9985.9985,0,0,0,26,9H23V7a1,1,0,0,0-1-1H6V8H21V20.5562A3.9924,3.9924,0,0,0,19.1421,23H12.8579a4,4,0,1,0,0,2h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V17A.9965.9965,0,0,0,29.9189,16.6064ZM9,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,9,26ZM23,11h2.3408l2.1431,5H23Zm0,15a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,23,26Zm5-3H26.8579A3.9954,3.9954,0,0,0,23,20V18h5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12 6 8 6 8 2 6 2 6 6 2 6 2 8 6 8 6 12 8 12 8 8 12 8 12 6z"}),(0,a.jsx)("path",{d:"M29.9189,16.6064l-3-7A.9985.9985,0,0,0,26,9H23V7a1,1,0,0,0-1-1H15V8h6V20.5562A3.9924,3.9924,0,0,0,19.1421,23H12.8579a3.9806,3.9806,0,0,0-7.7158,0H4V14H2V24a1,1,0,0,0,1,1H5.1421a3.9806,3.9806,0,0,0,7.7158,0h6.2842a3.9806,3.9806,0,0,0,7.7158,0H29a1,1,0,0,0,1-1V17A.9965.9965,0,0,0,29.9189,16.6064ZM9,26a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,9,26ZM23,11h2.3408l2.1431,5H23Zm0,15a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,23,26Zm5-3H26.8579A3.9954,3.9954,0,0,0,23,20V18h5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.4819,8.624l-10-5.5a1,1,0,0,0-.9638,0l-10,5.5a1,1,0,0,0,0,1.752L18,15.5913V26.3086l-3.0362-1.6693L14,26.3912l4.5181,2.4848a.9984.9984,0,0,0,.9638,0l10-5.5A1,1,0,0,0,30,22.5V9.5A1,1,0,0,0,29.4819,8.624ZM19,5.1416,26.9248,9.5,19,13.8584,11.0752,9.5Zm9,16.7671-8,4.4V15.5913l8-4.4Z"}),(0,a.jsx)("path",{d:"M2 14H10V16H2z",transform:"matrix(-1 0 0 -1 12 30)"}),(0,a.jsx)("path",{d:"M4 22H12V24H4z",transform:"matrix(-1 0 0 -1 16 46)"}),(0,a.jsx)("path",{d:"M6 18H14V20H6z",transform:"matrix(-1 0 0 -1 20 38)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.9189,18.6064l-3-7c-.1572-.3682-.5186-.6064-.9189-.6064h-3v-2c0-.5527-.4473-1-1-1h-3v2h2v12.5562c-.9094.5308-1.5869,1.4009-1.858,2.4438h-6.2841c-.447-1.7207-1.9993-3-3.8579-3s-3.4109,1.2793-3.8579,3h-1.1421v-8h-2v9c0,.5527.4473,1,1,1h2.1421c.447,1.7207,1.9993,3,3.8579,3s3.4109-1.2793,3.8579-3h6.2841c.4472,1.7207,1.9997,3,3.858,3s3.4108-1.2793,3.858-3h2.142c.5527,0,1-.4473,1-1v-7c0-.1401-.0293-.2725-.0811-.3936ZM9,28c-1.1025,0-2-.8975-2-2s.8975-2,2-2,2,.8975,2,2-.8975,2-2,2ZM23,13h2.3408l2.1431,5h-4.4839v-5ZM23,28c-1.103,0-2-.8975-2-2s.897-2,2-2,2,.8975,2,2-.897,2-2,2ZM28,25h-1.142c-.4472-1.7207-1.9997-3-3.858-3v-2h5v5ZM4.833,11.7529l-1.49,1.4901,1.414,1.414,1.49-1.4901c.5318.3546,1.127.6031,1.753.7321v2.1011h2v-2.1011c.626-.129,1.2211-.3775,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49c.3545-.5318.603-1.127.732-1.753h2.1011v-2h-2.1011c-.129-.6259-.3774-1.2211-.7319-1.7529l1.4901-1.4901-1.414-1.414-1.4901,1.4901c-.5318-.3546-1.127-.6031-1.753-.7321V2h-2v2.1011c-.6259.129-1.2211.3775-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49c-.3545.5318-.603,1.127-.732,1.753H2v2h2.1011c.1289.6259.3774,1.2211.7319,1.7529ZM9,6c1.6569,0,3,1.3431,3,3-.0018,1.6561-1.3439,2.9982-3,3-1.6569,0-3-1.3431-3-3s1.3431-3,3-3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.92,16.61l-3-7A1,1,0,0,0,26,9H23V7a1,1,0,0,0-1-1H3A1,1,0,0,0,2,7V24a1,1,0,0,0,1,1H5.14a4,4,0,0,0,7.72,0h6.28a4,4,0,0,0,7.72,0H29a1,1,0,0,0,1-1V17A1,1,0,0,0,29.92,16.61ZM23,11h2.34l2.14,5H23ZM9,26a2,2,0,1,1,2-2A2,2,0,0,1,9,26Zm10.14-3H12.86a4,4,0,0,0-7.72,0H4V8H21V20.56A4,4,0,0,0,19.14,23ZM23,26a2,2,0,1,1,2-2A2,2,0,0,1,23,26Zm5-3H26.86A4,4,0,0,0,23,20V18h5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 2 20 14 30 8 20 2z"}),(0,a.jsx)("path",{d:"m28,14v8H4V6h10v-2H4c-1.1045,0-2,.8955-2,2v16c0,1.1045.8955,2,2,2h8v4h-4v2h16v-2h-4v-4h8c1.1046,0,2-.8955,2-2v-8h-2Zm-10,14h-4v-4h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,23H19a3,3,0,0,0-3,3v2h2V26a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V26A3,3,0,0,0,25,23Z"}),(0,a.jsx)("path",{d:"M18,18a4,4,0,1,0,4-4A4,4,0,0,0,18,18Zm6,0a2,2,0,1,1-2-2A2,2,0,0,1,24,18Z"}),(0,a.jsx)("path",{d:"M15 15.415 13.586 14 11 16.587 8.414 14 7 15.415 9.586 18 7 20.586 8.414 22 11 19.414 13.586 22 15 20.586 12.414 18 15 15.415z"}),(0,a.jsx)("path",{d:"M14,26H4V6h7.1716l3.4141,3.4143L15.1716,10H28v8h2V10a2,2,0,0,0-2-2H16L12.5859,4.5858A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M13.48,5.15l5.69,8.14.8,1.15,1.35-.36,4.52-1.21a2.13,2.13,0,0,1,1.12,0A1.84,1.84,0,0,1,28.23,14,1.87,1.87,0,0,1,27,16.45l-18.71,5a1.78,1.78,0,0,1-1,0A1.87,1.87,0,0,1,6,20.12l-.25-.93L5,16.38l-.74-2.74,1.44-.39L8,16.35l.81,1.08,1.31-.35,2.8-.75,1.94-.52-.52-1.93L12.08,5.52l1.4-.37M14.16,3a1.06,1.06,0,0,0-.5,0l-3.09.83A1,1,0,0,0,9.89,5l2.5,9.36-2.81.75L6.85,11.5a1,1,0,0,0-.52-.36,1.06,1.06,0,0,0-.5,0L2.72,12A1,1,0,0,0,2,13.16L3,16.9l.75,2.8.25.94a3.87,3.87,0,0,0,2.74,2.74,3.91,3.91,0,0,0,2,0l18.7-5a3.84,3.84,0,0,0,0-7.44,4.27,4.27,0,0,0-2.16,0l-4.51,1.21L14.7,3.41A1,1,0,0,0,14.16,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.0051,16.3956l-3.5975,3.5977-1.4142-1.4142,3.5976-3.5976M10.5792,20l-3.5792,3.5791,1.4075,1.4209,3.5925-3.5926M5.5792,25l-3.5792,3.5791,1.4075,1.4209,3.5925-3.5926M20.6015,9.971l-3.6081,3.6081,1.4142,1.4142,3.608-3.6082M14,2v2h12.5713s-4.5847,4.5858-4.5847,4.5858l1.4142,1.4142,4.5992-4.5847v12.5847h2l-.0134-16h-15.9866Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,2,17,8l1.4146,1.4023L22,5.8184V28H6V12H4V28a2.0025,2.0025,0,0,0,2,2H22a2.0025,2.0025,0,0,0,2-2V5.8154l3.5859,3.5869L29,8Z"}),(0,a.jsx)("path",{d:"M16,24H12a2.0023,2.0023,0,0,1-2-2V18a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,16,24Zm-4-6v4h4V18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 4 12 10 13.41 11.41 17 7.83 17 20 19 20 19 7.83 22.59 11.41 24 10 18 4z"}),(0,a.jsx)("path",{d:"M8 18H15V20H8z"}),(0,a.jsx)("path",{d:"M8 22H24V24H8z"}),(0,a.jsx)("path",{d:"M8 26H24V28H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M26.4632,7.4637c-.9373-.9372-2.2085-1.4637-3.534-1.4637h-.0107c-1.319,0-2.584.524-3.5167,1.4567l-2.9076,2.9076L8.4181,2.2855c-.3805-.3806-.9976-.3806-1.3781,0l-.5519.5521c-3.3182,3.3195-3.3174,8.7003.0017,12.0189l3.1455,3.145L1.0509,26.5858l1.4141,1.4142,9.9984-9.9985-4.5596-4.5591c-2.4756-2.4761-2.5327-6.4688-.1714-9.0142l8.3573,8.3603c1.223,1.2234,1.2228,3.2066-.0004,4.4298l-.7964.7964,1.4141,1.4141.7964-.7964c1.8623-1.8628,1.9683-4.7998.3638-6.813l2.9406-2.9406c.5626-.5626,1.3257-.8787,2.1214-.8787h0c.7952,0,1.5579.3159,2.1203.8781l2.1224,2.1219c-1.4878,1.4873-5.1719,5.1699-5.1719,5.1699v2.8301c0,3.866-3.134,7-7,7h-3v2h3c4.9706,0,9-4.0294,9-9v-2.0586c.7607-.7021,6-5.9414,6-5.9414l-3.5368-3.5363Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,20H4.73A1.9735,1.9735,0,0,0,3,19a2,2,0,0,0,0,4A1.9735,1.9735,0,0,0,4.73,22H8Z"}),(0,a.jsx)("path",{d:"M29,9a1.9735,1.9735,0,0,0-1.73,1H24v2h3.27A1.9991,1.9991,0,1,0,29,9Z"}),(0,a.jsx)("path",{d:"M25.4141,5,21,.5859,16.5859,5,20,8.4141V18h2V8.4141ZM21,3.4141,22.5859,5,21,6.5859,19.4141,5Z"}),(0,a.jsx)("path",{d:"M12,23.5859V14H10v9.5859L6.5859,27,11,31.4141,15.4141,27ZM9.4141,27,11,25.4141,12.5859,27,11,28.5859Z"}),(0,a.jsx)("path",{d:"M18,10H8.4141L5,6.5859.5859,11,5,15.4141,8.4141,12H18ZM5,12.5859,3.4141,11,5,9.4141,6.5859,11Z"}),(0,a.jsx)("path",{d:"M13,3A2,2,0,0,0,9,3,1.9733,1.9733,0,0,0,10,4.73V8h2V4.73A1.9733,1.9733,0,0,0,13,3Z"}),(0,a.jsx)("path",{d:"M22,27.2705V24H20v3.27a2,2,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M31.4141,21,27,16.5859,23.5859,20H14v2h9.5859L27,25.4141ZM27,19.4141,28.5859,21,27,22.5859,25.4141,21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19 16 19 14 26.171 14 23.878 11.707 25.292 10.293 30 15 25.292 19.707 23.878 18.293 26.171 16 19 16z"}),(0,a.jsx)("path",{d:"M17 12 15 12 15 5.828 12.707 8.121 11.293 6.707 16 2 20.707 6.707 19.293 8.121 17 5.828 17 12z"}),(0,a.jsx)("path",{d:"M17,20.1011V18a4.0045,4.0045,0,0,0-4-4H5.8281l2.293-2.293L6.707,10.293,2,15l4.707,4.707,1.4141-1.414L5.8281,16H13a2.0025,2.0025,0,0,1,2,2v2.1011a5,5,0,1,0,2,0ZM16,28a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,23H12V9h4a4.0045,4.0045,0,0,1,4,4v6A4.0042,4.0042,0,0,1,16,23Zm-2-2h2a2.0023,2.0023,0,0,0,2-2V13a2.002,2.002,0,0,0-2-2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 11 20 9 12 9 12 23 20 23 20 21 14 21 14 17 19 17 19 15 14 15 14 11 20 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9 12 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V11H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,23H17V9h4a4.0045,4.0045,0,0,1,4,4v6A4.0042,4.0042,0,0,1,21,23Zm-2-2h2a2.0023,2.0023,0,0,0,2-2V13a2.002,2.002,0,0,0-2-2H19Z"}),(0,a.jsx)("path",{d:"M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 11 25 9 17 9 17 23 25 23 25 21 19 21 19 17 24 17 24 15 19 15 19 11 25 11z"}),(0,a.jsx)("path",{d:"M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 11 20 11 20 21 17 21 17 23 25 23 25 21 22 21 22 11 25 11 25 9 17 9 17 11z"}),(0,a.jsx)("path",{d:"M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,23H17V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H19Zm0-7h4V10.9985H19Z"}),(0,a.jsx)("path",{d:"M7 11 10 11 10 23 12 23 12 11 15 11 15 9 7 9 7 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 27.172 17 22 15 22 15 27.172 12.414 24.586 11 26 16 31 21 26 19.586 24.586 17 27.172z"}),(0,a.jsx)("path",{d:"M30,12H2v8H4V30H6V20H26V30h2V20h2Zm-2,6H4V14H28Z"}),(0,a.jsx)("path",{d:"M15 4.828 15 10 17 10 17 4.828 19.586 7.414 21 6 16 1 11 6 12.414 7.414 15 4.828z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,4V8H4V4H8M2,2v8h8V2Z"}),(0,a.jsx)("path",{d:"M18,7v4H14V7h4M12,5v8h8V5Z"}),(0,a.jsx)("path",{d:"M8,16v4H4V16H8M2,14v8h8V14Z"}),(0,a.jsx)("path",{d:"M22,10v6H16v6H10v8H30V10Zm-4,8h4v4H18ZM16,28H12V24h4Zm6,0H18V24h4Zm6,0H24V24h4Zm0-6H24V18h4Zm-4-6V12h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,30H4a2,2,0,0,1-2-2V16a2,2,0,0,1,2-2h6a2,2,0,0,1,2,2V28A2,2,0,0,1,10,30ZM4,16V28h6V16Z"}),(0,a.jsx)("path",{d:"M28,4H6A2,2,0,0,0,4,6v6H6V6H28V20H14v2h2v4H14v2h9V26H18V22H28a2,2,0,0,0,2-2V6A2,2,0,0,0,28,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 2H30V6H26z"}),(0,a.jsx)("path",{d:"M26 8H30V12H26z"}),(0,a.jsx)("path",{d:"M20 2H24V6H20z"}),(0,a.jsx)("path",{d:"M20 8H24V12H20z"}),(0,a.jsx)("path",{d:"m28,20h-14v2h2v4h-2v2h9v-2h-5v-4h10c.5304,0,1.0392-.2108,1.4142-.5858s.5858-.8838.5858-1.4142v-6h-2v6Z"}),(0,a.jsx)("path",{d:"m6,6h12v-2H6c-.5304,0-1.0392.2107-1.4142.5858-.3751.375-.5858.8838-.5858,1.4142v6h2v-6Z"}),(0,a.jsx)("path",{d:"m10,14H4c-.5304,0-1.0392.2107-1.4142.5858-.3751.375-.5858.8838-.5858,1.4142v12c0,.5304.2107,1.0392.5858,1.4142.375.375.8838.5858,1.4142.5858h6c.5304,0,1.0392-.2108,1.4142-.5858.3751-.375.5858-.8838.5858-1.4142v-12c0-.5304-.2107-1.0392-.5858-1.4142-.375-.3751-.8838-.5858-1.4142-.5858Zm0,14H4v-12h6v12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,4Z"}),(0,a.jsx)("path",{d:"M14.5,30A5.4962,5.4962,0,0,1,9,24.52c0-3.4426,4.3442-21.0141,4.5293-21.76a1,1,0,0,1,1.9414,0C15.6558,3.5059,20,21.0774,20,24.52A5.4962,5.4962,0,0,1,14.5,30Zm0-22.7561C13.0391,13.38,11,22.4089,11,24.52a3.5,3.5,0,0,0,7,0C18,22.4089,15.9609,13.38,14.5,7.2439Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,4Z"}),(0,a.jsx)("path",{d:"M14.5,30A5.4962,5.4962,0,0,1,9,24.52c0-3.4426,4.3442-21.0141,4.5293-21.76a1,1,0,0,1,1.9414,0C15.6558,3.5059,20,21.0774,20,24.52A5.4962,5.4962,0,0,1,14.5,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10.6,24l1.4,1.4-5,5-5-5,1.4-1.4,2.6,2.6V2h2v24.6l2.6-2.6h0ZM14,2v2h16v-2H14ZM14,10h14v-2h-14v2ZM14,16h12v-2h-12v2ZM14,22h10v-2h-10v2ZM14,28h8v-2h-8v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,30A11,11,0,0,1,13,8a1,1,0,0,1,1,1v9h9a1,1,0,0,1,1,1A11,11,0,0,1,13,30ZM12,10.06A9,9,0,1,0,21.94,20H14a2,2,0,0,1-2-2Z"}),(0,a.jsx)("path",{d:"M28,14H19a2,2,0,0,1-2-2V3a1,1,0,0,1,1-1A11,11,0,0,1,29,13,1,1,0,0,1,28,14Zm-9-2h7.94A9,9,0,0,0,19,4.06Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M15,28V26a9.0133,9.0133,0,0,0,8.9448-8H16a2.0021,2.0021,0,0,1-2-2V8.0552A9.0133,9.0133,0,0,0,6,17H4A11.0125,11.0125,0,0,1,15,6a1,1,0,0,1,1,1v9h9a1,1,0,0,1,1,1A11.0125,11.0125,0,0,1,15,28Z"}),(0,a.jsx)("path",{d:"M29.0057,14H19.995A1.9957,1.9957,0,0,1,18,12V3a1.0083,1.0083,0,0,1,1.02-1A11.0125,11.0125,0,0,1,30,12.98,1.0035,1.0035,0,0,1,29.0057,14ZM20,12h7.9448A9.018,9.018,0,0,0,20,4.0552Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29.3906,14.5269L17.4731,2.6094c-.406-.4062-.9397-.6094-1.4731-.6094s-1.0671.2031-1.4731.6094L2.6094,14.5269c-.4062.4062-.6094.9395-.6094,1.4731s.2031,1.0669.6094,1.4731l11.9175,11.9175c.406.4062.9397.6094,1.4731.6094s1.0671-.2031,1.4731-.6094l11.9175-11.9175c.4062-.4062.6094-.9395.6094-1.4731s-.2031-1.0669-.6094-1.4731Zm-13.3906,13.5088L3.9646,16,16,3.9644l12.0356,12.0356-12.0356,12.0356Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29.3906,14.5269L17.4731,2.6094c-.406-.4062-.9397-.6094-1.4731-.6094s-1.0671.2031-1.4731.6094L2.6094,14.5269c-.4062.4062-.6094.9395-.6094,1.4731s.2031,1.0669.6094,1.4731l11.9175,11.9175c.406.4062.9397.6094,1.4731.6094s1.0671-.2031,1.4731-.6094l11.9175-11.9175c.4062-.4062.6094-.9395.6094-1.4731s-.2031-1.0669-.6094-1.4731Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142M8,1,1,8l7,7,7-7L8,1Z"}),(0,a.jsx)("path",{d:"M8,2.4142,13.5858,8,8,13.5858,2.4142,8,8,2.4142"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,11H7a3,3,0,0,0-3,3v2H6V14a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V14A3,3,0,0,0,13,11Z"}),(0,a.jsx)("path",{d:"M10,10A4,4,0,1,0,6,6,4,4,0,0,0,10,10Zm0-6A2,2,0,1,1,8,6,2,2,0,0,1,10,4Z"}),(0,a.jsx)("path",{d:"M20 4H30V6H20z"}),(0,a.jsx)("path",{d:"M20 8H30V10H20z"}),(0,a.jsx)("path",{d:"M20 12H26V14H20z"}),(0,a.jsx)("path",{d:"M5,30H3a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2H6v2H3v2H5a2,2,0,0,1,2,2v2A2,2,0,0,1,5,30ZM3,26v2H5V26Z"}),(0,a.jsx)("path",{d:"M13,30H11a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,13,30Zm-2-8v6h2V22Z"}),(0,a.jsx)("path",{d:"M21,30H19a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,21,30Zm-2-8v6h2V22Z"}),(0,a.jsx)("path",{d:"M29,30H27a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2h2a2,2,0,0,1,2,2v6A2,2,0,0,1,29,30Zm-2-8v6h2V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6V26H4V6H28m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M6 8H16V10H6z"}),(0,a.jsx)("path",{d:"M6 12H16V14H6z"}),(0,a.jsx)("path",{d:"M6 16H12V18H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,19v-1c0-1.7-1.3-3-3-3h-6c-1.7,0-3,1.3-3,3v7h2v-7c0-.5.4-1,1-1h6c.5,0,1,.5,1,1v1h2ZM10,10c0,2.2,1.8,4,4,4s4-1.8,4-4-1.8-4-4-4-4,1.8-4,4ZM16,10c0,1.1-.9,2-2,2s-2-.9-2-2,.9-2,2-2,2,.9,2,2ZM27,21c0,7.8-7.7,8-8,8v2c0,0,10-.2,10-10h-2ZM19,27c2.1,0,6-1.3,6-6h-2c0,3.9-3.6,4-4,4v2ZM5,3h18v16h2V3c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v26c0,1.1.9,2,2,2h12v-2H5V3ZM20,21c.6,0,1,.4,1,1s-.4,1-1,1-1-.4-1-1,.4-1,1-1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.4131,14.584,12.416,6.5869a2.0016,2.0016,0,0,0-2.832,0L1.5869,14.584a2.0016,2.0016,0,0,0,0,2.832l3.2915,3.2915L3,22.5859,4.4141,24l1.8784-1.8784L9.584,25.4131a2.0016,2.0016,0,0,0,2.832,0l2.2559-2.2559-1.4156-1.4155L10.998,23.999,3.001,16.002l7.997-8.001,8.001,8.001L17.5,17.5l1.4146,1.4146,1.4985-1.4986a2.0016,2.0016,0,0,0,0-2.832Z"}),(0,a.jsx)("path",{d:"M30.4131,14.584l-3.2915-3.2915L29,9.4141,27.5859,8,25.7075,9.8784,22.416,6.5869a2.0016,2.0016,0,0,0-2.832,0L17.3281,8.8428l1.4146,1.4145L20.998,8.001l8.001,8.001-8.001,7.997-7.997-7.997,1.5-1.501-1.4156-1.4156L11.5869,14.584a2.0016,2.0016,0,0,0,0,2.832l7.9971,7.9971a2.0016,2.0016,0,0,0,2.832,0l7.9971-7.9971a2.0016,2.0016,0,0,0,0-2.832Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,4V6h6.5859L12.05,12.5356a6.954,6.954,0,0,0-2.05,4.95V28h2V17.4854A4.9683,4.9683,0,0,1,13.4644,13.95L20,7.4141V14h2V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM22,16H20V9.4141L13.4644,15.95A4.9683,4.9683,0,0,0,12,19.4854V26H10V19.4854a6.954,6.954,0,0,1,2.05-4.95L18.5859,8H12V6H22Z"}),(0,a.jsx)("path",{fill:"none",d:"M22,16H20V9.4141L13.4644,15.95A4.9683,4.9683,0,0,0,12,19.4854V26H10V19.4854a6.954,6.954,0,0,1,2.05-4.95L18.5859,8H12V6H22Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,4V6h6.5859L16.05,12.5356a6.954,6.954,0,0,0-2.05,4.95V28h2V17.4854A4.9683,4.9683,0,0,1,17.4644,13.95L24,7.4141V14h2V4Z"}),(0,a.jsx)("path",{d:"M8.5 5.55H10.5V13.45H8.5z",transform:"rotate(-45 9.5 9.5)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM6,7.4141,7.4141,6,14,12.5859,12.5859,14ZM26,16H24V9.4141L17.4644,15.95A4.9683,4.9683,0,0,0,16,19.4854V26H14V19.4854a6.954,6.954,0,0,1,2.05-4.95L22.5859,8H16V6H26Z"}),(0,a.jsx)("path",{fill:"none",d:"M26,6V16H24V9.4141L17.4644,15.95A4.9683,4.9683,0,0,0,16,19.4854V26H14V19.4854a6.954,6.954,0,0,1,2.05-4.95L22.5859,8H16V6ZM14,12.5859,7.4141,6,6,7.4141,12.5859,14Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,4l-7,7,1.4141,1.4141L16,7.8281v6.7686a3.01,3.01,0,0,1-.6572,1.874l-2.2471,2.8086A5.0206,5.0206,0,0,0,12,22.4033V28h2V22.4033a3.01,3.01,0,0,1,.6572-1.874l2.2471-2.8086A5.0206,5.0206,0,0,0,18,14.5967V7.8281l4.5859,4.586L24,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM22.5859,13.4141,18,8.8281v5.7686a5.0206,5.0206,0,0,1-1.0957,3.124l-2.2471,2.8086A3.01,3.01,0,0,0,14,22.4033V27H12V22.4033a5.0206,5.0206,0,0,1,1.0957-3.124l2.2471-2.8086A3.01,3.01,0,0,0,16,14.5967V8.8281l-4.5859,4.586L10,12l7-7,7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M22.5859,13.4141,18,8.8281v5.7686a5.0206,5.0206,0,0,1-1.0957,3.124l-2.2471,2.8086A3.01,3.01,0,0,0,14,22.4033V27H12V22.4033a5.0206,5.0206,0,0,1,1.0957-3.124l2.2471-2.8086A3.01,3.01,0,0,0,16,14.5967V8.8281l-4.5859,4.586L10,12l7-7,7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6 13 6 7.414 15 16.414 15 28 17 28 17 16.414 26 7.414 26 13 28 13 28 4 19 4 19 6 24.586 6 16 14.586 7.414 6 13 6 13 4 4 4 4 13 6 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M8 14 8 9.414 15 16.414 15 26 17 26 17 16.414 24 9.414 24 14 26 14 26 6 18 6 18 8 22.586 8 16 14.586 9.414 8 14 8 14 6 6 6 6 14 8 14z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,14H24V9.4141l-7,7V26H15V16.4141l-7-7V14H6V6h8V8H9.4141L16,14.5859,22.5859,8H18V6h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 20H18V28H16z"}),(0,a.jsx)("path",{d:"M23,4a7.0078,7.0078,0,0,0-7,7v3h2V11a5,5,0,1,1,5,5H5.8281l4.586-4.5859L9,10,2,17l7,7,1.4141-1.4141L5.8281,18H23A7,7,0,0,0,23,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16,18h2v8H16ZM4,15l7,7,1.4141-1.4141L7.8281,16H21a5,5,0,1,0-5-5v1h2V11a3,3,0,1,1,3,3H7.8281l4.586-4.5859L11,8Z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4ZM16,18h2v8H16ZM4,15l7-7,1.4141,1.4141L7.8281,14H21a3,3,0,1,0-3-3v1H16V11a5,5,0,1,1,5,5H7.8281l4.586,4.5859L11,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 20H16V28H14z"}),(0,a.jsx)("path",{d:"M9,4a7.0078,7.0078,0,0,1,7,7v3H14V11a5,5,0,1,0-5,5H26.1719l-4.586-4.5859L23,10l7,7-7,7-1.4141-1.4141L26.1719,18H9A7,7,0,0,1,9,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16,26H14V18h2ZM21,8,19.5859,9.4141,24.1719,14H11a3,3,0,1,1,3-3v1h2V11a5,5,0,1,0-5,5H24.1719l-4.586,4.5859L21,22l7-7Z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM16,26H14V18h2Zm5-4-1.4141-1.4141L24.1719,16H11a5,5,0,1,1,5-5v1H14V11a3,3,0,1,0-3,3H24.1719l-4.586-4.5859L21,8l7,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.8784,15.4648A2.9821,2.9821,0,0,1,17,13.3433V7.8281l4.5859,4.586L23,11,16,4,9,11l1.4141,1.4141L15,7.8281v5.5152a2.9805,2.9805,0,0,1-.8784,2.1211l-2.6572,2.6567A4.9682,4.9682,0,0,0,10,21.6567V28h2V21.6567a2.9805,2.9805,0,0,1,.8784-2.1211l2.6572-2.6567A5.0021,5.0021,0,0,0,16,16.3135a5.0021,5.0021,0,0,0,.4644.5654l2.6572,2.6563A2.9821,2.9821,0,0,1,20,21.6567V28h2V21.6567a4.9682,4.9682,0,0,0-1.4644-3.5356Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM17.8784,15.4648l2.6572,2.6563A4.9682,4.9682,0,0,1,22,21.6567V26H20V21.6567a2.9821,2.9821,0,0,0-.8784-2.1215l-2.6572-2.6563A5.0021,5.0021,0,0,1,16,16.3135a5.0021,5.0021,0,0,1-.4644.5654l-2.6572,2.6567A2.9805,2.9805,0,0,0,12,21.6567V26H10V21.6567a4.9682,4.9682,0,0,1,1.4644-3.5356l2.6572-2.6567A2.9805,2.9805,0,0,0,15,13.3433V8.8281l-4.5859,4.586L9,12l7-7,7,7-1.4141,1.4141L17,8.8281v4.5152A2.9821,2.9821,0,0,0,17.8784,15.4648Z"}),(0,a.jsx)("path",{fill:"none",d:"M17.8784,15.4648l2.6572,2.6563A4.9682,4.9682,0,0,1,22,21.6567V26H20V21.6567a2.9821,2.9821,0,0,0-.8784-2.1215l-2.6572-2.6563A5.0021,5.0021,0,0,1,16,16.3135a5.0021,5.0021,0,0,1-.4644.5654l-2.6572,2.6567A2.9805,2.9805,0,0,0,12,21.6567V26H10V21.6567a4.9682,4.9682,0,0,1,1.4644-3.5356l2.6572-2.6567A2.9805,2.9805,0,0,0,15,13.3433V8.8281l-4.5859,4.586L9,12l7-7,7,7-1.4141,1.4141L17,8.8281v4.5152A2.9821,2.9821,0,0,0,17.8784,15.4648Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,4,17.5859,5.4141,22.1719,10H10a2,2,0,0,0-2,2V28h2V12H22.1719l-4.586,4.5859L19,18l7-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM19,18l-1.4141-1.4141L22.1719,12H10V26H8V12a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,4l7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M19,18l-1.4141-1.4141L22.1719,12H10V26H8V12a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,4l7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,8,17.5859,9.4141,22.1719,14H10a2,2,0,0,0-2,2V28h2V16H22.1719l-4.586,4.5859L19,22l7-7Z"}),(0,a.jsx)("path",{d:"M8 4H10V12H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM8,6h2v8H8ZM19,24l-1.4141-1.4141L22.1719,18H10v8H8V18a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,10l7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M8,6h2v8H8ZM19,24l-1.4141-1.4141L22.1719,18H10v8H8V18a2,2,0,0,1,2-2H22.1719l-4.586-4.5859L19,10l7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18v6.5859L15.8712,14.457A5.9242,5.9242,0,0,0,17,11a6,6,0,1,0-7,5.91V28h2V16.91a5.9566,5.9566,0,0,0,2.4554-1.04L24.5859,26H18v2H28V18ZM11,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,11,15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"11",cy:"11",r:"3"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,26H16V24h6.5859l-8.833-8.833A4.9678,4.9678,0,0,1,12,15.8989V26H10V15.8989a5.0113,5.0113,0,1,1,5.167-2.146L24,22.5859V16h2Z"}),(0,a.jsx)("path",{fill:"none",d:"M11,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,11,14Zm13,2v6.5859l-8.833-8.833A4.9959,4.9959,0,1,0,10,15.8989V26h2V15.8989a4.9678,4.9678,0,0,0,1.7529-.7319L22.5859,24H16v2H26V16Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,4,20.5859,5.4141,25.1719,10H16.91A5.9965,5.9965,0,1,0,10,16.91V28h2V16.91A6.0061,6.0061,0,0,0,16.91,12h8.2622l-4.586,4.5859L22,18l7-7ZM11,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,11,15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"11",cy:"11",r:"3"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM20,18l-1.4141-1.4141L23.1719,12h-7.273A5.0145,5.0145,0,0,1,12,15.8989V26H10V15.8989A5,5,0,1,1,15.8989,10h7.273l-4.586-4.5859L20,4l7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M20,4,18.5859,5.4141,23.1719,10h-7.273A5,5,0,1,0,10,15.8989V26h2V15.8989A5.0145,5.0145,0,0,0,15.8989,12h7.273l-4.586,4.5859L20,18l7-7ZM11,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,11,14Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,12.09V5.8281l4.5859,4.586L23,9,16,2,9,9l1.4141,1.4141L15,5.8281V12.09A5.9925,5.9925,0,0,0,15,23.91V28h2V23.91A5.9925,5.9925,0,0,0,17,12.09ZM16,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"19",r:"3"}),(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21.5859,12.4141,17,7.8281v6.273a5,5,0,0,1,0,9.7978V28H15V23.8989a5,5,0,0,1,0-9.7978V7.8281l-4.5859,4.586L9,11l7-7,7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M21.5859,12.4141,23,11,16,4,9,11l1.4141,1.4141L15,7.8281v6.273a5,5,0,0,0,0,9.7978V28h2V23.8989a5,5,0,0,0,0-9.7978V7.8281ZM19,19a3,3,0,1,1-3-3A3.0033,3.0033,0,0,1,19,19Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18v6.5859L7.707,6.293A1,1,0,0,0,6,7V28H8V9.4141L24.5859,26H18v2H28V18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z"}),(0,a.jsx)("path",{fill:"none",d:"M26,26H16V24h6.5859L8,9.4141V26H6V7a1,1,0,0,1,1.707-.707L24,22.5859V16h2Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 4 9 11 10.414 12.414 15 7.828 15 28 17 28 17 7.828 21.586 12.414 23 11 16 4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M21.5859,13.4141,17,8.8281V26H15V8.8281l-4.5859,4.586L9,12l7-7,7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28 16 21 9 19.586 10.414 24.172 15 4 15 4 17 24.172 17 19.586 21.586 21 23 28 16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4A2,2,0,0,0,2,4V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2ZM20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z"}),(0,a.jsx)("path",{fill:"none",d:"M20,23l-1.4141-1.4141L23.1719,17H6V15H23.1719l-4.586-4.5859L20,9l7,7Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.5859,19.5859,22,24.1719V12A8,8,0,0,0,6,12V28H8V12a6,6,0,0,1,12,0V24.1719l-4.5859-4.586L14,21l7,7,7-7Z"}),e)})},1660(e,t,r){r.d(t,{FN:()=>c,dJ:()=>i,vd:()=>n,zt:()=>w});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 26H26V28H20z"}),(0,a.jsx)("path",{d:"M20 18H28V20H20z"}),(0,a.jsx)("path",{d:"M20 10H30V12H20z"}),(0,a.jsx)("path",{d:"M15 4H17V28H15z"}),(0,a.jsx)("path",{d:"M10.586 3.959 7 7.249 3.412 3.958 2 5.373 7 10 12 5.373 10.586 3.959z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,28h-11c-1.103,0-2-.8975-2-2v-6c0-1.1025.897-2,2-2h11c1.1025,0,2,.8975,2,2v6c0,1.1025-.8975,2-2,2ZM17,20v6h11.002l-.002-6h-11ZM13,20H4V7h22v9h2V7c0-1.103-.8975-2-2-2H4c-1.103,0-2,.897-2,2v13c0,1.1025.897,2,2,2h9v-2ZM7.9999,15.9999v-3.586l4.293,4.293,1.414-1.414-4.293-4.293h3.586v-2h-7v7h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,18h11c1.1046,0,2,.8954,2,2v6c0,1.1046-.8954,2-2,2h-11c-1.1046,0-2-.8954-2-2v-6c0-1.1046.8954-2,2-2ZM8,16v-3.586s4.2931,4.293,4.2931,4.293l1.414-1.414-4.293-4.293h3.5859v-2h-7v7h2ZM13,22H4c-1.104-.0013-1.9987-.896-2-2V7c.0011-1.1041.8959-1.9989,2-2h22c1.104.0013,1.9987.896,2,2v9h-2V7H4v13h9v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.707,9.2931a.9992.9992,0,0,0-1.0234-.2417l-9,3a1.001,1.001,0,0,0-.6323.6323l-3,9a1,1,0,0,0,1.2651,1.2651l9-3a1.0013,1.0013,0,0,0,.6323-.6324l3-9A1,1,0,0,0,22.707,9.2931ZM11.5811,20.419l2.2094-6.6284L18.21,18.21Z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,12v2H3v-2H2v2l0,0c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1l0,0v-2H13z"}),(0,a.jsx)("path",{d:"M3 6 3.7 6.7 7.5 2.9 7.5 12 8.5 12 8.5 2.9 12.3 6.7 13 6 8 1z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,24v4H6V24H4v4l.0076-.0049A1.9977,1.9977,0,0,0,6,30H26a2,2,0,0,0,2-2h0V24Z"}),(0,a.jsx)("path",{d:"M6 12 7.411 13.405 15 5.825 15 24 17 24 17 5.825 24.591 13.405 26 12 16 2 6 12z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30.8664,10.1602L25.8664,1.5001c-.2764-.479-.8896-.6431-1.3662-.3662l-7.5,4.3302v-1.464c0-.5522-.4473-1-1-1H4.0002c-.5527,0-1,.4478-1,1v24c0,.5522.4473,1,1,1h24c.5527,0,1-.4478,1-1v-12c0-.5522-.4473-1-1-1h-3.5164l6.0164-3.4736c.4785-.2764.6426-.8877.3662-1.3662ZM5.0002,5.0001h10v10H5.0002V5.0001ZM5.0002,17.0001h10v10H5.0002v-10ZM27.0002,27.0001h-10v-10h10v10ZM17.0002,15.0001v-4.8562l2.8038,4.8562h-2.8038ZM21.7062,14.294l-4-6.9277,6.9277-4,4,6.9277-6.9277,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 27H5V30H2z"}),(0,a.jsx)("path",{d:"M29.71,7.29l-5-5a1,1,0,0,0-1.41,0h0L20,5.59l-1.29-1.3L17.29,5.71,18.59,7,8.29,17.29A1,1,0,0,0,8,18v1.59l-2.71,2.7a1,1,0,0,0,0,1.41h0l3,3a1,1,0,0,0,1.41,0h0L12.41,24H14a1,1,0,0,0,.71-.29L25,13.41l1.29,1.3,1.42-1.42L26.41,12l3.3-3.29a1,1,0,0,0,0-1.41ZM13.59,22h-2L9,24.59,7.41,23,10,20.41v-2l10-10L23.59,12ZM25,10.59,21.41,7,24,4.41,27.59,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M9,20a8.13,8.13,0,0,0,14,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 4 26 4 26 0 24 0 24 4 20 4 20 6 24 6 24 10 26 10 26 6 30 6 30 4z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M9,20a8.13,8.13,0,0,0,14,0Z"}),(0,a.jsx)("path",{d:"M27.82,14A12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a14.71,14.71,0,0,0-.16-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.5,11ZM16,24a8.11,8.11,0,0,1-7-4H23A8.11,8.11,0,0,1,16,24Zm4.5-8A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,22a6,6,0,0,1-5.14-2.92l-1.71,1a8,8,0,0,0,13.7,0l-1.71-1A6,6,0,0,1,16,22Z"}),(0,a.jsx)("path",{d:"M30 4 26 4 26 0 24 0 24 4 20 4 20 6 24 6 24 10 26 10 26 6 30 6 30 4z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M27.61,13A12.33,12.33,0,0,1,28,16,12,12,0,1,1,16,4V2A14,14,0,1,0,29.67,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,2a12,12,0,0,1,10.89,7H25a1,1,0,0,0-1-1H8a1,1,0,0,0-1,1H5.11A12,12,0,0,1,16,4Zm0,24A12,12,0,0,1,4,16a11.86,11.86,0,0,1,.4-3H7v2a2,2,0,0,0,2,2h3.31a2,2,0,0,0,2-1.67L14.83,12h2.34l.55,3.33a2,2,0,0,0,2,1.67H23a2,2,0,0,0,2-2V13h2.6a11.86,11.86,0,0,1,.4,3A12,12,0,0,1,16,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M16,19a8,8,0,0,0-6.85,3.89l1.71,1a6,6,0,0,1,10.28,0l1.71-1A8,8,0,0,0,16,19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9h0A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.54,11Zm9.64,12.92a6,6,0,0,0-10.28,0l-1.71-1a8,8,0,0,1,13.7,0ZM20.5,16a2.5,2.5,0,0,1,0-5h0a2.5,2.5,0,0,1,0,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M24.41 11 23 9.59 21 11.59 19 9.59 17.59 11 19.59 13 17.59 15 19 16.41 21 14.41 23 16.41 24.41 15 22.41 13 24.41 11z"}),(0,a.jsx)("path",{d:"M14.41 11 13 9.59 11 11.59 9 9.59 7.59 11 9.59 13 7.59 15 9 16.41 11 14.41 13 16.41 14.41 15 12.41 13 14.41 11z"}),(0,a.jsx)("path",{d:"M16,19a3,3,0,1,0,3,3,3,3,0,0,0-3-3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM9,16.41,7.59,15l2-2-2-2L9,9.59l2,2,2-2L14.41,11l-2,2,2,2L13,16.41l-2-2ZM16,25a3,3,0,1,1,3-3A3,3,0,0,1,16,25Zm8.41-10L23,16.41l-2-2-2,2L17.59,15l2-2-2-2L19,9.59l2,2,2-2L24.41,11l-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M30,16A14,14,0,1,0,8.8994,28.042l.0156.1562A1.993,1.993,0,0,0,10.9048,30h10.19a1.9929,1.9929,0,0,0,1.99-1.8008l.0156-.1572A13.9674,13.9674,0,0,0,30,16ZM16,4A11.99,11.99,0,0,1,27.97,15.397L22.7637,18H9.2363L4.0305,15.397A11.99,11.99,0,0,1,16,4ZM4.12,17.6777l3.94,1.97.5813,5.81A11.97,11.97,0,0,1,4.12,17.6777ZM21.0947,28H10.9053l-.8-8h11.79Zm2.2644-2.542.5811-5.81,3.94-1.97A11.9712,11.9712,0,0,1,23.3591,25.458Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M10 20H22V22H10z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM9,13.5A2.5,2.5,0,1,1,11.5,16,2.5,2.5,0,0,1,9,13.5ZM22,22H10V20H22Zm-1.5-6A2.5,2.5,0,1,1,23,13.5,2.5,2.5,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM11.5,16A2.5,2.5,0,1,1,14,13.5,2.48,2.48,0,0,1,11.5,16Zm9,0A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.5,11ZM16,24a8,8,0,0,1-6.85-3.89l1.71-1a6,6,0,0,0,10.28,0l1.71,1A8,8,0,0,1,16,24Zm4.5-8A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M8 13H14V15H8z"}),(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM8,13h6v2H8Zm8,11a8,8,0,0,1-6.85-3.89l1.71-1a6,6,0,0,0,10.28,0l1.71,1A8,8,0,0,1,16,24Zm4.5-8a2.5,2.5,0,0,1,0-5h0a2.5,2.5,0,0,1,0,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,28V9H24V4h2V2H20V4h2V9H19V28H15V16H12V11h2V9H8v2h2v5H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V18h4Zm8-17h4V28H21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.1,12.6l-0.6,0.8c0.6,0.5,1.3,0.9,2.1,1.2l0.3-0.9C5.3,13.4,4.7,13,4.1,12.6z"}),(0,a.jsx)("path",{d:"M2.1,9l-1,0.2c0.1,0.8,0.4,1.6,0.8,2.3L2.8,11C2.4,10.4,2.2,9.7,2.1,9z"}),(0,a.jsx)("path",{d:"M5.9,2.4L5.6,1.4C4.8,1.7,4.1,2.1,3.5,2.7l0.6,0.8C4.7,3,5.3,2.6,5.9,2.4z"}),(0,a.jsx)("path",{d:"M2.8,5L1.9,4.5C1.5,5.2,1.3,6,1.1,6.8l1,0.2C2.2,6.3,2.5,5.6,2.8,5z"}),(0,a.jsx)("path",{d:"M8,1v1c3.3,0,6,2.7,6,6s-2.7,6-6,6v1c3.9,0,7-3.1,7-7S11.9,1,8,1z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.24,25.14,7,26.67a13.79,13.79,0,0,0,4.18,2.44l.69-1.87A12,12,0,0,1,8.24,25.14Z"}),(0,a.jsx)("path",{d:"M4.19,18l-2,.41A14.09,14.09,0,0,0,3.86,23L5.59,22A12.44,12.44,0,0,1,4.19,18Z"}),(0,a.jsx)("path",{d:"M11.82,4.76l-.69-1.87A13.79,13.79,0,0,0,7,5.33L8.24,6.86A12,12,0,0,1,11.82,4.76Z"}),(0,a.jsx)("path",{d:"M5.59,10,3.86,9a14.37,14.37,0,0,0-1.64,4.59l2,.34A12.05,12.05,0,0,1,5.59,10Z"}),(0,a.jsx)("path",{d:"M16,2V4a12,12,0,0,1,0,24v2A14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.45,6a5.47,5.47,0,0,1,3.91,1.64,5.7,5.7,0,0,1,0,8L16,26.13,5.64,15.64a5.7,5.7,0,0,1,0-8,5.48,5.48,0,0,1,7.82,0L16,10.24l2.53-2.58A5.44,5.44,0,0,1,22.45,6m0-2a7.47,7.47,0,0,0-5.34,2.24L16,7.36,14.89,6.24a7.49,7.49,0,0,0-10.68,0,7.72,7.72,0,0,0,0,10.82L16,29,27.79,17.06a7.72,7.72,0,0,0,0-10.82A7.49,7.49,0,0,0,22.45,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,4c-2,0-3.9,0.8-5.3,2.2L16,7.4l-1.1-1.1C12,3.3,7.2,3.3,4.3,6.2c0,0-0.1,0.1-0.1,0.1c-3,3-3,7.8,0,10.8L16,29 l11.8-11.9c3-3,3-7.8,0-10.8C26.4,4.8,24.5,4,22.5,4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.21,17.0615,16,29,27.79,17.0615a7.7313,7.7313,0,0,0,0-10.8232,7.494,7.494,0,0,0-10.6841,0L16,7.3643l-1.1062-1.126a7.494,7.494,0,0,0-10.6841,0A7.7313,7.7313,0,0,0,4.21,17.0615ZM26.3552,15.645,16,26.1255V10.23q1.2708-1.2876,2.5413-2.5742a5.4768,5.4768,0,0,1,7.8139,0A5.708,5.708,0,0,1,26.3552,15.645Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m14,28v-9l8-8L13,2,4,11l8,8v9c0,1.1045.8955,2,2,2h14v-2h-14Zm-1-23.1716l6.1716,6.1716-6.1716,6.1716-6.1716-6.1716,6.1716-6.1716Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m14,28v-9l8-8L13,2,4,11l8,8v9c0,1.1045.8955,2,2,2h14v-2h-14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,18h4c1.1045,0,2-.8955,2-2v-4c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v1h-5v-5c0-1.6543-1.3457-3-3-3h-4v-1c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v4c0,1.1045.8955,2,2,2h4c1.1045,0,2-.8955,2-2v-1h4c.5515,0,1,.4487,1,1v16c0,1.6543,1.3457,3,3,3h4v1c0,1.1045.8955,2,2,2h4c1.1045,0,2-.8955,2-2v-4c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v1h-4c-.5515,0-1-.4487-1-1v-9h5v1c0,1.1045.8955,2,2,2ZM24,12h4v4h-4v-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"17.5",cy:"22.5",r:"1.5",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"6.5",cy:"22.5",r:"1.5",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m13,28v-10h7c.3564,0,.686-.1899.8647-.498.0902-.1551.1353-.3285.1353-.502,0-.1711-.0441-.3424-.1318-.4961L12.8682,2.504c-.1919-.3359-.5301-.504-.8682-.504s-.6763.1681-.8682.504l-7.9999,13.9999c-.0878.1537-.1318.3249-.1318.4961,0,.1735.0451.3469.1353.502.1787.3081.5083.498.8647.498h7v10c0,1.1046.8954,2,2,2h15v-2h-15Zm-7.2769-12l6.2769-10.9844,6.2769,10.9844H5.7231Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,22c.8282,0,1.4788-.6792,1.4788-1.5078s-.6506-1.4922-1.4788-1.4922-1.5206.6636-1.5206,1.4922.6924,1.5078,1.5206,1.5078Z"}),(0,a.jsx)("path",{d:"M13,2C6.3722,2,1,7.3688,1,14s5.3662,12.0005,11.9941,12.0005c.3403,0,.7007-.02,1.0212-.0601v-2.0034c-.3405.0401-.6809.0601-1.0212.0601-5.5065,0-9.9941-4.4877-9.9941-9.9971S7.4935,4,13,4s10,4.4906,10,10h2c0-6.6312-5.3721-12-12-12Z"}),(0,a.jsx)("path",{d:"M13.9803,5.9914h-1.5018c-.592-.0013-1.1784.1143-1.7256.3404-.5472.2261-1.0444.5581-1.463.9769s-.7504.9163-.9764,1.4637c-.226.5475-.3416,1.1342-.3402,1.7265l.0267.5011h2l-.0243-.5011c0-.6642.2637-1.3011.7331-1.7707.4694-.4696,1.1061-.7335,1.7698-.7335h1.5018c.6639,0,1.3004.2639,1.7698.7335.4694.4696.733,1.1066.733,1.7707s-.2636,1.3011-.733,1.7707-1.1061.7335-1.7698.7335h-2.0024v4.5076h2.0024v-2.5042c1.1948,0,2.3408-.4749,3.1857-1.3203.8448-.8454,1.3195-1.9919,1.3195-3.1873s-.4748-2.342-1.3195-3.1873c-.8449-.8454-1.9909-1.3203-3.1857-1.3203h-.0001Z"}),(0,a.jsx)("path",{d:"M28.9976,16.9779h-10.0117c-1.1013,0-2.0024.9016-2.0024,2.0034v6.0102c0,1.1018.9011,2.0034,2.0024,2.0034h2.4028l1.702,3.0051,1.702-1.0017-2.3027-4.0068h-3.5041l.0141-5.9915h10v6h-3v2l2.9976-.0051c1.1013,0,2.0024-.9016,2.0024-2.0034v-6.0102c0-1.1018-.9011-2.0034-2.0024-2.0034Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,7,6,17l1.41,1.41L15,10.83V28H2v2H15a2,2,0,0,0,2-2V10.83l7.59,7.58L26,17Z"}),(0,a.jsx)("path",{d:"M6,8V4H26V8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,13l-5,5,1.41,1.41L15,16.83V28H6v2h9a2,2,0,0,0,2-2V16.83l2.59,2.58L21,18Z"}),(0,a.jsx)("path",{d:"M23.5,22H23V20h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,20H9v2H8.5A6.4973,6.4973,0,0,1,7.2,9.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,20H26v2h2v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"}),(0,a.jsx)("circle",{cx:"7",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M22.707,7.293l-5-5A1,1,0,0,0,17,2H11A2.0023,2.0023,0,0,0,9,4V20a2.0023,2.0023,0,0,0,2,2H21a2.0023,2.0023,0,0,0,2-2V8A1,1,0,0,0,22.707,7.293ZM20.5857,8H17V4.4141ZM11,20V4h4V8a2.0023,2.0023,0,0,0,2,2h4V20Z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,28H14a2,2,0,0,1-2-2V18.41L4.59,11A2,2,0,0,1,4,9.59V6A2,2,0,0,1,6,4H26a2,2,0,0,1,2,2V9.59A2,2,0,0,1,27.41,11L20,18.41V26A2,2,0,0,1,18,28ZM6,6V9.59l8,8V26h4V17.59l8-8V6Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,6H4V9.17l7.41,7.42.59.58V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.59,10.59A2,2,0,0,1,2,9.17V6A2,2,0,0,1,4,4H26Z"}),(0,a.jsx)("path",{d:"M29.71,11.29l-3-3a1,1,0,0,0-1.42,0L16,17.59V22h4.41l9.3-9.29A1,1,0,0,0,29.71,11.29ZM19.59,20H18V18.41l5-5L24.59,15ZM26,13.59,24.41,12,26,10.41,27.59,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 11.414 28.586 10 24 14.586 19.414 10 18 11.414 22.586 16 18 20.585 19.415 22 24 17.414 28.587 22 30 20.587 25.414 16 30 11.414z"}),(0,a.jsx)("path",{d:"M4,4A2,2,0,0,0,2,6V9.1709a2,2,0,0,0,.5859,1.4145L10,18v8a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V24H16v2H12V17.1709l-.5859-.5855L4,9.1709V6H24V8h2V6a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,9A7.4522,7.4522,0,0,0,16,12.792V8H14v8h8V14H17.6167A5.4941,5.4941,0,1,1,22.5,22H22v2h.5a7.5,7.5,0,0,0,0-15Z"}),(0,a.jsx)("path",{d:"M26,6H4V9.171l7.4142,7.4143L12,17.171V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.5858,10.5853A2,2,0,0,1,2,9.171V6A2,2,0,0,1,4,4H26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M27,11a1,1,0,0,0,1-1V7a1,1,0,0,0-.66-.94l-11-4a1,1,0,0,0-.68,0l-11,4A1,1,0,0,0,4,7v3a1,1,0,0,0,1,1H6V24H4v2H28V24H26V11ZM6,7.7,16,4.06,26,7.7V9H6ZM18,24H14V11h4ZM8,11h4V24H8ZM24,24H20V11h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,16h-2v2h-1c-1.1,0-2,.9-2,2v2c0,1.1.9,2,2,2h4v2h-6v2h3v2h2v-2h1c1.1,0,2-.9,2-2v-2c0-1.1-.9-2-2-2h-4v-2h6v-2h-3v-2ZM28,8h-6v-4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v4h-6c-1.1,0-2,.9-2,2v14c0,1.1.9,2,2,2h15v-2H4v-14h24v4h2v-4c0-1.1-.9-2-2-2ZM20,8h-8v-4h8v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,5.21a.77.77,0,0,1-.46-1.38A15.46,15.46,0,0,1,16,1c2.66,0,6.48.45,9.5,2.62a.77.77,0,0,1,.18,1.07.78.78,0,0,1-1.08.17A15,15,0,0,0,16,2.53,14,14,0,0,0,7.5,5.05.74.74,0,0,1,7,5.21Z"}),(0,a.jsx)("path",{d:"M28.23,12.26a.78.78,0,0,1-.63-.33C25.87,9.49,22.78,6.24,16,6.24a14,14,0,0,0-11.63,5.7.77.77,0,0,1-1.07.17A.76.76,0,0,1,3.15,11,15.54,15.54,0,0,1,16,4.71c5.61,0,9.81,2.08,12.84,6.34a.77.77,0,0,1-.19,1.07A.79.79,0,0,1,28.23,12.26Z"}),(0,a.jsx)("path",{d:"M12.28,31a.78.78,0,0,1-.72-.49.75.75,0,0,1,.44-1c4.37-1.68,7-5.12,7-9.21a2.8,2.8,0,0,0-3-3c-1.86,0-2.76,1-3,3.35a4.27,4.27,0,0,1-4.52,3.83,4.27,4.27,0,0,1-4.32-4.59A11.71,11.71,0,0,1,16,8.39a12,12,0,0,1,12,11.93,18.66,18.66,0,0,1-1.39,6.5.78.78,0,0,1-1,.41.76.76,0,0,1-.41-1,17.25,17.25,0,0,0,1.27-5.91A10.45,10.45,0,0,0,16,9.92a10.18,10.18,0,0,0-10.38,10,2.77,2.77,0,0,0,2.79,3.06,2.74,2.74,0,0,0,3-2.48c.36-3.11,1.89-4.69,4.56-4.69a4.31,4.31,0,0,1,4.52,4.56c0,4.74-3,8.72-8,10.63A.92.92,0,0,1,12.28,31Z"}),(0,a.jsx)("path",{d:"M19.77,30.28a.81.81,0,0,1-.52-.2.76.76,0,0,1,0-1.08,12.63,12.63,0,0,0,3.54-8.68c0-1.56-.48-6.65-6.7-6.65a6.83,6.83,0,0,0-4.94,1.87A6.17,6.17,0,0,0,9.32,20a.77.77,0,0,1-.77.76h0A.76.76,0,0,1,7.78,20,7.73,7.73,0,0,1,10,14.46a8.34,8.34,0,0,1,6-2.32c6.08,0,8.24,4.4,8.24,8.18A14.09,14.09,0,0,1,20.34,30,.75.75,0,0,1,19.77,30.28Z"}),(0,a.jsx)("path",{d:"M8.66,27.74a14.14,14.14,0,0,1-1.56-.09.76.76,0,1,1,.17-1.52c2.49.28,4.45-.16,5.84-1.32a6.37,6.37,0,0,0,2.12-4.53.75.75,0,0,1,.82-.71.78.78,0,0,1,.72.81A7.89,7.89,0,0,1,14.09,26,8.2,8.2,0,0,1,8.66,27.74Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.832,16.9688c-.2724-.6465-.5815-1.38-.8833-2.2852-.79-2.3682,1.7344-4.9522,1.7583-4.9766L24.293,8.293c-.1407.1406-3.4234,3.4775-2.2417,7.0234.3261.978.6513,1.749.938,2.43A9.3812,9.3812,0,0,1,24,22a6.24,6.24,0,0,1-4.1892,5.293,8.52,8.52,0,0,0-2.1038-8l-1.0444-1.0445-.5815,1.3575C14.2449,23.89,12.06,25.76,10.7747,26.54A5.8437,5.8437,0,0,1,8,22a9.6239,9.6239,0,0,1,.9287-3.6289A11.3329,11.3329,0,0,0,10,14V12.2217c.8735.36,2,1.3037,2,3.7783v2.6035l1.7432-1.9341c3.1118-3.4546,2.4624-7.5678,1.206-10.3081A4.4859,4.4859,0,0,1,18,11h2c0-5.5371-4.5786-7-7-7H11l1.1992,1.5986c.1377.1856,2.8628,3.9278,1.3535,7.688A4.9426,4.9426,0,0,0,9,10H8v4a9.6239,9.6239,0,0,1-.9287,3.6289A11.3329,11.3329,0,0,0,6,22c0,3.8477,3.8232,8,10,8s10-4.1523,10-8A11.3771,11.3771,0,0,0,24.832,16.9688ZM12.8352,27.5264a16.4987,16.4987,0,0,0,4.3665-5.5987,6.1053,6.1053,0,0,1,.2573,5.9717A11.3213,11.3213,0,0,1,16,28,10.3278,10.3278,0,0,1,12.8352,27.5264Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10.7838,26.539c.3496-.21.7598-.5,1.2197-.9102-.3901.3301-.7998.6301-1.2402.9001.0103,0,.0103.01.0205.01ZM24.8398,16.97c-.2803-.6499-.5898-1.3799-.8901-2.29-.5601-1.6799.5752-3.5372,1.2226-4.3427.1784-.222.3121-.3935.5332-.6305h0c-1.1064-1.1248-2.8092-1.4576-4.232-.7758-.5206.2494-1.0537.5443-1.5535.8891-.6104-4.5701-4.6802-5.8201-6.9199-5.8201h-2l1.1997,1.6001c.1401.1799,2.8701,3.9199,1.3599,7.6799-.96-2.53-3.2197-3.28-4.5596-3.28h-1v4c0,1.3101-.4502,2.4299-.9302,3.6301-.52,1.3101-1.0698,2.6799-1.0698,4.3699,0,1.9402.9697,3.95,2.7295,5.48.7202-.24,1.4004-.5598,2.0303-.95.4399-.27.8501-.5701,1.2402-.8999.1797-.1602.3696-.3301.54-.49.0195-.02.0396-.04.0596-.0601.2803-.3.5801-.6301.8901-1.01.2397-.29.46-.6001.6699-.9199.6499-.9402,1.3003-2.1101,1.9199-3.55l.5903-1.3501,1.04,1.04c.5195.52,1.1196,1.3301,1.5898,2.3401.0498.1199.1099.25.1602.3899.0298.0601.0498.1301.0801.2.3896,1.01.6196,2.1899.5396,3.4702,0,.0198,0,.0398-.0098.0498,0,.1301-.0103.27-.0298.4001,0,.05-.0103.0999-.0205.1499-.0195.1301-.04.25-.0698.3801.0103.0598-.0098.1099-.0298.1599-.0303.1299-.0601.27-.1001.4099,0,.02,0,.04-.0103.05-.25.8801-.6797,1.7-1.3096,2.4001-.0303.0298-.0503.0598-.0801.0798,4.7397-.9199,7.5801-4.46,7.5801-7.77,0-2.26-.54-3.55-1.1602-5.03Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,20.3972v3c-1,0-2-1.5-2-4v-3c-4,5-5,7-5,9A5.0008,5.0008,0,0,0,23.0458,30,7.5281,7.5281,0,0,1,25,26.3972,7.5281,7.5281,0,0,1,26.9542,30,5.0008,5.0008,0,0,0,30,25.3972C30,23.3972,28.875,21.8258,27,20.3972Z"}),(0,a.jsx)("path",{d:"M17,28H4V24H17V22H4a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H17Z"}),(0,a.jsx)("path",{d:"M28,12H7a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H17V18H7V14H28l.0011,2H30V14A2.0023,2.0023,0,0,0,28,12Z"}),(0,a.jsx)("path",{d:"M25,10H4A2.0021,2.0021,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H25a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,25,10ZM4,4V8H25V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,20V17a4,4,0,0,0-8,0v3a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V22A2.0023,2.0023,0,0,0,28,20Zm-6-3a2,2,0,0,1,4,0v3H22Zm6,11H20V22h8Z"}),(0,a.jsx)("path",{d:"M15,27H4a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2H15v2H4v3H15Z"}),(0,a.jsx)("path",{d:"M17,18H8a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2H19v2H8v3h9Z"}),(0,a.jsx)("path",{d:"M22,9H4A2,2,0,0,1,2,7V4A2,2,0,0,1,4,2H22a2,2,0,0,1,2,2V7A2,2,0,0,1,22,9ZM4,7H22V4H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"24",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M26,2A16.0183,16.0183,0,0,0,10,18v2H3a1,1,0,0,0-.707,1.707l8,8A1,1,0,0,0,12,29V22h2A16.0183,16.0183,0,0,0,30,6V2ZM10,26.5857,5.4141,22H10ZM12,20V18a13.9394,13.9394,0,0,1,3.908-9.6777l7.77,7.7695A13.94,13.94,0,0,1,14,20ZM28,6a13.9163,13.9163,0,0,1-2.98,8.6055L17.3945,6.98A13.9163,13.9163,0,0,1,26,4h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,14a12.9845,12.9845,0,0,0-3.8286-9.2427L24.4143,3,23,4.4138l1.7573,1.7574a11.0713,11.0713,0,0,1,0,15.6572L22,24.5857,23.4143,26l2.7571-2.7573A12.9845,12.9845,0,0,0,30,14Z"}),(0,a.jsx)("circle",{cx:"17",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M22,14a12.9845,12.9845,0,0,0-3.8286-9.2427L16.4143,3,15,4.4138l1.7573,1.7574a11.0713,11.0713,0,0,1,0,15.6572L14,24.5857,15.4143,26l2.7571-2.7573A12.9845,12.9845,0,0,0,22,14Z"}),(0,a.jsx)("circle",{cx:"25",cy:"11",r:"1"}),(0,a.jsx)("circle",{cx:"9",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M9.4141,24l.7573-.7573a13.0708,13.0708,0,0,0,0-18.4854L8,2.5857,5.8286,4.7571a13.0708,13.0708,0,0,0,0,18.4854L6.5859,24,2.293,28.2928A1,1,0,0,0,3,30H13a1,1,0,0,0,.707-1.707ZM4,14A10.9988,10.9988,0,0,1,7.2427,6.1712L8,5.4138l.7573.7574a11.0713,11.0713,0,0,1,0,15.6572L8,22.5857l-.7573-.7573A10.9988,10.9988,0,0,1,4,14ZM5.4141,28,8,25.4138,10.5859,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 10 12.41 11.41 15 8.83 15 23.17 12.41 20.59 11 22 16 27 21 22 19.59 20.59 17 23.17 17 8.83 19.59 11.41 21 10 16 5 11 10z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 16 24 16 24 8 16 8 16 10 22 10 22 16z"}),(0,a.jsx)("path",{d:"M8 24 16 24 16 22 10 22 10 16 8 16 8 24z"}),(0,a.jsx)("path",{d:"M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26.0012L26,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 11 20.59 12.41 23.17 15 8.83 15 11.41 12.41 10 11 5 16 10 21 11.41 19.59 8.83 17 23.17 17 20.59 19.59 22 21 27 16 22 11z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,30H4V2H28l-5.8,9L28,20H6ZM6,18H24.33L19.8,11l4.53-7H6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,30H4V2H28l-5.8,9L28,20H6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.7976,2,20.3555,8.6641A2.9941,2.9941,0,0,1,17.8594,10H12a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V16H17V28H13V19H11V13a1.0009,1.0009,0,0,1,1-1h5.8594a4.9881,4.9881,0,0,0,4.16-2.2266l4.4422-6.664Z"}),(0,a.jsx)("path",{d:"M11,5a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,11,5Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,13,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.13,6.89,11.8,4h8l-2,9H23l-2.49,3.25,1.43,1.43,3.87-5.07a1,1,0,0,0,.11-1A1,1,0,0,0,25,11H20.25L22,3.22a1,1,0,0,0-.2-.85A1,1,0,0,0,21,2H11a1,1,0,0,0-1,.77L9.46,5.22Z"}),(0,a.jsx)("path",{d:"M30,28.59l-9.31-9.31h0l-1.42-1.43h0L10.6,9.19h0L8.93,7.52h0L3.41,2,2,3.41,8.4,9.82,7,15.77A1,1,0,0,0,8,17h4.83L11,28.85a1,1,0,0,0,.6,1.07A1.09,1.09,0,0,0,12,30a1,1,0,0,0,.79-.39l6.68-8.73L28.59,30ZM9.26,15l.81-3.52L13.59,15Zm4.32,10.28L15,16.37,18,19.45Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,28.59,3.41,2,2,3.41,8.4,9.82,7,15.77A1,1,0,0,0,8,17h4.83L11,28.85a1,1,0,0,0,.6,1.07A1.09,1.09,0,0,0,12,30a1,1,0,0,0,.79-.39l6.68-8.73L28.59,30Z"}),(0,a.jsx)("path",{d:"M22.53,16.87l3.26-4.26a1,1,0,0,0,.11-1A1,1,0,0,0,25,11H20.25L22,3.22a1,1,0,0,0-.2-.85A1,1,0,0,0,21,2H11a1,1,0,0,0-1,.77l-.3,1.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,28a5.3257,5.3257,0,0,1-.6714-.044A21.7855,21.7855,0,0,1,12.0332,17H29.95c.0236-.3315.05-.6626.05-1A14,14,0,1,0,16,30ZM27.9492,15H21.9631A24.3247,24.3247,0,0,0,19.21,4.4492,12.0123,12.0123,0,0,1,27.9492,15ZM16.6714,4.0439A21.7855,21.7855,0,0,1,19.9668,15H12.0332A21.7855,21.7855,0,0,1,15.3286,4.0439,5.159,5.159,0,0,1,16.6714,4.0439ZM12.79,4.4492A24.3275,24.3275,0,0,0,10.0369,15H4.0508A12.0126,12.0126,0,0,1,12.79,4.4492ZM4.0508,17h5.9861A24.3275,24.3275,0,0,0,12.79,27.5508,12.0126,12.0126,0,0,1,4.0508,17Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,25l5,2V25l-5-2.5V20a1,1,0,0,0-2,0v2.5L18,25v2l5-2v3.5L21,30v1l3-1,3,1V30l-2-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M26,6a2,2,0,0,0-2-2H8A2,2,0,0,0,6,6V26a2,2,0,0,0,2,2h8V26H8V6H24v6h2Z"}),(0,a.jsx)("path",{d:"M10 18H16V20H10z"}),(0,a.jsx)("path",{d:"M10 14H22V16H10z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M22,10v2H10V10Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,23l5,2V23l-5-2.5V18a1,1,0,0,0-2,0v2.5L18,23v2l5-2v3.5L21,28v1l3-1,3,1V28l-2-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,23l5,2V23l-5-2.5V18a1,1,0,0,0-2,0v2.5L18,23v2l5-2v3.5L21,28v1l3-1,3,1V28l-2-1.5Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H16V26H6V6h4V8h2V6h8V8h2V6h4v7h2V6A2,2,0,0,0,26,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,11a5.0083,5.0083,0,0,0-4.8989,4H11.8989a5,5,0,1,0,0,2h8.2022A5,5,0,1,0,25,11Zm0,8a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,28a2.8828,2.8828,0,0,1-1-.1816v-.0059a3.7662,3.7662,0,0,1-2.0532-2.1338A.971.971,0,0,0,25,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,21,28a3.44,3.44,0,0,1-3.0532-2.3213A.9894.9894,0,0,0,17,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,13,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,5,28H2v2H5a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0,5.1433,5.1433,0,0,0,2.1379,1.62A4.8374,4.8374,0,0,0,29,30h1V28Z"}),(0,a.jsx)("path",{d:"M28,13.63,29.7573,15,31,13.4282,16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211v5.1875a3.6907,3.6907,0,0,1-2,2.0039V22.896a4.9958,4.9958,0,0,0,3-1.8833,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,25,23h5V21H28Zm-6.0513,5.0532a1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,17,21a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,13,18a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,9,21a3.37,3.37,0,0,1-3.0021-2.19L6,12.0615l9.991-7.79L26,12.0718,26.0017,21H25A3.4376,3.4376,0,0,1,21.9487,18.6836Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,28a2.8828,2.8828,0,0,1-1-.1816v-.0059a3.7662,3.7662,0,0,1-2.0532-2.1338A.971.971,0,0,0,25,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,21,28a3.44,3.44,0,0,1-3.0532-2.3213A.9894.9894,0,0,0,17,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,13,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,5,28H2v2H5a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0,5.1433,5.1433,0,0,0,2.1379,1.62A4.8374,4.8374,0,0,0,29,30h1V28Z"}),(0,a.jsx)("path",{fill:"none",d:"M23.75,11h-1.5V7h1.5ZM23,12a1,1,0,1,0,1,1A1,1,0,0,0,23,12Z"}),(0,a.jsx)("path",{d:"M29.9115,14.9355,23.6284,3.3706a.7181.7181,0,0,0-1.2568,0L16.0885,14.9355A.72.72,0,0,0,16.72,16H29.28A.72.72,0,0,0,29.9115,14.9355ZM22.25,7h1.5v4h-1.5ZM23,14a1,1,0,1,1,1-1A1,1,0,0,1,23,14Z"}),(0,a.jsx)("path",{d:"M28,21V18H26v3H25a3.4376,3.4376,0,0,1-3.0513-2.3164,1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,17,21a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,13,18a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,9,21a3.3663,3.3663,0,0,1-3-2.1855v-6.753l10-7.79,2.5327,1.9756.9682-1.7818L16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211v5.1875a3.6892,3.6892,0,0,1-2,2.0039V22.896a4.9958,4.9958,0,0,0,3-1.8833,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,25,23h5V21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4C2.9,2,2,2.9,2,4v24c0,1.1,0.9,2,2,2h15v-2c0-2.8,2.2-5,5-5v-2c-3.9,0-7,3.1-7,7h-3v-4h-2v4H4V4h8v14h2v-5h4v-2h-4V4 h14v7h-4v2h4v15h-4v2h4c1.1,0,2-0.9,2-2V4C30,2.9,29.1,2,28,2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,22.14V17a2,2,0,0,0-2-2H17V9.86a4,4,0,1,0-2,0V15H7a2,2,0,0,0-2,2v5.14a4,4,0,1,0,2,0V17H25v5.14a4,4,0,1,0,2,0ZM8,26a2,2,0,1,1-2-2A2,2,0,0,1,8,26ZM14,6a2,2,0,1,1,2,2A2,2,0,0,1,14,6ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,18H22a2.0023,2.0023,0,0,0-2,2v2H14.4141L10,17.5859V12h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,4v6a2.0023,2.0023,0,0,0,2,2H8v5.5859L3.293,22.293a.9994.9994,0,0,0,0,1.414l5,5a.9995.9995,0,0,0,1.414,0L14.4141,24H20v2a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V20A2.0023,2.0023,0,0,0,28,18ZM6,4h6v6H6ZM9,26.5859,5.4141,23,9,19.4141,12.5859,23ZM22,26V20h6v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,23H11.86a4.17,4.17,0,0,0-.43-1L22,11.43A3.86,3.86,0,0,0,24,12a4,4,0,1,0-3.86-5H11.86a4,4,0,1,0,0,2h8.28a4.17,4.17,0,0,0,.43,1L10,20.57A3.86,3.86,0,0,0,8,20a4,4,0,1,0,3.86,5H20v3h8V20H20ZM8,10a2,2,0,1,1,2-2A2,2,0,0,1,8,10ZM24,6a2,2,0,1,1-2,2A2,2,0,0,1,24,6ZM8,26a2,2,0,1,1,2-2A2,2,0,0,1,8,26Zm14-4h4v4H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,10H2V2h8ZM4,8H8V4H4Z"}),(0,a.jsx)("path",{d:"M30,30H22V22h8Zm-6-2h4V24H24Z"}),(0,a.jsx)("path",{d:"M20,27H8A6,6,0,0,1,8,15v2a4,4,0,0,0,0,8H20Z"}),(0,a.jsx)("path",{d:"M24,17V15a4,4,0,0,0,0-8H12V5H24a6,6,0,0,1,0,12Z"}),(0,a.jsx)("path",{d:"M19,11H13l-3,4,6,6,6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,30H22V22h8Zm-6-2h4V24H24Z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M19,11H13l-3,4,6,6,6-6Z"}),(0,a.jsx)("path",{d:"M24,17V15a4,4,0,0,0,0-8H12V5H24a6,6,0,0,1,0,12Z"}),(0,a.jsx)("path",{d:"M10,10H2V2h8ZM4,8H8V4H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,23h-8.1c0-.4-.2-.7-.4-1l10.5-10.5c.6.4,1.3.6,2,.6,2.2,0,4-1.8,4-4s-1.8-4-4-4-3.4,1.3-3.9,3h-7.1v2h7.1c0,.4.2.7.4,1l-10.5,10.5c-.6-.4-1.3-.6-2-.6-2.2,0-4,1.8-4,4s1.8,4,4,4,3.4-1.3,3.9-3h8.1v3h8v-8h-8v3ZM24,6c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM8,26c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM22,22h4v4h-4v-4ZM4,12V4l7,4-7,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,24H11.8625a4.13,4.13,0,0,0-.4284-1.02L21.98,12.4343A3.9943,3.9943,0,1,0,20.1414,8H14v2h6.1414a3.96,3.96,0,0,0,.4243,1.02L10.02,21.5656A3.9943,3.9943,0,1,0,11.8587,26H20v3h8V21H20ZM24,7a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,24,7ZM8,27a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,27Zm14-4h4v4H22Z"}),(0,a.jsx)("path",{d:"M9.6929,12.7505a5,5,0,0,1-.0005-7.5L11.0166,6.75a3,3,0,0,0-.0005,4.501Z"}),(0,a.jsx)("path",{d:"M7.0474,15.751a9,9,0,0,1,0-13.501l1.3232,1.5a7,7,0,0,0,0,10.501Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,24H16v2h4v3h8V21H20Zm2-1h4v4H22Z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M24,5a3.9962,3.9962,0,0,0-3.8579,3H14v2h6.1421a3.94,3.94,0,0,0,.4248,1.019L14,17.5862,15.4138,19l6.5672-6.5669A3.9521,3.9521,0,0,0,24,13a4,4,0,0,0,0-8Zm0,6a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,24,11Z"}),(0,a.jsx)("path",{d:"M9.6929,12.7505a5,5,0,0,1-.0005-7.5L11.0166,6.75a3,3,0,0,0-.0005,4.501Z"}),(0,a.jsx)("path",{d:"M7.0474,15.751a9,9,0,0,1,0-13.501l1.3232,1.5a7,7,0,0,0,0,10.501Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 19H30V21H18z"}),(0,a.jsx)("path",{d:"M18 23H30V25H18z"}),(0,a.jsx)("path",{d:"M18 27H26V29H18z"}),(0,a.jsx)("path",{d:"M24,4a3.9962,3.9962,0,0,0-3.8579,3H12V4H4v8h8V9h8.1421a3.94,3.94,0,0,0,.4248,1.019L10.019,20.5669A3.9521,3.9521,0,0,0,8,20a4,4,0,1,0,3.8579,5H16V23H11.8579a3.94,3.94,0,0,0-.4248-1.019L21.981,11.4331A3.9521,3.9521,0,0,0,24,12a4,4,0,0,0,0-8ZM10,10H6V6h4ZM8,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,26ZM24,10a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,24,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.8008,11.1382a8.9938,8.9938,0,0,0-17.6006,0A6.533,6.533,0,0,0,2,17.5H2V19a1,1,0,0,0,1,1H15a1,1,0,0,0,0-2H4v-.4966H4a4.5176,4.5176,0,0,1,4.144-4.4819l.8155-.064.0991-.812a6.9936,6.9936,0,0,1,13.8838,0l.0986.812.8154.064A4.4962,4.4962,0,0,1,23.5,22H7a1,1,0,0,0,0,2H23.5a6.4963,6.4963,0,0,0,1.3008-12.8618Z"}),(0,a.jsx)("rect",{width:"18",height:"2",x:"2",y:"26",rx:"1"}),e)});const n=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.17,6l3.42,3.41.58.59H28V26H4V6h7.17m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H16L12.59,4.59A2,2,0,0,0,11.17,4Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26 30 24 26 24z"}),(0,a.jsx)("path",{d:"M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h14v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v8h2v-8 C30,8.9,29.1,8,28,8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 20H30V22H16z"}),(0,a.jsx)("path",{d:"M16 24H30V26H16z"}),(0,a.jsx)("path",{d:"M16 28H23V30H16z"}),(0,a.jsx)("path",{d:"M14,26H4V6h7.17l3.42,3.41.58.59H28v8h2V10a2,2,0,0,0-2-2H16L12.59,4.59A2,2,0,0,0,11.17,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 28H23V30H16z"}),(0,a.jsx)("path",{d:"M16 24H30V26H16z"}),(0,a.jsx)("path",{d:"M16 20H30V22H16z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M28,8H16L12.5859,4.5859A2.0007,2.0007,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V18H4V6h7.1716l3.4141,3.4141L15.1716,10H28v8h2V10A2,2,0,0,0,28,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 13 16.59 14.41 19.17 17 10 17 10 19 19.17 19 16.59 21.59 18 23 23 18 18 13z"}),(0,a.jsx)("path",{d:"M11.1716,6l3.4142,3.4142L15.1716,10H28V26H4V6h7.1716m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H16L12.5858,4.5858A2,2,0,0,0,11.1716,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H25.4141L30,3.4141,28.5859,2,2,28.5859,3.4141,30l2-2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8Zm0,18H7.4141l16-16H28Z"}),(0,a.jsx)("path",{d:"M4,6h7.1716l3.4141,3.4141L15.1716,10H18V8H16L12.5859,4.5859A2.0007,2.0007,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V24H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H20.8284L17.4143,4.5859A2,2,0,0,0,16,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM8,26V14h8v6.17l-2.59-2.58L12,19l5,5,5-5-1.41-1.41L18,20.17V14a2.0025,2.0025,0,0,0-2-2H8a2.0025,2.0025,0,0,0-2,2V26H4V6H16l4,4h8v2H22v2h6V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H16L12.5857,4.5857A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H16a2,2,0,0,0,2-2V16.83l2.59,2.58L22,18l-5-5-5,5,1.41,1.41L16,16.83V26H4V6h7.1716l4,4H28V26H22v2h6a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H16L12.59,4.59A2,2,0,0,0,11.17,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM22,26H14V25a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm6,0H24V25a3,3,0,0,0-3-3H15a3,3,0,0,0-3,3v1H4V6h7.17l3.42,3.41.58.59H28Z"}),(0,a.jsx)("path",{d:"M14,17a4,4,0,1,0,4-4A4,4,0,0,0,14,17Zm4-2a2,2,0,1,1-2,2A2,2,0,0,1,18,15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,15h11c.5523,0,1-.4478,1-1v-7c0-.5523-.4477-1-1-1h-5l-.72-1.45c-.1711-.3395-.5199-.5527-.9-.55h-4.38c-.5523,0-1,.4477-1,1v4H6V2h-2v22c0,1.1025.897,2,2,2h9v3c0,.5522.4477,1,1,1h11c.5523,0,1-.4478,1-1v-7c0-.5523-.4477-1-1-1h-5l-.72-1.45c-.1711-.3395-.5199-.5527-.9-.55h-4.38c-.5523,0-1,.4477-1,1v4H6v-13h9v3c0,.5522.4477,1,1,1ZM17,6h2.76l.45.89.55,1.11h5.24v5h-9v-7ZM17,21h2.76l.45.89.55,1.11h5.24v5h-9v-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6a2.0021,2.0021,0,0,1-2-2V11A2.0021,2.0021,0,0,1,6,9h5.6665a2.0119,2.0119,0,0,1,1.2007.4L16.3335,12H26a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,26,28ZM11.6665,11H5.9985L6,26H26V14H15.6665Z"}),(0,a.jsx)("path",{d:"M28,9H17.6665l-4-3H6V4h7.6665a2.0119,2.0119,0,0,1,1.2007.4L18.3335,7H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,7h3v3h12v-3h3v8h2V7c0-1.1001-.9-2-2-2h-3v-1c0-1.1001-.9-2-2-2h-8c-1.1,0-2,.8999-2,2v1h-3c-1.1,0-2,.8999-2,2v21c0,1.1001.9,2,2,2h4v-2h-4V7ZM12,4h8v4h-8v-4ZM24.4141,18l-1.4141,1.4141,2.5859,2.5859h-7.5859c-2.2061,0-4,1.7944-4,4s1.7939,4,4,4h2v-2h-2c-1.1025,0-2-.897-2-2s.8975-2,2-2h7.5859l-2.5859,2.5859,1.4141,1.4141,5-5-5-5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23h7v7h-2v-3.3516c-1.6448,2.0405-4.1526,3.3516-7.0002,3.3516h-9.9998c-5,0-9-4-9-9v-8h2v8c0,3.8999,3.1001,7,7,7h10c2.4033,0,4.4941-1.1841,5.7517-3h-3.7517v-2ZM21,2h-9.9998c-2.8477,0-5.3555,1.311-7.0002,3.3516v-3.3516h-2v7h7v-2h-3.7517c1.2576-1.8159,3.3484-3,5.7517-3h10c3.8999,0,7,3.1001,7,7v8h2v-8c0-5-4-9-9-9ZM20.7212,12.0117v-2.0117h-7.7212v12h2.27v-5.0732h4.7461v-2.0117h-4.7461v-2.9033h5.4512Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("circle",{cx:"14.5",cy:"23.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"11.5",cy:"19.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"17.5",cy:"19.5",r:"1.5"}),(0,a.jsx)("path",{d:"M12.964 14.5H18.036V16.499H12.964z",transform:"rotate(-45 15.5 15.5)"}),(0,a.jsx)("path",{d:"M18.964 14.5H24.035999999999998V16.499H18.964z",transform:"rotate(-45 21.5 15.5)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.964 13.5H14.036000000000001V15.499H8.964z",transform:"rotate(-45 11.5 14.5)"}),(0,a.jsx)("path",{d:"M15.379 14.5H17.622V16.499H15.379z",transform:"rotate(-44.995 16.5 15.5)"}),(0,a.jsx)("circle",{cx:"10.5",cy:"22.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"7.5",cy:"18.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"13.5",cy:"18.5",r:"1.5"}),(0,a.jsx)("path",{d:"M14,28A10,10,0,0,1,14,8h4v5l6-6L18,1V6H14a12,12,0,0,0,0,24Z"}),(0,a.jsx)("path",{d:"M20,20H16v2h4v2H17v2h3v2H16v2h4a2.0027,2.0027,0,0,0,2-2V22A2.0023,2.0023,0,0,0,20,20Z"}),(0,a.jsx)("path",{d:"M28,30H26a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30Zm-2-8v6h2V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15.67 24 13.934 23 16.221 19 12.332 19 16.325 12 18.062 13 15.778 17 19.668 17 15.67 24z"}),(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,28A10,10,0,0,1,14,8h4v5l6-6L18,1V6H14a12,12,0,0,0,0,24Z"}),(0,a.jsx)("path",{d:"M11.67 24 9.934 23 12.221 19 8.332 19 12.325 12 14.062 13 11.778 17 15.668 17 11.67 24z"}),(0,a.jsx)("path",{d:"M20,20H16v2h4v2H17v2h3v2H16v2h4a2.0027,2.0027,0,0,0,2-2V22A2.0023,2.0023,0,0,0,20,20Z"}),(0,a.jsx)("path",{d:"M28,30H26a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30Zm-2-8v6h2V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m20,6c0,1.8584,1.2798,3.4106,3,3.8579v5.1421h-14v-5.1421c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4c0,1.8584,1.2798,3.4106,3,3.8579v5.1421c0,1.103.897,2,2,2h6v5.1421c-1.7202.4473-3,1.9995-3,3.8579,0,2.2056,1.7944,4,4,4s4-1.7944,4-4c0-1.8584-1.2798-3.4106-3-3.8579v-5.1421h6c1.103,0,2-.897,2-2v-5.1421c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4Zm-14,0c0-1.103.897-2,2-2s2,.897,2,2c0,1.103-.897,2-2,2s-2-.897-2-2Zm12,20c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2ZM26,6c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M26 21H30V23H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M26 9H30V11H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M24 11 24 9 20 9 20 4 14 4 14 28 20 28 20 23 24 23 24 21 20 21 20 11 24 11z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10.1719 15 2 15 2 17 10.1719 17 7.5859 19.5859 9 21 14 16 9 11 7.5859 12.4141 10.1719 15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H8C6.8,6,6,6.8,6,8v14c0,1.2,0.8,2,2,2h8v-2H8V8h20v14h-7.2L16,28.8l1.6,1.2l4.2-6H28c1.2,0,2-0.8,2-2V8 C30,6.8,29.2,6,28,6z"}),(0,a.jsx)("path",{d:"M4,18H2V5c0-1.7,1.3-3,3-3h13v2H5C4.4,4,4,4.4,4,5V18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M19.63,22.13a2.84,2.84,0,0,1-1.28-.27,2.44,2.44,0,0,1-.89-.77,3.57,3.57,0,0,1-.52-1.25,7.69,7.69,0,0,1-.17-1.68,7.83,7.83,0,0,1,.17-1.68,3.65,3.65,0,0,1,.52-1.25,2.44,2.44,0,0,1,.89-.77,2.84,2.84,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.23,5.23,0,0,1,.7,2.93,5.23,5.23,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.63,22.13Zm0-1.22a1.07,1.07,0,0,0,1-.55A3.38,3.38,0,0,0,21,18.85V17.47a3.31,3.31,0,0,0-.29-1.5,1.23,1.23,0,0,0-2.06,0,3.31,3.31,0,0,0-.29,1.5v1.38a3.38,3.38,0,0,0,.29,1.51A1.06,1.06,0,0,0,19.63,20.91Z"}),(0,a.jsx)("path",{d:"M10.63,22V20.82h2V15.63l-1.86,1-.55-1.06,2.32-1.3H14v6.5h1.78V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M19.64,22.13a2.81,2.81,0,0,1-1.28-.27,2.36,2.36,0,0,1-.89-.77A3.39,3.39,0,0,1,17,19.84a7.12,7.12,0,0,1-.17-1.68A7.24,7.24,0,0,1,17,16.48a3.46,3.46,0,0,1,.52-1.25,2.36,2.36,0,0,1,.89-.77,2.81,2.81,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.31,5.31,0,0,1,.7,2.93,5.31,5.31,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.64,22.13Zm0-1.22a1,1,0,0,0,1-.55,3.24,3.24,0,0,0,.3-1.51V17.47a3.17,3.17,0,0,0-.3-1.5,1.22,1.22,0,0,0-2.05,0,3.18,3.18,0,0,0-.29,1.5v1.38a3.25,3.25,0,0,0,.29,1.51A1,1,0,0,0,19.64,20.91Z"}),(0,a.jsx)("path",{d:"M12.62,17.42a1.46,1.46,0,0,0,1-.27.84.84,0,0,0,.31-.68v-.08a.94.94,0,0,0-.3-.74,1.2,1.2,0,0,0-.83-.27,1.65,1.65,0,0,0-.89.24,2.1,2.1,0,0,0-.68.68l-.93-.83a5.37,5.37,0,0,1,.44-.51,2.7,2.7,0,0,1,.54-.4,2.55,2.55,0,0,1,.7-.27,3.25,3.25,0,0,1,.87-.1,3.94,3.94,0,0,1,1.06.14,2.33,2.33,0,0,1,.82.4,1.91,1.91,0,0,1,.54.63,1.87,1.87,0,0,1,.18.83,2,2,0,0,1-.11.67,1.82,1.82,0,0,1-.32.52,1.79,1.79,0,0,1-.47.36,2.27,2.27,0,0,1-.57.2V18a2.34,2.34,0,0,1,.63.21,1.7,1.7,0,0,1,.51.38,1.89,1.89,0,0,1,.34.55,2.07,2.07,0,0,1,.12.73,2,2,0,0,1-.2.92,2,2,0,0,1-.58.72,2.66,2.66,0,0,1-.89.45,3.76,3.76,0,0,1-1.15.16,4.1,4.1,0,0,1-1-.11A3.1,3.1,0,0,1,11,21.7a2.76,2.76,0,0,1-.56-.45A4.22,4.22,0,0,1,10,20.7l1.07-.81a3.07,3.07,0,0,0,.28.42,1.94,1.94,0,0,0,.36.34,1.57,1.57,0,0,0,.45.22,2,2,0,0,0,.57.07,1.45,1.45,0,0,0,1-.3,1.12,1.12,0,0,0,.34-.85v-.08a1,1,0,0,0-.37-.8,1.78,1.78,0,0,0-1.06-.28h-.76V17.42Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M18.58,15.58H15.13L15,18.15H15a4.83,4.83,0,0,1,.26-.45,1.59,1.59,0,0,1,.33-.35,1.53,1.53,0,0,1,.44-.23,2,2,0,0,1,.6-.08,2.54,2.54,0,0,1,.92.16,2.06,2.06,0,0,1,.74.48,2.28,2.28,0,0,1,.5.77,2.73,2.73,0,0,1,.18,1,2.87,2.87,0,0,1-.19,1.07,2.36,2.36,0,0,1-.55.84,2.44,2.44,0,0,1-.89.55,3.23,3.23,0,0,1-1.21.2,3.79,3.79,0,0,1-.94-.11,3,3,0,0,1-.74-.32,2.45,2.45,0,0,1-.55-.45,4.13,4.13,0,0,1-.41-.55l1.06-.81.27.41a1.82,1.82,0,0,0,.34.34,1.59,1.59,0,0,0,.43.22,1.52,1.52,0,0,0,.55.08,1.29,1.29,0,0,0,1-.36,1.41,1.41,0,0,0,.33-1V19.5a1.18,1.18,0,0,0-1.28-1.27,1.44,1.44,0,0,0-.77.18,1.94,1.94,0,0,0-.48.39l-1.19-.17.29-4.31h4.52Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,12V6H21v6a5,5,0,0,1-10,0V4h5.5859L14.293,6.293a.9994.9994,0,0,0,0,1.414L15.5859,9,13.293,11.293l1.414,1.414,3-3a.9994.9994,0,0,0,0-1.414L16.4141,7,19.707,3.707A1,1,0,0,0,19,2H10A1,1,0,0,0,9,3v9a7.0053,7.0053,0,0,0,6,6.92V28H10v2H22V28H17V18.92A7.0053,7.0053,0,0,0,23,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30c-2.4146,0-4.4348-1.7206-4.8997-4h-5.1003c-1.1028,0-2-.8972-2-2v-5h1c1.6543,0,3-1.3458,3-3s-1.3457-3-3-3h-1v-5c0-1.1028.8972-2,2-2h5.1003c.4648-2.2794,2.4851-4,4.8997-4s4.4348,1.7206,4.8997,4h5.1003c1.1028,0,2,.8972,2,2v5h-1c-1.6543,0-3,1.3458-3,3s1.3457,3,3,3h1v5c0,1.1028-.8972,2-2,2h-5.1003c-.4648,2.2794-2.4851,4-4.8997,4ZM6,20.8995v3.1005h7v1c0,1.6542,1.3457,3,3,3s3-1.3458,3-3v-1h7v-3.1005c-2.2793-.4646-4-2.485-4-4.8995s1.7207-4.4349,4-4.8995v-3.1005h-7v-1c0-1.6542-1.3457-3-3-3s-3,1.3458-3,3v1h-7v3.1005c2.2793.4646,4,2.485,4,4.8995s-1.7207,4.4349-4,4.8995Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,10H7a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V16H12V28H8V19H6V13a1.0009,1.0009,0,0,1,1-1H25a1.0009,1.0009,0,0,1,1,1v6H24v9H20V16H18V28a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21a2.0023,2.0023,0,0,0,2-2V13A3.0033,3.0033,0,0,0,25,10Z"}),(0,a.jsx)("path",{d:"M10,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,10,9Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,10,3Z"}),(0,a.jsx)("path",{d:"M22,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,22,9Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,22,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,15a6.0025,6.0025,0,0,0-3.1067-5.2529A3.9792,3.9792,0,0,0,24,7H22a2.0023,2.0023,0,0,1-2,2,6.004,6.004,0,0,0-5.9946,5.8921A7.0005,7.0005,0,0,1,12,10,3.9961,3.9961,0,0,0,9,6.1419V4H7V6.1419A3.9961,3.9961,0,0,0,4,10v5H2v1a14,14,0,0,0,28,0V15Zm-6-4a4.0045,4.0045,0,0,1,4,4H16A4.0045,4.0045,0,0,1,20,11ZM6,10a2,2,0,1,1,4,0,8.991,8.991,0,0,0,1.5322,5H6ZM16,28A12.0166,12.0166,0,0,1,4.0415,17h23.917A12.0166,12.0166,0,0,1,16,28Z"}),e)});const w=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19.6262,29.5256,19.11,27.5935A12.0035,12.0035,0,0,0,25.2312,8.3323l1.5376-1.2788a14.0033,14.0033,0,0,1-7.1426,22.4721Z"}),(0,a.jsx)("path",{d:"M10,29H8V25.18l.8037-.1607C10.2617,24.728,12,23.6206,12,20V18.6182l-4-2V14.3818l4-2V12c0-5.4673,3.9253-9,10-9h2V6.82l-.8037.1607C21.7383,7.272,20,8.3794,20,12v.3818l4,2v2.2364l-4,2V20C20,25.4673,16.0747,29,10,29Zm0-2c4.9346,0,8-2.6821,8-7V17.3818L21.7642,15.5,18,13.6182V12c0-4.5781,2.3853-6.1924,4-6.76V5c-4.9346,0-8,2.6821-8,7v1.6182L10.2358,15.5,14,17.3818V20c0,4.5781-2.3853,6.1924-4,6.76Z"}),(0,a.jsx)("path",{d:"M5.2312,24.9465A14.0032,14.0032,0,0,1,12.3779,2.4734l.5161,1.9321A12.0035,12.0035,0,0,0,6.7688,23.6677Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12.3,13l-1.3,13.2c-.1.9926-.9,1.8-1.9,1.8h-5.1v-2h5l1.3-13h-4.3v-2h4.5l.5-5.2c.0916-1.0019,1-1.8,2-1.8h5v2h-5l-.5,5h4.5v2h-4.7ZM16,19v7c0,1.1.9,2,2,2h2v-2h-2v-7h2v-2h-2c-1.1,0-2,.9-2,2ZM26,17h-2v2h2v7h-2v2h2c1.1,0,2-.9,2-2v-7c0-1.1-.9-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 18 24 18 22 21.897 20 18 18 18 20.905 23 18 28 20 28 22 24.201 24 28 26 28 23.098 23 26 18z"}),(0,a.jsx)("path",{d:"M19,6V4H13.9133a1.9906,1.9906,0,0,0-1.9919,1.8188L11.2686,13H7v2h4.0867l-1,11H5v2h5.0867a1.9906,1.9906,0,0,0,1.9919-1.8188L13.0952,15H18V13H13.2769l.6364-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,8H9c-1.1,0-2,.9-2,2v3.6c0,.5.2,1,.6,1.4l7.4,7.4v5.6c0,1.1.9,2,2,2h4c1.1,0,2-.9,2-2v-5.6l7.4-7.4c.4-.4.6-.9.6-1.4v-3.6c0-1.1-.9-2-2-2ZM29,13.6l-8,8v6.4h-4v-6.4l-8-8v-3.6h20v3.6ZM4,7.6l1,1v2.8l-2.4-2.4c-.4-.4-.6-.9-.6-1.4v-3.6c0-1.1.9-2,2-2h20c1.1,0,2,.9,2,2v2h-2v-2H4v3.6h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.4,15.6l2.6,2.6h0l2.6-2.6,1.4,1.4-4,4-4-4,1.4-1.4ZM21.4,13.4l2.6-2.6h0l2.6,2.6,1.4-1.4-4-4-4,4,1.4,1.4ZM26,4H4c-1.1,0-2,.9-2,2v3.2c0,.5.2,1,.6,1.4l7.4,7.4v8c0,1.1.9,2,2,2h4c1.1,0,2-.9,2-2v-4h-2v4h-4v-8.8l-.6-.6-7.4-7.4v-3.2h22v-2h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,12H17V4h3V2H12V4h3v8H12a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h3v8H12v2h8V28H17V20h3a2,2,0,0,0,2-2V14A2,2,0,0,0,20,12Zm-8,6V14h8v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.51,26a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,19l2.33-8.84A5.54,5.54,0,0,1,7.11,6.73a5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,9h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.57,5.57,0,0,1,2.59,3.41L29.81,19a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,21H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,26ZM9.83,8a3.49,3.49,0,0,0-1.72.46,3.6,3.6,0,0,0-1.66,2.19L4.12,19.49A3.6,3.6,0,0,0,6.6,23.88a3.43,3.43,0,0,0,2.62-.34,3.54,3.54,0,0,0,1.66-2.19L11.5,19h9l.61,2.35a3.58,3.58,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.55,3.55,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,8Z"}),(0,a.jsx)("path",{d:"M10,16a2,2,0,1,1,2-2A2,2,0,0,1,10,16Zm0-2Z"}),(0,a.jsx)("circle",{cx:"22",cy:"12",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"20",cy:"14",r:"1"}),(0,a.jsx)("circle",{cx:"24",cy:"14",r:"1"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.51,30a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,23l2.33-8.84a5.54,5.54,0,0,1,2.59-3.41,5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,13h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.55,5.55,0,0,1,2.59,3.41L29.81,23a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,25H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,30ZM9.83,12a3.49,3.49,0,0,0-1.72.46,3.58,3.58,0,0,0-1.66,2.19L4.12,23.49A3.6,3.6,0,0,0,6.6,27.88a3.43,3.43,0,0,0,2.62-.34,3.57,3.57,0,0,0,1.66-2.19L11.5,23h9l.61,2.35a3.6,3.6,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.53,3.53,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,12Z"}),(0,a.jsx)("path",{d:"M10,20a2,2,0,1,1,2-2A2,2,0,0,1,10,20Zm0-2Z"}),(0,a.jsx)("circle",{cx:"22",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"20",r:"1"}),(0,a.jsx)("circle",{cx:"20",cy:"18",r:"1"}),(0,a.jsx)("circle",{cx:"24",cy:"18",r:"1"}),(0,a.jsx)("path",{d:"M13.75,9l-1.5-1.33a5,5,0,0,1,7.5,0L18.25,9a3,3,0,0,0-4.5,0Z"}),(0,a.jsx)("path",{d:"M21.25,6.37a7,7,0,0,0-10.5,0L9.25,5.05a9,9,0,0,1,13.5,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23h-.1315l.9635-1.4453A1.0008,1.0008,0,0,0,24,21V12.0005c0-9.8858-7.92-10-8-10A1,1,0,0,0,15,3l-.0005,2H14a.9956.9956,0,0,0-.581.1865l-7,5a1,1,0,0,0-.3676,1.13l1,3a.9976.9976,0,0,0,1.09.6733l4.87-.6958L9.1519,20.47a1,1,0,0,0,.0161,1.085L10.1315,23H10a3.0033,3.0033,0,0,0-3,3v4H26V26A3.0033,3.0033,0,0,0,23,23Zm-7.1519-9.47a1,1,0,0,0-.99-1.52l-6.1738.8819-.5025-1.5078L14.32,7.0005H15.999a1,1,0,0,0,1-.9995L17,4.1289C18.5013,4.4636,21.2167,5.67,21.86,10H19v2h3v2H19v2h3v2H19v2h3v.6973L20.4648,23h-7.93L11.19,20.9824ZM24,28H9V26a1.0009,1.0009,0,0,1,1-1H23a1.0006,1.0006,0,0,1,1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 10H15V12H8z"}),(0,a.jsx)("path",{d:"M28.4142,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5644,3.5644,0,0,0,2.7654,3.5251A3.5062,3.5062,0,0,0,29,24.5V9.4144A2,2,0,0,0,28.4142,8ZM17,26H6V6H17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M8 10H15V12H8z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M28.4143,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5645,3.5645,0,0,0,2.7654,3.5249A3.506,3.506,0,0,0,29,24.5V9.4146A2,2,0,0,0,28.4143,8ZM15,12H8V10h7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,16a1.9857,1.9857,0,0,0-.5859-1.4141L24.6211,8.793,27.489,5.9253a2,2,0,1,0-1.414-1.4141L23.207,7.3789l-5.7929-5.793a1.9995,1.9995,0,0,0-2.8282,0L8.793,7.3789,5.925,4.5112A2,2,0,1,0,4.511,5.9253L7.3789,8.793l-5.793,5.7929a1.9995,1.9995,0,0,0,0,2.8282l5.793,5.7929L4.511,26.0747a2,2,0,1,0,1.414,1.4141l2.868-2.8677,5.7929,5.793a1.9995,1.9995,0,0,0,2.8282,0l5.7929-5.793,2.868,2.8677a2,2,0,1,0,1.414-1.4141L24.6211,23.207l5.793-5.7929A1.9866,1.9866,0,0,0,31,16Zm-7.793,5.793L20.4141,19,19,20.4141l2.793,2.7929L16,29l-5.793-5.793L13,20.4141,11.5859,19,8.793,21.793,3,16l5.7925-5.7935L11.5859,13,13,11.5859,10.2065,8.7925,16,3l5.7935,5.7925L19,11.5859,20.4141,13l2.7934-2.7935L29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,18.1841V13.8159a3.0007,3.0007,0,1,0-2,0v4.3687a3,3,0,1,0,2,0ZM16,10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,16,10Zm0,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,22Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19.8779,12.1218a.4186.4186,0,0,0-.437-.0971l-9.1666,3.3335a.4167.4167,0,0,0-.0122.7786l4.0006,1.6,1.6,4.0007A.4168.4168,0,0,0,16.25,22h.0067a.4169.4169,0,0,0,.3849-.2743l3.3333-9.1669A.4165.4165,0,0,0,19.8779,12.1218Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,14H14V12a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A2.0023,2.0023,0,0,0,19,14Zm0,7H13V16h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,11v6.4678a5.0216,5.0216,0,0,0,2.8613,4.52L16,23l2.1387-1.0127A5.0216,5.0216,0,0,0,21,17.4678V11Zm8,6.4678a3.012,3.012,0,0,1-1.7168,2.7109L16,20.7861l-1.2832-.6074A3.012,3.012,0,0,1,13,17.4678V13h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,22H19V20a1.0011,1.0011,0,0,0-1-1H14a1.0011,1.0011,0,0,0-1,1v2H11V20a3.0033,3.0033,0,0,1,3-3h4a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M16,16a3.5,3.5,0,1,1,3.5-3.5A3.5041,3.5041,0,0,1,16,16Zm0-5a1.5,1.5,0,1,0,1.5,1.5A1.5017,1.5017,0,0,0,16,11Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,14.2783V12a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A1.9929,1.9929,0,0,0,20,14.2783ZM16,10a2.0023,2.0023,0,0,1,2,2v2H14V12A2.0023,2.0023,0,0,1,16,10Zm3,11H13V16h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,21.9847c0-.4595-.0568-.9053-.155-1.3354l2.155-.8273-.7167-1.8671-2.2063.8469c-.4529-.7197-1.0501-1.3392-1.7568-1.8106l.9695-2.1777-1.8271-.8135-.9706,2.1801c-.478-.123-.9761-.1954-1.492-.1954s-1.014.0724-1.492.1954l-.9706-2.1801-1.8271.8135.9695,2.1777c-.7067.4714-1.3039,1.0909-1.7568,1.8106l-2.2063-.8469-.7167,1.8671,2.155.8273c-.0983.4302-.155.8759-.155,1.3354,0,.4396.0507.8672.1408,1.2802l-2.1408.9531.8135,1.8271,2.08-.9261c.442.7173,1.0259,1.3374,1.7191,1.8134l-.9023,2.3508,1.8671.7167.856-2.2299c.5004.1357,1.0239.2146,1.5666.2146s1.0662-.0789,1.5666-.2146l.856,2.2299,1.8671-.7167-.9023-2.3508c.6932-.476,1.2772-1.0961,1.7191-1.8134l2.08.9261.8135-1.8271-2.1408-.9531c.0901-.413.1408-.8406.1408-1.2802Zm-6,4c-2.2061,0-4-1.7944-4-4s1.7939-4,4-4,4,1.7944,4,4-1.7939,4-4,4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m13.471,14.8852l1.4788,1.4788,1.4142-1.4142-1.4788-1.4787c.5146-.7222.871-1.5616,1.0245-2.471h2.0903v-2h-2.0903c-.1535-.9094-.5098-1.7488-1.0245-2.471l1.4788-1.4788-1.4142-1.4142-1.4788,1.4788c-.7222-.5146-1.5616-.871-2.471-1.0245v-2.0903h-2v2.0903c-.9094.1535-1.7488.5099-2.471,1.0245l-1.4788-1.4788-1.4142,1.4142,1.4788,1.4788c-.5146.7222-.871,1.5616-1.0245,2.471H2v2h2.0903c.1535.9094.5098,1.7488,1.0245,2.471l-1.4788,1.4787,1.4142,1.4142,1.4788-1.4788c.7222.5146,1.5616.871,2.471,1.0245v2.0903h2v-2.0903c.9094-.1535,1.7488-.5098,2.471-1.0245Zm-7.471-4.8852c0-2.2056,1.7939-4,4-4s4,1.7944,4,4-1.7939,4-4,4-4-1.7944-4-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.5,4H8.5L1.7158,13.0454,16,29.5269,30.2842,13.0454ZM27,12H21.5543l-3.75-6H22.5ZM10.3021,14l3.7536,10.23L5.19,14Zm2.13,0H19.568l-3.569,9.7212Zm.3725-2L16,6.8867,19.1957,12Zm8.8935,2H26.81L17.9427,24.2314ZM9.5,6h4.6957l-3.75,6H5Z"}),e)})},9249(e,t,r){r.d(t,{_V:()=>w,qz:()=>c,vG:()=>n,vg:()=>o,ww:()=>s,xA:()=>i});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M23.5,4H8.5L1.7158,13.0454,6.01,18l1.5114-1.31L5.19,14h5.2554L16,22.8867,21.5544,14H26.81L15.8125,26.6919,17.3242,28l12.96-14.9546ZM5,12,9.5,6h4.6958l-3.75,6ZM16,6.8867,19.1958,12H12.8042Zm0,12.2266L12.8044,14h6.3912ZM21.5542,12l-3.75-6H22.5L27,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,19.9307a8,8,0,1,0-2,0V22H10v2h5v4h2V24h5V22H17ZM10,12a6,6,0,1,1,6,6A6.0066,6.0066,0,0,1,10,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,4V6h6.5859l-7.6884,7.6885a8.028,8.028,0,1,0,1.414,1.414L26,7.4141V14h2V4ZM12,26a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,12,26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,24v4H8V24H6v4H6a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2h0V24Z"}),(0,a.jsx)("path",{d:"M21 21 19.586 19.586 17 22.172 17 14 15 14 15 22.172 12.414 19.586 11 21 16 26 21 21z"}),(0,a.jsx)("path",{d:"M28 4 28 2 22 2 22 12 24 12 24 8 27 8 27 6 24 6 24 4 28 4z"}),(0,a.jsx)("path",{d:"M17,12H13V2h4a3.0033,3.0033,0,0,1,3,3V9A3.0033,3.0033,0,0,1,17,12Zm-2-2h2a1.0011,1.0011,0,0,0,1-1V5a1.0011,1.0011,0,0,0-1-1H15Z"}),(0,a.jsx)("path",{d:"M9,2H4V12H6V9H9a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,9,2ZM6,7V4H9l.001,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2,12v8a3,3,0,0,0,3,3h5V15H6v2H8v4H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1h5V9H5A3,3,0,0,0,2,12Z"}),(0,a.jsx)("path",{d:"M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z"}),(0,a.jsx)("path",{d:"M12 9 12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,10H23.2383A4.4867,4.4867,0,0,0,16,4.7065,4.4873,4.4873,0,0,0,8.7617,10H6a2.0025,2.0025,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2V28a2.0025,2.0025,0,0,0,2,2H24a2.0025,2.0025,0,0,0,2-2V18a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,26,10ZM17,7.5A2.5,2.5,0,1,1,19.5,10H17ZM12.5,5A2.503,2.503,0,0,1,15,7.5V10H12.5a2.5,2.5,0,0,1,0-5ZM6,12h9v4H6Zm2,6h7V28H8ZM24.0012,28H17V18h7ZM17,16V12h9l.0012,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12.9,7c-.4-1.7-2-3-3.9-3s-3.4,1.3-3.9,3h-3.1v2h3.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h17.1v-2H12.9ZM9,10c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM23,12c-1.9,0-3.4,1.3-3.9,3H2v2h17.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h3.1v-2h-3.1c-.4-1.7-2-3-3.9-3ZM23,18c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM14,20c-1.9,0-3.4,1.3-3.9,3H2v2h8.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h12.1v-2h-12.1c-.4-1.7-2-3-3.9-3ZM14,26c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m15,22l-1.4099,1.4102,2.5798,2.5898H4V8h-2v18c0,1.1025.8972,2,2,2h12.1699l-2.5798,2.5898,1.4099,1.4102,5-5-5-5Z"}),(0,a.jsx)("circle",{cx:"11",cy:"16",r:"1"}),(0,a.jsx)("path",{d:"m24,20H8c-1.1028,0-2-.8972-2-2v-4c0-1.1028.8972-2,2-2h16c1.1028,0,2,.8972,2,2v4c0,1.1028-.8972,2-2,2Zm-16-6v4h16v-4H8Z"}),(0,a.jsx)("path",{d:"m28,4h-12.1699l2.5801-2.5898L17,0l-5,5,5,5,1.4102-1.4102-2.5801-2.5898h12.1699v18h2V6c0-1.1025-.8972-2-2-2Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,4a7,7,0,1,1-7,7,7,7,0,0,1,7-7m0-2a9,9,0,1,0,9,9A9,9,0,0,0,14,2Z"}),(0,a.jsx)("path",{d:"M28,11a13.9563,13.9563,0,0,0-4.1051-9.8949L22.4813,2.5187A11.9944,11.9944,0,0,1,5.5568,19.5194l-.0381-.0381L4.1051,20.8949A13.9563,13.9563,0,0,0,14,25v3H10v2H20V28H16V24.84A14.0094,14.0094,0,0,0,28,11Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,4H6A2.0023,2.0023,0,0,0,4,6V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM22,26V22H18v4H14V22H10V18h4V14H10V10h4V6h4v4h4V6h4V26Z"}),(0,a.jsx)("path",{d:"M14 10H18V14H14z"}),(0,a.jsx)("path",{d:"M14 18H18V22H14z"}),(0,a.jsx)("path",{d:"M18 14H22V18H18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M3 18H5V30H3z"}),(0,a.jsx)("path",{d:"M9 24H11V30H9z"}),(0,a.jsx)("path",{d:"M15 16H17V30H15z"}),(0,a.jsx)("path",{d:"M21 20H23V30H21z"}),(0,a.jsx)("path",{d:"M27 14H29V30H27z"}),(0,a.jsx)("path",{d:"M28,2c-1.1046,0-2,.8954-2,2,0,.178.0307.3475.0743.5117l-3.5624,3.5627c-.1644-.0437-.3339-.0745-.512-.0745-.3171,0-.6129.0805-.8793.2119l-3.1332-2.0887c.0026-.0416.0125-.081.0125-.1232,0-1.1046-.8954-2-2-2s-2,.8954-2,2c0,.279.0578.5443.1609.7855l-3.9287,5.238c-.0771-.009-.1527-.0234-.2322-.0234-.178,0-.3474.0307-.5116.0743l-3.5627-3.5627c.0436-.1642.0743-.3336.0743-.5116,0-1.1046-.8954-2-2-2s-2,.8954-2,2,.8954,2,2,2c.178,0,.3474-.0307.5116-.0743l3.5627,3.5627c-.0436.1642-.0743.3336-.0743.5116,0,1.1046.8954,2,2,2s2-.8954,2-2c0-.279-.0578-.5443-.1609-.7855l3.9286-5.238c.0771.009.1527.0234.2323.0234.3171,0,.6129-.0805.8793-.2119l3.1332,2.0887c-.0026.0416-.0125.081-.0125.1232,0,1.1046.8954,2,2,2s2-.8954,2-2c0-.178-.0307-.3474-.0743-.5116l3.5627-3.5627c.1642.0436.3336.0743.5116.0743,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H22a2.0023,2.0023,0,0,1-2-2V22a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,30Zm-6-8h-.0012L22,28h6V22Z"}),(0,a.jsx)("path",{d:"M18,26H12a3.0033,3.0033,0,0,1-3-3V19h2v4a1.001,1.001,0,0,0,1,1h6Z"}),(0,a.jsx)("path",{d:"M26,18H24V15a1.001,1.001,0,0,0-1-1H18V12h5a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M15,18a.9986.9986,0,0,1-.4971-.1323L10,15.2886,5.4968,17.8677a1,1,0,0,1-1.4712-1.0938l1.0618-4.572L2.269,9.1824a1,1,0,0,1,.5662-1.6687l4.2-.7019L9.1006,2.5627a1,1,0,0,1,1.7881-.0214l2.2046,4.271,4.0764.7021a1,1,0,0,1,.5613,1.668l-2.8184,3.02,1.0613,4.5718A1,1,0,0,1,15,18Zm-5-5s.343.18.4971.2686l3.01,1.7241-.7837-3.3763,2.282-2.4453-3.2331-.5569-1.7456-3.382L8.3829,8.6144l-3.3809.565,2.2745,2.437-.7841,3.3763,3.0105-1.7241C9.657,13.18,10,13,10,13Z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,4H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6A2,2,0,0,0,12,4Zm0,8H6V6h6Z"}),(0,a.jsx)("path",{d:"M26,4H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,8H20V6h6Z"}),(0,a.jsx)("path",{d:"M12,18H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V20A2,2,0,0,0,12,18Zm0,8H6V20h6Z"}),(0,a.jsx)("path",{d:"M26,18H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V20A2,2,0,0,0,26,18Zm0,8H20V20h6Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,30H29V27a3,3,0,0,0-3-3H22a3,3,0,0,0-3,3v3H17V27a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z"}),(0,a.jsx)("path",{d:"M24,12a3,3,0,1,1-3,3,3,3,0,0,1,3-3m0-2a5,5,0,1,0,5,5A5,5,0,0,0,24,10Z"}),(0,a.jsx)("path",{d:"M15,22H13V19a3,3,0,0,0-3-3H6a3,3,0,0,0-3,3v3H1V19a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z"}),(0,a.jsx)("path",{d:"M8,4A3,3,0,1,1,5,7,3,3,0,0,1,8,4M8,2a5,5,0,1,0,5,5A5,5,0,0,0,8,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,19H6V17a3.0033,3.0033,0,0,1,3-3h5v2H9a1.0011,1.0011,0,0,0-1,1Z"}),(0,a.jsx)("path",{d:"M12,13a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,12,13Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,12,7Z"}),(0,a.jsx)("path",{d:"M20,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,20,20Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,20,14Z"}),(0,a.jsx)("path",{d:"M26,26H24V24a1.0011,1.0011,0,0,0-1-1H17a1.0011,1.0011,0,0,0-1,1v2H14V24a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,11H11a3,3,0,0,0-3,3v4h2V14a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v1h2V14A3,3,0,0,0,17,11Z"}),(0,a.jsx)("path",{d:"M10,6a4,4,0,1,0,4-4A4,4,0,0,0,10,6Zm6,0a2,2,0,1,1-2-2A2,2,0,0,1,16,6Z"}),(0,a.jsx)("path",{d:"M22,27H16a2.0021,2.0021,0,0,1-2-2V19a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,22,27Zm-6-8v6h6V19Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,30H8V27H4v3H2V27a2.0023,2.0023,0,0,1,2-2H8a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M30,30H28V27H24v3H22V27a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M20,30H18V27H14v3H12V27a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("circle",{cx:"16",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"6",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"26",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"21",cy:"18",r:"2"}),(0,a.jsx)("circle",{cx:"11",cy:"18",r:"2"}),(0,a.jsx)("path",{d:"M26,14H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2v8A2.0023,2.0023,0,0,1,26,14ZM6,4v8H26V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,24H10a2.0021,2.0021,0,0,1-2-2V10a2.0021,2.0021,0,0,1,2-2H22a2.0021,2.0021,0,0,1,2,2V22A2.0021,2.0021,0,0,1,22,24ZM10,10V22H22V10Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,21H9V19a3.0033,3.0033,0,0,1,3-3h6v2H12a1.0011,1.0011,0,0,0-1,1Z"}),(0,a.jsx)("path",{d:"M15,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,15,15Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,15,9Z"}),(0,a.jsx)("path",{d:"M24,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,22Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,16Z"}),(0,a.jsx)("path",{d:"M30,28H28V26a1.0011,1.0011,0,0,0-1-1H21a1.0011,1.0011,0,0,0-1,1v2H18V26a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M14,27.7334l-5.2344-2.791A8.9858,8.9858,0,0,1,4,17V4H24v6h2V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13V9H9V19h4v4H23V13Zm-8-2h6v6H11ZM21,21H15V19h4V15h2Z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 10 15 10 15 15 10 15 10 17 15 17 15 22 17 22 17 17 22 17 22 15 17 15 17 10z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 18.18 10.41 14.59 9 16 14 21 23 12 21.59 10.581 14 18.18z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,8v2h6.5859L18,18.5859,13.707,14.293a.9994.9994,0,0,0-1.414,0L2,24.5859,3.4141,26,13,16.4141l4.293,4.2929a.9994.9994,0,0,0,1.414,0L28,11.4141V18h2V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"20",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"23",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"26",cy:"8",r:"1"}),(0,a.jsx)("path",{d:"M28,4H4A2.0023,2.0023,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4Zm0,2v4H4V6ZM4,12h6V26H4Zm8,14V12H28V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z"}),(0,a.jsx)("path",{d:"M28,4H4A2.002,2.002,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H14V26H4V12H28v3h2V6A2.0023,2.0023,0,0,0,28,4Zm0,6H4V6H28Z"}),(0,a.jsx)("circle",{cx:"20",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"23",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"26",cy:"8",r:"1"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 9 18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21.5",cy:"29.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"24.5",cy:"25.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"7.5",cy:"25.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"4.5",cy:"29.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"10.499",cy:"29.5",r:"1.5"}),(0,a.jsx)("path",{d:"M15.868 30.496 14.132 29.504 17.276 24 11.277 24 16.132 15.504 17.868 16.496 14.723 22 20.724 22 15.868 30.496z"}),(0,a.jsx)("path",{d:"M23.5,22H23V20h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,20H9v2H8.5A6.4973,6.4973,0,0,1,7.2,9.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.37,20.52,17,15.41V13.86A4,4,0,1,0,12,10h2a2,2,0,1,1,4,.34A2.08,2.08,0,0,1,15.89,12h0a.89.89,0,0,0-.89.89v2.52L5.63,20.52A3.1,3.1,0,0,0,4.25,22a2.83,2.83,0,0,0,2.56,4H25.19a2.83,2.83,0,0,0,2.56-4A3.1,3.1,0,0,0,26.37,20.52ZM25.19,24H6.81A.81.81,0,0,1,6,23.19a1,1,0,0,1,.52-.88L16,17.14l9.48,5.17a1,1,0,0,1,.52.88A.81.81,0,0,1,25.19,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,17A11.0109,11.0109,0,0,1,17,27.9492V14h6V12H17V9.8579a4,4,0,1,0-2,0V12H9v2h6V27.9492A11.0109,11.0109,0,0,1,5,17H3a13,13,0,0,0,26,0ZM14,6a2,2,0,1,1,2,2A2.0023,2.0023,0,0,1,14,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21.5",cy:"7.5",r:"1.5"}),(0,a.jsx)("path",{d:"M14.4143,20H9V14.5857l6.03-6.03A5.3518,5.3518,0,0,1,15,8a6,6,0,1,1,6,6,5.3583,5.3583,0,0,1-.5559-.03ZM11,18h2.5857l6.1706-6.1709.5174.0957A3.935,3.935,0,0,0,21,12a4.0507,4.0507,0,1,0-3.925-3.2729l.0952.5166L11,15.4143Z"}),(0,a.jsx)("path",{d:"M28,20H19v2h9v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"}),(0,a.jsx)("circle",{cx:"7",cy:"25",r:"1"}),e)});const n=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,12V10H22V4H20v6H12V4H10v6H4v2h6v8H4v2h6v6h2V22h8v6h2V22h6V20H22V12Zm-8,8H12V12h8Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,28H3a1,1,0,0,1,0-2H19a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M15,20H3a1,1,0,0,1,0-2H15a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M24.5 23.5H28.5V25.5H24.5z",transform:"rotate(45 26.5 24.5)"}),(0,a.jsx)("path",{d:"M28 15H32V17H28z"}),(0,a.jsx)("path",{d:"M24.5 6.5H28.5V8.5H24.5z",transform:"rotate(-45 26.5 7.5)"}),(0,a.jsx)("path",{d:"M17 2H19V6H17z"}),(0,a.jsx)("path",{d:"M7.5 6.5H11.5V8.5H7.5z",transform:"rotate(225 9.5 7.5)"}),(0,a.jsx)("path",{d:"M18,8a8.0092,8.0092,0,0,0-8,8h2a6,6,0,1,1,6,6H7a1,1,0,0,0,0,2H18A8,8,0,0,0,18,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,22H13a1,1,0,0,0,0,2h9.6772a11.0991,11.0991,0,0,1-7.5561,2.9976c-.1384,0-.2783.0048-.4177,0a11.0945,11.0945,0,0,1-3.201-21.584,15.1528,15.1528,0,0,0-.0488,6.5869h2.0457a13.15,13.15,0,0,1,.39-7.6206A1.015,1.015,0,0,0,12.98,3a.9825.9825,0,0,0-.1746.0156A13.0958,13.0958,0,0,0,14.63,28.9971c.164.0063.3281,0,.4907,0A13.04,13.04,0,0,0,25.3779,24H29a1,1,0,0,0,0-2Z"}),(0,a.jsx)("path",{d:"M27,20H17a1,1,0,0,1,0-2H27a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M25,16H13a1,1,0,0,1,0-2H25a1,1,0,0,1,0,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM4,24V8H28V24Z"}),(0,a.jsx)("path",{d:"M22,11H18V21h4a3,3,0,0,0,3-3V14A3,3,0,0,0,22,11Zm1,7a1,1,0,0,1-1,1H20V13h2a1,1,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M13 11 13 15 10 15 10 11 8 11 8 21 10 21 10 17 13 17 13 21 15 21 15 11 13 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,13H20v6h2a1,1,0,0,0,1-1V14A1,1,0,0,0,22,13Z"}),(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM15,21H13V17H10v4H8V11h2v4h3V11h2Zm10-3a3,3,0,0,1-3,3H18V11h4a3,3,0,0,1,3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,15V11a2,2,0,0,0-2-2H22V23h2V17h1.48l2.34,6H30l-2.33-6H28A2,2,0,0,0,30,15Zm-6-4h4v4H24Z"}),(0,a.jsx)("path",{d:"M16,23H12V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,16,23Zm-2-2h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H14Z"}),(0,a.jsx)("path",{d:"M8 9 8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,7v18h-3v-6h-10v6h-3V7h3v9h10V7h3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16V15A9,9,0,0,0,7,15v1A5,5,0,0,0,7,26H9V15a7,7,0,0,1,14,0V26h2a5,5,0,0,0,0-10ZM4,21a3,3,0,0,1,3-3v6A3,3,0,0,1,4,21Zm21,3V18a3,3,0,0,1,0,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,10h-.06A9,9,0,0,0,7.06,10H7A5,5,0,0,0,7,20H9V11a7,7,0,0,1,14,0V21a4,4,0,0,1-3.17,3.91,4,4,0,1,0,.05,2A6,6,0,0,0,25,21V20a5,5,0,0,0,0-10ZM4,15a3,3,0,0,1,3-3v6A3,3,0,0,1,4,15ZM16,28a2,2,0,1,1,2-2A2,2,0,0,1,16,28Zm9-10V12a3,3,0,0,1,0,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,28H13a2.0023,2.0023,0,0,1-2-2V21H6a2.0023,2.0023,0,0,1-2-2V13a2.002,2.002,0,0,1,2-2h5V6a2.002,2.002,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v5h5a2.0023,2.0023,0,0,1,2,2v6a2.0027,2.0027,0,0,1-2,2H21v5A2.0027,2.0027,0,0,1,19,28ZM6,13v6h7v7h6V19h7V13H19V6H13v7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30V28A10.0114,10.0114,0,0,0,28,18h2A12.0134,12.0134,0,0,1,18,30Z"}),(0,a.jsx)("path",{d:"M18,26V24a6.0066,6.0066,0,0,0,6-6h2A8.0092,8.0092,0,0,1,18,26Z"}),(0,a.jsx)("path",{d:"M18,22V20a2.0023,2.0023,0,0,0,2-2h2A4.0042,4.0042,0,0,1,18,22Z"}),(0,a.jsx)("path",{d:"M10,2a9.01,9.01,0,0,0-9,9H3a7,7,0,0,1,14,0,7.09,7.09,0,0,1-3.501,6.1348L13,17.4229v3.0732a2.9354,2.9354,0,0,1-.9009,2.1514,4.1824,4.1824,0,0,1-4.6318,1.03A4.0918,4.0918,0,0,1,5,20H3a6.1156,6.1156,0,0,0,3.6694,5.5117,5.7822,5.7822,0,0,0,2.3145.4863A6.5854,6.5854,0,0,0,13.4624,24.11,4.94,4.94,0,0,0,15,20.4961V18.5537A9.1077,9.1077,0,0,0,19,11,9.01,9.01,0,0,0,10,2Z"}),(0,a.jsx)("path",{d:"M9.28,8.0825A3.0061,3.0061,0,0,1,13,11h2a4.9786,4.9786,0,0,0-1.8843-3.9111A5.0414,5.0414,0,0,0,8.835,6.1323,4.95,4.95,0,0,0,5.1323,9.835,5.0318,5.0318,0,0,0,7.436,15.2935,3.0777,3.0777,0,0,1,9,17.9229V20h2V17.9229a5.0608,5.0608,0,0,0-2.5371-4.3458A3.0016,3.0016,0,0,1,9.28,8.0825Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 18H22V20H20z"}),(0,a.jsx)("path",{d:"M28 16H30V18H28z"}),(0,a.jsx)("path",{d:"M14 6H16V8H14z"}),(0,a.jsx)("path",{d:"M16,22H12V16a2.0023,2.0023,0,0,0-2-2H4a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h6v4a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V24A2.0023,2.0023,0,0,0,16,22ZM4,22V16h6v6Zm8,6V24h4v4Z"}),(0,a.jsx)("path",{d:"M28,30H24a2.0021,2.0021,0,0,1-2-2V24a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,28,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,2H22a2.0023,2.0023,0,0,0-2,2v6H18a2.0023,2.0023,0,0,0-2,2v2a2.0023,2.0023,0,0,0,2,2h2a2.0023,2.0023,0,0,0,2-2V12h6a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2ZM18,14V12h2v2Zm4-4V4h6v6Z"}),(0,a.jsx)("path",{d:"M8,10H4A2.0021,2.0021,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H8a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,8,10ZM4,4V8H8V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21",cy:"20",r:"2"}),(0,a.jsx)("circle",{cx:"14",cy:"12",r:"2"}),(0,a.jsx)("circle",{cx:"29",cy:"19",r:"1"}),(0,a.jsx)("path",{d:"M26.5,30A3.5,3.5,0,1,1,30,26.5,3.5041,3.5041,0,0,1,26.5,30Zm0-5A1.5,1.5,0,1,0,28,26.5,1.5017,1.5017,0,0,0,26.5,25Z"}),(0,a.jsx)("path",{d:"M14,30a3.958,3.958,0,0,1-2.126-.6211,6.9977,6.9977,0,1,1,4.1109-6.8384A3.9916,3.9916,0,0,1,14,30Zm-1.8843-3.0278.5391.4946a1.9915,1.9915,0,1,0,2.0039-3.343l-.6909-.2432.03-.8467a5.0085,5.0085,0,1,0-2.5166,4.3023Z"}),(0,a.jsx)("path",{d:"M24,16a6.0067,6.0067,0,0,1-6-6,5.3246,5.3246,0,0,1,.0269-.5327A3.9564,3.9564,0,0,1,16,6a4.0045,4.0045,0,0,1,4-4,3.9564,3.9564,0,0,1,3.4673,2.0271C23.6484,4.009,23.8252,4,24,4a6,6,0,0,1,0,12ZM20,4a2.0021,2.0021,0,0,0-2,2,1.9805,1.9805,0,0,0,1.43,1.9023l.9018.2706-.2153.9162A3.9938,3.9938,0,1,0,24,6a4.0064,4.0064,0,0,0-.9121.1162l-.9155.2141-.27-.9006A1.9807,1.9807,0,0,0,20,4Z"}),(0,a.jsx)("path",{d:"M6.5,11A4.5,4.5,0,1,1,11,6.5,4.5051,4.5051,0,0,1,6.5,11Zm0-7A2.5,2.5,0,1,0,9,6.5,2.503,2.503,0,0,0,6.5,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,3H5A2.0023,2.0023,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0023,2.0023,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3ZM19,9H13V5h6Zm0,2v4H13V11Zm-8,0v4H5V11Zm0,6v4H5V17Zm2,0h6v4H13Zm8-2V11h6l0,4ZM5,23h6v4H5Zm16,4V23h6v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3ZM9,21H5V17H9Zm2,2h4v4H11Zm6,0h4v4H17Zm0-8V11h4v4Zm4-6H17V5h4Zm2,2h4v4H23ZM15,5V15H5V5Zm8,22V17h4V27Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,8V6H8V8H18v4H4V8H2v8H4V14h6.2192l2.0533,8.2129A4.9923,4.9923,0,0,0,17.123,26H26a4.0045,4.0045,0,0,0,4-4V19.3623a2.0007,2.0007,0,0,0-.4639-1.28L25.0684,12.72A1.9968,1.9968,0,0,0,23.5317,12H20V8ZM26,24H17.123a2.9949,2.9949,0,0,1-2.91-2.2725L12.2808,14H18v6H28v2A2.0023,2.0023,0,0,1,26,24ZM23.5317,14l3.3333,4H20V14Z"}),e)});const w=l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M8,14c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S11.3,14,8,14z"}),(0,a.jsx)("circle",{cx:"8",cy:"11.8",r:".8"}),(0,a.jsx)("path",{d:"M8.5,4H7.8C6.5,4,5.5,5,5.5,6.2c0,0,0,0,0,0v0.2h1V6.2C6.5,5.6,7.1,5,7.8,5h0.8c0.7,0,1.2,0.6,1.2,1.2S9.2,7.5,8.5,7.5h-1 v2.2h1V8.5c1.2,0,2.2-1,2.2-2.2S9.7,4,8.5,4z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("circle",{cx:"16",cy:"23.5",r:"1.5"}),(0,a.jsx)("path",{d:"M17,8H15.5A4.49,4.49,0,0,0,11,12.5V13h2v-.5A2.5,2.5,0,0,1,15.5,10H17a2.5,2.5,0,0,1,0,5H15v4.5h2V17a4.5,4.5,0,0,0,0-9Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,23a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Zm1.1421-7.754v2.5014h-2.25V15h2.125a2.3763,2.3763,0,0,0,0-4.7526h-1.5a2.3777,2.3777,0,0,0-2.375,2.375V13.26h-2.25v-.6377A4.6279,4.6279,0,0,1,15.5171,8h1.5a4.6238,4.6238,0,0,1,.125,9.246Z"}),(0,a.jsx)("path",{fill:"none",d:"M16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Zm1.1421-7.754v2.5014h-2.25V15h2.125a2.3763,2.3763,0,0,0,0-4.7526h-1.5a2.3777,2.3777,0,0,0-2.375,2.375V13.26h-2.25v-.6377A4.6279,4.6279,0,0,1,15.5171,8h1.5a4.6238,4.6238,0,0,1,.125,9.246Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,10H21a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21a2.0023,2.0023,0,0,0,2-2V13A3.0033,3.0033,0,0,0,27,10Zm1,9H26v9H22V19H20V13a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M20,5a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,20,5Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,22,5Z"}),(0,a.jsx)("path",{d:"M14,16V13a3.0033,3.0033,0,0,0-3-3H5a3.0033,3.0033,0,0,0-3,3v3H0v2H16V16ZM4,13a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v3H4Z"}),(0,a.jsx)("path",{d:"M4,5A4,4,0,1,1,8,9,4.0042,4.0042,0,0,1,4,5ZM6,5A2,2,0,1,0,8,3,2.0023,2.0023,0,0,0,6,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m23,29h-14c-.3555,0-.6846-.189-.8638-.4961L1.1362,16.5039c-.1816-.3113-.1816-.6965,0-1.0078L8.1362,3.4961c.1792-.3071.5083-.4961.8638-.4961h14c.3555,0,.6846.189.8638.4961l7,12c.1816.3113.1816.6965,0,1.0078l-7,12c-.1792.3071-.5083.4961-.8638.4961Zm-13.4258-2h12.8516l6.4165-11-6.4165-11h-12.8516l-6.4165,11,6.4165,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30.8508,15.4487l-6.9641-11.9165c-.1926-.3301-.5437-.5322-.9224-.5322h-13.9287c-.3787,0-.7297.2021-.9224.5322L1.1492,15.4487c-.199.3403-.199.7622,0,1.1025l6.9641,11.9165c.1926.3301.5437.5322.9224.5322h13.9287c.3787,0,.7297-.2021.9224-.5322l6.9641-11.9165c.199-.3403.199-.7622,0-1.1025Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m3,23v-14c0-.3555.189-.6846.4961-.8638L15.4961,1.1362c.3113-.1816.6965-.1816,1.0078,0l12,7c.3071.1792.4961.5083.4961.8638v14c0,.3555-.189.6846-.4961.8638l-12,7c-.3113.1816-.6965.1816-1.0078,0l-12-7c-.3071-.1792-.4961-.5083-.4961-.8638Zm2-13.4258v12.8516l11,6.4165,11-6.4165v-12.8516l-11-6.4165-11,6.4165Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16.5513,30.8508l11.9165-6.9641c.3301-.1926.5322-.5437.5322-.9224v-13.9287c0-.3787-.2021-.7297-.5322-.9224L16.5513,1.1492c-.3403-.199-.7622-.199-1.1025,0L3.5322,8.1133c-.3301.1926-.5322.5437-.5322.9224v13.9287c0,.3787.2021.7297.5322.9224l11.9165,6.9641c.3403.199.7622.199,1.1025,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 2H6V6H2z"}),(0,a.jsx)("path",{d:"M10 2H14V6H10z"}),(0,a.jsx)("path",{d:"M18 2H22V6H18z"}),(0,a.jsx)("path",{d:"M26 2H30V6H26z"}),(0,a.jsx)("path",{d:"M2 10H6V14H2z"}),(0,a.jsx)("path",{d:"M10 10H14V14H10z"}),(0,a.jsx)("path",{d:"M18 10H22V14H18z"}),(0,a.jsx)("path",{d:"M26 10H30V14H26z"}),(0,a.jsx)("path",{d:"M2 18H6V22H2z"}),(0,a.jsx)("path",{d:"M10 18H14V22H10z"}),(0,a.jsx)("path",{d:"M18 18H22V22H18z"}),(0,a.jsx)("path",{d:"M26 18H30V22H26z"}),(0,a.jsx)("path",{d:"M2 26H6V30H2z"}),(0,a.jsx)("path",{d:"M10 26H14V30H10z"}),(0,a.jsx)("path",{d:"M18 26H22V30H18z"}),(0,a.jsx)("path",{d:"M26 26H30V30H26z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29 9 21 9 21 13 23 13 23 11 26.847 11 22 23 24.157 23 29 11 29 9z"}),(0,a.jsx)("path",{d:"M14 21 14 9 12 9 12 23 20 23 20 21 14 21z"}),(0,a.jsx)("path",{d:"M8 9 8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"16",r:"5"}),(0,a.jsx)("path",{d:"M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26.0012L26,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"19",cy:"19",r:"4"}),(0,a.jsx)("path",{d:"M28,30H10a2.0023,2.0023,0,0,1-2-2V10a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30ZM10,10V28H28V10Z"}),(0,a.jsx)("path",{d:"M11 2 2 2 2 11 4 11 4 4 11 4 11 2z"}),e)});const s=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.6123,2.2138a1.01,1.01,0,0,0-1.2427,0L1,13.4194l1.2427,1.5717L4,13.6209V26a2.0041,2.0041,0,0,0,2,2H26a2.0037,2.0037,0,0,0,2-2V13.63L29.7573,15,31,13.4282ZM18,26H14V18h4Zm2,0V18a2.0023,2.0023,0,0,0-2-2H14a2.002,2.002,0,0,0-2,2v8H6V12.0615l10-7.79,10,7.8005V26Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,17h-4v-2h4v2ZM22,17h-4v-2h4v2ZM14,17h-4v-2h4v2ZM6,17H2v-2h4v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2,15h28v2H2v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H4a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,30ZM4,20H3.9985L4,28H28V20Z"}),(0,a.jsx)("path",{d:"M28,14H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,14ZM4,4H3.9985L4,12H28V4Z"}),e)});const o=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21 10 17 10 17 6 15 6 15 10 11 10 11 12 15 12 15 16 17 16 17 12 21 12 21 10z"}),(0,a.jsx)("path",{d:"M28,10H26V4a2.0023,2.0023,0,0,0-2-2H8A2.0023,2.0023,0,0,0,6,4v6H4a2.0023,2.0023,0,0,0-2,2V30H30V12A2.0023,2.0023,0,0,0,28,10ZM14,28V22h4v6Zm6,0V21a1,1,0,0,0-1-1H13a1,1,0,0,0-1,1v7H4V12H8V4H24v8h4V28Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17a2.0023,2.0023,0,0,0-2,2v6H4V14H2V30H4V26H28v4h2V21A5.0059,5.0059,0,0,0,25,16Zm3,8H17V18h8a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M9.5,17A1.5,1.5,0,1,1,8,18.5,1.5017,1.5017,0,0,1,9.5,17m0-2A3.5,3.5,0,1,0,13,18.5,3.5,3.5,0,0,0,9.5,15Z"}),(0,a.jsx)("path",{d:"M21 6 17 6 17 2 15 2 15 6 11 6 11 8 15 8 15 12 17 12 17 8 21 8 21 6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.5,15A1.5,1.5,0,1,1,8,16.5,1.5,1.5,0,0,1,9.5,15m0-2A3.5,3.5,0,1,0,13,16.5,3.5,3.5,0,0,0,9.5,13Z"}),(0,a.jsx)("path",{d:"M25,14H17a2,2,0,0,0-2,2v6H4V10.6L16,4.14l12.53,6.74.94-1.76-13-7a1,1,0,0,0-.94,0l-13,7A1,1,0,0,0,2,10V30H4V24H28v6h2V19A5,5,0,0,0,25,14Zm-8,8V16h8a3,3,0,0,1,3,3v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 19H17V21H15z"}),(0,a.jsx)("path",{d:"M15 23H17V25H15z"}),(0,a.jsx)("path",{d:"M23,11.67V4h3V2H6V4H9v7.67a2,2,0,0,0,.4,1.2L11.75,16,9.4,19.13a2,2,0,0,0-.4,1.2V28H6v2H26V28H23V20.33a2,2,0,0,0-.4-1.2L20.25,16l2.35-3.13A2,2,0,0,0,23,11.67ZM21,4v7H11V4Zm0,16.33V28H11V20.33L14.25,16,12,13h8l-2.25,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28 19 28 11 26 11 26 21 32 21 32 19 28 19z"}),(0,a.jsx)("path",{d:"M24 11 22 11 20.5 15 19 11 17 11 17 21 19 21 19 14 20.5 18 22 14 22 21 24 21 24 11z"}),(0,a.jsx)("path",{d:"M9 13 11 13 11 21 13 21 13 13 15 13 15 11 9 11 9 13z"}),(0,a.jsx)("path",{d:"M5 11 5 15 2 15 2 11 0 11 0 21 2 21 2 17 5 17 5 21 7 21 7 11 5 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M28 14 28 6 26 6 26 16 32 16 32 14 28 14z"}),(0,a.jsx)("path",{d:"M24 6 22 6 20.5 10 19 6 17 6 17 16 19 16 19 9 20.5 13 22 9 22 16 24 16 24 6z"}),(0,a.jsx)("path",{d:"M9 8 11 8 11 16 13 16 13 8 15 8 15 6 9 6 9 8z"}),(0,a.jsx)("path",{d:"M5 6 5 10 2 10 2 6 0 6 0 16 2 16 2 12 5 12 5 16 7 16 7 6 5 6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,11H25V21h2V18h3a2.0027,2.0027,0,0,0,2-2V13A2.0023,2.0023,0,0,0,30,11Zm-3,5V13h3l.001,3Z"}),(0,a.jsx)("path",{d:"M10 13 12 13 12 21 14 21 14 13 16 13 16 11 10 11 10 13z"}),(0,a.jsx)("path",{d:"M23 11 17 11 17 13 19 13 19 21 21 21 21 13 23 13 23 11z"}),(0,a.jsx)("path",{d:"M6 11 6 15 3 15 3 11 1 11 1 21 3 21 3 17 6 17 6 21 8 21 8 11 6 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.4761,13.9932,16.8472,3.4365a1.04,1.04,0,0,0-1.6944,0L8.4941,14.0444A9.9861,9.9861,0,0,0,7,19a9,9,0,0,0,18,0A10.0632,10.0632,0,0,0,23.4761,13.9932ZM16,26.0005a7.0089,7.0089,0,0,1-7-7,7.978,7.978,0,0,1,1.2183-3.9438l.935-1.4888L21.2271,23.6411A6.9772,6.9772,0,0,1,16,26.0005Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,12a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L25.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L29.3154,6.11A3.9693,3.9693,0,0,1,30,8.223,3.8978,3.8978,0,0,1,26,12Zm0-7.2368L24.3438,7.2257A1.89,1.89,0,0,0,24,8.223a2.0139,2.0139,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z"}),(0,a.jsx)("path",{d:"M23.5,30H8.5A6.4962,6.4962,0,0,1,7.2,17.1381a8.9938,8.9938,0,0,1,17.6006,0A6.4964,6.4964,0,0,1,23.5,30ZM16,12a7,7,0,0,0-6.9414,6.1452l-.0991.8122-.8155.064A4.4962,4.4962,0,0,0,8.5,28h15a4.4962,4.4962,0,0,0,.3564-8.9786l-.8154-.064-.0986-.8122A7.0022,7.0022,0,0,0,16,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.6521,4.1821l-2.177,2.5142L19.0713,8.3174,20.7864,9.605A7.9361,7.9361,0,0,1,23.9963,16l.0008.0576.0017.0415c.018.4317.2412,10.1113-14.6538,11.7222l2.18-2.5176,1.4039-1.6211L11.2139,22.395A7.9361,7.9361,0,0,1,8.0037,16l-.0008-.0576-.0017-.0415C7.9832,15.47,7.7605,5.8071,22.6521,4.1821M24.9978,2c-.0164,0-.0327,0-.0493.001C5.2532,2.9146,6.0037,16,6.0037,16a9.975,9.975,0,0,0,4.0095,7.9946L6.2368,28.3555A1.0044,1.0044,0,0,0,7.0022,30c.0164,0,.0327,0,.0493-.001C26.7468,29.0854,25.9963,16,25.9963,16a9.9756,9.9756,0,0,0-4.0092-7.9946l3.7761-4.3609A1.0044,1.0044,0,0,0,24.9978,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,24.1836V20H15v4.1836a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M26,12a3.9962,3.9962,0,0,0-3.8579,3H9.8579a4,4,0,1,0,0,2H22.1421A3.9934,3.9934,0,1,0,26,12ZM6,18a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,6,18Zm20,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,26,18Z"}),(0,a.jsx)("path",{d:"M19,5a3,3,0,1,0-4,2.8164V12h2V7.8164A2.9917,2.9917,0,0,0,19,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,22a3.9583,3.9583,0,0,0-2.02.5659L17.4141,16,23.981,9.4331A3.9521,3.9521,0,0,0,26,10a4,4,0,1,0-4-4,3.951,3.951,0,0,0,.5669,2.019L16,14.5859,9.4343,8.02A3.9577,3.9577,0,0,0,10,6a4,4,0,1,0-4,4,3.9583,3.9583,0,0,0,2.02-.5659L14.5859,16,8.019,22.5669A3.9521,3.9521,0,0,0,6,22a4,4,0,1,0,4,4,3.951,3.951,0,0,0-.5669-2.019L16,17.4141,22.5657,23.98A3.9577,3.9577,0,0,0,22,26a4,4,0,1,0,4-4ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28,26c-.7384,0-1.3762.4047-1.7226,1h-5.2774l7.7998-10.4004c.2275-.3027.2642-.708.0947-1.0469s-.5156-.5527-.8945-.5527h-10.1843c-.4141-1.1615-1.5138-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.3019,0,2.4016-.8385,2.8157-2h8.1843l-7.7998,10.4004c-.2275.3027-.2642.708-.0947,1.0469s.5156.5527.8945.5527h7.2774c.3464.5953.9842,1,1.7226,1,1.1046,0,2-.8954,2-2s-.8954-2-2-2Zm-13-9c-.5513,0-1-.4482-1-1s.4487-1,1-1,1,.4482,1,1-.4487,1-1,1Z"}),(0,a.jsx)("path",{d:"m16,21h-2v4.5859L4.4139,16,14,6.4142v4.5858h2v-6h10v8h2V5c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2v22c0,1.1046.8954,2,2,2h12v-8ZM4,5h8.5858L4,13.5858V5Zm0,22v-8.5858l8.5858,8.5858H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5.5 23 2 30 9 30 5.5 23z"}),(0,a.jsx)("path",{d:"m26,15v2c1.1025,0,2,.8975,2,2v5c0,1.1025-.8975,2-2,2H10v2h16c2.2061,0,4-1.7939,4-4v-5c0-2.2056-1.7939-4-4-4Z"}),(0,a.jsx)("path",{d:"m14,24c-.4463,0-.8389-.2959-.9614-.7251l-1.793-6.2749h-3.2456v-2h4c.4463,0,.8389.2959.9614.7251l1.0386,3.6348,3.0386-10.6348c.1226-.4292.5151-.7251.9614-.7251s.8389.2959.9614.7251l1.793,6.2749h3.2456v2h-4c-.4463,0-.8389-.2959-.9614-.7251l-1.0386-3.6348-3.0386,10.6348c-.1226.4292-.5151.7251-.9614.7251Z"}),(0,a.jsx)("path",{d:"m4,13v-5c0-1.103.897-2,2-2h16v-2H6c-2.2056,0-4,1.7944-4,4v5c0,2.2056,1.7944,4,4,4v-2c-1.103,0-2-.897-2-2Z"}),(0,a.jsx)("circle",{cx:"27",cy:"5",r:"3"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,12c-1.1393,0-2.1624.484-2.8915,1.2505l-3.1586-1.7552c.0272-.162.05-.3257.05-.4954,0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.0923.5928,2.0405,1.4676,2.5651l-.8963,4.4782c-1.4501.2102-2.5713,1.4492-2.5713,2.9567,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-.0867-.0183-.1684-.0256-.2533l4.9317-2.2424c.7339.9048,1.8404,1.4957,3.0939,1.4957,2.2061,0,4-1.7939,4-4s-1.7939-4-4-4ZM12.9989,10.0002c.552,0,1.0004.4482,1.0004,1s-.4484,1-1.0004,1-1.0004-.4482-1.0004-1,.4484-1,1.0004-1ZM10.9982,22.0001c-.552,0-1.0004-.4482-1.0004-1s.4484-1,1.0004-1c.4135,0,.7687.2517.9209.6099l.0009.002c.0504.1194.0785.2505.0785.3881,0,.5518-.4484,1-1.0004,1ZM13.1545,18.9224c-.1838-.1906-.395-.3505-.6233-.4874l.8966-4.4782c.5893-.0854,1.1195-.3394,1.5463-.7159l3.1684,1.7599c-.0835.3213-.1418.6522-.1418.9993,0,.2355.0303.4633.0695.6877l-4.9158,2.2345ZM22.0022,18.0002c-1.1029,0-2.0007-.8975-2.0007-2s.8978-2,2.0007-2,2.0007.8975,2.0007,2-.8978,2-2.0007,2ZM27.0908,11.4079c.6175,1.4903.9125,3.0496.9092,4.5921-.0033,1.5629-.3128,3.1085-.9009,4.5475l1.7934.8965c.7238-1.7181,1.1039-3.5704,1.1075-5.444.0035-1.7996-.3405-3.6188-1.061-5.3572-2.2286-5.3799-7.4473-8.6357-12.939-8.6428-1.7888-.0023-3.6066.3401-5.3595,1.0661l.7655,1.8474c1.5025-.6221,3.0607-.9156,4.594-.9135,4.7072.0063,9.1801,2.7969,11.0908,7.4079ZM20.594,27.0868c-1.5026.6222-3.0607.9152-4.594.9132-4.7075-.0062-9.1802-2.797-11.0908-7.4076-.6175-1.4904-.9125-3.0498-.9092-4.5924.0033-1.5627.3128-3.1082.9009-4.5472l-1.7934-.8965c-.7237,1.718-1.1039,3.5702-1.1075,5.4437-.0035,1.7997.3404,3.619,1.061,5.3576,1.4775,3.5657,4.2683,6.1985,7.582,7.5705,1.6852.6977,3.5055,1.0695,5.357,1.0719,1.7887.0024,3.6064-.3399,5.3594-1.0658l-.7654-1.8474ZM25,23c-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2-.88-2-2-2ZM7,5c-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2-.88-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,19c-.2045,0-.404.0212-.597.0604l-2.5553-4.2578c.711-.7224,1.1523-1.7111,1.1523-2.8026,0-2.2061-1.7939-4-4-4s-4,1.7939-4,4c0,1.0931.4424,2.0834,1.1552,2.806l-3.111,5.1983c-.0151-.0003-.0291-.0043-.0443-.0043-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2c0-.3502-.0941-.6718-.2466-.9555l3.1263-5.2239c.3578.1053.7288.1794,1.1203.1794.3933,0,.7659-.0747,1.1251-.1809l2.5706,4.2833c-.428.5187-.6957,1.1741-.6957,1.8976,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3ZM14,12c0-1.1025.8975-2,2-2s2,.8975,2,2-.8975,2-2,2-2-.8975-2-2ZM22,23c-.5518,0-1-.4482-1-1s.4482-1,1-1,1,.4482,1,1-.4482,1-1,1ZM30,16.9995v-.0005h0c-.0005-7.7192-6.2805-13.999-14-13.999S2,9.2803,2,17c0,4.1558,2.0088,7.644,3.3611,8.8938,1.0293.9512,2.5835,2.1062,4.6389,2.1062,3.3086,0,6-2.6917,6-6,0-.834-.168-1.6416-.5-2.4006l-1.832.8008c.2197.5049.332,1.0432.332,1.5999,0,2.2056-1.7939,4-4,4s-4-1.7944-4-4,1.7939-4,4-4v-2c-2.5745,0-4.7689,1.6328-5.6187,3.9148-.2546-.9341-.3813-1.9031-.3813-2.9148,0-6.6167,5.3828-12,12-12s12,5.3833,12,12h.001c0,1.0518-.1367,2.0977-.4053,3.1084l1.9316.5156c.3145-1.1804.4734-2.3997.4727-3.624h0v-.0005Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,6h-2v10h2V6ZM28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362l-4,2.3333c-.3071.1792-.4961.5081-.4961.8638v8.6667h2V4.9076l3-1.7499,11,6.4166v3.4257h2v-4c0-.3557-.189-.6846-.4961-.8638ZM4.9987,22.4315v-13.4315h-1.9987v14.006c0,.3559.1889.6849.4958.8642l10.4971,6.1298,1.0072-1.7282h-.0001s-10.0013-5.8403-10.0013-5.8403ZM22,26.9999h2v-9.9999h-2v9.9999ZM27,27h2v-6h-2v6ZM17,27h2v-8h-2v8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,11c-.75,0-1.39.4-1.73,1h-10.27c-2.21,0-4,1.79-4,4,0,.73.21,1.41.56,2h-6.83c-.34-.6-.98-1-1.73-1-1.12,0-2,.88-2,2s.88,2,2,2c.75,0,1.39-.4,1.73-1h10.27c2.21,0,4-1.79,4-4,0-.73-.21-1.41-.56-2h6.83c.34.6.98,1,1.73,1,1.12,0,2-.88,2-2s-.88-2-2-2ZM18,16c0,1.1-.9,2-2,2s-2-.9-2-2,.9-2,2-2,2,.9,2,2ZM5.05,15h-2c0-7.29,5.08-12,12.95-12h10v2h-10c-6.75,0-10.95,3.83-10.95,10ZM16.05,29H6.05v-2h10c6.14,0,10.95-4.39,10.95-10h2c0,6.73-5.69,12-12.95,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,26V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141-3.5859-3.586v10.1719h12v2H7c-1.104-.0013-1.9987-.896-2-2Z"}),(0,a.jsx)("path",{d:"M31,18h-3v-2h-2v2h-1c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h4v2h-6s0,2,0,2h3v2h2v-2h1c1.1046,0,2-.8954,2-2v-2c0-1.1046-.8954-2-2-2h-4v-2h6v-2Z"}),(0,a.jsx)("path",{d:"M28,12V6c-.0012-1.104-.896-1.9988-2-2H12v2h14v6"}),(0,a.jsx)("path",{d:"M2 6H7V8H2z"}),(0,a.jsx)("path",{d:"M2 2H10V4H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16,26h5c3.86,0,7-3.14,7-7v-2h-2v2c0,2.76-2.24,5-5,5h-5v2Z"}),(0,a.jsx)("path",{d:"m20.25,14c-2.34,0-4.25-1.91-4.25-4.25,0-1.79,1.14-3.38,2.78-3.99.74-2.21,2.84-3.76,5.22-3.76s4.48,1.55,5.22,3.76c1.65.61,2.78,2.19,2.78,3.99,0,2.29-1.86,4.19-4.14,4.25h-7.61Zm3.75-10c-1.64,0-3.08,1.17-3.42,2.77l-.14.64-.64.13c-1.04.21-1.8,1.14-1.8,2.2,0,1.24,1.01,2.26,2.25,2.26h7.58c1.18-.03,2.17-1.05,2.17-2.26,0-1.06-.76-1.99-1.8-2.2l-.64-.13-.14-.64c-.34-1.6-1.78-2.77-3.42-2.77Z"}),(0,a.jsx)("path",{d:"m4,14h2v-2c0-2.76,2.24-5,5-5h4v-2h-4c-3.86,0-7,3.14-7,7v2Z"}),(0,a.jsx)("path",{d:"m10,17h-6c-1.1,0-2,.9-2,2v10c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-10c0-1.1-.9-2-2-2Zm0,2v2h-6v-2h6Zm0,4v2h-6v-2h6Zm-6,6v-2h6v2H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,32l-2.1387-1.0117c-1.7383-.8232-2.8613-2.5977-2.8613-4.5205v-6.4678h10v6.4678c0,1.9238-1.123,3.6973-2.8613,4.5195l-2.1387,1.0127Zm-1.2832-2.8203l1.2832,.6074,1.2832-.6074c1.043-.4932,1.7168-1.5576,1.7168-2.7119v-4.4678h-6v4.4678c0,1.1543,.6738,2.2188,1.7168,2.7119h0Z"}),(0,a.jsx)("path",{d:"M17,10.5859c-.3752-.375-.8838-.5859-1.4143-.5859h-5.5857c-1.1045,0-2,.8955-2,2v14c0,1.1045,.8955,2,2,2h9v-2H10V12h4v4c0,1.1045,.8955,2,2,2h4.2917c.6929,0,1.312-.4136,1.5771-1.0537,.2656-.6406,.1201-1.3711-.3701-1.8613l-4.4988-4.499Zm-1,5.4141v-3.5859l3.5852,3.5859h-3.5852Z"}),(0,a.jsx)("path",{d:"M28,6H16l-3.4141-3.4141c-.3752-.375-.8838-.5859-1.4143-.5859H4c-1.1045,0-2,.8955-2,2V24c0,1.1045,.8955,2,2,2h2v-2H4V4h7.1716l4,4h12.8284v10h2V8c0-1.1045-.8955-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,21c-2.7568,0-5-2.2432-5-5s2.2432-5,5-5,5,2.2432,5,5-2.2432,5-5,5ZM16,13c-1.6543,0-3,1.3457-3,3s1.3457,3,3,3,3-1.3457,3-3-1.3457-3-3-3ZM27,25c0-1.1046-.8954-2-2-2s-2,.8954-2,2,.8954,2,2,2,2-.8954,2-2ZM5,7c0,1.1046.8954,2,2,2s2-.8954,2-2-.8954-2-2-2-2,.8954-2,2ZM30,16c0-7.7197-6.2803-14-14-14-1.8638,0-3.6758.3623-5.3857,1.0771l.7715,1.8457c1.4644-.6123,3.0166-.9229,4.6143-.9229,6.2803,0,11.4492,4.8496,11.959,11h-4.959v2h7v-1ZM21.3857,28.9229l-.7715-1.8457c-1.4639.6123-3.0166.9229-4.6143.9229-6.2798,0-11.4487-4.8496-11.9585-11h4.9585v-2H2v1c0,7.7197,6.2803,14,14,14,1.8643,0,3.6768-.3623,5.3857-1.0771Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m24,21v2h1.7483c-2.2363,3.1196-5.8357,5-9.7483,5-6.6169,0-12-5.3833-12-12h-2c0,7.7197,6.2803,14,14,14,4.355,0,8.3743-2.001,11-5.3452v1.3452h2v-5h-5Z"}),(0,a.jsx)("path",{d:"m22.5046,11.6367l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z"}),(0,a.jsx)("path",{d:"m16,2c-4.355,0-8.3743,2.001-11,5.3452v-1.3452h-2v5h5v-2h-1.7483c2.2363-3.1196,5.8357-5,9.7483-5,6.6169,0,12,5.3833,12,12h2c0-7.7197-6.2803-14-14-14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,20v2h5.22a11.0163,11.0163,0,0,1-11.97,4.6533l-.4986,1.937A13,13,0,0,0,26,24.293V28h2V20Z"}),(0,a.jsx)("path",{d:"M25,3a4.0045,4.0045,0,0,0-4,4,3.954,3.954,0,0,0,.5669,2.019L9.019,21.5669A3.9521,3.9521,0,0,0,7,21a4,4,0,1,0,4,4,3.954,3.954,0,0,0-.5669-2.019L22.981,10.4331A3.9518,3.9518,0,0,0,25,11a4,4,0,0,0,0-8ZM7,27a2,2,0,1,1,2-2A2.002,2.002,0,0,1,7,27ZM25,9a2,2,0,1,1,2-2A2.002,2.002,0,0,1,25,9Z"}),(0,a.jsx)("path",{d:"M16,3A13.04,13.04,0,0,0,6,7.707V4H4v8h8V10H6.78a11.0163,11.0163,0,0,1,11.97-4.6533l.4986-1.937A13.0358,13.0358,0,0,0,16,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.69,16.37c.84.83,1.31,1.97,1.31,3.15,0,1.19-.47,2.33-1.32,3.17-.88.87-2.03,1.31-3.18,1.31s-2.31-.44-3.19-1.31c-.59-.59-7.76-7.72-10.76-10.7l-1.27-1.27c-.59-.61-1.46-.84-2.28-.66-.47.11-.91.31-1.26.66-.47.47-.73,1.1-.73,1.76s.26,1.29.73,1.76c.52.51,6.74,6.7,6.74,6.7l-1.42,1.41-6.74-6.7c-.85-.85-1.32-1.97-1.32-3.17s.47-2.32,1.32-3.17c.85-.85,1.98-1.31,3.18-1.31s2.33.47,3.18,1.31l1.27,1.27,10.76,10.7c.98.97,2.56.97,3.54,0,.47-.47.73-1.1.73-1.76s-.26-1.29-.73-1.76l-6.73-6.69,1.42-1.41,6.74,6.7h0l.01.01ZM16,2c2.21,0,4,1.79,4,4s-1.79,4-4,4h0c-2.21,0-4-1.79-4-4s1.79-4,4-4h0ZM16.02,8c1.09,0,1.98-.9,1.98-2s-.89-2-1.98-2h-.09c-1.1.03-1.96.95-1.93,2.04h0c.02,1.1.92,1.97,2.02,1.95h0v.01ZM20,26c0,2.21-1.79,4-4,4s-4-1.79-4-4,1.79-4,4-4,4,1.79,4,4ZM16.02,28c1.09,0,1.98-.9,1.98-2s-.89-2-1.98-2h-.09c-1.1.03-1.96.95-1.93,2.04h0c.02,1.1.92,1.97,2.02,1.95h0v.01Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,22.1V13h-2v9.1c-1.4,0.4-2.5,1.5-2.9,2.9H13v2h9.1c0.4,1.7,2,3,3.9,3c2.2,0,4-1.8,4-4C30,24.1,28.7,22.6,27,22.1z M26,28c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S27.1,28,26,28z"}),(0,a.jsx)("path",{d:"M10,30H2v-8h8V30z M4,28h4v-4H4V28z"}),(0,a.jsx)("path",{d:"M9.9,7H19V5H9.9C9.4,3.3,7.9,2,6,2C3.8,2,2,3.8,2,6c0,1.9,1.3,3.4,3,3.9V19h2V9.9C8.4,9.5,9.5,8.4,9.9,7z M6,8 C4.9,8,4,7.1,4,6s0.9-2,2-2s2,0.9,2,2S7.1,8,6,8z"}),(0,a.jsx)("path",{d:"M22 2 22 4 26.6 4 11 19.6 12.4 21 28 5.4 28 10 30 10 30 2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16,13c-3.4207,0-6,1.5049-6,3.5v8c0,1.9951,2.5793,3.5,6,3.5s6-1.5049,6-3.5v-8c0-1.9951-2.5793-3.5-6-3.5Zm0,2c2.4814,0,4,.9712,4,1.5s-1.5186,1.5-4,1.5-4-.9712-4-1.5,1.5186-1.5,4-1.5Zm0,11c-2.4814,0-4-.9712-4-1.5v-1.3525c1.0469.5342,2.4331.8525,4,.8525s2.9531-.3184,4-.8525v1.3525c0,.5288-1.5186,1.5-4,1.5Zm0-4c-2.4814,0-4-.9712-4-1.5v-1.3525c1.0469.5342,2.4331.8525,4,.8525s2.9531-.3184,4-.8525v1.3525c0,.5288-1.5186,1.5-4,1.5Z"}),(0,a.jsx)("path",{d:"m30,15.5c0,3.08-2.14,5.65-5.0099,6.3199v-2.0699c1.75-.62,3.0099-2.28,3.0099-4.25,0-2.33-1.83-4.29-4.15-4.4801l-.81-.0599-.1-.8099c-.43-3.5-3.42-6.15-6.94-6.15-3.53,0-6.52,2.65-6.95,6.15l-.1.8099-.81.0599c-2.32.1901-4.14,2.1501-4.14,4.4801,0,1.96,1.25,3.62,2.9901,4.24v2.08c-2.86-.6799-4.9901-3.25-4.9901-6.3199,0-3.1,2.22-5.75,5.2-6.36.86-4.1201,4.52-7.14,8.8-7.14,4.27,0,7.9301,3.0199,8.8,7.14,2.97.61,5.2,3.26,5.2,6.36Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31.3579,22h-8.397v-2.3287l3.6545-3.1277c1.3259-1.1389,1.7849-1.8019,1.7849-2.8047v-.238c0-.9009-.7991-1.3599-1.564-1.3599-1.1218,0-1.6658,.7649-1.9038,1.6658l-2.2268-.8499c.5271-1.6488,1.9038-3.0256,4.3687-3.0256,2.5667,0,4.0457,1.5128,4.0457,3.5696,0,2.0398-1.4619,3.2806-3.1619,4.6235l-2.2097,1.7339h5.6094v2.1417Z"}),(0,a.jsx)("path",{d:"M12.8291,9.4212h2.5159v5.1505h.085c.2549-.986,1.2407-1.6998,2.3967-1.6998,2.2607,0,3.4336,1.6318,3.4336,4.6575s-1.1729,4.6746-3.4336,4.6746c-1.156,0-2.1418-.731-2.3967-1.6998h-.085v1.4958h-2.5159V9.4212Zm5.8135,8.8901v-1.5469c0-1.1218-.697-1.8528-1.6489-1.8528s-1.6487,.4929-1.6487,1.3088v2.6348c0,.8159,.6968,1.3088,1.6487,1.3088s1.6489-.731,1.6489-1.8528Z"}),(0,a.jsx)("path",{d:"M1.1163,10.1351H5.5867c3.1448,0,5.2185,1.9889,5.2185,5.9325s-2.0737,5.9324-5.2185,5.9324H1.1163V10.1351Zm4.4704,9.5687c1.53,0,2.4819-.8329,2.4819-2.7197v-1.8358c0-1.8868-.9519-2.7197-2.4819-2.7197h-1.8867v7.2753h1.8867Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m22.5039,17.6362l-6-3.5c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362l-6,3.5c-.3071.1792-.4961.5083-.4961.8638v7c0,.3555.189.6846.4961.8638l6,3.5c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l6-3.5c.3071-.1792.4961-.5083.4961-.8638v-7c0-.3555-.189-.6846-.4961-.8638Zm-1.5039,6.1978l-2.5317-1.519c.0132-.1045.0317-.207.0317-.3149,0-1.0225-.6187-1.9014-1.5-2.2881v-2.9707l4,2.333v4.7598Zm-6-7.0928v2.9707c-.8813.3867-1.5,1.2656-1.5,2.2881,0,.1079.0186.2104.0317.3149l-2.5317,1.519v-4.7598l4-2.333Zm1,11.1011l-3.9517-2.3052,2.5071-1.5039c.4087.291.9055.4668,1.4446.4668s1.0359-.1758,1.4446-.4668l2.5071,1.5039-3.9517,2.3052Z"}),(0,a.jsx)("path",{d:"m24.8,9.14c-.87-4.12-4.52-7.14-8.8-7.14s-7.93,3.02-8.8,7.14c-2.97.6-5.2,3.26-5.2,6.36,0,3.07,2.14,5.63,5,6.31v-2.11c-1.74-.62-3-2.24-3-4.2,0-2.33,1.82-4.31,4.14-4.49l.82-.06.1-.81c.43-3.5,3.41-6.14,6.94-6.14s6.51,2.64,6.94,6.14l.1.81.82.06c2.32.19,4.14,2.16,4.14,4.49,0,1.95-1.26,3.59-3,4.21v2.11c2.86-.68,5-3.26,5-6.32,0-3.11-2.23-5.76-5.2-6.36Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,18c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM24,4c0-1.1-.9-2-2-2s-2,.9-2,2,.9,2,2,2,2-.9,2-2ZM24,28c0-1.1-.9-2-2-2s-2,.9-2,2,.9,2,2,2,2-.9,2-2ZM25,15h-4.11c1.3-1.27,2.11-3.04,2.11-5v-2h-2v2c0,2.76-2.24,5-5,5h-7v2h7c2.76,0,5,2.24,5,5v2h2v-2c0-1.96-.81-3.73-2.11-5h4.11v-2ZM11.63,20.29l-.04.02-1.31.77-1.28.76-5-2.96v-5.76l5-2.96,1.28.76,1.31.77.04.02,1.71,1.02,1.02-1.72-1.71-1.02-.04-.02-1.33-.78-1.77-1.05c-.16-.09-.33-.14-.51-.14s-.35.05-.51.14l-6,3.55c-.3.18-.49.51-.49.86v6.9c0,.35.19.68.49.86l6,3.55c.16.09.33.14.51.14s.35-.05.51-.14l1.77-1.05,1.33-.78.04-.02,1.71-1.02-1.02-1.72-1.71,1.02Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2.9668,20.038h12.0059v2H2.9668v-2ZM2.9668,25.038h12.0059v2H2.9668v-2ZM19,5.038h9.9668v2h-9.9668v-2ZM17,10.0345h11.9668v2h-11.9668v-2ZM26.5049,18.0883l-3.5357,3.5356-3.5356-3.5356-1.4141,1.414,3.5357,3.5357-3.5357,3.5356,1.4141,1.4141,3.5356-3.5357,3.5357,3.5357,1.414-1.4141-3.5356-3.5356,3.5356-3.5357-1.414-1.414ZM7.9667,9.213l-2.5899-2.5899-1.4099,1.41,4,4.0001,7.9998-8-1.4099-1.41-6.5901,6.5898Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"29",cy:"5",r:"2"}),(0,a.jsx)("circle",{cx:"29",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m7,13H1v6h6v-6Zm-2,4h-2v-2h2v2Z"}),(0,a.jsx)("path",{d:"m17.4999,6.6774c-1.316-1.67-3.3437-2.6774-5.4999-2.6774-2.4907,0-4.8135,1.3403-6.063,3.499l-1.1655,2.0186,1.7324,1,1.165-2.0176c.8921-1.542,2.5518-2.5,4.3311-2.5s3.439.958,4.3311,2.4995c.0048.0082.011.0154.0158.0236l-1.9328,3.348c-1.1128,1.9282-3.188,3.1274-5.415,3.1289l.001,1-.001,1c2.2271.002,4.3022,1.2002,5.415,3.1289l1.9326,3.347c-.0049.0084-.0112.0156-.0161.024-.8916,1.542-2.5513,2.5-4.3306,2.5s-3.439-.958-4.3306-2.499l-1.165-2.0186-1.7324,1,1.1655,2.0195c1.249,2.1572,3.5718,3.498,6.0625,3.498,2.1555,0,4.1829-1.0075,5.5004-2.6772,1.3154,1.6699,3.3427,2.6772,5.4996,2.6772h2v-2h-2c-1.7387,0-3.3566-.918-4.2612-2.3972.9349-1.003,2.254-1.6018,3.6547-1.6018h2.6064v-2h-2.6064c-1.7564,0-3.4199.6761-4.6906,1.824l-1.5565-2.6961c-.7776-1.3467-1.9164-2.4129-3.2465-3.1289,1.3301-.716,2.4688-1.7822,3.2465-3.1289l1.5565-2.6962c1.2706,1.1483,2.9341,1.8246,4.6906,1.8246h2.6064v-2h-2.6064c-1.4005,0-2.7194-.5986-3.6552-1.6017.9044-1.4795,2.5226-2.3978,4.2616-2.3978h2v-2h-2c-2.157,0-4.1844,1.0074-5.5001,2.6774Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29.9467,13.9356h-2c-.7368,0-1.3748.4051-1.7218,1H6.0151l2.625-7h7.3073v-2h-7.3073c-.8291,0-1.5811.521-1.873,1.2974l-2.5137,6.7026-2.3066-.0005v2l2,.0002v9.0002c0,1.103.8975,2,2,2v3h2v-3h16v3h2v-3c1.1025,0,2-.897,2-2v-9h2v-2ZM5.9467,24.9356v-3h3v-2h-3v-3h20v3h-3v2h3v3H5.9467Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M11.979 19.941H19.979V21.941H11.979z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29.5367 2.5256 22.9467 9.1154 20.3567 6.5255 18.9467 7.9356 22.9467 11.9356 30.9467 3.9356 29.5367 2.5256z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m20,16c-.0925,0-.1792.021-.27.0273l-.8916-2.6743c.7017-.5493,1.1616-1.3945,1.1616-2.353,0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,.3804.0784.7412.208,1.0762l-2.7224,2.333c-.4399-.2529-.9426-.4092-1.4856-.4092-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c.9915,0,1.865-.4893,2.4116-1.2324l3.6038,1.0811c-.002.0513-.0154.0996-.0154.1514,0,2.2056,1.7944,4,4,4s4-1.7944,4-4-1.7944-4-4-4Zm-3-6c.5513,0,1,.4487,1,1s-.4487,1-1,1-1-.4487-1-1,.4487-1,1-1Zm-7,8c-.5513,0-1-.4487-1-1s.4487-1,1-1,1,.4487,1,1-.4487,1-1,1Zm2.9849-1.1484c-.0161-.3257-.0806-.6372-.1929-.9277l2.7224-2.333c.4243.2441.908.3936,1.4294.4033l.885,2.6553c-.5046.3281-.9229.7695-1.2363,1.2842l-3.6077-1.082Zm7.0151,5.1484c-1.103,0-2-.8975-2-2s.897-2,2-2,2,.8975,2,2-.897,2-2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27.4961,9.8638l-11.4961-6.7061-8.4961,4.9561-1.0078-1.7275L15.4961,1.1362c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l12,7-1.0078,1.7275Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16.5039,30.8638l-1.0078-1.7275,11.5039-6.7106v-10.4257h2v11c0,.3557-.189.6846-.4961.8638l-12,7Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12.4961,29.1138l-9-5.25c-.3071-.1792-.4961-.5081-.4961-.8638v-14h2v13.4257l8.5039,4.9606-1.0078,1.7275Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m13.76,10.463l-3.297,3.297c-.6173.6173-.6173,1.6227,0,2.24l12.0044,12h5.5326v-5.5326l-12-12.0044c-.6173-.6173-1.6226-.6173-2.2399,0h0Zm12.24,12.8328v2.7042h-2.7042l-7.4409-7.4409,2.7042-2.7042,7.4409,7.4409Zm-8.855-8.8549l-2.7041,2.7041-2.2672-2.2672,2.7042-2.7042,2.2671,2.2673Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,2v8h-8v-2h4.92c-2.25-2.53-5.46-4-8.92-4-6.61,0-12,5.38-12,12,0,6.61,5.39,12,12,12h1v2h-1c-7.72,0-14-6.28-14-14S8.28,2,16,2c3.83,0,7.4,1.5499,10,4.23V2h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M18 26 26.1719 26 23.5859 28.5859 25 30 30 25 25 20 23.5859 21.4141 26.1719 24 18 24 18 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10 21H15V23H10z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10 16H20V18H10z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m24.7,9.3l-7-7c-.2-.2-.4-.3-.7-.3H7c-1.1,0-2,.8999-2,2v24c0,1.103.8975,2,2,2h8v-2h-8V4h8v6c0,1.1001.9,2,2,2h6v6h2v-8c0-.3-.1-.5-.3-.7Zm-7.7.7v-5.6001l5.6,5.6001h-5.6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31,22v-2h-2.1006c-.1299-.6372-.3845-1.2285-.7322-1.7529l1.4895-1.4897-1.4141-1.4141-1.4897,1.4897c-.5244-.3477-1.1157-.6021-1.7529-.7319v-2.1011h-2v2.1011c-.6372.1299-1.2285.3843-1.7529.7319l-1.4897-1.4897-1.4141,1.4141,1.4893,1.4897c-.3477.5244-.6021,1.1157-.7319,1.7529h-2.1006v2h2.1006c.1299.6372.3843,1.2285.7319,1.7532l-1.4893,1.4895,1.4141,1.4141,1.4897-1.4897c.5244.3477,1.1157.6021,1.7529.7319v2.1011h2v-2.1011c.6372-.1299,1.2285-.3843,1.7529-.7319l1.4897,1.4897,1.4141-1.4141-1.4895-1.4895c.3479-.5247.6023-1.116.7322-1.7532h2.1006Zm-7,2c-1.6567,0-3-1.3433-3-3s1.3433-3,3-3c1.6567,0,3,1.3433,3,3s-1.3433,3-3,3Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,6c0-2.7568-2.2432-5-5-5-1.7798,0-3.439.9575-4.3306,2.4995-.3201.5535-.5259,1.146-.6289,1.7944-1.1428-.8115-2.5352-1.2939-4.0405-1.2939C3.1401,4,0,7.1401,0,11c0,2.6981,1.5368,5.0403,3.7787,6.2083-1.0787.918-1.7787,2.2679-1.7787,3.7917,0,2.7568,2.2432,5,5,5,.7344,0,1.4265-.1685,2.0552-.4539.2764,2.4973,2.375,4.4539,4.9448,4.4539,1.335,0,2.5908-.52,3.5356-1.4639l-1.4141-1.415c-.5669.5669-1.3203.8789-2.1216.8789-1.6543,0-3-1.3457-3-3s1.3457-3,3-3v-2c-.7344,0-1.4265.1685-2.0552.4539-.1435-1.2966-.7849-2.4395-1.7218-3.2463,2.241-1.1685,3.777-3.51,3.777-6.2075,0-.1472-.0139-.2911-.0229-.4363.6199.2761,1.3018.4363,2.0229.4363,2.7568,0,5-2.2432,5-5Zm-7.5991-1.4995c.5352-.9253,1.5312-1.5005,2.5991-1.5005,1.6543,0,3,1.3457,3,3s-1.3457,3-3,3-3-1.3457-3-3h-.0293c.0352-.5762.1714-1.0522.4302-1.4995Zm-3.4009,16.4995c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Zm-3-5c-2.7568,0-5-2.2432-5-5s2.2432-5,5-5,5,2.2432,5,5-2.2432,5-5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,4h-3v1.9991l3-.0005v20.0015h-3v2h3c1.103,0,2-.897,2-2V6c0-1.103-.897-2-2-2Z"}),(0,a.jsx)("circle",{cx:"16",cy:"17",r:"2",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m22,4v24c0,1.103-.897,2-2,2H4c-1.103,0-2-.897-2-2V4c0-1.103.897-2,2-2h16c1.103,0,2,.897,2,2ZM4,28h16s0-24.0015,0-24.0015l-16,.0015v24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m4,10h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v4c0,1.1046.8954,2,2,2Zm0-6h4v4h-4v-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,22h-4c-1.1046,0-2,.8954-2,2v4c0,1.1046.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2Zm0,6h-4v-4h4v4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21.414,12.586l-1.414,1.414,6,6,6-6-1.414-1.414-3.586,3.586V7c0-1.1046-.8954-2-2-2h-13v2h13v9.172l-3.586-3.586Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m7,15.828l3.586,3.586,1.414-1.414-6-6L0,18l1.414,1.414,3.586-3.586v9.172c0,1.1046.8954,2,2,2h13v-2H7v-9.172Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27,30h-8c-2.2061,0-4-1.7939-4-4,0-1.8887,1.3164-3.4766,3.0801-3.8936.4219-2.332,2.4678-4.1064,4.9199-4.1064s4.498,1.7744,4.9199,4.1064c1.7637.417,3.0801,2.0049,3.0801,3.8936,0,2.2061-1.7939,4-4,4Zm-8-2h8c1.1025,0,2-.8975,2-2s-.8975-2-2-2h-1v-1c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3v1h-1c-1.1025,0-2,.8975-2,2s.8975,2,2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12,27h-2c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h2v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,15v-4c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v4h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m13,27h-3c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h3v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m25,27h-4c-1.1025,0-2-.8975-2-2v-4c0-1.1025.8975-2,2-2h4c1.1025,0,2,.8975,2,2v4c0,1.1025-.8975,2-2,2Zm-4-6h-.002l.002,4h4v-4h-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M25 15H27V17H25z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29 19H31V21H29z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29 23H31V25H29z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 21H17V23H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 25H17V27H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 29H17V31H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M19 29H21V31H19z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,13v-2c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v2h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M19 24H21V26H19z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m17,21h12c1.1046,0,2,.8954,2,2v4c0,1.1046-.8954,2-2,2h-12c-1.1046,0-2-.8954-2-2v-4c0-1.1046.8954-2,2-2Zm12,6v-4h-12v4h12Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12,27h-2c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h2v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,18v-7c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v7h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c-7.7197,0-14-6.2803-14-14h2c0,6.6167,5.3833,12,12,12s12-5.3833,12-12h2c0,7.7197-6.2803,14-14,14Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,26c-5.5139,0-10-4.4861-10-10h2c0,4.4111,3.5889,8,8,8s8-3.5889,8-8h2c0,5.5139-4.4861,10-10,10Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,20c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Zm0-6c-1.103,0-2,.897-2,2s.897,2,2,2,2-.897,2-2-.897-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-4.9719,0-9.4933,2.6113-12,6.7883v-4.7883h-2v8h8v-2h-4.3881c2.126-3.6848,6.0558-6,10.3881-6,3.2051,0,6.2188,1.248,8.4854,3.5146l1.4141-1.4141c-2.644-2.6445-6.1597-4.1006-9.8994-4.1006Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31.3242,11.2612c-2.5444-2.103-5.7671-3.2612-9.0737-3.2612h-.2505v2h.2505c2.6079,0,5.1543.8374,7.2456,2.3716-1.3672,3.3955-4.1621,5.9414-7.5483,7.0366.0347-.4028.0522-.8096.0522-1.2197,0-7.8237-6.3647-14.1885-14.1885-14.1885-.9282,0-1.8555.0903-2.7563.2681l-.6572.1299-.1299.6572c-.1777.9009-.2681,1.8281-.2681,2.7563,0,4.1244,1.7795,7.8315,4.5983,10.4264-.3759,1.2767-.5992,2.6185-.5992,4.0165l.001.0009c.0011,3.3049,1.159,6.5258,3.261,9.069l.4385.5303.6523-.2202c4.6675-1.5752,8.0962-5.4111,9.2368-10.0454,4.6343-1.1406,8.4702-4.5693,10.0454-9.2368l.2202-.6523-.5303-.4385ZM12.3716,29.4961c-1.5342-2.0913-2.3716-4.6377-2.3716-7.2456h-.0006c.0003-.9115.1136-1.7958.304-2.6512,2.2567,1.5145,4.9689,2.4008,7.8851,2.4008.4102,0,.8169-.0176,1.2197-.0522-1.0952,3.3862-3.6411,6.1812-7.0366,7.5483Zm7.5112-9.6133c-.5557.0771-1.1211.1172-1.6943.1172-2.7159,0-5.2186-.9039-7.2472-2.4116.8616-2.0793,2.2642-3.881,4.0479-5.204l-1.28-1.53c-1.8557,1.3905-3.3427,3.2305-4.3404,5.3458-2.0815-2.1875-3.3687-5.1378-3.3687-8.3887,0-.5684.0391-1.1357.1167-1.6948.5591-.0776,1.1265-.1167,1.6948-.1167,6.7207,0,12.1885,5.4678,12.1885,12.1885,0,.5732-.04,1.1387-.1172,1.6943Z"}),(0,a.jsx)("circle",{cx:"20",cy:"2",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"27",cy:"26",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"2",cy:"20",r:"2",strokeWidth:"0"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"4",cy:"22",r:"2"}),(0,a.jsx)("path",{d:"m13.5,30c-3.0586,0-5.9485-1.4867-7.7305-3.9771l1.6265-1.1638c1.4075,1.9667,3.6892,3.1409,6.104,3.1409,3.969,0,7.2578-3.1002,7.4873-7.0579l1.9966.1157c-.2908,5.0143-4.4565,8.9421-9.4839,8.9421Z"}),(0,a.jsx)("circle",{cx:"28",cy:"23",r:"2"}),(0,a.jsx)("path",{d:"m30.6411,19.0948l-1.9243-.5449c.188-.6638.2832-1.3535.2832-2.0499,0-4.1355-3.3645-7.5-7.5-7.5-1.0769,0-2.1157.223-3.0876.6628l-.8247-1.822c1.2329-.558,2.5491-.8408,3.9124-.8408,5.2383,0,9.5,4.2617,9.5,9.5,0,.8807-.1208,1.7537-.3589,2.5948Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"16",cy:"3",r:"2"}),(0,a.jsx)("path",{d:"m8.0254,19.8821c-3.0999-1.6578-5.0254-4.8696-5.0254-8.3821C3,6.4729,6.9277,2.307,11.9421,2.0161l.1157,1.9966c-3.9578.2297-7.0579,3.5186-7.0579,7.4873,0,2.7732,1.5208,5.3092,3.9688,6.6184l-.9434,1.7637Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"29",cy:"29",r:"2"}),(0,a.jsx)("path",{d:"m25,30h-8c-1.1028,0-2-.8972-2-2v-4h2v4h8v2Z"}),(0,a.jsx)("path",{d:"m30,25h-2v-8h-5v-2h5c1.1028,0,2,.8972,2,2v8Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("path",{d:"m9,17H4c-1.1028,0-2-.8972-2-2V7h2v8h5v2Z"}),(0,a.jsx)("path",{d:"m17,8h-2V4H7v-2h8c1.1028,0,2,.8972,2,2v4Z"}),(0,a.jsx)("circle",{cx:"3",cy:"3",r:"2"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"29",r:"2"}),(0,a.jsx)("path",{d:"m22.5,30h-2.5v-2h2.5c3.0327,0,5.5-2.4673,5.5-5.5,0-2.5634-1.7395-4.7644-4.23-5.3528l.46-1.9465c3.3972.8026,5.77,3.8042,5.77,7.2993,0,4.1355-3.3645,7.5-7.5,7.5Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"16",cy:"3",r:"2"}),(0,a.jsx)("path",{d:"m7.77,16.7993c-3.3972-.8026-5.77-3.8042-5.77-7.2993C2,5.3645,5.3645,2,9.5,2h2.5v2h-2.5c-3.0327,0-5.5,2.4673-5.5,5.5,0,2.5634,1.7395,4.7645,4.23,5.3528l-.46,1.9465Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m20,27c-2.9795,0-5.7693-1.1719-7.8555-3.2998l1.4282-1.4001c1.7068,1.7411,3.9895,2.7,6.4272,2.7,4.9626,0,9-4.0374,9-9,0-2.3705-.9138-4.6079-2.5732-6.3004l1.4282-1.4001c2.0281,2.0686,3.145,4.8033,3.145,7.7006,0,6.0654-4.9346,11-11,11Z"}),(0,a.jsx)("circle",{cx:"24",cy:"5",r:"2"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"8",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m4.2993,23.855c-2.1277-2.0861-3.2993-4.8757-3.2993-7.855C1,9.9346,5.9346,5,12,5c2.9795,0,5.7693,1.1719,7.8555,3.2998l-1.4282,1.4001c-1.7068-1.7411-3.9895-2.7-6.4272-2.7-4.9626,0-9,4.0374-9,9,0,2.4376.9587,4.7201,2.6997,6.427l-1.4004,1.428Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M2 17 17.1719 17 13.5859 20.5859 15 22 21 16 15 10 13.5859 11.4141 17.1719 15 2 15 2 17z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v3h2v-2.4258L16,3.1577l11,6.4165v12.8516l-11,6.4165-11.7275-6.8423-1.0078,1.7275,12.2314,7.1362c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l12-7c.3071-.1792.4961-.5083.4961-.8638v-14c0-.3555-.189-.6846-.4961-.8638Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM5,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM27,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM6,24v-3h9v3h2v-3h9v3h2v-3c0-1.1-.9-2-2-2h-9v-3h-2v3H6c-1.1,0-2,.9-2,2v3h2ZM21.7,6.1c-.8-2.4-3.1-4.1-5.7-4.1s-4.9,1.7-5.7,4.1c-1.9.3-3.3,1.9-3.3,3.9s1.8,4,4,4h10c2.2,0,4-1.8,4-4s-1.4-3.6-3.3-3.9ZM21,12h-10c-1.1,0-2-.9-2-2s.9-2,2-2h1c0-2.2,1.8-4,4-4s4,1.8,4,4h1c1.1,0,2,.9,2,2s-.9,2-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3482.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v14c0,.3555.189.6846.4961.8643l12,7c.1558.0908.3296.1357.5039.1357s.3481-.0449.5039-.1357l12-7c.3076-.1797.4961-.5088.4961-.8643v-14c0-.3555-.1885-.6846-.4961-.8638ZM16,3.1577l10.0155,5.8422-2.3773,1.3867-5.6382-3.2529c-.3105-.1787-.6895-.1787-1,0l-6.4995,3.75c-.1992.115-.3417.2961-.4235.5034l-4.0925-2.3873,10.0155-5.8422h0ZM12,14.8244l3,1.75v3.8291l-3-1.7307v-3.8484ZM16,14.8423l-4-2.3333v-.1813l5.5-3.1733,4.148,2.3933-5.648,3.2947h0ZM17,16.5744l6-3.5v5.5984l-5.5,3.1729-.5-.2885v-4.9828ZM5,10.741l5,2.9167v5.5923c0,.3574.1909.6875.5005.8662l4.4995,2.5961v5.5471l-10-5.8336v-11.6848ZM17,28.2594v-4.3932c.1553.0889.3271.1338.5.1338s.3447-.0449.5-.1338l6.5-3.75c.3096-.1787.5-.5088.5-.8662v-7.3423l2-1.1667v11.6848l-10,5.8336Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m15,24c-3.8594,0-7-3.1401-7-7s3.1406-7,7-7,7,3.1401,7,7-3.1406,7-7,7Zm0-12c-2.7568,0-5,2.2432-5,5s2.2432,5,5,5,5-2.2432,5-5-2.2432-5-5-5Z"}),(0,a.jsx)("path",{d:"m30,13h-2V4h-9v-2h9c1.1025,0,2,.897,2,2v9Z"}),(0,a.jsx)("path",{d:"m15,30c-7.168,0-13-5.8315-13-13S7.832,4,15,4v2c-6.0654,0-11,4.9346-11,11s4.9346,11,11,11,11-4.9346,11-11v-1h2v1c0,7.1685-5.832,13-13,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9 13H11V19H9z"}),(0,a.jsx)("path",{d:"M21 13H23V19H21z"}),(0,a.jsx)("path",{d:"M13 11H15V24H13z"}),(0,a.jsx)("path",{d:"M17 9H19V22H17z"}),(0,a.jsx)("circle",{cx:"22",cy:"5",r:"2"}),(0,a.jsx)("circle",{cx:"10",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m22.0916,28h-8.0916v-2h8.0916l5.9082-10-2.6992-4.5679,1.7227-1.0176,2.6992,4.5679c.3701.6274.3701,1.4077,0,2.0352l-5.9092,10c-.3574.6055-1.0176.9824-1.7217.9824Z"}),(0,a.jsx)("path",{d:"m4.9768,21.5859l-2.6992-4.5684c-.3701-.6274-.3701-1.4077,0-2.0352l5.9092-10c.3584-.606,1.0176-.9824,1.7217-.9824h8.0916v2h-8.0916l-5.9082,10,2.6992,4.5684-1.7227,1.0176Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M12 18 10 18 10 6 7 6 7 18 5 18 5 4 12 4 12 18z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M21 26 19 26 19 12 16 12 16 21.9946 14 21.9946 14 10 21 10 21 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M30 26 28 26 28 18 25 18 25 26 23 26 23 16 30 16 30 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M4 20 4 22 8.5859 22 2 28.5859 3.4141 30 10 23.4141 10 28 12 28 12 20 4 20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,25h-3v-3h3v3ZM29,22h-3v3h3v-3ZM24,27h-3v3h3v-3ZM29,27h-3v3h3v-3ZM20,8h-8v2h8v-2ZM17,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v15h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h11v-2ZM20,15h-8v2h8v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,10h-8v-2h8v2ZM17,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v15h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h11v-2ZM20,15h-8v2h8v-2ZM23.4,24.3l-3.7.5,2.7,2.6-.7,3.6,3.4-1.7,3.2,1.7-.7-3.6,2.7-2.6-3.6-.5-1.7-3.3s-1.6,3.3-1.6,3.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,10h-8v-2h8v2ZM16,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v17h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h10v-2ZM20,15h-8v2h8v-2ZM23,27.2l-2.6-2.6-1.4,1.4,4,4,7-7-1.4-1.4-5.6,5.6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m22,26v2H4V10h2v-2h-2c-1.1045,0-2,.8955-2,2v18c0,1.1045.8955,2,2,2h18c1.1045,0,2-.8955,2-2v-2h-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m30,5.9932v-1.9932c0-1.1046-.8954-2-2-2H10c-1.1046,0-2,.8954-2,2v18c0,1.1046.8954,2,2,2h18c1.1046,0,2-.8954,2-2v-3h-2v3H10V4h18v1.9932h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27.5,17h-9c-1.9297,0-3.5-1.5703-3.5-3.5,0-1.7935,1.3555-3.2759,3.0957-3.4766.4561-2.291,2.4814-4.0234,4.9043-4.0234s4.4482,1.7324,4.9043,4.0234c1.7402.2007,3.0957,1.6831,3.0957,3.4766,0,1.9297-1.5703,3.5-3.5,3.5Zm-9-5c-.8271,0-1.5.6729-1.5,1.5s.6729,1.5,1.5,1.5h9c.8271,0,1.5-.6729,1.5-1.5s-.6729-1.5-1.5-1.5h-1.5v-1c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3v1h-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30,30h-2v-2c0-.5513-.4482-1-1-1h-6c-.5518,0-1,.4487-1,1v2h-2v-2c0-1.6543,1.3457-3,3-3h6c1.6543,0,3,1.3457,3,3v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m24,24c-2.2061,0-4-1.7944-4-4s1.7939-4,4-4,4,1.7944,4,4-1.7939,4-4,4Zm0-6c-1.1025,0-2,.897-2,2s.8975,2,2,2,2-.897,2-2-.8975-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 20H10V22H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 20H18V22H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 16H10V18H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 16H18V18H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 12H10V14H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 12H18V14H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,5h-3v-1c0-1.103-.8975-2-2-2h-6c-1.1025,0-2,.897-2,2v1h-3c-1.1025,0-2,.897-2,2v19c0,1.103.8975,2,2,2h9v-2H5V7h3v2h10v-2h3v6.9999h2v-6.9999c0-1.103-.8975-2-2-2Zm-5,2h-6v-3h6v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31,29.5859l-8.5479-8.5469c-2.0986,2.5171-5.178,3.9609-8.4521,3.9609-6.0654,0-11-4.9346-11-11S7.9346,3,14,3s11,4.9346,11,11c0,1.6001-.3354,3.1416-.9968,4.583l1.8174.834c.7827-1.7041,1.1794-3.5269,1.1794-5.417,0-7.168-5.8318-13-13-13S1,6.832,1,14s5.8318,13,13,13c3.1343,0,6.1025-1.1387,8.4395-3.1465l7.1465,7.1465,1.4141-1.4141Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m17,15c-.8066,0-1.5369.3237-2.0767.8438l-2.96-1.4805c.0146-.1201.0366-.2388.0366-.3633s-.022-.2432-.0366-.3633l2.96-1.4805c.5398.52,1.27.8438,2.0767.8438,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3-3,1.3457-3,3c0,.1245.022.2432.0366.3633l-2.96,1.4805c-.5398-.52-1.27-.8438-2.0767-.8438-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c.8066,0,1.5369-.3237,2.0767-.8438l2.96,1.4805c-.0146.1201-.0366.2388-.0366.3633,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3Zm0-6c.5515,0,1,.4482,1,1s-.4485,1-1,1-1-.4482-1-1,.4485-1,1-1Zm-8,6c-.5515,0-1-.4482-1-1s.4485-1,1-1,1,.4482,1,1-.4485,1-1,1Zm8,4c-.5515,0-1-.4482-1-1s.4485-1,1-1,1,.4482,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,27v-6h-2v4.6l-9.6-9.6L15,6.4v4.6h2v-6h10v8h2V5c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v22c0,1.1.9,2,2,2h12v-2ZM5,5h8.6L5,13.6V5ZM5,27v-8.6l8.6,8.6H5ZM26.6,19l-3.7-3.7c-.2-.2-.4-.3-.6-.3h-3.5c-.6-1.6-2.3-2.4-3.8-1.8-.9.3-1.6,1-1.8,1.9-.5,1.6.4,3.3,2,3.7,1.5.5,3.1-.3,3.7-1.8h3l3.8,3.8c.1.1.3.2.5.2h3.9v-2s-3.5,0-3.5,0ZM16,17c-.6,0-1-.4-1-1s.4-1,1-1,1,.4,1,1-.4,1-1,1ZM24.8,23c-.4-1.2-1.5-2-2.8-2s-3,1.3-3,3,1.4,3,3,3,2.4-.8,2.8-2h5.2v-2h-5.2ZM22,25c-.5,0-1-.5-1-1s.5-1,1-1,1,.5,1,1-.4,1-1,1ZM26,27h4v2h-4v-2ZM28,15h2v2h-2v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,5,25Z"}),(0,a.jsx)("path",{d:"M16,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,16,25Z"}),(0,a.jsx)("path",{d:"M27,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,27,25Z"}),(0,a.jsx)("path",{d:"M28,23H26V11a2.0059,2.0059,0,0,0-2-2H22V7h2a4.0118,4.0118,0,0,1,4,4Z"}),(0,a.jsx)("path",{d:"M15 12H17V23H15z"}),(0,a.jsx)("path",{d:"M6,23H4V11A4.0118,4.0118,0,0,1,8,7h2V9H8a2.0059,2.0059,0,0,0-2,2Z"}),(0,a.jsx)("path",{d:"M16,2,14.7,4.6343l-2.9057.42,2.1029,2.0514L13.4,10,16,8.6343,18.6,10l-.4972-2.8943,2.1029-2.0486L17.3,4.6343Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,3v2h-12.4258l-6.4238,11.0117,3.6408,6.5537.7783-2.5654,1.9139.5806-1.7417,5.7416-5.7416-1.7416.5806-1.9139s1.2918.3851,2.375.712l-3.8296-6.8933c-.1719-.3086-.168-.6846.0098-.9893L8.1357,3.4961c.1797-.3076.5088-.4961.8643-.4961h13ZM23,29c.3555,0,.6846-.1885.8643-.4961l7-12c.1777-.3047.1816-.6807.0098-.9893l-3.8296-6.8933c1.0832.3269,2.375.712,2.375.712l.5806-1.9139-5.7416-1.7416-1.7417,5.7416,1.9139.5806.7783-2.5654,3.6408,6.5537-6.4238,11.0117h-12.4258v2h13-.0002ZM21,16c0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5,5-2.2432,5-5ZM19,16c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,28.4l-0.9-1.8c4-2.1,6.5-6.2,6.5-10.6c0-6.6-5.4-12-12-12c-1.3,0-2.5,0.2-3.7,0.6l-0.6-1.9C13.1,2.2,14.5,2,16,2 c7.7,0,14,6.3,14,14C30,21.2,27.1,26,22.5,28.4z"}),(0,a.jsx)("path",{d:"M20.5,23.8l-1-1.7c2.2-1.2,3.5-3.6,3.5-6.1c0-3.9-3.1-7-7-7c-0.6,0-1.2,0.1-1.8,0.2l-0.5-1.9C14.5,7.1,15.2,7,16,7 c5,0,9,4,9,9C25,19.2,23.3,22.2,20.5,23.8z"}),(0,a.jsx)("path",{d:"M9.5,28.4C4.9,26,2,21.2,2,16c0-1.5,0.2-2.9,0.7-4.3l1.9,0.6C4.2,13.5,4,14.7,4,16c0,4.5,2.5,8.6,6.5,10.6L9.5,28.4z"}),(0,a.jsx)("path",{d:"M11.5,23.8C8.7,22.2,7,19.2,7,16c0-0.8,0.1-1.5,0.3-2.2l1.9,0.5C9.1,14.8,9,15.4,9,16c0,2.5,1.3,4.8,3.5,6.1L11.5,23.8z"}),(0,a.jsx)("path",{d:"M20,16c0-2.2-1.8-4-4-4c-0.7,0-1.4,0.2-2,0.6L8.9,7.5C9,7.3,9,7.2,9,7c0-1.1-0.9-2-2-2S5,5.9,5,7s0.9,2,2,2 c0.2,0,0.3,0,0.5-0.1l5.1,5.1c-0.4,0.6-0.6,1.3-0.6,2c0,1.9,1.3,3.4,3,3.9v7.4c-0.6,0.3-1,1-1,1.7c0,1.1,0.9,2,2,2s2-0.9,2-2 c0-0.7-0.4-1.4-1-1.7v-7.4C18.7,19.4,20,17.9,20,16z M16,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S17.1,18,16,18z"}),e)})},8493(e,t,r){var h=r(7656),l="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},a=h.useState,c=h.useEffect,i=h.useLayoutEffect,n=h.useDebugValue;function w(e){var t=e.getSnapshot;e=e.value;try{var r=t();return!l(e,r)}catch(e){return!0}}var s="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var r=t(),h=a({inst:{value:r,getSnapshot:t}}),l=h[0].inst,s=h[1];return i(function(){l.value=r,l.getSnapshot=t,w(l)&&s({inst:l})},[e,r,t]),c(function(){return w(l)&&s({inst:l}),e(function(){w(l)&&s({inst:l})})},[e]),n(r),r};t.useSyncExternalStore=void 0!==h.useSyncExternalStore?h.useSyncExternalStore:s},9888(e,t,r){e.exports=r(8493)}}]);
|