@open-condo/ui 1.29.0 → 1.30.1

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/index.js CHANGED
@@ -30479,8 +30479,8 @@ var objectSpread2 = __webpack_require__(33028);
30479
30479
  var objectWithoutProperties = __webpack_require__(2159);
30480
30480
  // EXTERNAL MODULE: external "react"
30481
30481
  var external_react_ = __webpack_require__(8156);
30482
- // EXTERNAL MODULE: ../../node_modules/rc-trigger/es/index.js + 16 modules
30483
- var es = __webpack_require__(67169);
30482
+ // EXTERNAL MODULE: ../../node_modules/rc-trigger/es/index.js + 15 modules
30483
+ var es = __webpack_require__(46284);
30484
30484
  // EXTERNAL MODULE: ../../node_modules/rc-tooltip/es/placements.js
30485
30485
  var placements = __webpack_require__(58494);
30486
30486
  // EXTERNAL MODULE: ../../node_modules/classnames/index.js
@@ -30805,7 +30805,7 @@ exports["default"] = _default;
30805
30805
 
30806
30806
  /***/ }),
30807
30807
 
30808
- /***/ 67169:
30808
+ /***/ 46284:
30809
30809
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
30810
30810
 
30811
30811
  "use strict";
@@ -30844,26 +30844,8 @@ var contains = __webpack_require__(88637);
30844
30844
  var findDOMNode = __webpack_require__(50553);
30845
30845
  // EXTERNAL MODULE: ../../node_modules/rc-util/es/ref.js
30846
30846
  var es_ref = __webpack_require__(16381);
30847
- ;// CONCATENATED MODULE: ../../node_modules/rc-util/es/Dom/addEventListener.js
30848
-
30849
- function addEventListenerWrap(target, eventType, cb, option) {
30850
- /* eslint camelcase: 2 */
30851
- var callback = react_dom.unstable_batchedUpdates ? function run(e) {
30852
- react_dom.unstable_batchedUpdates(cb, e);
30853
- } : cb;
30854
-
30855
- if (target.addEventListener) {
30856
- target.addEventListener(eventType, callback, option);
30857
- }
30858
-
30859
- return {
30860
- remove: function remove() {
30861
- if (target.removeEventListener) {
30862
- target.removeEventListener(eventType, callback, option);
30863
- }
30864
- }
30865
- };
30866
- }
30847
+ // EXTERNAL MODULE: ../../node_modules/rc-util/es/Dom/addEventListener.js
30848
+ var addEventListener = __webpack_require__(40443);
30867
30849
  // EXTERNAL MODULE: ../../node_modules/rc-util/es/Dom/canUseDom.js
30868
30850
  var canUseDom = __webpack_require__(39588);
30869
30851
  ;// CONCATENATED MODULE: ../../node_modules/rc-util/es/Portal.js
@@ -32611,7 +32593,7 @@ var Align = function Align(_ref, ref) {
32611
32593
  external_react_default().useEffect(function () {
32612
32594
  if (monitorWindowResize) {
32613
32595
  if (!winResizeRef.current) {
32614
- winResizeRef.current = addEventListenerWrap(window, 'resize', _forceAlign);
32596
+ winResizeRef.current = (0,addEventListener/* default */.Z)(window, 'resize', _forceAlign);
32615
32597
  }
32616
32598
  } else if (winResizeRef.current) {
32617
32599
  winResizeRef.current.remove();
@@ -33575,24 +33557,24 @@ function generateTrigger(PortalComponent) {
33575
33557
 
33576
33558
  if (!this.clickOutsideHandler && (this.isClickToHide() || this.isContextMenuToShow())) {
33577
33559
  currentDocument = props.getDocument(this.getRootDomNode());
33578
- this.clickOutsideHandler = addEventListenerWrap(currentDocument, 'mousedown', this.onDocumentClick);
33560
+ this.clickOutsideHandler = (0,addEventListener/* default */.Z)(currentDocument, 'mousedown', this.onDocumentClick);
33579
33561
  } // always hide on mobile
33580
33562
 
33581
33563
 
33582
33564
  if (!this.touchOutsideHandler) {
33583
33565
  currentDocument = currentDocument || props.getDocument(this.getRootDomNode());
33584
- this.touchOutsideHandler = addEventListenerWrap(currentDocument, 'touchstart', this.onDocumentClick);
33566
+ this.touchOutsideHandler = (0,addEventListener/* default */.Z)(currentDocument, 'touchstart', this.onDocumentClick);
33585
33567
  } // close popup when trigger type contains 'onContextMenu' and document is scrolling.
33586
33568
 
33587
33569
 
33588
33570
  if (!this.contextMenuOutsideHandler1 && this.isContextMenuToShow()) {
33589
33571
  currentDocument = currentDocument || props.getDocument(this.getRootDomNode());
33590
- this.contextMenuOutsideHandler1 = addEventListenerWrap(currentDocument, 'scroll', this.onContextMenuClose);
33572
+ this.contextMenuOutsideHandler1 = (0,addEventListener/* default */.Z)(currentDocument, 'scroll', this.onContextMenuClose);
33591
33573
  } // close popup when trigger type contains 'onContextMenu' and window is blur.
33592
33574
 
33593
33575
 
33594
33576
  if (!this.contextMenuOutsideHandler2 && this.isContextMenuToShow()) {
33595
- this.contextMenuOutsideHandler2 = addEventListenerWrap(window, 'blur', this.onContextMenuClose);
33577
+ this.contextMenuOutsideHandler2 = (0,addEventListener/* default */.Z)(window, 'blur', this.onContextMenuClose);
33596
33578
  }
33597
33579
 
33598
33580
  return;
@@ -33987,6 +33969,36 @@ function toArray(children) {
33987
33969
 
33988
33970
  /***/ }),
33989
33971
 
33972
+ /***/ 40443:
33973
+ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
33974
+
33975
+ "use strict";
33976
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
33977
+ /* harmony export */ "Z": function() { return /* binding */ addEventListenerWrap; }
33978
+ /* harmony export */ });
33979
+ /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(28316);
33980
+
33981
+ function addEventListenerWrap(target, eventType, cb, option) {
33982
+ /* eslint camelcase: 2 */
33983
+ var callback = react_dom__WEBPACK_IMPORTED_MODULE_0__.unstable_batchedUpdates ? function run(e) {
33984
+ react_dom__WEBPACK_IMPORTED_MODULE_0__.unstable_batchedUpdates(cb, e);
33985
+ } : cb;
33986
+
33987
+ if (target.addEventListener) {
33988
+ target.addEventListener(eventType, callback, option);
33989
+ }
33990
+
33991
+ return {
33992
+ remove: function remove() {
33993
+ if (target.removeEventListener) {
33994
+ target.removeEventListener(eventType, callback, option);
33995
+ }
33996
+ }
33997
+ };
33998
+ }
33999
+
34000
+ /***/ }),
34001
+
33990
34002
  /***/ 39588:
33991
34003
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
33992
34004
 
@@ -37616,7 +37628,7 @@ module.exports = function shallowEqual(objA, objB, compare, compareContext) {
37616
37628
  /***/ 66162:
37617
37629
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
37618
37630
 
37619
- !function(e,r){ true?module.exports=r(__webpack_require__(8156)):0}(this,(e=>(()=>{"use strict";var r={156:r=>{r.exports=e}},t={};function n(e){var l=t[e];if(void 0!==l)return l.exports;var o=t[e]={exports:{}};return r[e](o,o.exports,n),o.exports}n.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return n.d(r,{a:r}),r},n.d=(e,r)=>{for(var t in r)n.o(r,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},n.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};return(()=>{n.r(l),n.d(l,{AlertCircle:()=>i,ArrowLeft:()=>s,ArrowRight:()=>p,BarChartHorizontal:()=>O,BarChartVertical:()=>m,Bill:()=>j,Briefcase:()=>Z,Building:()=>M,CalendarDays:()=>R,Car:()=>A,Check:()=>L,CheckCircle:()=>W,CheckSquare:()=>_,ChevronDown:()=>U,ChevronLeft:()=>Q,ChevronRight:()=>Y,ChevronUp:()=>re,CircleEllipsis:()=>le,Close:()=>ie,Contacts:()=>se,Copy:()=>pe,CreditCard:()=>Oe,Doors:()=>me,Download:()=>je,Edit:()=>Ze,Employee:()=>Me,ExternalLink:()=>Re,Eye:()=>Ae,EyeOff:()=>Le,FileCheck:()=>We,FileDown:()=>_e,FileEdit:()=>Ue,FileText:()=>Qe,FileUp:()=>Ye,Filter:()=>rr,Flat:()=>lr,Floor:()=>ir,Frown:()=>sr,Globe:()=>pr,Home:()=>Or,House:()=>mr,Inbox:()=>jr,Info:()=>Zr,Interfloor:()=>Mr,Key:()=>Rr,Layers:()=>Ar,LayoutList:()=>Lr,Link:()=>Wr,List:()=>_r,LogOut:()=>Ur,Mail:()=>Qr,Menu:()=>Yr,Meters:()=>rt,MinusCircle:()=>lt,MoreHorizontal:()=>it,MoreVertical:()=>st,NewAppeal:()=>pt,OnOff:()=>Ot,Paperclip:()=>mt,Parking:()=>jt,PieChart:()=>Zt,Plus:()=>Mt,PlusCircle:()=>Rt,Print:()=>At,QuestionCircle:()=>Lt,Readings:()=>Wt,RefreshCw:()=>_t,Rocket:()=>Ut,Ruble:()=>Qt,Sber:()=>Yt,Search:()=>rn,Send:()=>ln,Services:()=>cn,Settings:()=>vn,Share:()=>hn,Sheet:()=>bn,Slash:()=>dn,SmartHome:()=>Pn,Smartphone:()=>xn,Smile:()=>Hn,SortAsc:()=>Vn,SortDesc:()=>Bn,Star:()=>Fn,StarFilled:()=>Dn,Subtitles:()=>qn,Trash:()=>Gn,User:()=>Xn,Wallet:()=>$n,XCircle:()=>tl});var e=n(156),r=n.n(e),t=function(e){var t=e.icon,n=e.size,l=void 0===n?"large":n,o=e.color,a=void 0===o?"currentcolor":o,i=e.className,c=e.id,u=e.onClick,s=function(e){switch(e){case"auto":return"1em";case"medium":return 20;case"small":return 16;default:return 24}}(l),v={color:a,width:s,height:s,display:"inline-flex",fontSize:"inherit"};return r().createElement("span",{role:"img","aria-hidden":!0,style:v,className:i,id:c,onClick:u},t)},o=["svgProps"];function a(){return a=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},a.apply(this,arguments)}var i=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,o);return r().createElement(t,a({icon:r().createElement("svg",a({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11-5a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm0 8a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H12Z",fill:"currentColor"}))},l))},c=["svgProps"];function u(){return u=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},u.apply(this,arguments)}var s=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,c);return r().createElement(t,u({icon:r().createElement("svg",u({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.293 19.707a1 1 0 0 0 1.414-1.414L7.414 13H19a1 1 0 1 0 0-2H7.414l5.293-5.293a1 1 0 0 0-1.414-1.414l-7 7a.997.997 0 0 0-.294.705l.001.002v.003a.997.997 0 0 0 .294.705m6.999 7-7-7 7 7Z",fill:"currentColor"}))},l))},v=["svgProps"];function f(){return f=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},f.apply(this,arguments)}var p=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,v);return r().createElement(t,f({icon:r().createElement("svg",f({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.707 4.293a1 1 0 1 0-1.414 1.414L16.586 11H5a1 1 0 1 0 0 2h11.586l-5.293 5.293a1 1 0 0 0 1.414 1.414l7-7 .007-.007a.997.997 0 0 0 .286-.697v-.006a.996.996 0 0 0-.286-.697l-.008-.008m-6.999-7 7 7-7-7Z",fill:"currentColor"}))},l))},h=["svgProps"];function g(){return g=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},g.apply(this,arguments)}var O=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,h);return r().createElement(t,g({icon:r().createElement("svg",g({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.05 3a1.05 1.05 0 1 0-2.1 0v16A3.05 3.05 0 0 0 5 22.05h16a1.05 1.05 0 1 0 0-2.1H5a.95.95 0 0 1-.95-.95V3ZM7 14.95a1.05 1.05 0 1 0 0 2.1h8a1.05 1.05 0 1 0 0-2.1H7ZM5.95 11c0-.58.47-1.05 1.05-1.05h12a1.05 1.05 0 1 1 0 2.1H7c-.58 0-1.05-.47-1.05-1.05ZM7 4.95a1.05 1.05 0 1 0 0 2.1h3a1.05 1.05 0 1 0 0-2.1H7Z",fill:"currentColor"}))},l))},b=["svgProps"];function y(){return y=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},y.apply(this,arguments)}var m=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,b);return r().createElement(t,y({icon:r().createElement("svg",y({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M4.05 3a1.05 1.05 0 1 0-2.1 0v16A3.05 3.05 0 0 0 5 22.05h16a1.05 1.05 0 1 0 0-2.1H5a.95.95 0 0 1-.95-.95V3Z",fill:"currentColor"}),r().createElement("path",{d:"M19.05 9a1.05 1.05 0 1 0-2.1 0v8a1.05 1.05 0 1 0 2.1 0V9ZM13 3.95c.58 0 1.05.47 1.05 1.05v12a1.05 1.05 0 1 1-2.1 0V5c0-.58.47-1.05 1.05-1.05ZM9.05 14a1.05 1.05 0 1 0-2.1 0v3a1.05 1.05 0 1 0 2.1 0v-3Z",fill:"currentColor"}))},l))},d=["svgProps"];function w(){return w=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},w.apply(this,arguments)}var j=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,d);return r().createElement(t,w({icon:r().createElement("svg",w({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M8.308 6.928c-.383 0-.693.33-.693.74 0 .407.31.738.693.738V6.928ZM12 8.406c.382 0 .692-.33.692-.739 0-.408-.31-.739-.692-.739v1.478ZM8.308 10.87c-.383 0-.693.331-.693.74 0 .408.31.739.693.739V10.87Zm7.384 1.479c.383 0 .693-.331.693-.74 0-.408-.31-.739-.693-.739v1.479Zm-7.384 2.464c-.383 0-.693.33-.693.739 0 .408.31.74.693.74v-1.48Zm7.384 1.478c.383 0 .693-.33.693-.739 0-.408-.31-.74-.693-.74v1.48ZM5.538 2.478h12.924V1H5.538v1.478ZM19.615 3.71v15.936H21V3.71h-1.385Zm-1.544 17.096-1.442-.555-.469 1.392 1.442.554.469-1.391Zm-3.343-.476-2.255 1.083.569 1.348 2.254-1.083-.568-1.348Zm-3.201 1.083L9.271 20.33l-.568 1.348 2.254 1.083.569-1.348ZM7.37 20.251l-1.442.555.47 1.39 1.44-.553-.468-1.392Zm-2.986-.605V3.71H3v15.936h1.385Zm1.544 1.16c-.752.289-1.544-.306-1.544-1.16H3c0 1.878 1.744 3.186 3.398 2.55l-.469-1.39Zm3.343-.476a2.39 2.39 0 0 0-1.901-.078l.469 1.39c.281-.108.591-.095.864.036l.568-1.348Zm3.201 1.083a1.087 1.087 0 0 1-.947 0l-.568 1.348c.663.319 1.421.319 2.084 0l-.569-1.348Zm4.156-1.162a2.39 2.39 0 0 0-1.901.08l.568 1.347c.273-.13.583-.144.864-.035l.469-1.392Zm2.986-.605c0 .854-.792 1.449-1.544 1.16l-.47 1.39c1.655.636 3.399-.672 3.399-2.55h-1.385ZM18.462 2.479c.637 0 1.153.552 1.153 1.232H21C21 2.213 19.863 1 18.462 1v1.478ZM5.538 1C4.137 1 3 2.213 3 3.71h1.385c0-.68.516-1.232 1.153-1.232V1Zm2.77 7.406H12V6.928H8.308v1.478Zm0 3.943h7.384V10.87H8.308v1.479Zm0 3.942h7.384v-1.478H8.308v1.478Z",fill:"currentColor"}),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.75 3.71C2.75 2.091 3.983.75 5.538.75h12.924c1.555 0 2.788 1.341 2.788 2.96v15.936c0 2.028-1.897 3.491-3.738 2.784l-1.442-.554a.836.836 0 0 0-.666.028l-2.254 1.083a2.642 2.642 0 0 1-2.3 0l-2.254-1.083a.836.836 0 0 0-.666-.028l-1.442.554c-1.84.707-3.738-.756-3.738-2.784V3.71Zm8.536 18.917c.464.164.964.164 1.428 0l-.379-.898c-.22.057-.45.057-.67 0l-.379.898Zm.349-1.44a.838.838 0 0 0 .73 0l2.254-1.082a2.64 2.64 0 0 1 2.1-.087l1.441.554c.566.218 1.205-.223 1.205-.925V3.71c0-.558-.42-.982-.903-.982H5.538c-.484 0-.903.424-.903.982v15.936c0 .703.64 1.144 1.205.926l1.441-.554a2.64 2.64 0 0 1 2.1.087l2.254 1.083Zm-2.69-.723a2.136 2.136 0 0 0-1.256-.053l.313.929a1.33 1.33 0 0 1 .564.023l.379-.899Zm.082 1.092 1.803.866.374-.887L9.4 20.67l-.374.887Zm-1.5-.06-.31-.918-.974.375.309.917.974-.375Zm-1.446.541-.313-.927c-.77.14-1.486-.426-1.613-1.213H3.26c.137 1.5 1.492 2.49 2.82 2.14Zm-2.831-2.64h.885V3.96H3.25v15.436ZM3.262 3.46h.893c.098-.605.546-1.098 1.133-1.208v-.987c-1.06.124-1.918 1.032-2.026 2.195Zm2.526-2.21v.978h12.424V1.25H5.788Zm12.924.015v.987c.587.11 1.035.603 1.133 1.208h.893c-.108-1.163-.967-2.07-2.026-2.195ZM20.75 3.96h-.885v15.436h.885V3.96Zm-.011 15.936h-.893c-.128.788-.844 1.353-1.614 1.214l-.313.927c1.328.35 2.683-.64 2.82-2.14Zm-3.29 1.974.308-.917-.974-.375-.31.917.975.375Zm-1.45-.53.312-.929a2.135 2.135 0 0 0-1.256.053l.379.899a1.33 1.33 0 0 1 .564-.023Zm-1.026.216-.374-.887-1.803.866.374.887 1.803-.866ZM7.365 7.667c0-.53.407-.989.943-.989H12c.536 0 .942.459.942.99 0 .53-.406.988-.942.988H8.308c-.536 0-.943-.458-.943-.989Zm.693-.403a.498.498 0 0 0-.193.403c0 .174.08.317.193.403v-.806Zm.5-.086v.978h3.192v-.978H8.558Zm3.692.086v.806a.498.498 0 0 0 .192-.403.498.498 0 0 0-.192-.403ZM7.365 11.61c0-.531.407-.99.943-.99h7.384c.536 0 .943.459.943.99 0 .53-.407.989-.943.989H8.308c-.536 0-.943-.459-.943-.99Zm.693-.403a.498.498 0 0 0-.193.403c0 .174.08.317.193.402v-.805Zm.5-.087v.979h6.884v-.979H8.558Zm7.384.087v.805a.498.498 0 0 0 .193-.402.498.498 0 0 0-.193-.403Zm-8.577 4.345c0-.53.407-.99.943-.99h7.384c.536 0 .943.46.943.99s-.407.99-.943.99H8.308c-.536 0-.943-.46-.943-.99Zm.693-.403a.498.498 0 0 0-.193.403c0 .174.08.317.193.403v-.806Zm.5-.086v.978h6.884v-.978H8.558Zm7.384.086v.806a.499.499 0 0 0 .193-.403.498.498 0 0 0-.193-.403Z",fill:"currentColor"}))},l))},P=["svgProps"];function E(){return E=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},E.apply(this,arguments)}var Z=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,P);return r().createElement(t,E({icon:r().createElement("svg",E({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 1.1A2.9 2.9 0 0 0 7.1 4v2.1H5A3.9 3.9 0 0 0 1.1 10v9A3.9 3.9 0 0 0 5 22.9h14a3.9 3.9 0 0 0 3.9-3.9v-9A3.9 3.9 0 0 0 19 6.1h-2.1V4A2.9 2.9 0 0 0 14 1.1h-4Zm5.1 5V4A1.1 1.1 0 0 0 14 2.9h-4A1.1 1.1 0 0 0 8.9 4v2.1h6.2ZM8.9 7.9h6.2v13.2H8.9V7.9Zm-1.8 0H5A2.1 2.1 0 0 0 2.9 10v9c0 1.16.94 2.1 2.1 2.1h2.1V7.9Zm9.8 13.2V7.9H19c1.16 0 2.1.94 2.1 2.1v9a2.1 2.1 0 0 1-2.1 2.1h-2.1Z",fill:"currentColor"}))},l))},x=["svgProps"];function S(){return S=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},S.apply(this,arguments)}var M=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,x);return r().createElement(t,S({icon:r().createElement("svg",S({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.408 1.9a.9.9 0 0 1 .9-.9H15.23a.9.9 0 0 1 .092 1.795V5.25h6.37a.9.9 0 0 1 .092 1.795V21h.715a.9.9 0 1 1 0 1.8h-21a.9.9 0 1 1 0-1.8h.715V2.795a.9.9 0 0 1-.807-.895Zm2.607.9V21h1.431v-3.038c0-1.152.88-2.212 2.112-2.212H9.98c1.232 0 2.111 1.06 2.111 2.212V21h1.431V2.8H4.015Zm11.308 4.25V21h4.662V7.05h-4.662ZM10.293 21v-3.038c0-.296-.207-.412-.312-.412H7.558c-.106 0-.312.116-.312.412V21h3.046ZM5.445 5.275a.9.9 0 0 1 .9-.9h.808a.9.9 0 1 1 0 1.8h-.808a.9.9 0 0 1-.9-.9Zm4.039 0a.9.9 0 0 1 .9-.9h.807a.9.9 0 1 1 0 1.8h-.807a.9.9 0 0 1-.9-.9Zm-4.039 3.5a.9.9 0 0 1 .9-.9h.808a.9.9 0 1 1 0 1.8h-.808a.9.9 0 0 1-.9-.9Zm4.039 0a.9.9 0 0 1 .9-.9h.807a.9.9 0 1 1 0 1.8h-.807a.9.9 0 0 1-.9-.9Zm7.269 1.75a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 .9.9v.01a.9.9 0 0 1-.9.9h-.01a.9.9 0 0 1-.9-.9v-.01Zm-11.308 1.75a.9.9 0 0 1 .9-.9h.808a.9.9 0 1 1 0 1.8h-.808a.9.9 0 0 1-.9-.9Zm4.039 0a.9.9 0 0 1 .9-.9h.807a.9.9 0 1 1 0 1.8h-.807a.9.9 0 0 1-.9-.9Zm7.269 1.75a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 .9.9v.01a.9.9 0 0 1-.9.9h-.01a.9.9 0 0 1-.9-.9v-.01Zm0 3.5a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 .9.9v.01a.9.9 0 0 1-.9.9h-.01a.9.9 0 0 1-.9-.9v-.01Z",fill:"currentColor"}))},l))},H=["svgProps"];function C(){return C=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},C.apply(this,arguments)}var R=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,H);return r().createElement(t,C({icon:r().createElement("svg",C({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17 2a1 1 0 1 0-2 0v1H9V2a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-2V2Zm3 7V6a1 1 0 0 0-1-1h-2v1a1 1 0 1 1-2 0V5H9v1a1 1 0 0 1-2 0V5H5a1 1 0 0 0-1 1v3h16ZM4 11h16v9a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-9Zm3 3a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm5-1a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H12Zm3 1a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H16a1 1 0 0 1-1-1Zm-7 3a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H8Zm3 1a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1Zm5-1a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H16Z",fill:"currentColor"}))},l))},V=["svgProps"];function k(){return k=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},k.apply(this,arguments)}var A=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,V);return r().createElement(t,k({icon:r().createElement("svg",k({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.319 4a1 1 0 0 0-.92.606L3.518 11h16.966L18.6 4.606A1 1 0 0 0 17.681 4H6.32ZM21 13H3v6h18v-6Zm-2.95 8a2.5 2.5 0 0 0 4.95-.5V12a1 1 0 0 0-.08-.394l-2.481-7.788A3 3 0 0 0 17.68 2H6.32A3 3 0 0 0 3.56 3.818l-2.48 7.788A1 1 0 0 0 1 12v8.5a2.5 2.5 0 0 0 4.95.5h12.1ZM5 16a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1Zm10 0a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z",fill:"currentColor"}))},l))},B=["svgProps"];function I(){return I=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},I.apply(this,arguments)}var L=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,B);return r().createElement(t,I({icon:r().createElement("svg",I({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M20 6 9 17l-5-5",stroke:"currentColor",strokeWidth:2.1,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},F=["svgProps"];function z(){return z=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},z.apply(this,arguments)}var W=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,F);return r().createElement(t,z({icon:r().createElement("svg",z({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1ZM3 12a9 9 0 0 1 9-9 9 9 0 0 1 9 9 9 9 0 0 1-9 9 9 9 0 0 1-9-9Zm13.768-2.36a1 1 0 1 0-1.536-1.28l-4.3 5.159-2.225-2.226a1 1 0 0 0-1.414 1.414l3 3a1 1 0 0 0 1.475-.067l5-6Z",fill:"currentColor"}))},l))},D=["svgProps"];function T(){return T=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},T.apply(this,arguments)}var _=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,D);return r().createElement(t,T({icon:r().createElement("svg",T({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M4.293 4.293A1 1 0 0 1 5 4h11a1 1 0 1 0 0-2H5a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-7a1 1 0 1 0-2 0v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5a1 1 0 0 1 .293-.707Z",fill:"currentColor"}),r().createElement("path",{d:"m12.707 14.707 10-10a1 1 0 0 0-1.414-1.414L12 12.586l-2.293-2.293a1 1 0 1 0-1.414 1.414l3 3a1 1 0 0 0 1.414 0Z",fill:"currentColor"}))},l))},q=["svgProps"];function N(){return N=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},N.apply(this,arguments)}var U=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,q);return r().createElement(t,N({icon:r().createElement("svg",N({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.205 8.204c.439-.439 1.151-.439 1.59 0L12 13.41l5.204-5.205a1.125 1.125 0 0 1 1.591 1.591l-6 6c-.439.44-1.151.44-1.59 0l-6-6a1.125 1.125 0 0 1 0-1.59Z",fill:"currentColor"}))},l))},G=["svgProps"];function K(){return K=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},K.apply(this,arguments)}var Q=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,G);return r().createElement(t,K({icon:r().createElement("svg",K({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.796 5.205c.439.439.439 1.151 0 1.59L10.59 12l5.205 5.204a1.125 1.125 0 0 1-1.591 1.591l-6-6a1.125 1.125 0 0 1 0-1.59l6-6c.439-.44 1.151-.44 1.59 0Z",fill:"currentColor"}))},l))},X=["svgProps"];function J(){return J=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},J.apply(this,arguments)}var Y=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,X);return r().createElement(t,J({icon:r().createElement("svg",J({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.204 5.205c.44-.44 1.152-.44 1.591 0l6 6c.44.439.44 1.151 0 1.59l-6 6a1.125 1.125 0 0 1-1.59-1.59L13.409 12 8.204 6.795a1.125 1.125 0 0 1 0-1.59Z",fill:"currentColor"}))},l))},$=["svgProps"];function ee(){return ee=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ee.apply(this,arguments)}var re=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,$);return r().createElement(t,ee({icon:r().createElement("svg",ee({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.204 8.204c.44-.439 1.152-.439 1.591 0l6 6a1.125 1.125 0 0 1-1.59 1.591L12 10.591l-5.205 5.205a1.125 1.125 0 0 1-1.59-1.591l6-6Z",fill:"currentColor"}))},l))},te=["svgProps"];function ne(){return ne=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ne.apply(this,arguments)}var le=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,te);return r().createElement(t,ne({icon:r().createElement("svg",ne({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1Zm5 10a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H17Zm-6 1a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1Zm-4-1a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H7Z",fill:"currentColor"}))},l))},oe=["svgProps"];function ae(){return ae=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ae.apply(this,arguments)}var ie=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,oe);return r().createElement(t,ae({icon:r().createElement("svg",ae({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M18.742 6.742a1.05 1.05 0 0 0-1.484-1.484L12 10.515 6.742 5.258a1.05 1.05 0 1 0-1.484 1.484L10.515 12l-5.257 5.258a1.05 1.05 0 1 0 1.484 1.485L12 13.485l5.258 5.258a1.05 1.05 0 0 0 1.485-1.485L13.485 12l5.258-5.258Z",fill:"currentColor"}))},l))},ce=["svgProps"];function ue(){return ue=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ue.apply(this,arguments)}var se=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ce);return r().createElement(t,ue({icon:r().createElement("svg",ue({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.523 3.892c-.673 0-1.317.262-1.789.723a2.413 2.413 0 0 0-.733 1.726c0 .645.262 1.267.733 1.727.472.46 1.116.722 1.79.722.673 0 1.317-.261 1.789-.722.471-.46.733-1.082.733-1.727s-.262-1.266-.733-1.726a2.562 2.562 0 0 0-1.79-.723Zm-3.128-.626A4.479 4.479 0 0 1 8.523 2c1.171 0 2.297.454 3.129 1.266a4.297 4.297 0 0 1 1.303 3.075c0 1.156-.47 2.262-1.303 3.075a4.48 4.48 0 0 1-3.129 1.267 4.479 4.479 0 0 1-3.128-1.267 4.297 4.297 0 0 1-1.303-3.075c0-1.156.47-2.262 1.303-3.075ZM17.796 6.91a1.78 1.78 0 0 0-1.243.502 1.668 1.668 0 0 0-.507 1.193c0 .445.18.874.507 1.193.328.32.774.501 1.243.501a1.78 1.78 0 0 0 1.243-.501c.326-.319.507-.748.507-1.193 0-.445-.18-.874-.507-1.193a1.78 1.78 0 0 0-1.243-.502Zm-2.582-.847a3.697 3.697 0 0 1 2.582-1.045c.966 0 1.895.374 2.582 1.045a3.552 3.552 0 0 1 1.077 2.542c0 .956-.39 1.87-1.077 2.541a3.696 3.696 0 0 1-2.582 1.046 3.696 3.696 0 0 1-2.582-1.046 3.552 3.552 0 0 1-1.077-2.541c0-.956.39-1.87 1.077-2.542Zm-4.455 8.087a5.754 5.754 0 0 0-3.635-.28c-1.21.303-2.28.99-3.042 1.95a5.385 5.385 0 0 0-1.156 2.913 11.977 11.977 0 0 0 5.596 1.375h.002c1.957.003 3.88-.471 5.596-1.375a5.322 5.322 0 0 0-.682-2.209 5.563 5.563 0 0 0-2.679-2.374Zm3.63.409a7.506 7.506 0 0 0-2.88-2.15 7.677 7.677 0 0 0-4.853-.374 7.537 7.537 0 0 0-4.074 2.614A7.258 7.258 0 0 0 1 19.17l.001.117c.003.331.18.636.468.805A13.884 13.884 0 0 0 8.52 22a13.89 13.89 0 0 0 6.84-1.784c.797.183 1.614.276 2.435.275h-.001l.001-.946.001.946h-.001c1.615.002 3.21-.357 4.66-1.052a.946.946 0 0 0 .54-.811 5.02 5.02 0 0 0-.922-3.118 5.196 5.196 0 0 0-2.647-1.937 5.31 5.31 0 0 0-3.3.012 5.235 5.235 0 0 0-1.737.974Zm1.021 1.643c.364-.371.817-.655 1.323-.823a3.385 3.385 0 0 1 2.102-.007c.683.22 1.27.651 1.676 1.225.295.416.482.89.55 1.385a8.863 8.863 0 0 1-3.264.617h-.002c-.601 0-1.2-.06-1.788-.18a7.198 7.198 0 0 0-.597-2.218Z",fill:"currentColor"}))},l))},ve=["svgProps"];function fe(){return fe=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fe.apply(this,arguments)}var pe=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ve);return r().createElement(t,fe({icon:r().createElement("svg",fe({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.293 3.293A1 1 0 0 1 4 3h9a1 1 0 0 1 1 1v1a1 1 0 1 0 2 0V4a3 3 0 0 0-3-3H4a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h1a1 1 0 1 0 0-2H4a1 1 0 0 1-1-1V4a1 1 0 0 1 .293-.707ZM10 11a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1h-9a1 1 0 0 1-1-1v-9Zm1-3a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h9a3 3 0 0 0 3-3v-9a3 3 0 0 0-3-3h-9Z",fill:"currentColor"}))},l))},he=["svgProps"];function ge(){return ge=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ge.apply(this,arguments)}var Oe=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,he);return r().createElement(t,ge({icon:r().createElement("svg",ge({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 6a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v2H3V6ZM1 9V6a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V9Zm20 1v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8h18Z",fill:"currentColor"}))},l))},be=["svgProps"];function ye(){return ye=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ye.apply(this,arguments)}var me=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,be);return r().createElement(t,ye({icon:r().createElement("svg",ye({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 3H5a2 2 0 0 0-2 2v2.111h18V5a2 2 0 0 0-2-2ZM3 19V9.154h7.979V21H5a2 2 0 0 1-2-2Zm10.021 2H19a2 2 0 0 0 2-2V9.154h-7.979V21ZM5 1a4 4 0 0 0-4 4v14a4 4 0 0 0 4 4h14a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4H5Zm2.857 11a1 1 0 0 1 1 1v2.714a1 1 0 0 1-1 1H7.5a1 1 0 0 1-1-1V13a1 1 0 0 1 1-1h.357Zm9.643 1a1 1 0 0 0-1-1h-.357a1 1 0 0 0-1 1v2.714a1 1 0 0 0 1 1h.357a1 1 0 0 0 1-1V13Z",fill:"currentColor"}))},l))},de=["svgProps"];function we(){return we=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},we.apply(this,arguments)}var je=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,de);return r().createElement(t,we({icon:r().createElement("svg",we({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 3a1 1 0 1 0-2 0v9.586L7.707 9.293a1 1 0 0 0-1.414 1.414l5 5 .007.007a.996.996 0 0 0 .697.286h.006c.272 0 .518-.11.697-.286l.008-.008 5-4.999a1 1 0 0 0-1.415-1.414L13 12.586V3ZM3 14a1 1 0 0 1 1 1v4a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-4a1 1 0 0 1 1-1Z",fill:"currentColor"}))},l))},Pe=["svgProps"];function Ee(){return Ee=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ee.apply(this,arguments)}var Ze=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Pe);return r().createElement(t,Ee({icon:r().createElement("svg",Ee({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20 .879c-.828 0-1.622.329-2.207.914l-9.5 9.5a1 1 0 0 0-.263.464l-1 4a1 1 0 0 0 1.213 1.213l4-1a1 1 0 0 0 .464-.263l9.5-9.5A3.121 3.121 0 0 0 20 .88Zm-.793 2.328a1.121 1.121 0 0 1 1.586 1.586l-9.304 9.304-2.115.529.529-2.115 9.304-9.304Z",fill:"currentColor"}),r().createElement("path",{d:"M4 3a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-7a1 1 0 1 0-2 0v7a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h7a1 1 0 1 0 0-2H4Z",fill:"currentColor"}))},l))},xe=["svgProps"];function Se(){return Se=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Se.apply(this,arguments)}var Me=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,xe);return r().createElement(t,Se({icon:r().createElement("svg",Se({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.014 2.87c-.361-.008-.785.34-.785.902v1.63c0 .528.392.867.771.867s.771-.34.771-.867V3.736c0-.52-.383-.859-.757-.867Zm-2.655.902c0-1.46 1.142-2.803 2.693-2.771 1.48.03 2.589 1.29 2.589 2.735v.281h3.16C20.718 4.017 23 6.501 23 9.456v8.106C23 20.517 20.72 23 17.8 23H6.2C3.28 23 1 20.517 1 17.562V9.456C1 6.5 3.28 4.017 6.2 4.017h3.16v-.245Zm.042 2.115H6.2c-1.792 0-3.33 1.549-3.33 3.569v8.106c0 2.02 1.538 3.569 3.33 3.569h11.6c1.792 0 3.33-1.55 3.33-3.57V9.457c0-2.02-1.538-3.57-3.33-3.57H14.6C14.38 7.136 13.336 8.139 12 8.139c-1.336 0-2.38-1.003-2.599-2.251Zm-.383 4.804c-.507 0-.894.372-.894.838a.9.9 0 0 0 .893.89.9.9 0 0 0 .894-.89c0-.466-.387-.838-.893-.838Zm-2.763.838c0-1.524 1.25-2.777 2.763-2.777 1.512 0 2.762 1.096 2.762 2.62 0 1.523-1.25 2.88-2.762 2.88-1.513 0-2.763-1.2-2.763-2.723Zm6.967.085c0-.516.419-.935.935-.935h4.539a.935.935 0 1 1 0 1.87h-4.54a.935.935 0 0 1-.934-.935Zm0 3.648c0-.516.419-.935.935-.935h3.197a.935.935 0 0 1 0 1.87h-3.197a.935.935 0 0 1-.935-.935Zm-8.338 3.2c0-2.111 1.741-3.816 3.862-3.816h.543c2.12 0 3.862 1.705 3.862 3.817a.935.935 0 0 1-1.87 0c0-1.056-.88-1.948-1.992-1.948h-.543c-1.112 0-1.993.892-1.993 1.948a.935.935 0 0 1-1.869 0Z",fill:"currentColor"}))},l))},He=["svgProps"];function Ce(){return Ce=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ce.apply(this,arguments)}var Re=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,He);return r().createElement(t,Ce({icon:r().createElement("svg",Ce({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m18.586 4-9.293 9.293a1 1 0 1 0 1.414 1.414L20 5.414V9a1 1 0 1 0 2 0V3l-.001-.048A.996.996 0 0 0 21 2h-6a1 1 0 1 0 0 2h3.586ZM5 7a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-6a1 1 0 1 1 2 0v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h6a1 1 0 1 1 0 2H5Z",fill:"currentColor"}))},l))},Ve=["svgProps"];function ke(){return ke=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ke.apply(this,arguments)}var Ae=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Ve);return r().createElement(t,ke({icon:r().createElement("svg",ke({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.437 12.582A11.924 11.924 0 0 1 3.112 12a13.389 13.389 0 0 1 1.996-2.82C6.615 7.557 8.868 6 12 6c3.132 0 5.385 1.557 6.892 3.18A13.386 13.386 0 0 1 20.888 12a13.386 13.386 0 0 1-1.996 2.82C17.385 16.442 15.132 18 12 18c-3.132 0-5.385-1.557-6.892-3.18a13.388 13.388 0 0 1-1.67-2.238Zm19.482-.977L22 12c.92.394.919.394.919.395l-.002.003-.003.007-.01.021a8.467 8.467 0 0 1-.153.322c-.105.21-.26.506-.47.857a15.392 15.392 0 0 1-1.923 2.575C18.615 18.057 15.868 20 12 20c-3.868 0-6.615-1.943-8.358-3.82a15.386 15.386 0 0 1-1.923-2.575 13.443 13.443 0 0 1-.591-1.107 5.138 5.138 0 0 1-.033-.072l-.01-.02-.002-.008-.001-.002v-.001c-.001 0-.001-.001.918-.395-.92-.394-.919-.394-.919-.395l.002-.003.003-.007.01-.021.032-.072a13.443 13.443 0 0 1 .591-1.107A15.385 15.385 0 0 1 3.642 7.82C5.385 5.943 8.132 4 12 4c3.868 0 6.615 1.943 8.358 3.82a15.391 15.391 0 0 1 1.923 2.575 13.405 13.405 0 0 1 .591 1.107l.033.072.01.02.002.008.001.002v.001ZM22 12l.92-.394a1 1 0 0 1 0 .788L22 12Zm-20.92-.394L2 12l-.92.394a1 1 0 0 1 0-.788ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z",fill:"currentColor"}))},l))},Be=["svgProps"];function Ie(){return Ie=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ie.apply(this,arguments)}var Le=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Be);return r().createElement(t,Ie({icon:r().createElement("svg",Ie({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M10.73 5.08c.421-.052.845-.08 1.27-.08 7 0 10 7 10 7a13.157 13.157 0 0 1-1.67 2.68M9.88 9.88a3 3 0 1 0 4.24 4.24M2 2l20 20M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},Fe=["svgProps"];function ze(){return ze=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ze.apply(this,arguments)}var We=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Fe);return r().createElement(t,ze({icon:r().createElement("svg",ze({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.879 1.879A3 3 0 0 1 6 1h8.5a1 1 0 0 1 .707.293l5.5 5.5A1 1 0 0 1 21 7.5V20a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 .879-2.121ZM6 3h7v5a1 1 0 0 0 1 1h5v11a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm9 4h3.086L15 3.914V7Zm.707 6.707a1 1 0 0 0-1.414-1.414L11 15.586l-1.293-1.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4Z",fill:"currentColor"}))},l))},De=["svgProps"];function Te(){return Te=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Te.apply(this,arguments)}var _e=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,De);return r().createElement(t,Te({icon:r().createElement("svg",Te({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.879 1.879A3 3 0 0 1 6 1h8.5a1 1 0 0 1 .707.293l5.5 5.5A1 1 0 0 1 21 7.5V20a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 .879-2.121ZM18.086 7 15 3.914V7h3.086ZM13 3v5a1 1 0 0 0 1 1h5v11a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7Zm-1 8a1 1 0 0 1 1 1v3.586l1.293-1.293a1 1 0 0 1 1.414 1.414l-3 3a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L11 15.586V12a1 1 0 0 1 1-1Z",fill:"currentColor"}))},l))},qe=["svgProps"];function Ne(){return Ne=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ne.apply(this,arguments)}var Ue=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,qe);return r().createElement(t,Ne({icon:r().createElement("svg",Ne({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 3a1 1 0 0 0-1 1v9.5a1 1 0 1 1-2 0V4a3 3 0 0 1 3-3h8.5a1 1 0 0 1 .707.293l5.5 5.5A1 1 0 0 1 21 7.5V20a3 3 0 0 1-3 3h-5.5a1 1 0 1 1 0-2H18a1 1 0 0 0 1-1V9h-5a1 1 0 0 1-1-1V3H6Zm9 .914V7h3.086L15 3.914Zm-3.095 9.08a1.1 1.1 0 0 0-.777.323L5.893 18.56l-.516 2.059 2.062-.522 5.244-5.225a1.104 1.104 0 0 0 .238-1.199 1.1 1.1 0 0 0-1.016-.68Zm-1.186-1.763a3.1 3.1 0 0 1 3.378 5.056l-5.441 5.421a1 1 0 0 1-.46.261l-3.95 1a1 1 0 0 1-1.216-1.212l.99-3.95a1 1 0 0 1 .262-.463l5.43-5.44c.288-.288.63-.517 1.007-.673Z",fill:"currentColor"}))},l))},Ge=["svgProps"];function Ke(){return Ke=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ke.apply(this,arguments)}var Qe=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Ge);return r().createElement(t,Ke({icon:r().createElement("svg",Ke({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M8 12a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8ZM7 17a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1ZM8 8a1 1 0 0 0 0 2h2a1 1 0 1 0 0-2H8Z",fill:"currentColor"}),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.879 1.879A3 3 0 0 1 6 1h8.5a1 1 0 0 1 .707.293l5.5 5.5A1 1 0 0 1 21 7.5V20a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 .879-2.121ZM6 3h7v5a1 1 0 0 0 1 1h5v11a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm9 4h3.086L15 3.914V7Z",fill:"currentColor"}))},l))},Xe=["svgProps"];function Je(){return Je=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Je.apply(this,arguments)}var Ye=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Xe);return r().createElement(t,Je({icon:r().createElement("svg",Je({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 1a3 3 0 0 0-3 3v16a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V7.5a1 1 0 0 0-.293-.707l-5.5-5.5A1 1 0 0 0 14.5 1H6Zm7 2H6a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9h-5a1 1 0 0 1-1-1V3Zm5.086 4H15V3.914L18.086 7ZM11 14.414V18a1 1 0 1 0 2 0v-3.586l1.293 1.293a1 1 0 0 0 1.414-1.414l-3-3-.007-.007a.997.997 0 0 0-.697-.286h-.006a.996.996 0 0 0-.697.286l-.008.008-3 2.999a1 1 0 1 0 1.415 1.414L11 14.414Z",fill:"currentColor"}))},l))},$e=["svgProps"];function er(){return er=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},er.apply(this,arguments)}var rr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,$e);return r().createElement(t,er({icon:r().createElement("svg",er({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M22 3H2l8 9.46V19l4 2v-8.54L22 3Z",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},tr=["svgProps"];function nr(){return nr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nr.apply(this,arguments)}var lr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,tr);return r().createElement(t,nr({icon:r().createElement("svg",nr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 3H8v5h4a1 1 0 1 1 0 2H8v2a1 1 0 1 1-2 0V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h1v-4a1 1 0 1 1 2 0v4h11a2 2 0 0 0 2-2v-9h-4a1 1 0 1 1 0-2h4V5a2 2 0 0 0-2-2ZM7 23H5a4 4 0 0 1-4-4V5a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v14a4 4 0 0 1-4 4H7Z",fill:"currentColor"}))},l))},or=["svgProps"];function ar(){return ar=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ar.apply(this,arguments)}var ir=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,or);return r().createElement(t,ar({icon:r().createElement("svg",ar({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-.685v-2.762a2.4 2.4 0 0 0-2.4-2.4h-1.664v-2.705a2.4 2.4 0 0 0-2.4-2.4h-1.664V8.367a2.4 2.4 0 0 0-2.4-2.4H3V5a2 2 0 0 1 2-2Zm7.45 12.838v-2.705a.6.6 0 0 0-.6-.6H3v3.305h9.45ZM3 17.638V19a2 2 0 0 0 2 2h11.515v-2.762a.6.6 0 0 0-.6-.6H3Zm5.387-6.905H3V7.767h4.787a.6.6 0 0 1 .6.6v2.366ZM1 5a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v14a4 4 0 0 1-4 4H5a4 4 0 0 1-4-4V5Z",fill:"currentColor"}))},l))},cr=["svgProps"];function ur(){return ur=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ur.apply(this,arguments)}var sr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,cr);return r().createElement(t,ur({icon:r().createElement("svg",ur({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)"},r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM3.515 3.515a12 12 0 1 1 16.97 16.97 12 12 0 0 1-16.97-16.97Zm4.058 4.64c.136-.272.509-.822 1.219-.822.71 0 1.082.55 1.218.822.166.332.24.72.24 1.095s-.074.763-.24 1.095c-.136.272-.509.822-1.218.822-.71 0-1.083-.55-1.219-.822a2.479 2.479 0 0 1-.24-1.095c0-.375.074-.763.24-1.095Zm6.417 0c.136-.272.509-.822 1.218-.822.71 0 1.083.55 1.219.822.166.332.24.72.24 1.095s-.074.763-.24 1.095c-.136.272-.509.822-1.219.822-.71 0-1.082-.55-1.218-.822a2.478 2.478 0 0 1-.24-1.095c0-.375.074-.763.24-1.095Zm-4.467 6a6.483 6.483 0 0 1 2.5-.488 6.483 6.483 0 0 1 4.574 1.904 1 1 0 1 1-1.416 1.413 4.483 4.483 0 0 0-3.164-1.317h-.002a4.482 4.482 0 0 0-3.196 1.317 1 1 0 1 1-1.416-1.413 6.481 6.481 0 0 1 2.12-1.415Z",fill:"currentColor"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},vr=["svgProps"];function fr(){return fr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fr.apply(this,arguments)}var pr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,vr);return r().createElement(t,fr({icon:r().createElement("svg",fr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.916 11.125h4.25a16.175 16.175 0 0 1 2.845-8.033 9.131 9.131 0 0 0-7.095 8.033ZM12 3.348a14.425 14.425 0 0 0-3.079 7.777h6.158A14.425 14.425 0 0 0 12 3.348Zm3.079 9.527A14.425 14.425 0 0 1 12 20.652a14.425 14.425 0 0 1-3.079-7.777h6.158Zm-7.913 0h-4.25a9.131 9.131 0 0 0 7.095 8.033 16.175 16.175 0 0 1-2.845-8.033Zm6.823 8.033a16.174 16.174 0 0 0 2.845-8.033h4.25a9.132 9.132 0 0 1-7.095 8.033Zm7.095-9.783h-4.25a16.175 16.175 0 0 0-2.845-8.033 9.132 9.132 0 0 1 7.095 8.033ZM1.125 12C1.125 5.994 5.994 1.125 12 1.125S22.875 5.994 22.875 12 18.006 22.875 12 22.875 1.125 18.006 1.125 12Z",fill:"currentColor"}))},l))},hr=["svgProps"];function gr(){return gr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gr.apply(this,arguments)}var Or=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,hr);return r().createElement(t,gr({icon:r().createElement("svg",gr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.772 4.222a2 2 0 0 1 2.456 0l6 4.667A2 2 0 0 1 20 10.467V20a1 1 0 0 1-1 1h-3v-9a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v9H5a1 1 0 0 1-1-1v-9.533a2 2 0 0 1 .772-1.578l6-4.667ZM10 21v-8h4v8h-4Zm5 2h4a3 3 0 0 0 3-3v-9.533a4 4 0 0 0-1.544-3.157l-6-4.667a4 4 0 0 0-4.912 0l-6 4.667A4 4 0 0 0 2 10.467V20a3 3 0 0 0 3 3h10Z",fill:"currentColor"}))},l))},br=["svgProps"];function yr(){return yr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},yr.apply(this,arguments)}var mr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,br);return r().createElement(t,yr({icon:r().createElement("svg",yr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.78 2.548a.824.824 0 0 1-.503 1.055l-1.013.36V9.06l3.538.864c.02.005.041.01.061.017l1.564.51a.824.824 0 0 1 .531 1.042.833.833 0 0 1-1.05.527l-.473-.154v8.483h.733c.46 0 .832.37.832.825a.829.829 0 0 1-.832.826H1.832A.829.829 0 0 1 1 21.174c0-.456.373-.825.832-.825h.733V9.559l-.452.16a.834.834 0 0 1-1.064-.499.824.824 0 0 1 .503-1.055l1.013-.36v-4.98c0-.455.372-.825.831-.825h3.129c.46 0 .832.37.832.826v3.233l8.769-3.445a.837.837 0 0 1 .026-.01l1.564-.555a.834.834 0 0 1 1.064.499ZM5.693 6.693V3.652H4.228v3.562l1.465-.521ZM4.228 8.968v11.38h1.987v-6.162c0-1.101.91-1.973 2.005-1.973h3.389c1.095 0 2.005.872 2.005 1.973v6.163H15.6V4.596L6.831 8.042a.841.841 0 0 1-.026.01l-2.577.916Zm13.036 1.792v9.589h2.508v-8.976l-2.508-.613ZM7.878 20.35h4.072v-6.163a.332.332 0 0 0-.341-.322h-3.39c-.2 0-.34.156-.34.322v6.163Z",fill:"currentColor"}))},l))},dr=["svgProps"];function wr(){return wr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wr.apply(this,arguments)}var jr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,dr);return r().createElement(t,wr({icon:r().createElement("svg",wr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.24 3h9.52a3.002 3.002 0 0 1 2.685 1.665l3.45 6.887A1 1 0 0 1 23 12v6a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3v-6a1 1 0 0 1 .106-.448l3.448-6.887.001-.001A3 3 0 0 1 7.24 3Zm0 2a1 1 0 0 0-.894.555l-.002.003L3.62 11H8a1 1 0 0 1 .832.445L10.535 14h2.93l1.703-2.555A1 1 0 0 1 16 11h4.38l-2.724-5.442-.002-.003A1 1 0 0 0 16.76 5H7.24ZM21 13h-4.465l-1.703 2.555A1 1 0 0 1 14 16h-4a1 1 0 0 1-.832-.445L7.465 13H3v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-5Z",fill:"currentColor"}))},l))},Pr=["svgProps"];function Er(){return Er=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Er.apply(this,arguments)}var Zr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Pr);return r().createElement(t,Er({icon:r().createElement("svg",Er({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11-1a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Zm0-4a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H12Z",fill:"currentColor"}))},l))},xr=["svgProps"];function Sr(){return Sr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Sr.apply(this,arguments)}var Mr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,xr);return r().createElement(t,Sr({icon:r().createElement("svg",Sr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2ZM1 5a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v14a4 4 0 0 1-4 4H5a4 4 0 0 1-4-4V5Zm14.43 4.76L12.95 7.9v8.2l2.48-1.86a.95.95 0 0 1 1.14 1.52l-3.992 2.994a.946.946 0 0 1-1.156 0L7.43 15.76a.95.95 0 0 1 1.14-1.52l2.48 1.86V7.9L8.57 9.76a.95.95 0 1 1-1.14-1.52l4-3a.95.95 0 0 1 1.14 0l4 3a.95.95 0 0 1-1.14 1.52Z",fill:"currentColor"}))},l))},Hr=["svgProps"];function Cr(){return Cr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Cr.apply(this,arguments)}var Rr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Hr);return r().createElement(t,Cr({icon:r().createElement("svg",Cr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.707 1.293a1 1 0 0 1 0 1.414L20.414 4l2.293 2.293a1 1 0 0 1 0 1.414l-3.5 3.5a1 1 0 0 1-1.414 0L15.5 8.914l-2.746 2.747A6.5 6.5 0 0 1 2.9 20.09l-.007-.008a6.5 6.5 0 0 1 8.43-9.821l8.97-8.97a1 1 0 0 1 1.414 0ZM10.722 12.356a4.501 4.501 0 1 0 0 0ZM16.914 7.5 18.5 9.086 20.586 7 19 5.414 16.914 7.5Z",fill:"currentColor"}))},l))},Vr=["svgProps"];function kr(){return kr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},kr.apply(this,arguments)}var Ar=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Vr);return r().createElement(t,kr({icon:r().createElement("svg",kr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.553 1.106a1 1 0 0 1 .894 0l10 5a1 1 0 0 1 0 1.788l-10 5a1 1 0 0 1-.894 0l-10-5a1 1 0 0 1 0-1.788l10-5ZM4.236 7 12 10.882 19.764 7 12 3.118 4.236 7Zm-3.13 4.553a1 1 0 0 1 1.341-.447L12 15.882l9.553-4.776a1 1 0 1 1 .894 1.788l-10 5a1 1 0 0 1-.894 0l-10-5a1 1 0 0 1-.447-1.341Zm0 5a1 1 0 0 1 1.341-.447L12 20.882l9.553-4.776a1 1 0 1 1 .894 1.788l-10 5a1 1 0 0 1-.894 0l-10-5a1 1 0 0 1-.447-1.341Z",fill:"currentColor"}))},l))},Br=["svgProps"];function Ir(){return Ir=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ir.apply(this,arguments)}var Lr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Br);return r().createElement(t,Ir({icon:r().createElement("svg",Ir({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)"},r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.85.85a2 2 0 0 0-2 2v5.895a2 2 0 0 0 2 2h5.894a2 2 0 0 0 2-2V2.85a2 2 0 0 0-2-2H2.85Zm0 2h5.894v5.895H2.85V2.85Zm0 10.405a2 2 0 0 0-2 2v5.894a2 2 0 0 0 2 2h5.894a2 2 0 0 0 2-2v-5.894a2 2 0 0 0-2-2H2.85Zm0 2h5.894v5.894H2.85v-5.894ZM13.255 2.978a1 1 0 0 1 1-1h7.894a1 1 0 0 1 0 2h-7.894a1 1 0 0 1-1-1Zm1 4.639a1 1 0 1 0 0 2h7.894a1 1 0 0 0 0-2h-7.894Zm-1 7.766a1 1 0 0 1 1-1h7.894a1 1 0 0 1 0 2h-7.894a1 1 0 0 1-1-1Zm1 4.639a1 1 0 1 0 0 2h7.894a1 1 0 0 0 0-2h-7.894Z",fill:"currentColor"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},Fr=["svgProps"];function zr(){return zr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zr.apply(this,arguments)}var Wr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Fr);return r().createElement(t,zr({icon:r().createElement("svg",zr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.996 1.067a6 6 0 0 0-4.22 1.684l-.011.01-1.72 1.71a1 1 0 0 0 1.41 1.418l1.715-1.704a4 4 0 0 1 5.656 5.654l-2.993 2.994a4 4 0 0 1-6.032-.432 1 1 0 0 0-1.602 1.198 6 6 0 0 0 9.048.648l3-3 .012-.012a6 6 0 0 0-4.263-10.168ZM10.425 8.01a6 6 0 0 0-4.672 1.743l-3 3-.012.012a6 6 0 0 0 8.484 8.484l.012-.012 1.71-1.71a1 1 0 0 0-1.414-1.414l-1.704 1.703a4 4 0 0 1-5.655-5.655l2.993-2.994a4 4 0 0 1 6.032.432 1 1 0 1 0 1.602-1.198 6 6 0 0 0-4.376-2.39Z",fill:"currentColor"}))},l))},Dr=["svgProps"];function Tr(){return Tr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Tr.apply(this,arguments)}var _r=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Dr);return r().createElement(t,Tr({icon:r().createElement("svg",Tr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 5a1 1 0 0 0 0 2h.01a1 1 0 0 0 0-2H3Zm5 0a1 1 0 0 0 0 2h13a1 1 0 1 0 0-2H8Zm0 6a1 1 0 1 0 0 2h13a1 1 0 1 0 0-2H8Zm-1 7a1 1 0 0 1 1-1h13a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm-5-6a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm1 5a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H3Z",fill:"currentColor"}))},l))},qr=["svgProps"];function Nr(){return Nr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nr.apply(this,arguments)}var Ur=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,qr);return r().createElement(t,Nr({icon:r().createElement("svg",Nr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.364 4.364A.9.9 0 0 1 5 4.1h4a1.1 1.1 0 1 0 0-2.2H5A3.1 3.1 0 0 0 1.9 5v14A3.1 3.1 0 0 0 5 22.1h4a1.1 1.1 0 0 0 0-2.2H5a.9.9 0 0 1-.9-.9V5a.9.9 0 0 1 .264-.636Zm10.858 1.858a1.1 1.1 0 0 1 1.556 0l5 5a1.096 1.096 0 0 1 .321.822 1.096 1.096 0 0 1-.324.737l-4.997 4.997a1.1 1.1 0 1 1-1.556-1.556l3.122-3.122H9a1.1 1.1 0 1 1 0-2.2h9.344l-3.122-3.122a1.1 1.1 0 0 1 0-1.556Z",fill:"currentColor"}))},l))},Gr=["svgProps"];function Kr(){return Kr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kr.apply(this,arguments)}var Qr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Gr);return r().createElement(t,Kr({icon:r().createElement("svg",Kr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 6a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v1.45l-8.5 5.403-.003.001a.94.94 0 0 1-.994 0L3 7.451V6ZM1 7.983V19a3 3 0 0 0 3 3h16a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H4a3 3 0 0 0-3 3v1.983ZM21 9.82V19a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V9.82l7.434 4.724.005.003a2.94 2.94 0 0 0 3.122 0l.005-.003L21 9.82Z",fill:"currentColor"}))},l))},Xr=["svgProps"];function Jr(){return Jr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Jr.apply(this,arguments)}var Yr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Xr);return r().createElement(t,Jr({icon:r().createElement("svg",Jr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M2.95 6c0-.58.47-1.05 1.05-1.05h16a1.05 1.05 0 1 1 0 2.1H4c-.58 0-1.05-.47-1.05-1.05ZM2.95 12c0-.58.47-1.05 1.05-1.05h16a1.05 1.05 0 1 1 0 2.1H4c-.58 0-1.05-.47-1.05-1.05ZM4 16.95a1.05 1.05 0 1 0 0 2.1h16a1.05 1.05 0 1 0 0-2.1H4Z",fill:"currentColor"}))},l))},$r=["svgProps"];function et(){return et=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},et.apply(this,arguments)}var rt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,$r);return r().createElement(t,et({icon:r().createElement("svg",et({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)"},r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.858 12.027a9.169 9.169 0 1 1 18.337 0 9.169 9.169 0 0 1-18.337 0ZM12.026.857C5.859.858.859 5.859.859 12.028c0 6.168 5 11.168 11.168 11.168 6.169 0 11.17-5 11.17-11.168 0-6.169-5.001-11.17-11.17-11.17Zm4.497 5.5a1.22 1.22 0 0 0-1.725 0l-1.8 1.8c-.059.06-.11.123-.155.19a3.052 3.052 0 1 0 1.691 1.69c.067-.044.13-.095.19-.154l1.8-1.8a1.22 1.22 0 0 0 0-1.726Zm-3.864 5.775a1.35 1.35 0 1 1-1.91-1.91 1.35 1.35 0 0 1 1.91 1.91ZM7.146 16.5c0-.552.416-1 .93-1h7.902c.513 0 .93.448.93 1s-.417 1-.93 1H8.075c-.513 0-.93-.448-.93-1Z",fill:"currentColor"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},tt=["svgProps"];function nt(){return nt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nt.apply(this,arguments)}var lt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,tt);return r().createElement(t,nt({icon:r().createElement("svg",nt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1ZM8 11a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z",fill:"currentColor"}))},l))},ot=["svgProps"];function at(){return at=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},at.apply(this,arguments)}var it=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ot);return r().createElement(t,at({icon:r().createElement("svg",at({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M5 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM17 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z",fill:"currentColor"}))},l))},ct=["svgProps"];function ut(){return ut=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ut.apply(this,arguments)}var st=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ct);return r().createElement(t,ut({icon:r().createElement("svg",ut({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M10 5a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z",fill:"currentColor"}))},l))},vt=["svgProps"];function ft(){return ft=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ft.apply(this,arguments)}var pt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,vt);return r().createElement(t,ft({icon:r().createElement("svg",ft({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2.837c-5.1 0-9.167 3.953-9.167 8.744 0 2.307.937 4.41 2.478 5.977.5.51.947 1.318.771 2.251v.002c-.09.477-.236.94-.43 1.38a5.59 5.59 0 0 0 2.943-1.083.915.915 0 0 1 .79-.143c.853.24 1.732.361 2.614.36H12c5.1 0 9.167-3.953 9.167-8.744S17.1 2.837 12 2.837Zm.001 19.325C18.036 22.16 23 17.462 23 11.58 23 5.7 18.036 1 12 1S1 5.7 1 11.58c0 2.82 1.148 5.378 3.005 7.267.248.253.302.484.276.621l.9.17-.9-.171a4.43 4.43 0 0 1-.907 1.964.92.92 0 0 0 .544 1.482c.2.038.402.067.605.087M6.84 10.635c.247-.259.591-.412.959-.412.367 0 .711.153.959.412a1.369 1.369 0 0 1 0 1.892 1.327 1.327 0 0 1-1.918 0 1.369 1.369 0 0 1 0-1.892Zm4.201 0c.248-.259.592-.412.959-.412s.711.153.959.412a1.369 1.369 0 0 1 0 1.892 1.327 1.327 0 0 1-1.918 0 1.369 1.369 0 0 1 0-1.892Zm4.201 0a1.327 1.327 0 0 1 1.918 0 1.369 1.369 0 0 1 0 1.892 1.327 1.327 0 0 1-1.918 0 1.369 1.369 0 0 1 0-1.892Z",fill:"currentColor"}))},l))},ht=["svgProps"];function gt(){return gt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gt.apply(this,arguments)}var Ot=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ht);return r().createElement(t,gt({icon:r().createElement("svg",gt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M15.99 7.38c-.42-.42-1.155-.315-1.47.105-.42.42-.315 1.155.105 1.47.945.735 1.47 1.89 1.47 3.15 0 2.205-1.785 4.095-4.095 4.095-2.31 0-4.095-1.89-4.095-4.2 0-1.155.525-2.31 1.47-3.15.42-.42.525-1.05.105-1.47-.42-.42-1.05-.525-1.47-.105-1.365 1.26-2.205 2.94-2.205 4.725 0 3.36 2.73 6.195 6.195 6.195 3.36 0 6.195-2.73 6.195-6.195 0-1.785-.84-3.465-2.205-4.62Z",fill:"currentColor"}),r().createElement("path",{d:"M12 1.5C6.225 1.5 1.5 6.225 1.5 12S6.225 22.5 12 22.5 22.5 17.775 22.5 12 17.775 1.5 12 1.5Zm0 18.9c-4.62 0-8.4-3.78-8.4-8.4 0-4.62 3.78-8.4 8.4-8.4 4.62 0 8.4 3.78 8.4 8.4 0 4.62-3.78 8.4-8.4 8.4Z",fill:"currentColor"}),r().createElement("path",{d:"M12 11.055c.63 0 1.05-.42 1.05-1.05v-3.78c0-.63-.42-1.05-1.05-1.05-.63 0-1.05.42-1.05 1.05v3.885c0 .525.42.945 1.05.945Z",fill:"currentColor"}))},l))},bt=["svgProps"];function yt(){return yt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},yt.apply(this,arguments)}var mt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,bt);return r().createElement(t,yt({icon:r().createElement("svg",yt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"m21.44 11.05-9.19 9.19a6.003 6.003 0 0 1-8.49-8.49l8.57-8.57A4.006 4.006 0 0 1 18 8.84l-8.59 8.57a2.001 2.001 0 1 1-2.83-2.83l8.49-8.48",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},dt=["svgProps"];function wt(){return wt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wt.apply(this,arguments)}var jt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,dt);return r().createElement(t,wt({icon:r().createElement("svg",wt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM5 1a4 4 0 0 0-4 4v14a4 4 0 0 0 4 4h14a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4H5Zm4 7h3.444C14.022 8 15 9.048 15 10s-.978 2-2.556 2H9V8Zm0 6h3.444C14.794 14 17 12.362 17 10s-2.206-4-4.556-4H8a1 1 0 0 0-1 1v10a1 1 0 1 0 2 0v-3Z",fill:"currentColor"}))},l))},Pt=["svgProps"];function Et(){return Et=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Et.apply(this,arguments)}var Zt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Pt);return r().createElement(t,Et({icon:r().createElement("svg",Et({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1A11 11 0 0 0 12 1Zm1 10V3.056A9 9 0 0 1 20.944 11H13ZM8.4 3.747a1 1 0 0 0-.8-1.834A11 11 0 1 0 22.131 16.28a1 1 0 1 0-1.842-.778A9 9 0 1 1 8.399 3.747Z",fill:"currentColor"}))},l))},xt=["svgProps"];function St(){return St=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},St.apply(this,arguments)}var Mt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,xt);return r().createElement(t,St({icon:r().createElement("svg",St({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 5a1 1 0 1 0-2 0v6H5a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6V5Z",fill:"currentColor"}))},l))},Ht=["svgProps"];function Ct(){return Ct=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ct.apply(this,arguments)}var Rt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Ht);return r().createElement(t,Ct({icon:r().createElement("svg",Ct({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11-5a1 1 0 0 1 1 1v3h3a1 1 0 1 1 0 2h-3v3a1 1 0 1 1-2 0v-3H8a1 1 0 1 1 0-2h3V8a1 1 0 0 1 1-1Z",fill:"currentColor"}))},l))},Vt=["svgProps"];function kt(){return kt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},kt.apply(this,arguments)}var At=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Vt);return r().createElement(t,kt({icon:r().createElement("svg",kt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v6h1a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-1v3a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-3H4a3 3 0 0 1-3-3v-5a3 3 0 0 1 3-3h1V2Zm-1 8a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h1v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3h1a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H4Zm13-2H7V3h10v5Zm0 7H7v6h10v-6Z",fill:"currentColor"}))},l))},Bt=["svgProps"];function It(){return It=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},It.apply(this,arguments)}var Lt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Bt);return r().createElement(t,It({icon:r().createElement("svg",It({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11.27-3.97c-.493-.083-.999.008-1.426.252a2.02 2.02 0 0 0-.904 1.062 1 1 0 0 1-1.88-.682 4.02 4.02 0 0 1 1.793-2.117 4.166 4.166 0 0 1 2.746-.488 4.11 4.11 0 0 1 2.431 1.355c.625.721.971 1.639.97 2.59 0 1.544-1.176 2.554-2 3.088a8.333 8.333 0 0 1-1.726.844l-.036.011-.01.004-.005.001h-.001l-.001.001-.302-.932.301.932a1 1 0 0 1-.617-1.902h.002l.016-.006a4.523 4.523 0 0 0 .378-.149c.255-.11.588-.272.914-.483.72-.466 1.087-.954 1.087-1.409v-.001c0-.464-.167-.917-.481-1.279a2.11 2.11 0 0 0-1.249-.693ZM16 10.002h-1 1ZM12 16a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H12Z",fill:"currentColor"}))},l))},Ft=["svgProps"];function zt(){return zt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zt.apply(this,arguments)}var Wt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Ft);return r().createElement(t,zt({icon:r().createElement("svg",zt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1Zm0 4.5a1 1 0 0 0-1 1v4c0 .056.005.112.014.166A3.001 3.001 0 0 0 11 16.329V17a1 1 0 1 0 2 0v-.67a3.001 3.001 0 0 0-.014-5.664c.01-.054.014-.11.014-.166v-4a1 1 0 0 0-1-1Zm1.3 8a1.3 1.3 0 1 1-2.6 0 1.3 1.3 0 0 1 2.6 0Z",fill:"currentColor"}))},l))},Dt=["svgProps"];function Tt(){return Tt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Tt.apply(this,arguments)}var _t=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Dt);return r().createElement(t,Tt({icon:r().createElement("svg",Tt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M21 2v6m0 0h-6m6 0-3-2.7A9 9 0 0 0 3 12m0 10v-6m0 0h6m-6 0 3 2.7A9 9 0 0 0 21 12",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},qt=["svgProps"];function Nt(){return Nt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nt.apply(this,arguments)}var Ut=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,qt);return r().createElement(t,Nt({icon:r().createElement("svg",Nt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.147 4.383a11.98 11.98 0 0 1 4.92-1.453c-.182 2.597-1.234 6.409-5.552 9.312a21.445 21.445 0 0 1-3.297 1.704l-2.162-2.162a21.107 21.107 0 0 1 1.702-3.249l.005-.008a11.98 11.98 0 0 1 4.384-4.144Zm-.732 10.013c-.813.455-1.653.861-2.515 1.216v3.23c.137-.043.282-.09.43-.144.864-.314 1.61-.734 1.921-1.198.156-.234.265-.584.309-1.048.042-.457.015-.96-.048-1.445-.027-.214-.061-.42-.097-.611Zm-4.315.977L8.627 12.9H4a.9.9 0 0 1-.886-1.06L4 12c-.886-.16-.886-.16-.885-.161v-.005l.002-.01.006-.03.023-.112a12.523 12.523 0 0 1 .464-1.625c.324-.893.904-2.146 1.89-2.805.577-.385 1.256-.546 1.881-.604a8.498 8.498 0 0 1 1.842.054c.554.072 1.051.177 1.414.266A13.78 13.78 0 0 1 22.006 1.1a.9.9 0 0 1 .894.9c0 2.801-.787 7.687-5.865 11.375.088.362.192.855.263 1.402.072.563.113 1.209.054 1.842-.058.625-.22 1.304-.603 1.88l-.001.001c-.66.986-1.912 1.566-2.805 1.89a12.512 12.512 0 0 1-1.736.487l-.032.006-.01.002h-.003L12 20l.16.886A.9.9 0 0 1 11.1 20v-4.627ZM9.623 8.589c-.461.811-.872 1.65-1.232 2.511H5.158c.043-.137.09-.282.144-.43.314-.864.734-1.61 1.198-1.922.234-.155.584-.264 1.048-.307.456-.043.96-.016 1.444.047.222.028.435.064.631.101ZM6 15.089a3.08 3.08 0 0 0-2.08.722c-.511.43-.89 1.026-1.174 1.607-.289.59-.509 1.23-.674 1.807a17.244 17.244 0 0 0-.457 2.103l-.005.037-.001.01v.004h-.001v.001l.892.12-.892-.12a.9.9 0 0 0 1.011 1.012L2.5 21.5l.12.892h.004l.011-.002.037-.005.132-.02a17.264 17.264 0 0 0 1.97-.437 11.19 11.19 0 0 0 1.808-.674c.58-.284 1.176-.663 1.606-1.174.99-1.172 1.003-2.996-.146-4.13l-.01-.011A3.08 3.08 0 0 0 6 15.089Zm-.921 2.1L4.5 16.5l.58.69a1.28 1.28 0 0 1 1.703.047c.426.426.457 1.177.03 1.683l-.002.002c-.2.238-.544.484-1.019.716a9.422 9.422 0 0 1-1.512.56c-.224.064-.442.12-.645.168.048-.203.104-.42.168-.645a9.416 9.416 0 0 1 .56-1.512c.232-.475.478-.819.716-1.019Z",fill:"currentColor"}))},l))},Gt=["svgProps"];function Kt(){return Kt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kt.apply(this,arguments)}var Qt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Gt);return r().createElement(t,Kt({icon:r().createElement("svg",Kt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 3a1 1 0 0 1 1-1h7c1.605 0 2.882.612 3.747 1.586C19.597 4.54 20 5.787 20 7s-.403 2.459-1.253 3.414C17.882 11.388 16.605 12 15 12H9v2h6a1 1 0 1 1 0 2H9v5a1 1 0 1 1-2 0v-5H5a1 1 0 1 1 0-2h2v-2H5a1 1 0 1 1 0-2h2V3Zm2 7h6c1.062 0 1.785-.388 2.252-.914C17.736 8.54 18 7.786 18 7c0-.787-.264-1.541-.748-2.086C16.785 4.388 16.062 4 15 4H9v6Z",fill:"currentColor"}))},l))},Xt=["svgProps"];function Jt(){return Jt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Jt.apply(this,arguments)}var Yt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Xt);return r().createElement(t,Jt({icon:r().createElement("svg",Jt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)",fillRule:"evenodd",clipRule:"evenodd",fill:"currentColor"},r().createElement("path",{d:"m8.06 1.726-.001.005-.111.044a11.002 11.002 0 0 0-6.619 12.897 10.998 10.998 0 0 0 11.917 8.258 11.005 11.005 0 0 0 8.42-5.671l.001-.002c1.14-2.05 1.536-4.473 1.237-6.8a79.62 79.62 0 0 1-.677.495c-.437.317-.87.631-1.296.968.12 3.75-2.465 7.323-5.988 8.524a8.916 8.916 0 0 1-7.06-.516 9.05 9.05 0 0 1-4.659-6.186l-.001-.006c-.334-1.846-.146-3.817.69-5.525a9.005 9.005 0 0 1 5.931-4.888c2.404-.623 4.996-.121 7.073 1.188.56-.45 1.137-.877 1.731-1.28C15.7.943 11.536.366 8.06 1.726Zm12.845 3.805a1056.928 1056.928 0 0 0-8.714 6.412l-.138.103-.147-.09c-1.31-.8-2.617-1.61-3.908-2.446.003.384.003.768.002 1.15v.085c0 .466 0 .93.004 1.388a634.21 634.21 0 0 1 4 2.506c1.12-.825 2.241-1.649 3.363-2.472 2.2-1.615 4.399-3.23 6.584-4.857-.261-.624-.647-1.195-1.046-1.78Z"}),r().createElement("path",{d:"m8.1 1.764-.001.005-.133.053A10.952 10.952 0 0 0 1.378 14.66a10.949 10.949 0 0 0 11.862 8.22 10.955 10.955 0 0 0 8.382-5.645l.001-.002c1.12-2.015 1.52-4.394 1.242-6.685-.204.151-.407.298-.608.445-.431.312-.856.62-1.276.95.11 3.764-2.487 7.343-6.022 8.548a8.965 8.965 0 0 1-7.1-.518 9.101 9.101 0 0 1-4.684-6.22l-.001-.008c-.336-1.855-.147-3.837.693-5.556a9.055 9.055 0 0 1 5.965-4.914c2.406-.624 5-.127 7.081 1.175a26.358 26.358 0 0 1 1.65-1.221C15.638.992 11.534.429 8.1 1.764Zm-.058-.085C11.534.313 15.716.893 18.68 3.192l.054.042-.057.039c-.593.402-1.17.828-1.728 1.277l-.028.023-.03-.02c-2.066-1.302-4.644-1.8-7.033-1.181a8.959 8.959 0 0 0-5.9 4.86c-.83 1.697-1.017 3.657-.685 5.495l.001.005a8.995 8.995 0 0 0 4.632 6.152 8.865 8.865 0 0 0 7.022.513c3.503-1.195 6.073-4.749 5.954-8.475l-.001-.025.02-.016c.427-.338.86-.652 1.298-.97a78.6 78.6 0 0 0 .677-.494l.068-.05.01.084c.3 2.336-.097 4.77-1.242 6.83l-.001.002a11.05 11.05 0 0 1-13.667 5.034A11.053 11.053 0 0 1 1.252 9.436a11.049 11.049 0 0 1 6.677-7.707l.09-.036.001-.005.022-.009ZM20.917 5.46l.029.042c.4.585.788 1.16 1.051 1.789l.016.036-.032.023c-2.186 1.627-4.385 3.242-6.584 4.857-1.122.823-2.244 1.647-3.363 2.472l-.028.02-.029-.018-.948-.596-.006-.003a633.119 633.119 0 0 0-3.045-1.906l-.023-.015v-.027c-.005-.46-.005-.923-.005-1.388v-.086c0-.382 0-.766-.002-1.15v-.092l.077.05c1.29.835 2.597 1.646 3.907 2.445l.118.072.112-.083c2.895-2.153 5.8-4.29 8.713-6.412l.042-.03Zm-.025.141c-2.9 2.112-5.79 4.239-8.67 6.382l-.166.123-.176-.108a177.977 177.977 0 0 1-3.831-2.395c.002.353.002.706.001 1.057v.085c0 .457 0 .91.004 1.36 1.01.627 2.015 1.259 3.022 1.892l.003.002.923.58c1.11-.819 2.223-1.636 3.335-2.453a1273.11 1273.11 0 0 0 6.553-4.833c-.253-.59-.616-1.133-.998-1.692Z"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},$t=["svgProps"];function en(){return en=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},en.apply(this,arguments)}var rn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,$t);return r().createElement(t,en({icon:r().createElement("svg",en({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 4a7 7 0 1 0 4.856 12.041.998.998 0 0 1 .185-.185A7 7 0 0 0 11 4Zm7.032 12.618a9 9 0 1 0-1.414 1.414l3.675 3.675a1 1 0 0 0 1.414-1.414l-3.675-3.675Z",fill:"currentColor"}))},l))},tn=["svgProps"];function nn(){return nn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nn.apply(this,arguments)}var ln=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,tn);return r().createElement(t,nn({icon:r().createElement("svg",nn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22.707 1.293a.998.998 0 0 1 .23 1.058l-6.993 19.98a1 1 0 0 1-1.858.075l-3.844-8.648-8.648-3.844a1 1 0 0 1 .076-1.858l19.979-6.993a1 1 0 0 1 1.058.23ZM18.194 4.39 4.711 9.111l6.067 2.696 7.416-7.416Zm-6.001 8.83 7.415-7.415-4.719 13.483-2.696-6.068Z",fill:"currentColor"}))},l))},on=["svgProps"];function an(){return an=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},an.apply(this,arguments)}var cn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,on);return r().createElement(t,an({icon:r().createElement("svg",an({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)",fillRule:"evenodd",clipRule:"evenodd",fill:"currentColor"},r().createElement("path",{d:"M3.1.6A2.5 2.5 0 0 0 .6 3.1v5.6a2.5 2.5 0 0 0 2.5 2.5h5.6a2.5 2.5 0 0 0 2.5-2.5V3.1A2.5 2.5 0 0 0 8.7.6H3.1Zm-.5 2.5a.5.5 0 0 1 .5-.5h5.6a.5.5 0 0 1 .5.5v5.6a.5.5 0 0 1-.5.5H3.1a.5.5 0 0 1-.5-.5V3.1ZM3.1 12.8a2.5 2.5 0 0 0-2.5 2.5v5.6a2.5 2.5 0 0 0 2.5 2.5h5.6a2.5 2.5 0 0 0 2.5-2.5v-5.6a2.5 2.5 0 0 0-2.5-2.5H3.1Zm-.5 2.5a.5.5 0 0 1 .5-.5h5.6a.5.5 0 0 1 .5.5v5.6a.5.5 0 0 1-.5.5H3.1a.5.5 0 0 1-.5-.5v-5.6ZM12.8 18.1a5.3 5.3 0 1 1 10.6 0 5.3 5.3 0 0 1-10.6 0Zm5.3-3.3a3.3 3.3 0 1 0 0 6.6 3.3 3.3 0 0 0 0-6.6ZM15.3.6a2.5 2.5 0 0 0-2.5 2.5v5.6a2.5 2.5 0 0 0 2.5 2.5h5.6a2.5 2.5 0 0 0 2.5-2.5V3.1A2.5 2.5 0 0 0 20.9.6h-5.6Zm-.5 2.5a.5.5 0 0 1 .5-.5h5.6a.5.5 0 0 1 .5.5v5.6a.5.5 0 0 1-.5.5h-5.6a.5.5 0 0 1-.5-.5V3.1Z"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},un=["svgProps"];function sn(){return sn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},sn.apply(this,arguments)}var vn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,un);return r().createElement(t,sn({icon:r().createElement("svg",sn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M9.2 3.044C9.305 2.442 9.852 2 10.492 2h3.017c.64 0 1.187.442 1.292 1.044l.247 1.424c.074.415.365.762.751.966.086.045.171.093.256.142.377.217.838.285 1.25.137l1.417-.506c.29-.105.61-.107.902-.007.292.1.537.295.692.551l1.508 2.497c.155.256.21.557.154.848a1.24 1.24 0 0 1-.456.742l-1.167.919c-.341.266-.51.68-.502 1.102.002.094.002.189 0 .283-.008.42.16.834.5 1.1l1.17.92c.493.39.621 1.06.303 1.59l-1.51 2.496c-.156.256-.401.451-.693.551-.291.1-.61.098-.9-.006l-1.417-.506c-.413-.148-.873-.08-1.252.137-.084.05-.17.097-.256.143-.385.203-.676.55-.75.965l-.247 1.422c-.105.604-.652 1.046-1.292 1.046H10.49c-.64 0-1.187-.442-1.292-1.044l-.248-1.424c-.072-.415-.363-.762-.75-.966a7.65 7.65 0 0 1-.255-.142c-.379-.217-.838-.285-1.252-.137l-1.417.506c-.29.104-.609.107-.9.007a1.296 1.296 0 0 1-.693-.551l-1.509-2.497a1.202 1.202 0 0 1-.154-.848 1.24 1.24 0 0 1 .457-.742l1.168-.919c.34-.266.508-.68.5-1.102a7.35 7.35 0 0 1 0-.283c.008-.42-.16-.834-.5-1.1l-1.168-.92a1.24 1.24 0 0 1-.456-.742 1.202 1.202 0 0 1 .153-.847l1.51-2.497c.154-.256.4-.452.692-.552.292-.1.611-.097.902.007l1.415.506c.414.148.873.08 1.252-.137.083-.05.17-.097.256-.143.386-.203.677-.55.749-.965L9.2 3.044Z",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}),r().createElement("path",{d:"M15.636 12a3.637 3.637 0 1 1-7.273 0 3.637 3.637 0 0 1 7.273 0Z",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},fn=["svgProps"];function pn(){return pn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},pn.apply(this,arguments)}var hn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,fn);return r().createElement(t,pn({icon:r().createElement("svg",pn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-2.842 4.815a4 4 0 1 0-1.008-1.727L8.842 9.185a4 4 0 1 0 0 5.63l5.309 3.093A4.003 4.003 0 0 0 18 23a4 4 0 1 0-2.839-6.818l-5.31-3.095a4.003 4.003 0 0 0 0-2.175l5.307-3.097ZM7.7 10.945a1.012 1.012 0 0 0 .056.096c.155.285.244.612.244.959a1.99 1.99 0 0 1-.3 1.054A1.999 1.999 0 0 1 4 12a2 2 0 0 1 3.7-1.054ZM16 19c0-.325.078-.632.215-.903a1.015 1.015 0 0 0 .123-.21A2 2 0 1 1 16 19Z",fill:"currentColor"}))},l))},gn=["svgProps"];function On(){return On=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},On.apply(this,arguments)}var bn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,gn);return r().createElement(t,On({icon:r().createElement("svg",On({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.05 5A2.95 2.95 0 0 1 5 2.05h14A2.95 2.95 0 0 1 21.95 5v14A2.95 2.95 0 0 1 19 21.95H5A2.95 2.95 0 0 1 2.05 19V5ZM5 3.95c-.58 0-1.05.47-1.05 1.05v3.051A.964.964 0 0 1 4 8.05h16l.05.001V5c0-.58-.47-1.05-1.05-1.05H5Zm9.05 6h-4.1v4.1h4.1v-4.1Zm1.9 4.1v-4.1H20l.05-.001v4.102a.922.922 0 0 0-.05-.001h-4.05Zm-1.9 1.9h-4.1V20l-.001.05h4.102a.922.922 0 0 1-.001-.05v-4.05Zm1.899 4.1.001-.05v-4.05H20l.05-.001V19c0 .58-.47 1.05-1.05 1.05h-3.051ZM4 9.95h4.05v4.1H4l-.05.001V9.95L4 9.95Zm0 6h4.05V20l.001.05H5c-.58 0-1.05-.47-1.05-1.05v-3.051l.05.001Z",fill:"currentColor"}))},l))},yn=["svgProps"];function mn(){return mn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},mn.apply(this,arguments)}var dn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,yn);return r().createElement(t,mn({icon:r().createElement("svg",mn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.968 6.382a9 9 0 0 0 12.65 12.65L4.968 6.382Zm1.414-1.414 12.65 12.65a9 9 0 0 0-12.65-12.65ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Z",fill:"currentColor"}))},l))},wn=["svgProps"];function jn(){return jn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},jn.apply(this,arguments)}var Pn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,wn);return r().createElement(t,jn({icon:r().createElement("svg",jn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.228 4.223a2 2 0 0 0-2.456 0l-6 4.667A2 2 0 0 0 4 10.468v9.533a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9.533a2 2 0 0 0-.772-1.578l-6-4.667ZM9.544 2.644a4 4 0 0 1 4.912 0l6 4.667A4 4 0 0 1 22 10.468v9.533a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-9.533a4 4 0 0 1 1.544-3.157l6-4.667Zm1.406 6.008a1.002 1.002 0 1 1 2.004 0v4.146a1.002 1.002 0 1 1-2.004 0V8.652ZM9.316 11.25a.9.9 0 0 0-1.34-1.2 5.4 5.4 0 1 0 8.05 0 .9.9 0 1 0-1.342 1.2 3.6 3.6 0 1 1-5.367 0Z",fill:"currentColor"}))},l))},En=["svgProps"];function Zn(){return Zn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Zn.apply(this,arguments)}var xn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,En);return r().createElement(t,Zn({icon:r().createElement("svg",Zn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.952 1.952A3.25 3.25 0 0 1 7.25 1h9.5A3.25 3.25 0 0 1 20 4.25v15.5A3.25 3.25 0 0 1 16.75 23h-9.5A3.25 3.25 0 0 1 4 19.75V4.25c0-.862.342-1.689.952-2.298ZM7.25 3A1.25 1.25 0 0 0 6 4.25v15.5A1.25 1.25 0 0 0 7.25 21h9.5A1.25 1.25 0 0 0 18 19.75V4.25A1.25 1.25 0 0 0 16.75 3H14.5v.5a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1V3H7.25ZM9.5 19.75a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2h-3a1 1 0 0 1-1-1Z",fill:"currentColor"}))},l))},Sn=["svgProps"];function Mn(){return Mn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Mn.apply(this,arguments)}var Hn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Sn);return r().createElement(t,Mn({icon:r().createElement("svg",Mn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2.833a9.167 9.167 0 1 0 0 18.334 9.167 9.167 0 0 0 0-18.334ZM4.222 4.222a11 11 0 1 1 15.556 15.556A11 11 0 0 1 4.222 4.222Zm3.72 4.253c.125-.249.467-.753 1.117-.753.65 0 .992.504 1.117.753.152.304.22.66.22 1.004s-.068.7-.22 1.004c-.125.25-.466.753-1.117.753-.65 0-.992-.504-1.117-.753a2.272 2.272 0 0 1-.22-1.004c0-.343.068-.7.22-1.004Zm5.882 0c.125-.249.466-.753 1.117-.753.65 0 .992.504 1.117.753.152.304.22.66.22 1.004s-.068.7-.22 1.004c-.125.25-.466.753-1.117.753-.65 0-.992-.504-1.117-.753a2.273 2.273 0 0 1-.22-1.004c0-.343.068-.7.22-1.004Zm-6.037 6.442a.917.917 0 0 1 1.296 0 4.124 4.124 0 0 0 5.834 0 .917.917 0 0 1 1.296 1.296 5.958 5.958 0 0 1-8.426 0 .917.917 0 0 1 0-1.296Z",fill:"currentColor"}))},l))},Cn=["svgProps"];function Rn(){return Rn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Rn.apply(this,arguments)}var Vn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Cn);return r().createElement(t,Rn({icon:r().createElement("svg",Rn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.293 3.293a1 1 0 0 1 1.414 0l3 3a1 1 0 0 1-1.414 1.414L7 6.414V20a1 1 0 1 1-2 0V6.414L3.707 7.707a1 1 0 0 1-1.414-1.414l3-3ZM10 11a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h10a1 1 0 1 0 0-2H11Z",fill:"currentColor"}))},l))},kn=["svgProps"];function An(){return An=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},An.apply(this,arguments)}var Bn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,kn);return r().createElement(t,An({icon:r().createElement("svg",An({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 4a1 1 0 0 0-2 0v13.586l-1.293-1.293a1 1 0 0 0-1.414 1.414l3 3a1 1 0 0 0 1.414 0l3-3a1 1 0 0 0-1.414-1.414L7 17.586V4Zm3 1a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H11a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",fill:"currentColor"}))},l))},In=["svgProps"];function Ln(){return Ln=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ln.apply(this,arguments)}var Fn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,In);return r().createElement(t,Ln({icon:r().createElement("svg",Ln({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.655 2.466c.55-1.115 2.14-1.115 2.69 0l2.41 4.88 5.388.788c1.23.18 1.72 1.692.83 2.559l-3.898 3.796.92 5.363c.21 1.226-1.077 2.16-2.177 1.581L12 18.9l-4.818 2.534c-1.1.578-2.387-.356-2.176-1.582l.92-5.363-3.898-3.796c-.89-.867-.4-2.38.83-2.559l5.388-.788 2.409-4.88ZM12 4.259 9.807 8.703a1 1 0 0 1-.752.546l-4.907.718 3.55 3.457a1 1 0 0 1 .288.885l-.838 4.883 4.386-2.307a1 1 0 0 1 .931 0l4.387 2.307-.838-4.883a1 1 0 0 1 .288-.885l3.55-3.457-4.907-.718a1 1 0 0 1-.752-.546L12 4.259Z",fill:"currentColor"}))},l))},zn=["svgProps"];function Wn(){return Wn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Wn.apply(this,arguments)}var Dn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,zn);return r().createElement(t,Wn({icon:r().createElement("svg",Wn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.655 2.466c.55-1.115 2.14-1.115 2.69 0l2.41 4.88 5.388.788c1.23.18 1.72 1.692.83 2.559l-3.898 3.796.92 5.363c.21 1.226-1.077 2.16-2.177 1.581L12 18.9l-4.818 2.534c-1.1.578-2.387-.356-2.176-1.582l.92-5.363-3.898-3.796c-.89-.867-.4-2.38.83-2.559l5.388-.788 2.409-4.88Z",fill:"currentColor"}))},l))},Tn=["svgProps"];function _n(){return _n=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},_n.apply(this,arguments)}var qn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Tn);return r().createElement(t,_n({icon:r().createElement("svg",_n({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 4a1 1 0 0 0-1 1v13.586l2.293-2.293A1 1 0 0 1 7 16h12a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5ZM2.879 2.879A3 3 0 0 1 5 2h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7.414l-3.707 3.707A1 1 0 0 1 2 21V5a3 3 0 0 1 .879-2.121ZM6 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H7a1 1 0 0 1-1-1Zm6 0a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm-6 4a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm8 0a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z",fill:"currentColor"}))},l))},Nn=["svgProps"];function Un(){return Un=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Un.apply(this,arguments)}var Gn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Nn);return r().createElement(t,Un({icon:r().createElement("svg",Un({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9 4c0-.175.097-.433.332-.668C9.567 3.097 9.825 3 10 3h4c.175 0 .433.097.668.332.235.235.332.493.332.668v1H9V4ZM7 5V4c0-.825.403-1.567.918-2.082C8.433 1.403 9.175 1 10 1h4c.825 0 1.567.403 2.082.918C16.597 2.433 17 3.175 17 4v1h4a1 1 0 1 1 0 2h-1v13c0 .825-.402 1.567-.918 2.082-.515.515-1.257.918-2.082.918H7c-.825 0-1.567-.402-2.082-.918C4.403 21.567 4 20.825 4 20V7H3a1 1 0 0 1 0-2h4Zm9 2H6v13c0 .175.097.433.332.668.235.235.493.332.668.332h10c.175 0 .433-.098.668-.332.235-.235.332-.493.332-.668V7h-2Zm-6 3a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6Z",fill:"currentColor"}))},l))},Kn=["svgProps"];function Qn(){return Qn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Qn.apply(this,arguments)}var Xn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Kn);return r().createElement(t,Qn({icon:r().createElement("svg",Qn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.756 2.944a11 11 0 0 1 13.527 17.3A10.962 10.962 0 0 1 12.001 23a10.962 10.962 0 0 1-7.306-2.776l-.014-.012A11 11 0 0 1 5.756 2.944ZM5.238 18.19a9.306 9.306 0 0 1 6.763-2.905 9.305 9.305 0 0 1 6.761 2.905 9.166 9.166 0 1 0-13.524 0Zm12.158 1.223A7.469 7.469 0 0 0 12 17.118H12a7.473 7.473 0 0 0-5.395 2.294 9.128 9.128 0 0 0 5.394 1.754h.003a9.129 9.129 0 0 0 5.394-1.754ZM12 7.034a2.444 2.444 0 1 0 0 4.89 2.444 2.444 0 0 0 0-4.89Zm-3.025-.58a4.278 4.278 0 1 1 6.05 6.05 4.278 4.278 0 0 1-6.05-6.05Z",fill:"currentColor"}))},l))},Jn=["svgProps"];function Yn(){return Yn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Yn.apply(this,arguments)}var $n=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Jn);return r().createElement(t,Yn({icon:r().createElement("svg",Yn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M17.528 15.016a1.508 1.508 0 1 0 0-3.016 1.508 1.508 0 0 0 0 3.016Z",fill:"currentColor"}),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 5.95A4.95 4.95 0 0 1 5.95 1h10.573a4.468 4.468 0 0 1 4.439 3.961A4.943 4.943 0 0 1 23 8.965v9.085A4.95 4.95 0 0 1 18.05 23H5.95A4.95 4.95 0 0 1 1 18.05V8.965c0-.163.008-.324.023-.483H1V5.95ZM16.523 2.9c.895 0 1.683.458 2.143 1.153a5 5 0 0 0-.616-.038H5.95a4.928 4.928 0 0 0-2.878.922A3.051 3.051 0 0 1 5.95 2.9h10.573ZM5.95 5.915a3.05 3.05 0 0 0-3.05 3.05v9.085a3.05 3.05 0 0 0 3.05 3.05h12.1a3.05 3.05 0 0 0 3.05-3.05V8.965a3.05 3.05 0 0 0-3.05-3.05H5.95Z",fill:"currentColor"}))},l))},el=["svgProps"];function rl(){return rl=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},rl.apply(this,arguments)}var tl=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,el);return r().createElement(t,rl({icon:r().createElement("svg",rl({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm14.707-3.707a1 1 0 0 1 0 1.414L13.414 12l2.293 2.293a1 1 0 0 1-1.414 1.414L12 13.414l-2.293 2.293a1 1 0 0 1-1.414-1.414L10.586 12 8.293 9.707a1 1 0 0 1 1.414-1.414L12 10.586l2.293-2.293a1 1 0 0 1 1.414 0Z",fill:"currentColor"}))},l))}})(),l})()));
37631
+ !function(e,r){ true?module.exports=r(__webpack_require__(8156)):0}(this,(e=>(()=>{"use strict";var r={156:r=>{r.exports=e}},t={};function n(e){var l=t[e];if(void 0!==l)return l.exports;var o=t[e]={exports:{}};return r[e](o,o.exports,n),o.exports}n.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return n.d(r,{a:r}),r},n.d=(e,r)=>{for(var t in r)n.o(r,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},n.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};return(()=>{n.r(l),n.d(l,{AlertCircle:()=>i,ArrowLeft:()=>s,ArrowRight:()=>p,BarChartHorizontal:()=>O,BarChartVertical:()=>m,Bill:()=>j,Briefcase:()=>Z,Building:()=>S,CalendarDays:()=>R,Car:()=>A,Check:()=>L,CheckCircle:()=>W,CheckSquare:()=>_,ChevronDown:()=>U,ChevronLeft:()=>Q,ChevronRight:()=>Y,ChevronUp:()=>re,CircleEllipsis:()=>le,Close:()=>ie,Contacts:()=>se,Copy:()=>pe,CreditCard:()=>Oe,Doors:()=>me,Download:()=>je,Edit:()=>Ze,Employee:()=>Se,ExternalLink:()=>Re,Eye:()=>Ae,EyeOff:()=>Le,FileCheck:()=>We,FileDown:()=>_e,FileEdit:()=>Ue,FileText:()=>Qe,FileUp:()=>Ye,Filter:()=>rr,Flat:()=>lr,Floor:()=>ir,Frown:()=>sr,Globe:()=>pr,Home:()=>Or,House:()=>mr,Inbox:()=>jr,Info:()=>Zr,Interfloor:()=>Sr,Key:()=>Rr,Layers:()=>Ar,LayoutList:()=>Lr,Link:()=>Wr,List:()=>_r,LogOut:()=>Ur,Mail:()=>Qr,Menu:()=>Yr,Meters:()=>rt,MinusCircle:()=>lt,MoreHorizontal:()=>it,MoreVertical:()=>st,NewAppeal:()=>pt,OnOff:()=>Ot,Paperclip:()=>mt,Parking:()=>jt,PieChart:()=>Zt,Plus:()=>St,PlusCircle:()=>Rt,Print:()=>At,QuestionCircle:()=>Lt,Readings:()=>Wt,RefreshCw:()=>_t,Rocket:()=>Ut,Ruble:()=>Qt,Sber:()=>Yt,Search:()=>rn,Send:()=>ln,Services:()=>cn,Settings:()=>vn,Share:()=>hn,Sheet:()=>bn,Slash:()=>dn,SmartHome:()=>Pn,Smartphone:()=>xn,Smile:()=>Hn,SortAsc:()=>Vn,SortDesc:()=>Bn,Star:()=>Fn,StarFilled:()=>Dn,Subtitles:()=>qn,Trash:()=>Gn,User:()=>Xn,Wallet:()=>$n,XCircle:()=>tl});var e=n(156),r=n.n(e),t=function(e){var t=e.icon,n=e.size,l=void 0===n?"large":n,o=e.color,a=void 0===o?"currentcolor":o,i=e.className,c=e.id,u=e.onClick,s=function(e){switch(e){case"auto":return"1em";case"medium":return 20;case"small":return 16;default:return 24}}(l),v={color:a,width:s,height:s,display:"inline-flex",fontSize:"inherit"};return r().createElement("span",{role:"img","aria-hidden":!0,style:v,className:i,id:c,onClick:u},t)},o=["svgProps"];function a(){return a=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},a.apply(this,arguments)}var i=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,o);return r().createElement(t,a({icon:r().createElement("svg",a({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11-5a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm0 8a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H12Z",fill:"currentColor"}))},l))},c=["svgProps"];function u(){return u=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},u.apply(this,arguments)}var s=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,c);return r().createElement(t,u({icon:r().createElement("svg",u({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.293 19.707a1 1 0 0 0 1.414-1.414L7.414 13H19a1 1 0 1 0 0-2H7.414l5.293-5.293a1 1 0 0 0-1.414-1.414l-7 7a.997.997 0 0 0-.294.705l.001.002v.003a.997.997 0 0 0 .294.705m6.999 7-7-7 7 7Z",fill:"currentColor"}))},l))},v=["svgProps"];function f(){return f=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},f.apply(this,arguments)}var p=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,v);return r().createElement(t,f({icon:r().createElement("svg",f({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.707 4.293a1 1 0 1 0-1.414 1.414L16.586 11H5a1 1 0 1 0 0 2h11.586l-5.293 5.293a1 1 0 0 0 1.414 1.414l7-7 .007-.007a.997.997 0 0 0 .286-.697v-.006a.996.996 0 0 0-.286-.697l-.008-.008m-6.999-7 7 7-7-7Z",fill:"currentColor"}))},l))},h=["svgProps"];function g(){return g=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},g.apply(this,arguments)}var O=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,h);return r().createElement(t,g({icon:r().createElement("svg",g({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.05 3a1.05 1.05 0 1 0-2.1 0v16A3.05 3.05 0 0 0 5 22.05h16a1.05 1.05 0 1 0 0-2.1H5a.95.95 0 0 1-.95-.95V3ZM7 14.95a1.05 1.05 0 1 0 0 2.1h8a1.05 1.05 0 1 0 0-2.1H7ZM5.95 11c0-.58.47-1.05 1.05-1.05h12a1.05 1.05 0 1 1 0 2.1H7c-.58 0-1.05-.47-1.05-1.05ZM7 4.95a1.05 1.05 0 1 0 0 2.1h3a1.05 1.05 0 1 0 0-2.1H7Z",fill:"currentColor"}))},l))},b=["svgProps"];function y(){return y=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},y.apply(this,arguments)}var m=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,b);return r().createElement(t,y({icon:r().createElement("svg",y({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M4.05 3a1.05 1.05 0 1 0-2.1 0v16A3.05 3.05 0 0 0 5 22.05h16a1.05 1.05 0 1 0 0-2.1H5a.95.95 0 0 1-.95-.95V3Z",fill:"currentColor"}),r().createElement("path",{d:"M19.05 9a1.05 1.05 0 1 0-2.1 0v8a1.05 1.05 0 1 0 2.1 0V9ZM13 3.95c.58 0 1.05.47 1.05 1.05v12a1.05 1.05 0 1 1-2.1 0V5c0-.58.47-1.05 1.05-1.05ZM9.05 14a1.05 1.05 0 1 0-2.1 0v3a1.05 1.05 0 1 0 2.1 0v-3Z",fill:"currentColor"}))},l))},d=["svgProps"];function w(){return w=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},w.apply(this,arguments)}var j=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,d);return r().createElement(t,w({icon:r().createElement("svg",w({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M8.308 6.928c-.383 0-.693.33-.693.74 0 .407.31.738.693.738V6.928ZM12 8.406c.382 0 .692-.33.692-.739 0-.408-.31-.739-.692-.739v1.478ZM8.308 10.87c-.383 0-.693.331-.693.74 0 .408.31.739.693.739V10.87Zm7.384 1.479c.383 0 .693-.331.693-.74 0-.408-.31-.739-.693-.739v1.479Zm-7.384 2.464c-.383 0-.693.33-.693.739 0 .408.31.74.693.74v-1.48Zm7.384 1.478c.383 0 .693-.33.693-.739 0-.408-.31-.74-.693-.74v1.48ZM5.538 2.478h12.924V1H5.538v1.478ZM19.615 3.71v15.936H21V3.71h-1.385Zm-1.544 17.096-1.442-.555-.469 1.392 1.442.554.469-1.391Zm-3.343-.476-2.255 1.083.569 1.348 2.254-1.083-.568-1.348Zm-3.201 1.083L9.271 20.33l-.568 1.348 2.254 1.083.569-1.348ZM7.37 20.251l-1.442.555.47 1.39 1.44-.553-.468-1.392Zm-2.986-.605V3.71H3v15.936h1.385Zm1.544 1.16c-.752.289-1.544-.306-1.544-1.16H3c0 1.878 1.744 3.186 3.398 2.55l-.469-1.39Zm3.343-.476a2.39 2.39 0 0 0-1.901-.078l.469 1.39c.281-.108.591-.095.864.036l.568-1.348Zm3.201 1.083a1.087 1.087 0 0 1-.947 0l-.568 1.348c.663.319 1.421.319 2.084 0l-.569-1.348Zm4.156-1.162a2.39 2.39 0 0 0-1.901.08l.568 1.347c.273-.13.583-.144.864-.035l.469-1.392Zm2.986-.605c0 .854-.792 1.449-1.544 1.16l-.47 1.39c1.655.636 3.399-.672 3.399-2.55h-1.385ZM18.462 2.479c.637 0 1.153.552 1.153 1.232H21C21 2.213 19.863 1 18.462 1v1.478ZM5.538 1C4.137 1 3 2.213 3 3.71h1.385c0-.68.516-1.232 1.153-1.232V1Zm2.77 7.406H12V6.928H8.308v1.478Zm0 3.943h7.384V10.87H8.308v1.479Zm0 3.942h7.384v-1.478H8.308v1.478Z",fill:"currentColor"}),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.75 3.71C2.75 2.091 3.983.75 5.538.75h12.924c1.555 0 2.788 1.341 2.788 2.96v15.936c0 2.028-1.897 3.491-3.738 2.784l-1.442-.554a.836.836 0 0 0-.666.028l-2.254 1.083a2.642 2.642 0 0 1-2.3 0l-2.254-1.083a.836.836 0 0 0-.666-.028l-1.442.554c-1.84.707-3.738-.756-3.738-2.784V3.71Zm8.536 18.917c.464.164.964.164 1.428 0l-.379-.898c-.22.057-.45.057-.67 0l-.379.898Zm.349-1.44a.838.838 0 0 0 .73 0l2.254-1.082a2.64 2.64 0 0 1 2.1-.087l1.441.554c.566.218 1.205-.223 1.205-.925V3.71c0-.558-.42-.982-.903-.982H5.538c-.484 0-.903.424-.903.982v15.936c0 .703.64 1.144 1.205.926l1.441-.554a2.64 2.64 0 0 1 2.1.087l2.254 1.083Zm-2.69-.723a2.136 2.136 0 0 0-1.256-.053l.313.929a1.33 1.33 0 0 1 .564.023l.379-.899Zm.082 1.092 1.803.866.374-.887L9.4 20.67l-.374.887Zm-1.5-.06-.31-.918-.974.375.309.917.974-.375Zm-1.446.541-.313-.927c-.77.14-1.486-.426-1.613-1.213H3.26c.137 1.5 1.492 2.49 2.82 2.14Zm-2.831-2.64h.885V3.96H3.25v15.436ZM3.262 3.46h.893c.098-.605.546-1.098 1.133-1.208v-.987c-1.06.124-1.918 1.032-2.026 2.195Zm2.526-2.21v.978h12.424V1.25H5.788Zm12.924.015v.987c.587.11 1.035.603 1.133 1.208h.893c-.108-1.163-.967-2.07-2.026-2.195ZM20.75 3.96h-.885v15.436h.885V3.96Zm-.011 15.936h-.893c-.128.788-.844 1.353-1.614 1.214l-.313.927c1.328.35 2.683-.64 2.82-2.14Zm-3.29 1.974.308-.917-.974-.375-.31.917.975.375Zm-1.45-.53.312-.929a2.135 2.135 0 0 0-1.256.053l.379.899a1.33 1.33 0 0 1 .564-.023Zm-1.026.216-.374-.887-1.803.866.374.887 1.803-.866ZM7.365 7.667c0-.53.407-.989.943-.989H12c.536 0 .942.459.942.99 0 .53-.406.988-.942.988H8.308c-.536 0-.943-.458-.943-.989Zm.693-.403a.498.498 0 0 0-.193.403c0 .174.08.317.193.403v-.806Zm.5-.086v.978h3.192v-.978H8.558Zm3.692.086v.806a.498.498 0 0 0 .192-.403.498.498 0 0 0-.192-.403ZM7.365 11.61c0-.531.407-.99.943-.99h7.384c.536 0 .943.459.943.99 0 .53-.407.989-.943.989H8.308c-.536 0-.943-.459-.943-.99Zm.693-.403a.498.498 0 0 0-.193.403c0 .174.08.317.193.402v-.805Zm.5-.087v.979h6.884v-.979H8.558Zm7.384.087v.805a.498.498 0 0 0 .193-.402.498.498 0 0 0-.193-.403Zm-8.577 4.345c0-.53.407-.99.943-.99h7.384c.536 0 .943.46.943.99s-.407.99-.943.99H8.308c-.536 0-.943-.46-.943-.99Zm.693-.403a.498.498 0 0 0-.193.403c0 .174.08.317.193.403v-.806Zm.5-.086v.978h6.884v-.978H8.558Zm7.384.086v.806a.499.499 0 0 0 .193-.403.498.498 0 0 0-.193-.403Z",fill:"currentColor"}))},l))},P=["svgProps"];function E(){return E=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},E.apply(this,arguments)}var Z=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,P);return r().createElement(t,E({icon:r().createElement("svg",E({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 1.1A2.9 2.9 0 0 0 7.1 4v2.1H5A3.9 3.9 0 0 0 1.1 10v9A3.9 3.9 0 0 0 5 22.9h14a3.9 3.9 0 0 0 3.9-3.9v-9A3.9 3.9 0 0 0 19 6.1h-2.1V4A2.9 2.9 0 0 0 14 1.1h-4Zm5.1 5V4A1.1 1.1 0 0 0 14 2.9h-4A1.1 1.1 0 0 0 8.9 4v2.1h6.2ZM8.9 7.9h6.2v13.2H8.9V7.9Zm-1.8 0H5A2.1 2.1 0 0 0 2.9 10v9c0 1.16.94 2.1 2.1 2.1h2.1V7.9Zm9.8 13.2V7.9H19c1.16 0 2.1.94 2.1 2.1v9a2.1 2.1 0 0 1-2.1 2.1h-2.1Z",fill:"currentColor"}))},l))},x=["svgProps"];function M(){return M=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},M.apply(this,arguments)}var S=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,x);return r().createElement(t,M({icon:r().createElement("svg",M({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.408 1.9a.9.9 0 0 1 .9-.9H15.23a.9.9 0 0 1 .092 1.795V5.25h6.37a.9.9 0 0 1 .092 1.795V21h.715a.9.9 0 1 1 0 1.8h-21a.9.9 0 1 1 0-1.8h.715V2.795a.9.9 0 0 1-.807-.895Zm2.607.9V21h1.431v-3.038c0-1.152.88-2.212 2.112-2.212H9.98c1.232 0 2.111 1.06 2.111 2.212V21h1.431V2.8H4.015Zm11.308 4.25V21h4.662V7.05h-4.662ZM10.293 21v-3.038c0-.296-.207-.412-.312-.412H7.558c-.106 0-.312.116-.312.412V21h3.046ZM5.445 5.275a.9.9 0 0 1 .9-.9h.808a.9.9 0 1 1 0 1.8h-.808a.9.9 0 0 1-.9-.9Zm4.039 0a.9.9 0 0 1 .9-.9h.807a.9.9 0 1 1 0 1.8h-.807a.9.9 0 0 1-.9-.9Zm-4.039 3.5a.9.9 0 0 1 .9-.9h.808a.9.9 0 1 1 0 1.8h-.808a.9.9 0 0 1-.9-.9Zm4.039 0a.9.9 0 0 1 .9-.9h.807a.9.9 0 1 1 0 1.8h-.807a.9.9 0 0 1-.9-.9Zm7.269 1.75a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 .9.9v.01a.9.9 0 0 1-.9.9h-.01a.9.9 0 0 1-.9-.9v-.01Zm-11.308 1.75a.9.9 0 0 1 .9-.9h.808a.9.9 0 1 1 0 1.8h-.808a.9.9 0 0 1-.9-.9Zm4.039 0a.9.9 0 0 1 .9-.9h.807a.9.9 0 1 1 0 1.8h-.807a.9.9 0 0 1-.9-.9Zm7.269 1.75a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 .9.9v.01a.9.9 0 0 1-.9.9h-.01a.9.9 0 0 1-.9-.9v-.01Zm0 3.5a.9.9 0 0 1 .9-.9h.009a.9.9 0 0 1 .9.9v.01a.9.9 0 0 1-.9.9h-.01a.9.9 0 0 1-.9-.9v-.01Z",fill:"currentColor"}))},l))},H=["svgProps"];function C(){return C=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},C.apply(this,arguments)}var R=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,H);return r().createElement(t,C({icon:r().createElement("svg",C({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17 2a1 1 0 1 0-2 0v1H9V2a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-2V2Zm3 7V6a1 1 0 0 0-1-1h-2v1a1 1 0 1 1-2 0V5H9v1a1 1 0 0 1-2 0V5H5a1 1 0 0 0-1 1v3h16ZM4 11h16v9a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-9Zm3 3a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm5-1a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H12Zm3 1a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H16a1 1 0 0 1-1-1Zm-7 3a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H8Zm3 1a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1Zm5-1a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H16Z",fill:"currentColor"}))},l))},V=["svgProps"];function k(){return k=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},k.apply(this,arguments)}var A=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,V);return r().createElement(t,k({icon:r().createElement("svg",k({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.319 4a1 1 0 0 0-.92.606L3.518 11h16.966L18.6 4.606A1 1 0 0 0 17.681 4H6.32ZM21 13H3v6h18v-6Zm-2.95 8a2.5 2.5 0 0 0 4.95-.5V12a1 1 0 0 0-.08-.394l-2.481-7.788A3 3 0 0 0 17.68 2H6.32A3 3 0 0 0 3.56 3.818l-2.48 7.788A1 1 0 0 0 1 12v8.5a2.5 2.5 0 0 0 4.95.5h12.1ZM5 16a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1Zm10 0a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z",fill:"currentColor"}))},l))},B=["svgProps"];function I(){return I=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},I.apply(this,arguments)}var L=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,B);return r().createElement(t,I({icon:r().createElement("svg",I({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M20 6 9 17l-5-5",stroke:"currentColor",strokeWidth:2.1,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},F=["svgProps"];function z(){return z=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},z.apply(this,arguments)}var W=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,F);return r().createElement(t,z({icon:r().createElement("svg",z({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1ZM3 12a9 9 0 0 1 9-9 9 9 0 0 1 9 9 9 9 0 0 1-9 9 9 9 0 0 1-9-9Zm13.768-2.36a1 1 0 1 0-1.536-1.28l-4.3 5.159-2.225-2.226a1 1 0 0 0-1.414 1.414l3 3a1 1 0 0 0 1.475-.067l5-6Z",fill:"currentColor"}))},l))},D=["svgProps"];function T(){return T=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},T.apply(this,arguments)}var _=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,D);return r().createElement(t,T({icon:r().createElement("svg",T({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M4.293 4.293A1 1 0 0 1 5 4h11a1 1 0 1 0 0-2H5a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-7a1 1 0 1 0-2 0v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5a1 1 0 0 1 .293-.707Z",fill:"currentColor"}),r().createElement("path",{d:"m12.707 14.707 10-10a1 1 0 0 0-1.414-1.414L12 12.586l-2.293-2.293a1 1 0 1 0-1.414 1.414l3 3a1 1 0 0 0 1.414 0Z",fill:"currentColor"}))},l))},q=["svgProps"];function N(){return N=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},N.apply(this,arguments)}var U=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,q);return r().createElement(t,N({icon:r().createElement("svg",N({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.205 8.204c.439-.439 1.151-.439 1.59 0L12 13.41l5.204-5.205a1.125 1.125 0 0 1 1.591 1.591l-6 6c-.439.44-1.151.44-1.59 0l-6-6a1.125 1.125 0 0 1 0-1.59Z",fill:"currentColor"}))},l))},G=["svgProps"];function K(){return K=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},K.apply(this,arguments)}var Q=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,G);return r().createElement(t,K({icon:r().createElement("svg",K({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.796 5.205c.439.439.439 1.151 0 1.59L10.59 12l5.205 5.204a1.125 1.125 0 0 1-1.591 1.591l-6-6a1.125 1.125 0 0 1 0-1.59l6-6c.439-.44 1.151-.44 1.59 0Z",fill:"currentColor"}))},l))},X=["svgProps"];function J(){return J=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},J.apply(this,arguments)}var Y=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,X);return r().createElement(t,J({icon:r().createElement("svg",J({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.204 5.205c.44-.44 1.152-.44 1.591 0l6 6c.44.439.44 1.151 0 1.59l-6 6a1.125 1.125 0 0 1-1.59-1.59L13.409 12 8.204 6.795a1.125 1.125 0 0 1 0-1.59Z",fill:"currentColor"}))},l))},$=["svgProps"];function ee(){return ee=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ee.apply(this,arguments)}var re=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,$);return r().createElement(t,ee({icon:r().createElement("svg",ee({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.204 8.204c.44-.439 1.152-.439 1.591 0l6 6a1.125 1.125 0 0 1-1.59 1.591L12 10.591l-5.205 5.205a1.125 1.125 0 0 1-1.59-1.591l6-6Z",fill:"currentColor"}))},l))},te=["svgProps"];function ne(){return ne=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ne.apply(this,arguments)}var le=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,te);return r().createElement(t,ne({icon:r().createElement("svg",ne({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1Zm5 10a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H17Zm-6 1a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1Zm-4-1a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H7Z",fill:"currentColor"}))},l))},oe=["svgProps"];function ae(){return ae=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ae.apply(this,arguments)}var ie=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,oe);return r().createElement(t,ae({icon:r().createElement("svg",ae({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M18.742 6.742a1.05 1.05 0 0 0-1.484-1.484L12 10.515 6.742 5.258a1.05 1.05 0 1 0-1.484 1.484L10.515 12l-5.257 5.258a1.05 1.05 0 1 0 1.484 1.485L12 13.485l5.258 5.258a1.05 1.05 0 0 0 1.485-1.485L13.485 12l5.258-5.258Z",fill:"currentColor"}))},l))},ce=["svgProps"];function ue(){return ue=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ue.apply(this,arguments)}var se=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ce);return r().createElement(t,ue({icon:r().createElement("svg",ue({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.523 3.892c-.673 0-1.317.262-1.789.723a2.413 2.413 0 0 0-.733 1.726c0 .645.262 1.267.733 1.727.472.46 1.116.722 1.79.722.673 0 1.317-.261 1.789-.722.471-.46.733-1.082.733-1.727s-.262-1.266-.733-1.726a2.562 2.562 0 0 0-1.79-.723Zm-3.128-.626A4.479 4.479 0 0 1 8.523 2c1.171 0 2.297.454 3.129 1.266a4.297 4.297 0 0 1 1.303 3.075c0 1.156-.47 2.262-1.303 3.075a4.48 4.48 0 0 1-3.129 1.267 4.479 4.479 0 0 1-3.128-1.267 4.297 4.297 0 0 1-1.303-3.075c0-1.156.47-2.262 1.303-3.075ZM17.796 6.91a1.78 1.78 0 0 0-1.243.502 1.668 1.668 0 0 0-.507 1.193c0 .445.18.874.507 1.193.328.32.774.501 1.243.501a1.78 1.78 0 0 0 1.243-.501c.326-.319.507-.748.507-1.193 0-.445-.18-.874-.507-1.193a1.78 1.78 0 0 0-1.243-.502Zm-2.582-.847a3.697 3.697 0 0 1 2.582-1.045c.966 0 1.895.374 2.582 1.045a3.552 3.552 0 0 1 1.077 2.542c0 .956-.39 1.87-1.077 2.541a3.696 3.696 0 0 1-2.582 1.046 3.696 3.696 0 0 1-2.582-1.046 3.552 3.552 0 0 1-1.077-2.541c0-.956.39-1.87 1.077-2.542Zm-4.455 8.087a5.754 5.754 0 0 0-3.635-.28c-1.21.303-2.28.99-3.042 1.95a5.385 5.385 0 0 0-1.156 2.913 11.977 11.977 0 0 0 5.596 1.375h.002c1.957.003 3.88-.471 5.596-1.375a5.322 5.322 0 0 0-.682-2.209 5.563 5.563 0 0 0-2.679-2.374Zm3.63.409a7.506 7.506 0 0 0-2.88-2.15 7.677 7.677 0 0 0-4.853-.374 7.537 7.537 0 0 0-4.074 2.614A7.258 7.258 0 0 0 1 19.17l.001.117c.003.331.18.636.468.805A13.884 13.884 0 0 0 8.52 22a13.89 13.89 0 0 0 6.84-1.784c.797.183 1.614.276 2.435.275h-.001l.001-.946.001.946h-.001c1.615.002 3.21-.357 4.66-1.052a.946.946 0 0 0 .54-.811 5.02 5.02 0 0 0-.922-3.118 5.196 5.196 0 0 0-2.647-1.937 5.31 5.31 0 0 0-3.3.012 5.235 5.235 0 0 0-1.737.974Zm1.021 1.643c.364-.371.817-.655 1.323-.823a3.385 3.385 0 0 1 2.102-.007c.683.22 1.27.651 1.676 1.225.295.416.482.89.55 1.385a8.863 8.863 0 0 1-3.264.617h-.002c-.601 0-1.2-.06-1.788-.18a7.198 7.198 0 0 0-.597-2.218Z",fill:"currentColor"}))},l))},ve=["svgProps"];function fe(){return fe=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fe.apply(this,arguments)}var pe=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ve);return r().createElement(t,fe({icon:r().createElement("svg",fe({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.293 3.293A1 1 0 0 1 4 3h9a1 1 0 0 1 1 1v1a1 1 0 1 0 2 0V4a3 3 0 0 0-3-3H4a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h1a1 1 0 1 0 0-2H4a1 1 0 0 1-1-1V4a1 1 0 0 1 .293-.707ZM10 11a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1h-9a1 1 0 0 1-1-1v-9Zm1-3a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h9a3 3 0 0 0 3-3v-9a3 3 0 0 0-3-3h-9Z",fill:"currentColor"}))},l))},he=["svgProps"];function ge(){return ge=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ge.apply(this,arguments)}var Oe=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,he);return r().createElement(t,ge({icon:r().createElement("svg",ge({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 6a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v2H3V6ZM1 9V6a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V9Zm20 1v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8h18Z",fill:"currentColor"}))},l))},be=["svgProps"];function ye(){return ye=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ye.apply(this,arguments)}var me=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,be);return r().createElement(t,ye({icon:r().createElement("svg",ye({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 3H5a2 2 0 0 0-2 2v2.111h18V5a2 2 0 0 0-2-2ZM3 19V9.154h7.979V21H5a2 2 0 0 1-2-2Zm10.021 2H19a2 2 0 0 0 2-2V9.154h-7.979V21ZM5 1a4 4 0 0 0-4 4v14a4 4 0 0 0 4 4h14a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4H5Zm2.857 11a1 1 0 0 1 1 1v2.714a1 1 0 0 1-1 1H7.5a1 1 0 0 1-1-1V13a1 1 0 0 1 1-1h.357Zm9.643 1a1 1 0 0 0-1-1h-.357a1 1 0 0 0-1 1v2.714a1 1 0 0 0 1 1h.357a1 1 0 0 0 1-1V13Z",fill:"currentColor"}))},l))},de=["svgProps"];function we(){return we=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},we.apply(this,arguments)}var je=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,de);return r().createElement(t,we({icon:r().createElement("svg",we({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 3a1 1 0 1 0-2 0v9.586L7.707 9.293a1 1 0 0 0-1.414 1.414l5 5 .007.007a.996.996 0 0 0 .697.286h.006c.272 0 .518-.11.697-.286l.008-.008 5-4.999a1 1 0 0 0-1.415-1.414L13 12.586V3ZM3 14a1 1 0 0 1 1 1v4a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-4a1 1 0 0 1 1-1Z",fill:"currentColor"}))},l))},Pe=["svgProps"];function Ee(){return Ee=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ee.apply(this,arguments)}var Ze=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Pe);return r().createElement(t,Ee({icon:r().createElement("svg",Ee({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20 .879c-.828 0-1.622.329-2.207.914l-9.5 9.5a1 1 0 0 0-.263.464l-1 4a1 1 0 0 0 1.213 1.213l4-1a1 1 0 0 0 .464-.263l9.5-9.5A3.121 3.121 0 0 0 20 .88Zm-.793 2.328a1.121 1.121 0 0 1 1.586 1.586l-9.304 9.304-2.115.529.529-2.115 9.304-9.304Z",fill:"currentColor"}),r().createElement("path",{d:"M4 3a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-7a1 1 0 1 0-2 0v7a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h7a1 1 0 1 0 0-2H4Z",fill:"currentColor"}))},l))},xe=["svgProps"];function Me(){return Me=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Me.apply(this,arguments)}var Se=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,xe);return r().createElement(t,Me({icon:r().createElement("svg",Me({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.014 2.87c-.361-.008-.785.34-.785.902v1.63c0 .528.392.867.771.867s.771-.34.771-.867V3.736c0-.52-.383-.859-.757-.867Zm-2.655.902c0-1.46 1.142-2.803 2.693-2.771 1.48.03 2.589 1.29 2.589 2.735v.281h3.16C20.718 4.017 23 6.501 23 9.456v8.106C23 20.517 20.72 23 17.8 23H6.2C3.28 23 1 20.517 1 17.562V9.456C1 6.5 3.28 4.017 6.2 4.017h3.16v-.245Zm.042 2.115H6.2c-1.792 0-3.33 1.549-3.33 3.569v8.106c0 2.02 1.538 3.569 3.33 3.569h11.6c1.792 0 3.33-1.55 3.33-3.57V9.457c0-2.02-1.538-3.57-3.33-3.57H14.6C14.38 7.136 13.336 8.139 12 8.139c-1.336 0-2.38-1.003-2.599-2.251Zm-.383 4.804c-.507 0-.894.372-.894.838a.9.9 0 0 0 .893.89.9.9 0 0 0 .894-.89c0-.466-.387-.838-.893-.838Zm-2.763.838c0-1.524 1.25-2.777 2.763-2.777 1.512 0 2.762 1.096 2.762 2.62 0 1.523-1.25 2.88-2.762 2.88-1.513 0-2.763-1.2-2.763-2.723Zm6.967.085c0-.516.419-.935.935-.935h4.539a.935.935 0 1 1 0 1.87h-4.54a.935.935 0 0 1-.934-.935Zm0 3.648c0-.516.419-.935.935-.935h3.197a.935.935 0 0 1 0 1.87h-3.197a.935.935 0 0 1-.935-.935Zm-8.338 3.2c0-2.111 1.741-3.816 3.862-3.816h.543c2.12 0 3.862 1.705 3.862 3.817a.935.935 0 0 1-1.87 0c0-1.056-.88-1.948-1.992-1.948h-.543c-1.112 0-1.993.892-1.993 1.948a.935.935 0 0 1-1.869 0Z",fill:"currentColor"}))},l))},He=["svgProps"];function Ce(){return Ce=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ce.apply(this,arguments)}var Re=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,He);return r().createElement(t,Ce({icon:r().createElement("svg",Ce({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m18.586 4-9.293 9.293a1 1 0 1 0 1.414 1.414L20 5.414V9a1 1 0 1 0 2 0V3l-.001-.048A.996.996 0 0 0 21 2h-6a1 1 0 1 0 0 2h3.586ZM5 7a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-6a1 1 0 1 1 2 0v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h6a1 1 0 1 1 0 2H5Z",fill:"currentColor"}))},l))},Ve=["svgProps"];function ke(){return ke=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ke.apply(this,arguments)}var Ae=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Ve);return r().createElement(t,ke({icon:r().createElement("svg",ke({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.437 12.582A11.924 11.924 0 0 1 3.112 12a13.389 13.389 0 0 1 1.996-2.82C6.615 7.557 8.868 6 12 6c3.132 0 5.385 1.557 6.892 3.18A13.386 13.386 0 0 1 20.888 12a13.386 13.386 0 0 1-1.996 2.82C17.385 16.442 15.132 18 12 18c-3.132 0-5.385-1.557-6.892-3.18a13.388 13.388 0 0 1-1.67-2.238Zm19.482-.977L22 12c.92.394.919.394.919.395l-.002.003-.003.007-.01.021a8.467 8.467 0 0 1-.153.322c-.105.21-.26.506-.47.857a15.392 15.392 0 0 1-1.923 2.575C18.615 18.057 15.868 20 12 20c-3.868 0-6.615-1.943-8.358-3.82a15.386 15.386 0 0 1-1.923-2.575 13.443 13.443 0 0 1-.591-1.107 5.138 5.138 0 0 1-.033-.072l-.01-.02-.002-.008-.001-.002v-.001c-.001 0-.001-.001.918-.395-.92-.394-.919-.394-.919-.395l.002-.003.003-.007.01-.021.032-.072a13.443 13.443 0 0 1 .591-1.107A15.385 15.385 0 0 1 3.642 7.82C5.385 5.943 8.132 4 12 4c3.868 0 6.615 1.943 8.358 3.82a15.391 15.391 0 0 1 1.923 2.575 13.405 13.405 0 0 1 .591 1.107l.033.072.01.02.002.008.001.002v.001ZM22 12l.92-.394a1 1 0 0 1 0 .788L22 12Zm-20.92-.394L2 12l-.92.394a1 1 0 0 1 0-.788ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z",fill:"currentColor"}))},l))},Be=["svgProps"];function Ie(){return Ie=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ie.apply(this,arguments)}var Le=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Be);return r().createElement(t,Ie({icon:r().createElement("svg",Ie({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M10.73 5.08c.421-.052.845-.08 1.27-.08 7 0 10 7 10 7a13.157 13.157 0 0 1-1.67 2.68M9.88 9.88a3 3 0 1 0 4.24 4.24M2 2l20 20M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},Fe=["svgProps"];function ze(){return ze=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ze.apply(this,arguments)}var We=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Fe);return r().createElement(t,ze({icon:r().createElement("svg",ze({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.879 1.879A3 3 0 0 1 6 1h8.5a1 1 0 0 1 .707.293l5.5 5.5A1 1 0 0 1 21 7.5V20a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 .879-2.121ZM6 3h7v5a1 1 0 0 0 1 1h5v11a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm9 4h3.086L15 3.914V7Zm.707 6.707a1 1 0 0 0-1.414-1.414L11 15.586l-1.293-1.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4Z",fill:"currentColor"}))},l))},De=["svgProps"];function Te(){return Te=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Te.apply(this,arguments)}var _e=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,De);return r().createElement(t,Te({icon:r().createElement("svg",Te({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.879 1.879A3 3 0 0 1 6 1h8.5a1 1 0 0 1 .707.293l5.5 5.5A1 1 0 0 1 21 7.5V20a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 .879-2.121ZM18.086 7 15 3.914V7h3.086ZM13 3v5a1 1 0 0 0 1 1h5v11a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7Zm-1 8a1 1 0 0 1 1 1v3.586l1.293-1.293a1 1 0 0 1 1.414 1.414l-3 3a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L11 15.586V12a1 1 0 0 1 1-1Z",fill:"currentColor"}))},l))},qe=["svgProps"];function Ne(){return Ne=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ne.apply(this,arguments)}var Ue=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,qe);return r().createElement(t,Ne({icon:r().createElement("svg",Ne({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 3a1 1 0 0 0-1 1v9.5a1 1 0 1 1-2 0V4a3 3 0 0 1 3-3h8.5a1 1 0 0 1 .707.293l5.5 5.5A1 1 0 0 1 21 7.5V20a3 3 0 0 1-3 3h-5.5a1 1 0 1 1 0-2H18a1 1 0 0 0 1-1V9h-5a1 1 0 0 1-1-1V3H6Zm9 .914V7h3.086L15 3.914Zm-3.095 9.08a1.1 1.1 0 0 0-.777.323L5.893 18.56l-.516 2.059 2.062-.522 5.244-5.225a1.104 1.104 0 0 0 .238-1.199 1.1 1.1 0 0 0-1.016-.68Zm-1.186-1.763a3.1 3.1 0 0 1 3.378 5.056l-5.441 5.421a1 1 0 0 1-.46.261l-3.95 1a1 1 0 0 1-1.216-1.212l.99-3.95a1 1 0 0 1 .262-.463l5.43-5.44c.288-.288.63-.517 1.007-.673Z",fill:"currentColor"}))},l))},Ge=["svgProps"];function Ke(){return Ke=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ke.apply(this,arguments)}var Qe=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Ge);return r().createElement(t,Ke({icon:r().createElement("svg",Ke({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M8 12a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8ZM7 17a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1ZM8 8a1 1 0 0 0 0 2h2a1 1 0 1 0 0-2H8Z",fill:"currentColor"}),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.879 1.879A3 3 0 0 1 6 1h8.5a1 1 0 0 1 .707.293l5.5 5.5A1 1 0 0 1 21 7.5V20a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V4a3 3 0 0 1 .879-2.121ZM6 3h7v5a1 1 0 0 0 1 1h5v11a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm9 4h3.086L15 3.914V7Z",fill:"currentColor"}))},l))},Xe=["svgProps"];function Je(){return Je=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Je.apply(this,arguments)}var Ye=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Xe);return r().createElement(t,Je({icon:r().createElement("svg",Je({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 1a3 3 0 0 0-3 3v16a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V7.5a1 1 0 0 0-.293-.707l-5.5-5.5A1 1 0 0 0 14.5 1H6Zm7 2H6a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9h-5a1 1 0 0 1-1-1V3Zm5.086 4H15V3.914L18.086 7ZM11 14.414V18a1 1 0 1 0 2 0v-3.586l1.293 1.293a1 1 0 0 0 1.414-1.414l-3-3-.007-.007a.997.997 0 0 0-.697-.286h-.006a.996.996 0 0 0-.697.286l-.008.008-3 2.999a1 1 0 1 0 1.415 1.414L11 14.414Z",fill:"currentColor"}))},l))},$e=["svgProps"];function er(){return er=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},er.apply(this,arguments)}var rr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,$e);return r().createElement(t,er({icon:r().createElement("svg",er({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.093 2.58A1 1 0 0 1 2 2h20a1 1 0 0 1 .764 1.646L15 12.826V21a1 1 0 0 1-1.447.894l-4-2A1 1 0 0 1 9 19v-6.174l-7.764-9.18a1 1 0 0 1-.143-1.067ZM4.155 4l6.609 7.814a1 1 0 0 1 .236.646v5.922l2 1V12.46a1 1 0 0 1 .236-.646L19.845 4H4.155Z",fill:"currentColor"}))},l))},tr=["svgProps"];function nr(){return nr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nr.apply(this,arguments)}var lr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,tr);return r().createElement(t,nr({icon:r().createElement("svg",nr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 3H8v5h4a1 1 0 1 1 0 2H8v2a1 1 0 1 1-2 0V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h1v-4a1 1 0 1 1 2 0v4h11a2 2 0 0 0 2-2v-9h-4a1 1 0 1 1 0-2h4V5a2 2 0 0 0-2-2ZM7 23H5a4 4 0 0 1-4-4V5a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v14a4 4 0 0 1-4 4H7Z",fill:"currentColor"}))},l))},or=["svgProps"];function ar(){return ar=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ar.apply(this,arguments)}var ir=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,or);return r().createElement(t,ar({icon:r().createElement("svg",ar({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-.685v-2.762a2.4 2.4 0 0 0-2.4-2.4h-1.664v-2.705a2.4 2.4 0 0 0-2.4-2.4h-1.664V8.367a2.4 2.4 0 0 0-2.4-2.4H3V5a2 2 0 0 1 2-2Zm7.45 12.838v-2.705a.6.6 0 0 0-.6-.6H3v3.305h9.45ZM3 17.638V19a2 2 0 0 0 2 2h11.515v-2.762a.6.6 0 0 0-.6-.6H3Zm5.387-6.905H3V7.767h4.787a.6.6 0 0 1 .6.6v2.366ZM1 5a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v14a4 4 0 0 1-4 4H5a4 4 0 0 1-4-4V5Z",fill:"currentColor"}))},l))},cr=["svgProps"];function ur(){return ur=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ur.apply(this,arguments)}var sr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,cr);return r().createElement(t,ur({icon:r().createElement("svg",ur({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)"},r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM3.515 3.515a12 12 0 1 1 16.97 16.97 12 12 0 0 1-16.97-16.97Zm4.058 4.64c.136-.272.509-.822 1.219-.822.71 0 1.082.55 1.218.822.166.332.24.72.24 1.095s-.074.763-.24 1.095c-.136.272-.509.822-1.218.822-.71 0-1.083-.55-1.219-.822a2.479 2.479 0 0 1-.24-1.095c0-.375.074-.763.24-1.095Zm6.417 0c.136-.272.509-.822 1.218-.822.71 0 1.083.55 1.219.822.166.332.24.72.24 1.095s-.074.763-.24 1.095c-.136.272-.509.822-1.219.822-.71 0-1.082-.55-1.218-.822a2.478 2.478 0 0 1-.24-1.095c0-.375.074-.763.24-1.095Zm-4.467 6a6.483 6.483 0 0 1 2.5-.488 6.483 6.483 0 0 1 4.574 1.904 1 1 0 1 1-1.416 1.413 4.483 4.483 0 0 0-3.164-1.317h-.002a4.482 4.482 0 0 0-3.196 1.317 1 1 0 1 1-1.416-1.413 6.481 6.481 0 0 1 2.12-1.415Z",fill:"currentColor"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},vr=["svgProps"];function fr(){return fr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fr.apply(this,arguments)}var pr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,vr);return r().createElement(t,fr({icon:r().createElement("svg",fr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.916 11.125h4.25a16.175 16.175 0 0 1 2.845-8.033 9.131 9.131 0 0 0-7.095 8.033ZM12 3.348a14.425 14.425 0 0 0-3.079 7.777h6.158A14.425 14.425 0 0 0 12 3.348Zm3.079 9.527A14.425 14.425 0 0 1 12 20.652a14.425 14.425 0 0 1-3.079-7.777h6.158Zm-7.913 0h-4.25a9.131 9.131 0 0 0 7.095 8.033 16.175 16.175 0 0 1-2.845-8.033Zm6.823 8.033a16.174 16.174 0 0 0 2.845-8.033h4.25a9.132 9.132 0 0 1-7.095 8.033Zm7.095-9.783h-4.25a16.175 16.175 0 0 0-2.845-8.033 9.132 9.132 0 0 1 7.095 8.033ZM1.125 12C1.125 5.994 5.994 1.125 12 1.125S22.875 5.994 22.875 12 18.006 22.875 12 22.875 1.125 18.006 1.125 12Z",fill:"currentColor"}))},l))},hr=["svgProps"];function gr(){return gr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gr.apply(this,arguments)}var Or=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,hr);return r().createElement(t,gr({icon:r().createElement("svg",gr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.772 4.222a2 2 0 0 1 2.456 0l6 4.667A2 2 0 0 1 20 10.467V20a1 1 0 0 1-1 1h-3v-9a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v9H5a1 1 0 0 1-1-1v-9.533a2 2 0 0 1 .772-1.578l6-4.667ZM10 21v-8h4v8h-4Zm5 2h4a3 3 0 0 0 3-3v-9.533a4 4 0 0 0-1.544-3.157l-6-4.667a4 4 0 0 0-4.912 0l-6 4.667A4 4 0 0 0 2 10.467V20a3 3 0 0 0 3 3h10Z",fill:"currentColor"}))},l))},br=["svgProps"];function yr(){return yr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},yr.apply(this,arguments)}var mr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,br);return r().createElement(t,yr({icon:r().createElement("svg",yr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.78 2.548a.824.824 0 0 1-.503 1.055l-1.013.36V9.06l3.538.864c.02.005.041.01.061.017l1.564.51a.824.824 0 0 1 .531 1.042.833.833 0 0 1-1.05.527l-.473-.154v8.483h.733c.46 0 .832.37.832.825a.829.829 0 0 1-.832.826H1.832A.829.829 0 0 1 1 21.174c0-.456.373-.825.832-.825h.733V9.559l-.452.16a.834.834 0 0 1-1.064-.499.824.824 0 0 1 .503-1.055l1.013-.36v-4.98c0-.455.372-.825.831-.825h3.129c.46 0 .832.37.832.826v3.233l8.769-3.445a.837.837 0 0 1 .026-.01l1.564-.555a.834.834 0 0 1 1.064.499ZM5.693 6.693V3.652H4.228v3.562l1.465-.521ZM4.228 8.968v11.38h1.987v-6.162c0-1.101.91-1.973 2.005-1.973h3.389c1.095 0 2.005.872 2.005 1.973v6.163H15.6V4.596L6.831 8.042a.841.841 0 0 1-.026.01l-2.577.916Zm13.036 1.792v9.589h2.508v-8.976l-2.508-.613ZM7.878 20.35h4.072v-6.163a.332.332 0 0 0-.341-.322h-3.39c-.2 0-.34.156-.34.322v6.163Z",fill:"currentColor"}))},l))},dr=["svgProps"];function wr(){return wr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wr.apply(this,arguments)}var jr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,dr);return r().createElement(t,wr({icon:r().createElement("svg",wr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.24 3h9.52a3.002 3.002 0 0 1 2.685 1.665l3.45 6.887A1 1 0 0 1 23 12v6a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3v-6a1 1 0 0 1 .106-.448l3.448-6.887.001-.001A3 3 0 0 1 7.24 3Zm0 2a1 1 0 0 0-.894.555l-.002.003L3.62 11H8a1 1 0 0 1 .832.445L10.535 14h2.93l1.703-2.555A1 1 0 0 1 16 11h4.38l-2.724-5.442-.002-.003A1 1 0 0 0 16.76 5H7.24ZM21 13h-4.465l-1.703 2.555A1 1 0 0 1 14 16h-4a1 1 0 0 1-.832-.445L7.465 13H3v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-5Z",fill:"currentColor"}))},l))},Pr=["svgProps"];function Er(){return Er=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Er.apply(this,arguments)}var Zr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Pr);return r().createElement(t,Er({icon:r().createElement("svg",Er({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11-1a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Zm0-4a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H12Z",fill:"currentColor"}))},l))},xr=["svgProps"];function Mr(){return Mr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Mr.apply(this,arguments)}var Sr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,xr);return r().createElement(t,Mr({icon:r().createElement("svg",Mr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2ZM1 5a4 4 0 0 1 4-4h14a4 4 0 0 1 4 4v14a4 4 0 0 1-4 4H5a4 4 0 0 1-4-4V5Zm14.43 4.76L12.95 7.9v8.2l2.48-1.86a.95.95 0 0 1 1.14 1.52l-3.992 2.994a.946.946 0 0 1-1.156 0L7.43 15.76a.95.95 0 0 1 1.14-1.52l2.48 1.86V7.9L8.57 9.76a.95.95 0 1 1-1.14-1.52l4-3a.95.95 0 0 1 1.14 0l4 3a.95.95 0 0 1-1.14 1.52Z",fill:"currentColor"}))},l))},Hr=["svgProps"];function Cr(){return Cr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Cr.apply(this,arguments)}var Rr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Hr);return r().createElement(t,Cr({icon:r().createElement("svg",Cr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.707 1.293a1 1 0 0 1 0 1.414L20.414 4l2.293 2.293a1 1 0 0 1 0 1.414l-3.5 3.5a1 1 0 0 1-1.414 0L15.5 8.914l-2.746 2.747A6.5 6.5 0 0 1 2.9 20.09l-.007-.008a6.5 6.5 0 0 1 8.43-9.821l8.97-8.97a1 1 0 0 1 1.414 0ZM10.722 12.356a4.501 4.501 0 1 0 0 0ZM16.914 7.5 18.5 9.086 20.586 7 19 5.414 16.914 7.5Z",fill:"currentColor"}))},l))},Vr=["svgProps"];function kr(){return kr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},kr.apply(this,arguments)}var Ar=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Vr);return r().createElement(t,kr({icon:r().createElement("svg",kr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.553 1.106a1 1 0 0 1 .894 0l10 5a1 1 0 0 1 0 1.788l-10 5a1 1 0 0 1-.894 0l-10-5a1 1 0 0 1 0-1.788l10-5ZM4.236 7 12 10.882 19.764 7 12 3.118 4.236 7Zm-3.13 4.553a1 1 0 0 1 1.341-.447L12 15.882l9.553-4.776a1 1 0 1 1 .894 1.788l-10 5a1 1 0 0 1-.894 0l-10-5a1 1 0 0 1-.447-1.341Zm0 5a1 1 0 0 1 1.341-.447L12 20.882l9.553-4.776a1 1 0 1 1 .894 1.788l-10 5a1 1 0 0 1-.894 0l-10-5a1 1 0 0 1-.447-1.341Z",fill:"currentColor"}))},l))},Br=["svgProps"];function Ir(){return Ir=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ir.apply(this,arguments)}var Lr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Br);return r().createElement(t,Ir({icon:r().createElement("svg",Ir({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)"},r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.85.85a2 2 0 0 0-2 2v5.895a2 2 0 0 0 2 2h5.894a2 2 0 0 0 2-2V2.85a2 2 0 0 0-2-2H2.85Zm0 2h5.894v5.895H2.85V2.85Zm0 10.405a2 2 0 0 0-2 2v5.894a2 2 0 0 0 2 2h5.894a2 2 0 0 0 2-2v-5.894a2 2 0 0 0-2-2H2.85Zm0 2h5.894v5.894H2.85v-5.894ZM13.255 2.978a1 1 0 0 1 1-1h7.894a1 1 0 0 1 0 2h-7.894a1 1 0 0 1-1-1Zm1 4.639a1 1 0 1 0 0 2h7.894a1 1 0 0 0 0-2h-7.894Zm-1 7.766a1 1 0 0 1 1-1h7.894a1 1 0 0 1 0 2h-7.894a1 1 0 0 1-1-1Zm1 4.639a1 1 0 1 0 0 2h7.894a1 1 0 0 0 0-2h-7.894Z",fill:"currentColor"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},Fr=["svgProps"];function zr(){return zr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zr.apply(this,arguments)}var Wr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Fr);return r().createElement(t,zr({icon:r().createElement("svg",zr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.996 1.067a6 6 0 0 0-4.22 1.684l-.011.01-1.72 1.71a1 1 0 0 0 1.41 1.418l1.715-1.704a4 4 0 0 1 5.656 5.654l-2.993 2.994a4 4 0 0 1-6.032-.432 1 1 0 0 0-1.602 1.198 6 6 0 0 0 9.048.648l3-3 .012-.012a6 6 0 0 0-4.263-10.168ZM10.425 8.01a6 6 0 0 0-4.672 1.743l-3 3-.012.012a6 6 0 0 0 8.484 8.484l.012-.012 1.71-1.71a1 1 0 0 0-1.414-1.414l-1.704 1.703a4 4 0 0 1-5.655-5.655l2.993-2.994a4 4 0 0 1 6.032.432 1 1 0 1 0 1.602-1.198 6 6 0 0 0-4.376-2.39Z",fill:"currentColor"}))},l))},Dr=["svgProps"];function Tr(){return Tr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Tr.apply(this,arguments)}var _r=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Dr);return r().createElement(t,Tr({icon:r().createElement("svg",Tr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 5a1 1 0 0 0 0 2h.01a1 1 0 0 0 0-2H3Zm5 0a1 1 0 0 0 0 2h13a1 1 0 1 0 0-2H8Zm0 6a1 1 0 1 0 0 2h13a1 1 0 1 0 0-2H8Zm-1 7a1 1 0 0 1 1-1h13a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm-5-6a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm1 5a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H3Z",fill:"currentColor"}))},l))},qr=["svgProps"];function Nr(){return Nr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nr.apply(this,arguments)}var Ur=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,qr);return r().createElement(t,Nr({icon:r().createElement("svg",Nr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.364 4.364A.9.9 0 0 1 5 4.1h4a1.1 1.1 0 1 0 0-2.2H5A3.1 3.1 0 0 0 1.9 5v14A3.1 3.1 0 0 0 5 22.1h4a1.1 1.1 0 0 0 0-2.2H5a.9.9 0 0 1-.9-.9V5a.9.9 0 0 1 .264-.636Zm10.858 1.858a1.1 1.1 0 0 1 1.556 0l5 5a1.096 1.096 0 0 1 .321.822 1.096 1.096 0 0 1-.324.737l-4.997 4.997a1.1 1.1 0 1 1-1.556-1.556l3.122-3.122H9a1.1 1.1 0 1 1 0-2.2h9.344l-3.122-3.122a1.1 1.1 0 0 1 0-1.556Z",fill:"currentColor"}))},l))},Gr=["svgProps"];function Kr(){return Kr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kr.apply(this,arguments)}var Qr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Gr);return r().createElement(t,Kr({icon:r().createElement("svg",Kr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 6a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v1.45l-8.5 5.403-.003.001a.94.94 0 0 1-.994 0L3 7.451V6ZM1 7.983V19a3 3 0 0 0 3 3h16a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H4a3 3 0 0 0-3 3v1.983ZM21 9.82V19a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V9.82l7.434 4.724.005.003a2.94 2.94 0 0 0 3.122 0l.005-.003L21 9.82Z",fill:"currentColor"}))},l))},Xr=["svgProps"];function Jr(){return Jr=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Jr.apply(this,arguments)}var Yr=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Xr);return r().createElement(t,Jr({icon:r().createElement("svg",Jr({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M2.95 6c0-.58.47-1.05 1.05-1.05h16a1.05 1.05 0 1 1 0 2.1H4c-.58 0-1.05-.47-1.05-1.05ZM2.95 12c0-.58.47-1.05 1.05-1.05h16a1.05 1.05 0 1 1 0 2.1H4c-.58 0-1.05-.47-1.05-1.05ZM4 16.95a1.05 1.05 0 1 0 0 2.1h16a1.05 1.05 0 1 0 0-2.1H4Z",fill:"currentColor"}))},l))},$r=["svgProps"];function et(){return et=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},et.apply(this,arguments)}var rt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,$r);return r().createElement(t,et({icon:r().createElement("svg",et({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)"},r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.858 12.027a9.169 9.169 0 1 1 18.337 0 9.169 9.169 0 0 1-18.337 0ZM12.026.857C5.859.858.859 5.859.859 12.028c0 6.168 5 11.168 11.168 11.168 6.169 0 11.17-5 11.17-11.168 0-6.169-5.001-11.17-11.17-11.17Zm4.497 5.5a1.22 1.22 0 0 0-1.725 0l-1.8 1.8c-.059.06-.11.123-.155.19a3.052 3.052 0 1 0 1.691 1.69c.067-.044.13-.095.19-.154l1.8-1.8a1.22 1.22 0 0 0 0-1.726Zm-3.864 5.775a1.35 1.35 0 1 1-1.91-1.91 1.35 1.35 0 0 1 1.91 1.91ZM7.146 16.5c0-.552.416-1 .93-1h7.902c.513 0 .93.448.93 1s-.417 1-.93 1H8.075c-.513 0-.93-.448-.93-1Z",fill:"currentColor"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},tt=["svgProps"];function nt(){return nt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nt.apply(this,arguments)}var lt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,tt);return r().createElement(t,nt({icon:r().createElement("svg",nt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1ZM8 11a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z",fill:"currentColor"}))},l))},ot=["svgProps"];function at(){return at=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},at.apply(this,arguments)}var it=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ot);return r().createElement(t,at({icon:r().createElement("svg",at({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M5 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM17 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z",fill:"currentColor"}))},l))},ct=["svgProps"];function ut(){return ut=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ut.apply(this,arguments)}var st=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ct);return r().createElement(t,ut({icon:r().createElement("svg",ut({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M10 5a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z",fill:"currentColor"}))},l))},vt=["svgProps"];function ft(){return ft=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ft.apply(this,arguments)}var pt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,vt);return r().createElement(t,ft({icon:r().createElement("svg",ft({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2.837c-5.1 0-9.167 3.953-9.167 8.744 0 2.307.937 4.41 2.478 5.977.5.51.947 1.318.771 2.251v.002c-.09.477-.236.94-.43 1.38a5.59 5.59 0 0 0 2.943-1.083.915.915 0 0 1 .79-.143c.853.24 1.732.361 2.614.36H12c5.1 0 9.167-3.953 9.167-8.744S17.1 2.837 12 2.837Zm.001 19.325C18.036 22.16 23 17.462 23 11.58 23 5.7 18.036 1 12 1S1 5.7 1 11.58c0 2.82 1.148 5.378 3.005 7.267.248.253.302.484.276.621l.9.17-.9-.171a4.43 4.43 0 0 1-.907 1.964.92.92 0 0 0 .544 1.482c.2.038.402.067.605.087M6.84 10.635c.247-.259.591-.412.959-.412.367 0 .711.153.959.412a1.369 1.369 0 0 1 0 1.892 1.327 1.327 0 0 1-1.918 0 1.369 1.369 0 0 1 0-1.892Zm4.201 0c.248-.259.592-.412.959-.412s.711.153.959.412a1.369 1.369 0 0 1 0 1.892 1.327 1.327 0 0 1-1.918 0 1.369 1.369 0 0 1 0-1.892Zm4.201 0a1.327 1.327 0 0 1 1.918 0 1.369 1.369 0 0 1 0 1.892 1.327 1.327 0 0 1-1.918 0 1.369 1.369 0 0 1 0-1.892Z",fill:"currentColor"}))},l))},ht=["svgProps"];function gt(){return gt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gt.apply(this,arguments)}var Ot=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,ht);return r().createElement(t,gt({icon:r().createElement("svg",gt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M15.99 7.38c-.42-.42-1.155-.315-1.47.105-.42.42-.315 1.155.105 1.47.945.735 1.47 1.89 1.47 3.15 0 2.205-1.785 4.095-4.095 4.095-2.31 0-4.095-1.89-4.095-4.2 0-1.155.525-2.31 1.47-3.15.42-.42.525-1.05.105-1.47-.42-.42-1.05-.525-1.47-.105-1.365 1.26-2.205 2.94-2.205 4.725 0 3.36 2.73 6.195 6.195 6.195 3.36 0 6.195-2.73 6.195-6.195 0-1.785-.84-3.465-2.205-4.62Z",fill:"currentColor"}),r().createElement("path",{d:"M12 1.5C6.225 1.5 1.5 6.225 1.5 12S6.225 22.5 12 22.5 22.5 17.775 22.5 12 17.775 1.5 12 1.5Zm0 18.9c-4.62 0-8.4-3.78-8.4-8.4 0-4.62 3.78-8.4 8.4-8.4 4.62 0 8.4 3.78 8.4 8.4 0 4.62-3.78 8.4-8.4 8.4Z",fill:"currentColor"}),r().createElement("path",{d:"M12 11.055c.63 0 1.05-.42 1.05-1.05v-3.78c0-.63-.42-1.05-1.05-1.05-.63 0-1.05.42-1.05 1.05v3.885c0 .525.42.945 1.05.945Z",fill:"currentColor"}))},l))},bt=["svgProps"];function yt(){return yt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},yt.apply(this,arguments)}var mt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,bt);return r().createElement(t,yt({icon:r().createElement("svg",yt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"m21.44 11.05-9.19 9.19a6.003 6.003 0 0 1-8.49-8.49l8.57-8.57A4.006 4.006 0 0 1 18 8.84l-8.59 8.57a2.001 2.001 0 1 1-2.83-2.83l8.49-8.48",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},dt=["svgProps"];function wt(){return wt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wt.apply(this,arguments)}var jt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,dt);return r().createElement(t,wt({icon:r().createElement("svg",wt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM5 1a4 4 0 0 0-4 4v14a4 4 0 0 0 4 4h14a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4H5Zm4 7h3.444C14.022 8 15 9.048 15 10s-.978 2-2.556 2H9V8Zm0 6h3.444C14.794 14 17 12.362 17 10s-2.206-4-4.556-4H8a1 1 0 0 0-1 1v10a1 1 0 1 0 2 0v-3Z",fill:"currentColor"}))},l))},Pt=["svgProps"];function Et(){return Et=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Et.apply(this,arguments)}var Zt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Pt);return r().createElement(t,Et({icon:r().createElement("svg",Et({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1A11 11 0 0 0 12 1Zm1 10V3.056A9 9 0 0 1 20.944 11H13ZM8.4 3.747a1 1 0 0 0-.8-1.834A11 11 0 1 0 22.131 16.28a1 1 0 1 0-1.842-.778A9 9 0 1 1 8.399 3.747Z",fill:"currentColor"}))},l))},xt=["svgProps"];function Mt(){return Mt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Mt.apply(this,arguments)}var St=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,xt);return r().createElement(t,Mt({icon:r().createElement("svg",Mt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 5a1 1 0 1 0-2 0v6H5a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6V5Z",fill:"currentColor"}))},l))},Ht=["svgProps"];function Ct(){return Ct=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ct.apply(this,arguments)}var Rt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Ht);return r().createElement(t,Ct({icon:r().createElement("svg",Ct({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11-5a1 1 0 0 1 1 1v3h3a1 1 0 1 1 0 2h-3v3a1 1 0 1 1-2 0v-3H8a1 1 0 1 1 0-2h3V8a1 1 0 0 1 1-1Z",fill:"currentColor"}))},l))},Vt=["svgProps"];function kt(){return kt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},kt.apply(this,arguments)}var At=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Vt);return r().createElement(t,kt({icon:r().createElement("svg",kt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v6h1a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-1v3a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-3H4a3 3 0 0 1-3-3v-5a3 3 0 0 1 3-3h1V2Zm-1 8a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h1v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3h1a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H4Zm13-2H7V3h10v5Zm0 7H7v6h10v-6Z",fill:"currentColor"}))},l))},Bt=["svgProps"];function It(){return It=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},It.apply(this,arguments)}var Lt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Bt);return r().createElement(t,It({icon:r().createElement("svg",It({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11.27-3.97c-.493-.083-.999.008-1.426.252a2.02 2.02 0 0 0-.904 1.062 1 1 0 0 1-1.88-.682 4.02 4.02 0 0 1 1.793-2.117 4.166 4.166 0 0 1 2.746-.488 4.11 4.11 0 0 1 2.431 1.355c.625.721.971 1.639.97 2.59 0 1.544-1.176 2.554-2 3.088a8.333 8.333 0 0 1-1.726.844l-.036.011-.01.004-.005.001h-.001l-.001.001-.302-.932.301.932a1 1 0 0 1-.617-1.902h.002l.016-.006a4.523 4.523 0 0 0 .378-.149c.255-.11.588-.272.914-.483.72-.466 1.087-.954 1.087-1.409v-.001c0-.464-.167-.917-.481-1.279a2.11 2.11 0 0 0-1.249-.693ZM16 10.002h-1 1ZM12 16a1 1 0 1 0 0 2h.01a1 1 0 1 0 0-2H12Z",fill:"currentColor"}))},l))},Ft=["svgProps"];function zt(){return zt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zt.apply(this,arguments)}var Wt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Ft);return r().createElement(t,zt({icon:r().createElement("svg",zt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1Zm0 4.5a1 1 0 0 0-1 1v4c0 .056.005.112.014.166A3.001 3.001 0 0 0 11 16.329V17a1 1 0 1 0 2 0v-.67a3.001 3.001 0 0 0-.014-5.664c.01-.054.014-.11.014-.166v-4a1 1 0 0 0-1-1Zm1.3 8a1.3 1.3 0 1 1-2.6 0 1.3 1.3 0 0 1 2.6 0Z",fill:"currentColor"}))},l))},Dt=["svgProps"];function Tt(){return Tt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Tt.apply(this,arguments)}var _t=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Dt);return r().createElement(t,Tt({icon:r().createElement("svg",Tt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M21 2v6m0 0h-6m6 0-3-2.7A9 9 0 0 0 3 12m0 10v-6m0 0h6m-6 0 3 2.7A9 9 0 0 0 21 12",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},qt=["svgProps"];function Nt(){return Nt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nt.apply(this,arguments)}var Ut=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,qt);return r().createElement(t,Nt({icon:r().createElement("svg",Nt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.147 4.383a11.98 11.98 0 0 1 4.92-1.453c-.182 2.597-1.234 6.409-5.552 9.312a21.445 21.445 0 0 1-3.297 1.704l-2.162-2.162a21.107 21.107 0 0 1 1.702-3.249l.005-.008a11.98 11.98 0 0 1 4.384-4.144Zm-.732 10.013c-.813.455-1.653.861-2.515 1.216v3.23c.137-.043.282-.09.43-.144.864-.314 1.61-.734 1.921-1.198.156-.234.265-.584.309-1.048.042-.457.015-.96-.048-1.445-.027-.214-.061-.42-.097-.611Zm-4.315.977L8.627 12.9H4a.9.9 0 0 1-.886-1.06L4 12c-.886-.16-.886-.16-.885-.161v-.005l.002-.01.006-.03.023-.112a12.523 12.523 0 0 1 .464-1.625c.324-.893.904-2.146 1.89-2.805.577-.385 1.256-.546 1.881-.604a8.498 8.498 0 0 1 1.842.054c.554.072 1.051.177 1.414.266A13.78 13.78 0 0 1 22.006 1.1a.9.9 0 0 1 .894.9c0 2.801-.787 7.687-5.865 11.375.088.362.192.855.263 1.402.072.563.113 1.209.054 1.842-.058.625-.22 1.304-.603 1.88l-.001.001c-.66.986-1.912 1.566-2.805 1.89a12.512 12.512 0 0 1-1.736.487l-.032.006-.01.002h-.003L12 20l.16.886A.9.9 0 0 1 11.1 20v-4.627ZM9.623 8.589c-.461.811-.872 1.65-1.232 2.511H5.158c.043-.137.09-.282.144-.43.314-.864.734-1.61 1.198-1.922.234-.155.584-.264 1.048-.307.456-.043.96-.016 1.444.047.222.028.435.064.631.101ZM6 15.089a3.08 3.08 0 0 0-2.08.722c-.511.43-.89 1.026-1.174 1.607-.289.59-.509 1.23-.674 1.807a17.244 17.244 0 0 0-.457 2.103l-.005.037-.001.01v.004h-.001v.001l.892.12-.892-.12a.9.9 0 0 0 1.011 1.012L2.5 21.5l.12.892h.004l.011-.002.037-.005.132-.02a17.264 17.264 0 0 0 1.97-.437 11.19 11.19 0 0 0 1.808-.674c.58-.284 1.176-.663 1.606-1.174.99-1.172 1.003-2.996-.146-4.13l-.01-.011A3.08 3.08 0 0 0 6 15.089Zm-.921 2.1L4.5 16.5l.58.69a1.28 1.28 0 0 1 1.703.047c.426.426.457 1.177.03 1.683l-.002.002c-.2.238-.544.484-1.019.716a9.422 9.422 0 0 1-1.512.56c-.224.064-.442.12-.645.168.048-.203.104-.42.168-.645a9.416 9.416 0 0 1 .56-1.512c.232-.475.478-.819.716-1.019Z",fill:"currentColor"}))},l))},Gt=["svgProps"];function Kt(){return Kt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kt.apply(this,arguments)}var Qt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Gt);return r().createElement(t,Kt({icon:r().createElement("svg",Kt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 3a1 1 0 0 1 1-1h7c1.605 0 2.882.612 3.747 1.586C19.597 4.54 20 5.787 20 7s-.403 2.459-1.253 3.414C17.882 11.388 16.605 12 15 12H9v2h6a1 1 0 1 1 0 2H9v5a1 1 0 1 1-2 0v-5H5a1 1 0 1 1 0-2h2v-2H5a1 1 0 1 1 0-2h2V3Zm2 7h6c1.062 0 1.785-.388 2.252-.914C17.736 8.54 18 7.786 18 7c0-.787-.264-1.541-.748-2.086C16.785 4.388 16.062 4 15 4H9v6Z",fill:"currentColor"}))},l))},Xt=["svgProps"];function Jt(){return Jt=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Jt.apply(this,arguments)}var Yt=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Xt);return r().createElement(t,Jt({icon:r().createElement("svg",Jt({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)",fillRule:"evenodd",clipRule:"evenodd",fill:"currentColor"},r().createElement("path",{d:"m8.06 1.726-.001.005-.111.044a11.002 11.002 0 0 0-6.619 12.897 10.998 10.998 0 0 0 11.917 8.258 11.005 11.005 0 0 0 8.42-5.671l.001-.002c1.14-2.05 1.536-4.473 1.237-6.8a79.62 79.62 0 0 1-.677.495c-.437.317-.87.631-1.296.968.12 3.75-2.465 7.323-5.988 8.524a8.916 8.916 0 0 1-7.06-.516 9.05 9.05 0 0 1-4.659-6.186l-.001-.006c-.334-1.846-.146-3.817.69-5.525a9.005 9.005 0 0 1 5.931-4.888c2.404-.623 4.996-.121 7.073 1.188.56-.45 1.137-.877 1.731-1.28C15.7.943 11.536.366 8.06 1.726Zm12.845 3.805a1056.928 1056.928 0 0 0-8.714 6.412l-.138.103-.147-.09c-1.31-.8-2.617-1.61-3.908-2.446.003.384.003.768.002 1.15v.085c0 .466 0 .93.004 1.388a634.21 634.21 0 0 1 4 2.506c1.12-.825 2.241-1.649 3.363-2.472 2.2-1.615 4.399-3.23 6.584-4.857-.261-.624-.647-1.195-1.046-1.78Z"}),r().createElement("path",{d:"m8.1 1.764-.001.005-.133.053A10.952 10.952 0 0 0 1.378 14.66a10.949 10.949 0 0 0 11.862 8.22 10.955 10.955 0 0 0 8.382-5.645l.001-.002c1.12-2.015 1.52-4.394 1.242-6.685-.204.151-.407.298-.608.445-.431.312-.856.62-1.276.95.11 3.764-2.487 7.343-6.022 8.548a8.965 8.965 0 0 1-7.1-.518 9.101 9.101 0 0 1-4.684-6.22l-.001-.008c-.336-1.855-.147-3.837.693-5.556a9.055 9.055 0 0 1 5.965-4.914c2.406-.624 5-.127 7.081 1.175a26.358 26.358 0 0 1 1.65-1.221C15.638.992 11.534.429 8.1 1.764Zm-.058-.085C11.534.313 15.716.893 18.68 3.192l.054.042-.057.039c-.593.402-1.17.828-1.728 1.277l-.028.023-.03-.02c-2.066-1.302-4.644-1.8-7.033-1.181a8.959 8.959 0 0 0-5.9 4.86c-.83 1.697-1.017 3.657-.685 5.495l.001.005a8.995 8.995 0 0 0 4.632 6.152 8.865 8.865 0 0 0 7.022.513c3.503-1.195 6.073-4.749 5.954-8.475l-.001-.025.02-.016c.427-.338.86-.652 1.298-.97a78.6 78.6 0 0 0 .677-.494l.068-.05.01.084c.3 2.336-.097 4.77-1.242 6.83l-.001.002a11.05 11.05 0 0 1-13.667 5.034A11.053 11.053 0 0 1 1.252 9.436a11.049 11.049 0 0 1 6.677-7.707l.09-.036.001-.005.022-.009ZM20.917 5.46l.029.042c.4.585.788 1.16 1.051 1.789l.016.036-.032.023c-2.186 1.627-4.385 3.242-6.584 4.857-1.122.823-2.244 1.647-3.363 2.472l-.028.02-.029-.018-.948-.596-.006-.003a633.119 633.119 0 0 0-3.045-1.906l-.023-.015v-.027c-.005-.46-.005-.923-.005-1.388v-.086c0-.382 0-.766-.002-1.15v-.092l.077.05c1.29.835 2.597 1.646 3.907 2.445l.118.072.112-.083c2.895-2.153 5.8-4.29 8.713-6.412l.042-.03Zm-.025.141c-2.9 2.112-5.79 4.239-8.67 6.382l-.166.123-.176-.108a177.977 177.977 0 0 1-3.831-2.395c.002.353.002.706.001 1.057v.085c0 .457 0 .91.004 1.36 1.01.627 2.015 1.259 3.022 1.892l.003.002.923.58c1.11-.819 2.223-1.636 3.335-2.453a1273.11 1273.11 0 0 0 6.553-4.833c-.253-.59-.616-1.133-.998-1.692Z"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},$t=["svgProps"];function en(){return en=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},en.apply(this,arguments)}var rn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,$t);return r().createElement(t,en({icon:r().createElement("svg",en({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 4a7 7 0 1 0 4.856 12.041.998.998 0 0 1 .185-.185A7 7 0 0 0 11 4Zm7.032 12.618a9 9 0 1 0-1.414 1.414l3.675 3.675a1 1 0 0 0 1.414-1.414l-3.675-3.675Z",fill:"currentColor"}))},l))},tn=["svgProps"];function nn(){return nn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nn.apply(this,arguments)}var ln=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,tn);return r().createElement(t,nn({icon:r().createElement("svg",nn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22.707 1.293a.998.998 0 0 1 .23 1.058l-6.993 19.98a1 1 0 0 1-1.858.075l-3.844-8.648-8.648-3.844a1 1 0 0 1 .076-1.858l19.979-6.993a1 1 0 0 1 1.058.23ZM18.194 4.39 4.711 9.111l6.067 2.696 7.416-7.416Zm-6.001 8.83 7.415-7.415-4.719 13.483-2.696-6.068Z",fill:"currentColor"}))},l))},on=["svgProps"];function an(){return an=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},an.apply(this,arguments)}var cn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,on);return r().createElement(t,an({icon:r().createElement("svg",an({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("g",{clipPath:"url(#a)",fillRule:"evenodd",clipRule:"evenodd",fill:"currentColor"},r().createElement("path",{d:"M3.1.6A2.5 2.5 0 0 0 .6 3.1v5.6a2.5 2.5 0 0 0 2.5 2.5h5.6a2.5 2.5 0 0 0 2.5-2.5V3.1A2.5 2.5 0 0 0 8.7.6H3.1Zm-.5 2.5a.5.5 0 0 1 .5-.5h5.6a.5.5 0 0 1 .5.5v5.6a.5.5 0 0 1-.5.5H3.1a.5.5 0 0 1-.5-.5V3.1ZM3.1 12.8a2.5 2.5 0 0 0-2.5 2.5v5.6a2.5 2.5 0 0 0 2.5 2.5h5.6a2.5 2.5 0 0 0 2.5-2.5v-5.6a2.5 2.5 0 0 0-2.5-2.5H3.1Zm-.5 2.5a.5.5 0 0 1 .5-.5h5.6a.5.5 0 0 1 .5.5v5.6a.5.5 0 0 1-.5.5H3.1a.5.5 0 0 1-.5-.5v-5.6ZM12.8 18.1a5.3 5.3 0 1 1 10.6 0 5.3 5.3 0 0 1-10.6 0Zm5.3-3.3a3.3 3.3 0 1 0 0 6.6 3.3 3.3 0 0 0 0-6.6ZM15.3.6a2.5 2.5 0 0 0-2.5 2.5v5.6a2.5 2.5 0 0 0 2.5 2.5h5.6a2.5 2.5 0 0 0 2.5-2.5V3.1A2.5 2.5 0 0 0 20.9.6h-5.6Zm-.5 2.5a.5.5 0 0 1 .5-.5h5.6a.5.5 0 0 1 .5.5v5.6a.5.5 0 0 1-.5.5h-5.6a.5.5 0 0 1-.5-.5V3.1Z"})),r().createElement("defs",null,r().createElement("clipPath",{id:"a"},r().createElement("path",{fill:"#fff",d:"M0 0h24v24H0z"}))))},l))},un=["svgProps"];function sn(){return sn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},sn.apply(this,arguments)}var vn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,un);return r().createElement(t,sn({icon:r().createElement("svg",sn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M9.2 3.044C9.305 2.442 9.852 2 10.492 2h3.017c.64 0 1.187.442 1.292 1.044l.247 1.424c.074.415.365.762.751.966.086.045.171.093.256.142.377.217.838.285 1.25.137l1.417-.506c.29-.105.61-.107.902-.007.292.1.537.295.692.551l1.508 2.497c.155.256.21.557.154.848a1.24 1.24 0 0 1-.456.742l-1.167.919c-.341.266-.51.68-.502 1.102.002.094.002.189 0 .283-.008.42.16.834.5 1.1l1.17.92c.493.39.621 1.06.303 1.59l-1.51 2.496c-.156.256-.401.451-.693.551-.291.1-.61.098-.9-.006l-1.417-.506c-.413-.148-.873-.08-1.252.137-.084.05-.17.097-.256.143-.385.203-.676.55-.75.965l-.247 1.422c-.105.604-.652 1.046-1.292 1.046H10.49c-.64 0-1.187-.442-1.292-1.044l-.248-1.424c-.072-.415-.363-.762-.75-.966a7.65 7.65 0 0 1-.255-.142c-.379-.217-.838-.285-1.252-.137l-1.417.506c-.29.104-.609.107-.9.007a1.296 1.296 0 0 1-.693-.551l-1.509-2.497a1.202 1.202 0 0 1-.154-.848 1.24 1.24 0 0 1 .457-.742l1.168-.919c.34-.266.508-.68.5-1.102a7.35 7.35 0 0 1 0-.283c.008-.42-.16-.834-.5-1.1l-1.168-.92a1.24 1.24 0 0 1-.456-.742 1.202 1.202 0 0 1 .153-.847l1.51-2.497c.154-.256.4-.452.692-.552.292-.1.611-.097.902.007l1.415.506c.414.148.873.08 1.252-.137.083-.05.17-.097.256-.143.386-.203.677-.55.749-.965L9.2 3.044Z",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}),r().createElement("path",{d:"M15.636 12a3.637 3.637 0 1 1-7.273 0 3.637 3.637 0 0 1 7.273 0Z",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"}))},l))},fn=["svgProps"];function pn(){return pn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},pn.apply(this,arguments)}var hn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,fn);return r().createElement(t,pn({icon:r().createElement("svg",pn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-2.842 4.815a4 4 0 1 0-1.008-1.727L8.842 9.185a4 4 0 1 0 0 5.63l5.309 3.093A4.003 4.003 0 0 0 18 23a4 4 0 1 0-2.839-6.818l-5.31-3.095a4.003 4.003 0 0 0 0-2.175l5.307-3.097ZM7.7 10.945a1.012 1.012 0 0 0 .056.096c.155.285.244.612.244.959a1.99 1.99 0 0 1-.3 1.054A1.999 1.999 0 0 1 4 12a2 2 0 0 1 3.7-1.054ZM16 19c0-.325.078-.632.215-.903a1.015 1.015 0 0 0 .123-.21A2 2 0 1 1 16 19Z",fill:"currentColor"}))},l))},gn=["svgProps"];function On(){return On=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},On.apply(this,arguments)}var bn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,gn);return r().createElement(t,On({icon:r().createElement("svg",On({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.05 5A2.95 2.95 0 0 1 5 2.05h14A2.95 2.95 0 0 1 21.95 5v14A2.95 2.95 0 0 1 19 21.95H5A2.95 2.95 0 0 1 2.05 19V5ZM5 3.95c-.58 0-1.05.47-1.05 1.05v3.051A.964.964 0 0 1 4 8.05h16l.05.001V5c0-.58-.47-1.05-1.05-1.05H5Zm9.05 6h-4.1v4.1h4.1v-4.1Zm1.9 4.1v-4.1H20l.05-.001v4.102a.922.922 0 0 0-.05-.001h-4.05Zm-1.9 1.9h-4.1V20l-.001.05h4.102a.922.922 0 0 1-.001-.05v-4.05Zm1.899 4.1.001-.05v-4.05H20l.05-.001V19c0 .58-.47 1.05-1.05 1.05h-3.051ZM4 9.95h4.05v4.1H4l-.05.001V9.95L4 9.95Zm0 6h4.05V20l.001.05H5c-.58 0-1.05-.47-1.05-1.05v-3.051l.05.001Z",fill:"currentColor"}))},l))},yn=["svgProps"];function mn(){return mn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},mn.apply(this,arguments)}var dn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,yn);return r().createElement(t,mn({icon:r().createElement("svg",mn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.968 6.382a9 9 0 0 0 12.65 12.65L4.968 6.382Zm1.414-1.414 12.65 12.65a9 9 0 0 0-12.65-12.65ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Z",fill:"currentColor"}))},l))},wn=["svgProps"];function jn(){return jn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},jn.apply(this,arguments)}var Pn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,wn);return r().createElement(t,jn({icon:r().createElement("svg",jn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.228 4.223a2 2 0 0 0-2.456 0l-6 4.667A2 2 0 0 0 4 10.468v9.533a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9.533a2 2 0 0 0-.772-1.578l-6-4.667ZM9.544 2.644a4 4 0 0 1 4.912 0l6 4.667A4 4 0 0 1 22 10.468v9.533a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-9.533a4 4 0 0 1 1.544-3.157l6-4.667Zm1.406 6.008a1.002 1.002 0 1 1 2.004 0v4.146a1.002 1.002 0 1 1-2.004 0V8.652ZM9.316 11.25a.9.9 0 0 0-1.34-1.2 5.4 5.4 0 1 0 8.05 0 .9.9 0 1 0-1.342 1.2 3.6 3.6 0 1 1-5.367 0Z",fill:"currentColor"}))},l))},En=["svgProps"];function Zn(){return Zn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Zn.apply(this,arguments)}var xn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,En);return r().createElement(t,Zn({icon:r().createElement("svg",Zn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.952 1.952A3.25 3.25 0 0 1 7.25 1h9.5A3.25 3.25 0 0 1 20 4.25v15.5A3.25 3.25 0 0 1 16.75 23h-9.5A3.25 3.25 0 0 1 4 19.75V4.25c0-.862.342-1.689.952-2.298ZM7.25 3A1.25 1.25 0 0 0 6 4.25v15.5A1.25 1.25 0 0 0 7.25 21h9.5A1.25 1.25 0 0 0 18 19.75V4.25A1.25 1.25 0 0 0 16.75 3H14.5v.5a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1V3H7.25ZM9.5 19.75a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2h-3a1 1 0 0 1-1-1Z",fill:"currentColor"}))},l))},Mn=["svgProps"];function Sn(){return Sn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Sn.apply(this,arguments)}var Hn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Mn);return r().createElement(t,Sn({icon:r().createElement("svg",Sn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2.833a9.167 9.167 0 1 0 0 18.334 9.167 9.167 0 0 0 0-18.334ZM4.222 4.222a11 11 0 1 1 15.556 15.556A11 11 0 0 1 4.222 4.222Zm3.72 4.253c.125-.249.467-.753 1.117-.753.65 0 .992.504 1.117.753.152.304.22.66.22 1.004s-.068.7-.22 1.004c-.125.25-.466.753-1.117.753-.65 0-.992-.504-1.117-.753a2.272 2.272 0 0 1-.22-1.004c0-.343.068-.7.22-1.004Zm5.882 0c.125-.249.466-.753 1.117-.753.65 0 .992.504 1.117.753.152.304.22.66.22 1.004s-.068.7-.22 1.004c-.125.25-.466.753-1.117.753-.65 0-.992-.504-1.117-.753a2.273 2.273 0 0 1-.22-1.004c0-.343.068-.7.22-1.004Zm-6.037 6.442a.917.917 0 0 1 1.296 0 4.124 4.124 0 0 0 5.834 0 .917.917 0 0 1 1.296 1.296 5.958 5.958 0 0 1-8.426 0 .917.917 0 0 1 0-1.296Z",fill:"currentColor"}))},l))},Cn=["svgProps"];function Rn(){return Rn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Rn.apply(this,arguments)}var Vn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Cn);return r().createElement(t,Rn({icon:r().createElement("svg",Rn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.293 3.293a1 1 0 0 1 1.414 0l3 3a1 1 0 0 1-1.414 1.414L7 6.414V20a1 1 0 1 1-2 0V6.414L3.707 7.707a1 1 0 0 1-1.414-1.414l3-3ZM10 11a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h10a1 1 0 1 0 0-2H11Z",fill:"currentColor"}))},l))},kn=["svgProps"];function An(){return An=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},An.apply(this,arguments)}var Bn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,kn);return r().createElement(t,An({icon:r().createElement("svg",An({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 4a1 1 0 0 0-2 0v13.586l-1.293-1.293a1 1 0 0 0-1.414 1.414l3 3a1 1 0 0 0 1.414 0l3-3a1 1 0 0 0-1.414-1.414L7 17.586V4Zm3 1a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H11a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2h-7a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z",fill:"currentColor"}))},l))},In=["svgProps"];function Ln(){return Ln=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ln.apply(this,arguments)}var Fn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,In);return r().createElement(t,Ln({icon:r().createElement("svg",Ln({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.655 2.466c.55-1.115 2.14-1.115 2.69 0l2.41 4.88 5.388.788c1.23.18 1.72 1.692.83 2.559l-3.898 3.796.92 5.363c.21 1.226-1.077 2.16-2.177 1.581L12 18.9l-4.818 2.534c-1.1.578-2.387-.356-2.176-1.582l.92-5.363-3.898-3.796c-.89-.867-.4-2.38.83-2.559l5.388-.788 2.409-4.88ZM12 4.259 9.807 8.703a1 1 0 0 1-.752.546l-4.907.718 3.55 3.457a1 1 0 0 1 .288.885l-.838 4.883 4.386-2.307a1 1 0 0 1 .931 0l4.387 2.307-.838-4.883a1 1 0 0 1 .288-.885l3.55-3.457-4.907-.718a1 1 0 0 1-.752-.546L12 4.259Z",fill:"currentColor"}))},l))},zn=["svgProps"];function Wn(){return Wn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Wn.apply(this,arguments)}var Dn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,zn);return r().createElement(t,Wn({icon:r().createElement("svg",Wn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.655 2.466c.55-1.115 2.14-1.115 2.69 0l2.41 4.88 5.388.788c1.23.18 1.72 1.692.83 2.559l-3.898 3.796.92 5.363c.21 1.226-1.077 2.16-2.177 1.581L12 18.9l-4.818 2.534c-1.1.578-2.387-.356-2.176-1.582l.92-5.363-3.898-3.796c-.89-.867-.4-2.38.83-2.559l5.388-.788 2.409-4.88Z",fill:"currentColor"}))},l))},Tn=["svgProps"];function _n(){return _n=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},_n.apply(this,arguments)}var qn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Tn);return r().createElement(t,_n({icon:r().createElement("svg",_n({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 4a1 1 0 0 0-1 1v13.586l2.293-2.293A1 1 0 0 1 7 16h12a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5ZM2.879 2.879A3 3 0 0 1 5 2h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7.414l-3.707 3.707A1 1 0 0 1 2 21V5a3 3 0 0 1 .879-2.121ZM6 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H7a1 1 0 0 1-1-1Zm6 0a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm-6 4a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm8 0a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z",fill:"currentColor"}))},l))},Nn=["svgProps"];function Un(){return Un=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Un.apply(this,arguments)}var Gn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Nn);return r().createElement(t,Un({icon:r().createElement("svg",Un({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9 4c0-.175.097-.433.332-.668C9.567 3.097 9.825 3 10 3h4c.175 0 .433.097.668.332.235.235.332.493.332.668v1H9V4ZM7 5V4c0-.825.403-1.567.918-2.082C8.433 1.403 9.175 1 10 1h4c.825 0 1.567.403 2.082.918C16.597 2.433 17 3.175 17 4v1h4a1 1 0 1 1 0 2h-1v13c0 .825-.402 1.567-.918 2.082-.515.515-1.257.918-2.082.918H7c-.825 0-1.567-.402-2.082-.918C4.403 21.567 4 20.825 4 20V7H3a1 1 0 0 1 0-2h4Zm9 2H6v13c0 .175.097.433.332.668.235.235.493.332.668.332h10c.175 0 .433-.098.668-.332.235-.235.332-.493.332-.668V7h-2Zm-6 3a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0v-6Z",fill:"currentColor"}))},l))},Kn=["svgProps"];function Qn(){return Qn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Qn.apply(this,arguments)}var Xn=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Kn);return r().createElement(t,Qn({icon:r().createElement("svg",Qn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.756 2.944a11 11 0 0 1 13.527 17.3A10.962 10.962 0 0 1 12.001 23a10.962 10.962 0 0 1-7.306-2.776l-.014-.012A11 11 0 0 1 5.756 2.944ZM5.238 18.19a9.306 9.306 0 0 1 6.763-2.905 9.305 9.305 0 0 1 6.761 2.905 9.166 9.166 0 1 0-13.524 0Zm12.158 1.223A7.469 7.469 0 0 0 12 17.118H12a7.473 7.473 0 0 0-5.395 2.294 9.128 9.128 0 0 0 5.394 1.754h.003a9.129 9.129 0 0 0 5.394-1.754ZM12 7.034a2.444 2.444 0 1 0 0 4.89 2.444 2.444 0 0 0 0-4.89Zm-3.025-.58a4.278 4.278 0 1 1 6.05 6.05 4.278 4.278 0 0 1-6.05-6.05Z",fill:"currentColor"}))},l))},Jn=["svgProps"];function Yn(){return Yn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Yn.apply(this,arguments)}var $n=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,Jn);return r().createElement(t,Yn({icon:r().createElement("svg",Yn({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{d:"M17.528 15.016a1.508 1.508 0 1 0 0-3.016 1.508 1.508 0 0 0 0 3.016Z",fill:"currentColor"}),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 5.95A4.95 4.95 0 0 1 5.95 1h10.573a4.468 4.468 0 0 1 4.439 3.961A4.943 4.943 0 0 1 23 8.965v9.085A4.95 4.95 0 0 1 18.05 23H5.95A4.95 4.95 0 0 1 1 18.05V8.965c0-.163.008-.324.023-.483H1V5.95ZM16.523 2.9c.895 0 1.683.458 2.143 1.153a5 5 0 0 0-.616-.038H5.95a4.928 4.928 0 0 0-2.878.922A3.051 3.051 0 0 1 5.95 2.9h10.573ZM5.95 5.915a3.05 3.05 0 0 0-3.05 3.05v9.085a3.05 3.05 0 0 0 3.05 3.05h12.1a3.05 3.05 0 0 0 3.05-3.05V8.965a3.05 3.05 0 0 0-3.05-3.05H5.95Z",fill:"currentColor"}))},l))},el=["svgProps"];function rl(){return rl=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},rl.apply(this,arguments)}var tl=function(e){var n=e.svgProps,l=function(e,r){if(null==e)return{};var t,n,l=function(e,r){if(null==e)return{};var t,n,l={},o=Object.keys(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||(l[t]=e[t]);return l}(e,r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n<o.length;n++)t=o[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(l[t]=e[t])}return l}(e,el);return r().createElement(t,rl({icon:r().createElement("svg",rl({width:"inherit",height:"inherit",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},n),r().createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm14.707-3.707a1 1 0 0 1 0 1.414L13.414 12l2.293 2.293a1 1 0 0 1-1.414 1.414L12 13.414l-2.293 2.293a1 1 0 0 1-1.414-1.414L10.586 12 8.293 9.707a1 1 0 0 1 1.414-1.414L12 10.586l2.293-2.293a1 1 0 0 1 1.414 0Z",fill:"currentColor"}))},l))}})(),l})()));
37620
37632
 
37621
37633
  /***/ }),
37622
37634
 
@@ -46585,6 +46597,7 @@ __webpack_require__.r(__webpack_exports__);
46585
46597
 
46586
46598
  // EXPORTS
46587
46599
  __webpack_require__.d(__webpack_exports__, {
46600
+ "ActionBar": function() { return /* reexport */ ActionBar; },
46588
46601
  "Alert": function() { return /* reexport */ alert_Alert; },
46589
46602
  "Banner": function() { return /* reexport */ Banner; },
46590
46603
  "Button": function() { return /* reexport */ button_Button; },
@@ -52314,8 +52327,8 @@ var InternalSubMenuList = function InternalSubMenuList(_ref, ref) {
52314
52327
  var SubMenuList = /*#__PURE__*/external_react_.forwardRef(InternalSubMenuList);
52315
52328
  SubMenuList.displayName = 'SubMenuList';
52316
52329
  /* harmony default export */ var SubMenu_SubMenuList = (SubMenuList);
52317
- // EXTERNAL MODULE: ../../node_modules/rc-trigger/es/index.js + 16 modules
52318
- var rc_trigger_es = __webpack_require__(67169);
52330
+ // EXTERNAL MODULE: ../../node_modules/rc-trigger/es/index.js + 15 modules
52331
+ var rc_trigger_es = __webpack_require__(46284);
52319
52332
  ;// CONCATENATED MODULE: ./node_modules/rc-menu/es/placements.js
52320
52333
  var autoAdjustOverflow = {
52321
52334
  adjustX: 1,
@@ -70871,6 +70884,434 @@ var space_Space = function Space(_ref) {
70871
70884
  ;// CONCATENATED MODULE: ./src/components/Space/index.ts
70872
70885
 
70873
70886
 
70887
+ ;// CONCATENATED MODULE: ./node_modules/antd/es/_util/throttleByAnimationFrame.js
70888
+
70889
+
70890
+ function throttleByAnimationFrame(fn) {
70891
+ var requestId;
70892
+ var later = function later(args) {
70893
+ return function () {
70894
+ requestId = null;
70895
+ fn.apply(void 0, (0,toConsumableArray/* default */.Z)(args));
70896
+ };
70897
+ };
70898
+ var throttled = function throttled() {
70899
+ if (requestId == null) {
70900
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
70901
+ args[_key] = arguments[_key];
70902
+ }
70903
+ requestId = (0,raf/* default */.Z)(later(args));
70904
+ }
70905
+ };
70906
+ throttled.cancel = function () {
70907
+ raf/* default.cancel */.Z.cancel(requestId);
70908
+ requestId = null;
70909
+ };
70910
+ return throttled;
70911
+ }
70912
+ function throttleByAnimationFrameDecorator() {
70913
+ return function throttle(target, key, descriptor) {
70914
+ var fn = descriptor.value;
70915
+ var definingProperty = false;
70916
+ return {
70917
+ configurable: true,
70918
+ get: function get() {
70919
+ // In IE11 calling Object.defineProperty has a side-effect of evaluating the
70920
+ // getter for the property which is being replaced. This causes infinite
70921
+ // recursion and an "Out of stack space" error.
70922
+ // eslint-disable-next-line no-prototype-builtins
70923
+ if (definingProperty || this === target.prototype || this.hasOwnProperty(key)) {
70924
+ /* istanbul ignore next */
70925
+ return fn;
70926
+ }
70927
+ var boundFn = throttleByAnimationFrame(fn.bind(this));
70928
+ definingProperty = true;
70929
+ Object.defineProperty(this, key, {
70930
+ value: boundFn,
70931
+ configurable: true,
70932
+ writable: true
70933
+ });
70934
+ definingProperty = false;
70935
+ return boundFn;
70936
+ }
70937
+ };
70938
+ };
70939
+ }
70940
+ // EXTERNAL MODULE: ../../node_modules/rc-util/es/Dom/addEventListener.js
70941
+ var addEventListener = __webpack_require__(40443);
70942
+ ;// CONCATENATED MODULE: ./node_modules/antd/es/affix/utils.js
70943
+
70944
+ function getTargetRect(target) {
70945
+ return target !== window ? target.getBoundingClientRect() : {
70946
+ top: 0,
70947
+ bottom: window.innerHeight
70948
+ };
70949
+ }
70950
+ function getFixedTop(placeholderReact, targetRect, offsetTop) {
70951
+ if (offsetTop !== undefined && targetRect.top > placeholderReact.top - offsetTop) {
70952
+ return offsetTop + targetRect.top;
70953
+ }
70954
+ return undefined;
70955
+ }
70956
+ function getFixedBottom(placeholderReact, targetRect, offsetBottom) {
70957
+ if (offsetBottom !== undefined && targetRect.bottom < placeholderReact.bottom + offsetBottom) {
70958
+ var targetBottomOffset = window.innerHeight - targetRect.bottom;
70959
+ return offsetBottom + targetBottomOffset;
70960
+ }
70961
+ return undefined;
70962
+ }
70963
+ // ======================== Observer ========================
70964
+ var TRIGGER_EVENTS = ['resize', 'scroll', 'touchstart', 'touchmove', 'touchend', 'pageshow', 'load'];
70965
+ var observerEntities = [];
70966
+ function getObserverEntities() {
70967
+ // Only used in test env. Can be removed if refactor.
70968
+ return observerEntities;
70969
+ }
70970
+ function addObserveTarget(target, affix) {
70971
+ if (!target) {
70972
+ return;
70973
+ }
70974
+ var entity = observerEntities.find(function (item) {
70975
+ return item.target === target;
70976
+ });
70977
+ if (entity) {
70978
+ entity.affixList.push(affix);
70979
+ } else {
70980
+ entity = {
70981
+ target: target,
70982
+ affixList: [affix],
70983
+ eventHandlers: {}
70984
+ };
70985
+ observerEntities.push(entity);
70986
+ // Add listener
70987
+ TRIGGER_EVENTS.forEach(function (eventName) {
70988
+ entity.eventHandlers[eventName] = (0,addEventListener/* default */.Z)(target, eventName, function () {
70989
+ entity.affixList.forEach(function (targetAffix) {
70990
+ targetAffix.lazyUpdatePosition();
70991
+ });
70992
+ });
70993
+ });
70994
+ }
70995
+ }
70996
+ function removeObserveTarget(affix) {
70997
+ var observerEntity = observerEntities.find(function (oriObserverEntity) {
70998
+ var hasAffix = oriObserverEntity.affixList.some(function (item) {
70999
+ return item === affix;
71000
+ });
71001
+ if (hasAffix) {
71002
+ oriObserverEntity.affixList = oriObserverEntity.affixList.filter(function (item) {
71003
+ return item !== affix;
71004
+ });
71005
+ }
71006
+ return hasAffix;
71007
+ });
71008
+ if (observerEntity && observerEntity.affixList.length === 0) {
71009
+ observerEntities = observerEntities.filter(function (item) {
71010
+ return item !== observerEntity;
71011
+ });
71012
+ // Remove listener
71013
+ TRIGGER_EVENTS.forEach(function (eventName) {
71014
+ var handler = observerEntity.eventHandlers[eventName];
71015
+ if (handler && handler.remove) {
71016
+ handler.remove();
71017
+ }
71018
+ });
71019
+ }
71020
+ }
71021
+ ;// CONCATENATED MODULE: ./node_modules/antd/es/affix/index.js
71022
+
71023
+
71024
+
71025
+
71026
+
71027
+
71028
+
71029
+ var __decorate = undefined && undefined.__decorate || function (decorators, target, key, desc) {
71030
+ var c = arguments.length,
71031
+ r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
71032
+ d;
71033
+ if ((typeof Reflect === "undefined" ? "undefined" : (0,esm_typeof/* default */.Z)(Reflect)) === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) {
71034
+ if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
71035
+ }
71036
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
71037
+ };
71038
+
71039
+
71040
+
71041
+
71042
+
71043
+
71044
+
71045
+ function getDefaultTarget() {
71046
+ return typeof window !== 'undefined' ? window : null;
71047
+ }
71048
+ var AffixStatus;
71049
+ (function (AffixStatus) {
71050
+ AffixStatus[AffixStatus["None"] = 0] = "None";
71051
+ AffixStatus[AffixStatus["Prepare"] = 1] = "Prepare";
71052
+ })(AffixStatus || (AffixStatus = {}));
71053
+ var Affix = /*#__PURE__*/function (_React$Component) {
71054
+ (0,inherits/* default */.Z)(Affix, _React$Component);
71055
+ var _super = (0,createSuper/* default */.Z)(Affix);
71056
+ function Affix() {
71057
+ var _this;
71058
+ (0,classCallCheck/* default */.Z)(this, Affix);
71059
+ _this = _super.apply(this, arguments);
71060
+ _this.state = {
71061
+ status: AffixStatus.None,
71062
+ lastAffix: false,
71063
+ prevTarget: null
71064
+ };
71065
+ _this.getOffsetTop = function () {
71066
+ var _this$props = _this.props,
71067
+ offsetBottom = _this$props.offsetBottom,
71068
+ offsetTop = _this$props.offsetTop;
71069
+ return offsetBottom === undefined && offsetTop === undefined ? 0 : offsetTop;
71070
+ };
71071
+ _this.getOffsetBottom = function () {
71072
+ return _this.props.offsetBottom;
71073
+ };
71074
+ _this.savePlaceholderNode = function (node) {
71075
+ _this.placeholderNode = node;
71076
+ };
71077
+ _this.saveFixedNode = function (node) {
71078
+ _this.fixedNode = node;
71079
+ };
71080
+ // =================== Measure ===================
71081
+ _this.measure = function () {
71082
+ var _this$state = _this.state,
71083
+ status = _this$state.status,
71084
+ lastAffix = _this$state.lastAffix;
71085
+ var onChange = _this.props.onChange;
71086
+ var targetFunc = _this.getTargetFunc();
71087
+ if (status !== AffixStatus.Prepare || !_this.fixedNode || !_this.placeholderNode || !targetFunc) {
71088
+ return;
71089
+ }
71090
+ var offsetTop = _this.getOffsetTop();
71091
+ var offsetBottom = _this.getOffsetBottom();
71092
+ var targetNode = targetFunc();
71093
+ if (!targetNode) {
71094
+ return;
71095
+ }
71096
+ var newState = {
71097
+ status: AffixStatus.None
71098
+ };
71099
+ var targetRect = getTargetRect(targetNode);
71100
+ var placeholderReact = getTargetRect(_this.placeholderNode);
71101
+ var fixedTop = getFixedTop(placeholderReact, targetRect, offsetTop);
71102
+ var fixedBottom = getFixedBottom(placeholderReact, targetRect, offsetBottom);
71103
+ if (placeholderReact.top === 0 && placeholderReact.left === 0 && placeholderReact.width === 0 && placeholderReact.height === 0) {
71104
+ return;
71105
+ }
71106
+ if (fixedTop !== undefined) {
71107
+ newState.affixStyle = {
71108
+ position: 'fixed',
71109
+ top: fixedTop,
71110
+ width: placeholderReact.width,
71111
+ height: placeholderReact.height
71112
+ };
71113
+ newState.placeholderStyle = {
71114
+ width: placeholderReact.width,
71115
+ height: placeholderReact.height
71116
+ };
71117
+ } else if (fixedBottom !== undefined) {
71118
+ newState.affixStyle = {
71119
+ position: 'fixed',
71120
+ bottom: fixedBottom,
71121
+ width: placeholderReact.width,
71122
+ height: placeholderReact.height
71123
+ };
71124
+ newState.placeholderStyle = {
71125
+ width: placeholderReact.width,
71126
+ height: placeholderReact.height
71127
+ };
71128
+ }
71129
+ newState.lastAffix = !!newState.affixStyle;
71130
+ if (onChange && lastAffix !== newState.lastAffix) {
71131
+ onChange(newState.lastAffix);
71132
+ }
71133
+ _this.setState(newState);
71134
+ };
71135
+ // @ts-ignore TS6133
71136
+ _this.prepareMeasure = function () {
71137
+ // event param is used before. Keep compatible ts define here.
71138
+ _this.setState({
71139
+ status: AffixStatus.Prepare,
71140
+ affixStyle: undefined,
71141
+ placeholderStyle: undefined
71142
+ });
71143
+ // Test if `updatePosition` called
71144
+ if (false) { var onTestUpdatePosition; }
71145
+ };
71146
+ return _this;
71147
+ }
71148
+ (0,createClass/* default */.Z)(Affix, [{
71149
+ key: "getTargetFunc",
71150
+ value: function getTargetFunc() {
71151
+ var getTargetContainer = this.context.getTargetContainer;
71152
+ var target = this.props.target;
71153
+ if (target !== undefined) {
71154
+ return target;
71155
+ }
71156
+ return getTargetContainer !== null && getTargetContainer !== void 0 ? getTargetContainer : getDefaultTarget;
71157
+ }
71158
+ // Event handler
71159
+ }, {
71160
+ key: "componentDidMount",
71161
+ value: function componentDidMount() {
71162
+ var _this2 = this;
71163
+ var targetFunc = this.getTargetFunc();
71164
+ if (targetFunc) {
71165
+ // [Legacy] Wait for parent component ref has its value.
71166
+ // We should use target as directly element instead of function which makes element check hard.
71167
+ this.timeout = setTimeout(function () {
71168
+ addObserveTarget(targetFunc(), _this2);
71169
+ // Mock Event object.
71170
+ _this2.updatePosition();
71171
+ });
71172
+ }
71173
+ }
71174
+ }, {
71175
+ key: "componentDidUpdate",
71176
+ value: function componentDidUpdate(prevProps) {
71177
+ var prevTarget = this.state.prevTarget;
71178
+ var targetFunc = this.getTargetFunc();
71179
+ var newTarget = (targetFunc === null || targetFunc === void 0 ? void 0 : targetFunc()) || null;
71180
+ if (prevTarget !== newTarget) {
71181
+ removeObserveTarget(this);
71182
+ if (newTarget) {
71183
+ addObserveTarget(newTarget, this);
71184
+ // Mock Event object.
71185
+ this.updatePosition();
71186
+ }
71187
+ // eslint-disable-next-line react/no-did-update-set-state
71188
+ this.setState({
71189
+ prevTarget: newTarget
71190
+ });
71191
+ }
71192
+ if (prevProps.offsetTop !== this.props.offsetTop || prevProps.offsetBottom !== this.props.offsetBottom) {
71193
+ this.updatePosition();
71194
+ }
71195
+ this.measure();
71196
+ }
71197
+ }, {
71198
+ key: "componentWillUnmount",
71199
+ value: function componentWillUnmount() {
71200
+ clearTimeout(this.timeout);
71201
+ removeObserveTarget(this);
71202
+ this.updatePosition.cancel();
71203
+ // https://github.com/ant-design/ant-design/issues/22683
71204
+ this.lazyUpdatePosition.cancel();
71205
+ }
71206
+ // Handle realign logic
71207
+ }, {
71208
+ key: "updatePosition",
71209
+ value: function updatePosition() {
71210
+ this.prepareMeasure();
71211
+ }
71212
+ }, {
71213
+ key: "lazyUpdatePosition",
71214
+ value: function lazyUpdatePosition() {
71215
+ var targetFunc = this.getTargetFunc();
71216
+ var affixStyle = this.state.affixStyle;
71217
+ // Check position change before measure to make Safari smooth
71218
+ if (targetFunc && affixStyle) {
71219
+ var offsetTop = this.getOffsetTop();
71220
+ var offsetBottom = this.getOffsetBottom();
71221
+ var targetNode = targetFunc();
71222
+ if (targetNode && this.placeholderNode) {
71223
+ var targetRect = getTargetRect(targetNode);
71224
+ var placeholderReact = getTargetRect(this.placeholderNode);
71225
+ var fixedTop = getFixedTop(placeholderReact, targetRect, offsetTop);
71226
+ var fixedBottom = getFixedBottom(placeholderReact, targetRect, offsetBottom);
71227
+ if (fixedTop !== undefined && affixStyle.top === fixedTop || fixedBottom !== undefined && affixStyle.bottom === fixedBottom) {
71228
+ return;
71229
+ }
71230
+ }
71231
+ }
71232
+ // Directly call prepare measure since it's already throttled.
71233
+ this.prepareMeasure();
71234
+ }
71235
+ // =================== Render ===================
71236
+ }, {
71237
+ key: "render",
71238
+ value: function render() {
71239
+ var _this3 = this;
71240
+ var _this$state2 = this.state,
71241
+ affixStyle = _this$state2.affixStyle,
71242
+ placeholderStyle = _this$state2.placeholderStyle;
71243
+ var _this$props2 = this.props,
71244
+ affixPrefixCls = _this$props2.affixPrefixCls,
71245
+ children = _this$props2.children;
71246
+ var className = node_modules_classnames_default()((0,defineProperty/* default */.Z)({}, affixPrefixCls, !!affixStyle));
71247
+ var props = (0,es_omit/* default */.Z)(this.props, ['prefixCls', 'offsetTop', 'offsetBottom', 'target', 'onChange', 'affixPrefixCls']);
71248
+ // Omit this since `onTestUpdatePosition` only works on test.
71249
+ if (false) {}
71250
+ return /*#__PURE__*/external_react_.createElement(rc_resize_observer_es["default"], {
71251
+ onResize: function onResize() {
71252
+ _this3.updatePosition();
71253
+ }
71254
+ }, /*#__PURE__*/external_react_.createElement("div", (0,esm_extends/* default */.Z)({}, props, {
71255
+ ref: this.savePlaceholderNode
71256
+ }), affixStyle && /*#__PURE__*/external_react_.createElement("div", {
71257
+ style: placeholderStyle,
71258
+ "aria-hidden": "true"
71259
+ }), /*#__PURE__*/external_react_.createElement("div", {
71260
+ className: className,
71261
+ ref: this.saveFixedNode,
71262
+ style: affixStyle
71263
+ }, /*#__PURE__*/external_react_.createElement(rc_resize_observer_es["default"], {
71264
+ onResize: function onResize() {
71265
+ _this3.updatePosition();
71266
+ }
71267
+ }, children))));
71268
+ }
71269
+ }]);
71270
+ return Affix;
71271
+ }(external_react_.Component);
71272
+ Affix.contextType = ConfigContext;
71273
+ __decorate([throttleByAnimationFrameDecorator()], Affix.prototype, "updatePosition", null);
71274
+ __decorate([throttleByAnimationFrameDecorator()], Affix.prototype, "lazyUpdatePosition", null);
71275
+ var AffixFC = /*#__PURE__*/external_react_.forwardRef(function (props, ref) {
71276
+ var customizePrefixCls = props.prefixCls;
71277
+ var _React$useContext = external_react_.useContext(ConfigContext),
71278
+ getPrefixCls = _React$useContext.getPrefixCls;
71279
+ var affixPrefixCls = getPrefixCls('affix', customizePrefixCls);
71280
+ var affixProps = (0,esm_extends/* default */.Z)((0,esm_extends/* default */.Z)({}, props), {
71281
+ affixPrefixCls: affixPrefixCls
71282
+ });
71283
+ return /*#__PURE__*/external_react_.createElement(Affix, (0,esm_extends/* default */.Z)({}, affixProps, {
71284
+ ref: ref
71285
+ }));
71286
+ });
71287
+ if (false) {}
71288
+ /* harmony default export */ var affix = (AffixFC);
71289
+ ;// CONCATENATED MODULE: ./src/components/ActionBar/actionBar.tsx
71290
+
71291
+
71292
+
71293
+
71294
+ var ACTION_BAR_CLASS_PREFIX = 'condo-affix';
71295
+ var AFFIX_CONTENT_WRAPPER_CLASS = "".concat(ACTION_BAR_CLASS_PREFIX, "-content-wrapper");
71296
+ var SPACE_SIZE = [16, 16];
71297
+ var ActionBar = function ActionBar(props) {
71298
+ var actions = props.actions,
71299
+ message = props.message;
71300
+ return /*#__PURE__*/external_react_default().createElement(affix, {
71301
+ offsetBottom: 0,
71302
+ prefixCls: ACTION_BAR_CLASS_PREFIX
71303
+ }, /*#__PURE__*/external_react_default().createElement(space_Space, {
71304
+ wrap: true,
71305
+ size: SPACE_SIZE,
71306
+ className: AFFIX_CONTENT_WRAPPER_CLASS
71307
+ }, message && /*#__PURE__*/external_react_default().createElement(Typography.Text, {
71308
+ strong: true
71309
+ }, message), actions));
71310
+ };
71311
+ ;// CONCATENATED MODULE: ./src/components/ActionBar/index.ts
71312
+
71313
+
71314
+
70874
71315
  ;// CONCATENATED MODULE: ./src/index.ts
70875
71316
 
70876
71317
 
@@ -70890,6 +71331,7 @@ var space_Space = function Space(_ref) {
70890
71331
 
70891
71332
 
70892
71333
 
71334
+
70893
71335
  }();
70894
71336
  /******/ return __webpack_exports__;
70895
71337
  /******/ })()