@adamjanicki/ui 1.8.6 → 1.8.7
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/components/Avatar/Avatar.js +1 -1
- package/components/Select/Select.js +1 -1
- package/components/Table/Table.d.ts +48 -0
- package/components/Table/Table.js +1 -0
- package/components/Table/index.d.ts +1 -0
- package/components/Table/index.js +1 -0
- package/components/ui/transformVfx.js +1 -1
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -1
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/types/common.d.ts +112 -0
- package/types/icon.d.ts +5 -0
- package/types/navigation.d.ts +44 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as g}from"react/jsx-runtime";import S,{useState as k}from"react";import C from"../ui";import I from"../Box/Box";import{classNames as i}from"../../functions";var
|
|
1
|
+
import{jsx as g}from"react/jsx-runtime";import S,{useState as k}from"react";import C from"../ui";import I from"../Box/Box";import{classNames as i}from"../../functions";var n=function(){return n=Object.assign||function(r){for(var o,a=1,e=arguments.length;a<e;a++){o=arguments[a];for(var t in o)Object.prototype.hasOwnProperty.call(o,t)&&(r[t]=o[t])}return r},n.apply(this,arguments)},N=function(r,o){var a={};for(var e in r)Object.prototype.hasOwnProperty.call(r,e)&&o.indexOf(e)<0&&(a[e]=r[e]);if(r!=null&&typeof Object.getOwnPropertySymbols=="function")for(var t=0,e=Object.getOwnPropertySymbols(r);t<e.length;t++)o.indexOf(e[t])<0&&Object.prototype.propertyIsEnumerable.call(r,e[t])&&(a[e[t]]=r[e[t]]);return a},_=S.forwardRef(function(r,o){var a=r.size,e=a===void 0?"s":a,t=r.backgroundImage,h=r.className,p=r.style,l=r.username,y=r.vfx,b=N(r,["size","backgroundImage","className","style","username","vfx"]),c=k(!1),O=c[0],x=c[1],f=O||!t,w=z(l),s=void 0;f&&(s=i(s,"aui-avatar-".concat(w)));var u=void 0,m={},v=void 0;typeof e=="number"?(m={width:e,height:e,fontSize:.8*e},v={width:e,height:e}):(s=i(s,"aui-avatar-".concat(e)),u="aui-avatar-".concat(e));var j=l[0];return g(I,n({className:i(s,h),style:n(n({},m),p),vfx:n({radius:"rounded",overflow:"hidden",fontWeight:6,textAlign:"center",color:"default"},y)},b,{ref:o,children:f?j:g(C.img,{src:t,alt:"",className:u,onError:function(){return x(!0)},style:v})}))}),d=["red","yellow","green","blue","purple"];function z(r){return d[r.split("").reduce(function(o,a){return o+a.charCodeAt(0)},0)%d.length]}var F=_;export{F as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{jsx as c,jsxs as h}from"react/jsx-runtime";import b from"react";import f from"../../functions/classNames";import
|
|
1
|
+
import{jsx as c,jsxs as h}from"react/jsx-runtime";import b from"react";import f from"../../functions/classNames";import x from"../Box/Box";import O from"../Icon";import y from"../ui";import{select as j}from"../../icons";var s=function(){return s=Object.assign||function(e){for(var o,n=1,t=arguments.length;n<t;n++){o=arguments[n];for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(e[r]=o[r])}return e},s.apply(this,arguments)},g=function(e,o){var n={};for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&o.indexOf(t)<0&&(n[t]=e[t]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var r=0,t=Object.getOwnPropertySymbols(e);r<t.length;r++)o.indexOf(t[r])<0&&Object.prototype.propertyIsEnumerable.call(e,t[r])&&(n[t[r]]=e[t[r]]);return n},N=b.forwardRef(function(e,o){var n=e.className,t=e.options,r=e.vfx,l=e.getOptionLabel,a=e.selectProps,u=e.value,p=e.onChange,m=g(e,["className","options","vfx","getOptionLabel","selectProps","value","onChange"]),d=(a||{}).className;return h(x,s({vfx:s({pos:"relative",width:"fit",axis:"x",align:"center",radius:"rounded",backgroundColor:"default",color:"default",padding:"none"},r),className:f("aui-select-container",a!=null&&a.disabled?"aui-select-disabled":void 0,n)},m,{children:[c(y.select,s({},a,{value:u,onChange:p,className:f("aui-select",d),ref:o,children:t.map(function(i,v){return c("option",{value:i,children:(l==null?void 0:l(i))||i},v)})})),c(O,{icon:j,vfx:{color:"muted",pos:"absolute"},style:{top:"50%",right:10,transform:"translateY(-50%)",pointerEvents:"none"},size:"xs","aria-hidden":!0})]}))}),I=N;export{I as default};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { ReadonlyableArray } from "../../types/common";
|
|
3
|
+
import type { BoxProps } from "../Box/Box";
|
|
4
|
+
import { UnstyledLink } from "../../navigation/Link";
|
|
5
|
+
type LinkProps = React.ComponentProps<typeof UnstyledLink>;
|
|
6
|
+
type RouteLinkProps = Pick<LinkProps, "to" | "newTab">;
|
|
7
|
+
type MinimalItem = {
|
|
8
|
+
id: string;
|
|
9
|
+
};
|
|
10
|
+
type ContainerProps = Omit<BoxProps, "children">;
|
|
11
|
+
export type SortDirection = "none" | "asc" | "desc";
|
|
12
|
+
type ColumnConfig<Item extends MinimalItem, Key extends keyof Item = keyof Item> = {
|
|
13
|
+
/** The key in the item struct for this column */
|
|
14
|
+
key: Key;
|
|
15
|
+
/** What to render as the header */
|
|
16
|
+
header: React.ReactNode;
|
|
17
|
+
/** Custom render function for the inner cell content */
|
|
18
|
+
render?: (item: Item) => React.ReactNode;
|
|
19
|
+
/** Whether this column is sortable */
|
|
20
|
+
sortable?: boolean;
|
|
21
|
+
/** Additional props for the body cell container */
|
|
22
|
+
cellProps?: ContainerProps;
|
|
23
|
+
};
|
|
24
|
+
type Props<Item extends MinimalItem> = ContainerProps & {
|
|
25
|
+
/** Items to render in the rows of the table */
|
|
26
|
+
items: ReadonlyableArray<Item>;
|
|
27
|
+
/** Columns to render for each data item */
|
|
28
|
+
columns: ReadonlyableArray<ColumnConfig<Item>>;
|
|
29
|
+
/** Additional props for each header cell container */
|
|
30
|
+
headerCellProps?: ContainerProps;
|
|
31
|
+
/**
|
|
32
|
+
* Options for controlled sorting of rows
|
|
33
|
+
*/
|
|
34
|
+
sort?: {
|
|
35
|
+
/** The key of the sorted column, or undefined if none */
|
|
36
|
+
key: keyof Item | undefined;
|
|
37
|
+
/** The current sort direction */
|
|
38
|
+
direction: SortDirection;
|
|
39
|
+
/** Callback to fire when the sort column/direction change */
|
|
40
|
+
onSort: (key: keyof Item, direction: SortDirection) => void;
|
|
41
|
+
};
|
|
42
|
+
/** A row can either be a link to somewhere */
|
|
43
|
+
routeTo?: (item: Item) => RouteLinkProps;
|
|
44
|
+
/** Whether to render a small before between columns */
|
|
45
|
+
gutters?: boolean;
|
|
46
|
+
};
|
|
47
|
+
declare const Table: <Item extends MinimalItem>({ items, columns, headerCellProps, sort, routeTo, vfx, gutters, ...boxProps }: Props<Item>) => import("react/jsx-runtime").JSX.Element;
|
|
48
|
+
export default Table;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as a,jsxs as O,Fragment as S}from"react/jsx-runtime";import{createElement as P}from"react";import f from"../Box/Box";import{UnstyledLink as C}from"../../navigation/Link";import B from"../Icon";import{arrowDown as E,arrowUp as I,select as R}from"../../icons";import{UnstyledButton as U}from"../Button";import z from"../../functions/classNames";var l=function(){return l=Object.assign||function(r){for(var n,o=1,e=arguments.length;o<e;o++){n=arguments[o];for(var t in n)Object.prototype.hasOwnProperty.call(n,t)&&(r[t]=n[t])}return r},l.apply(this,arguments)},g=function(r,n){var o={};for(var e in r)Object.prototype.hasOwnProperty.call(r,e)&&n.indexOf(e)<0&&(o[e]=r[e]);if(r!=null&&typeof Object.getOwnPropertySymbols=="function")for(var t=0,e=Object.getOwnPropertySymbols(r);t<e.length;t++)n.indexOf(e[t])<0&&Object.prototype.propertyIsEnumerable.call(r,e[t])&&(o[e[t]]=r[e[t]]);return o},D={none:"asc",asc:"desc",desc:"none"},F={asc:I,desc:E,none:R},W=function(r){var n=r.items,o=r.columns,e=r.headerCellProps,t=e===void 0?{}:e,i=r.sort,d=r.routeTo,u=r.vfx,m=r.gutters,v=g(r,["items","columns","headerCellProps","sort","routeTo","vfx","gutters"]);return a(f,l({},v,{vfx:l({axis:"y",backgroundColor:"default",border:!0,radius:"rounded",shadow:"subtle",overflowX:"scroll"},u),children:O(f,{className:"aui-table",role:"table",vfx:{width:"full"},children:[a(f,{className:"aui-table-row",role:"row",children:o.map(function(s,p){var c=s.key,h=s.header,x=s.sortable,b=x===void 0?!1:x,j=b&&i&&i.key===c,y=j?i.direction:"none",w=b?F[y]:null,T=t.vfx,N=g(t,["vfx"]);return P(k,l({},N,{key:String(c),vfx:l({borderRight:m&&p<o.length-1,borderBottom:!0,fontSize:"s",fontWeight:7},T)}),i&&w?O(U,{onClick:function(){return i.onSort(c,D[y])},vfx:{fontWeight:7,axis:"x",align:"center",gap:"s"},children:[h,a(B,{icon:w,vfx:{color:"muted"},size:"xs","aria-hidden":!0})]}):h)})}),n.map(function(s){return a(X,{item:s,columns:o,routeTo:d,gutters:m},s.id)})]})}))},X=function(r){var n=r.item,o=r.columns,e=r.routeTo,t=r.gutters,i=o.map(function(u,m){var v=u.key,s=u.cellProps,p=s===void 0?{}:s,c=u.render,h=p.vfx,x=g(p,["vfx"]);return P(k,l({},x,{key:String(v),vfx:l({borderRight:t&&m<o.length-1},h)}),c?c(n):a(S,{children:n[v]}))}),d={role:"row",children:i};return e?a(C,l({},d,e(n),{className:"aui-table-row-link"})):a(f,l({},d,{className:"aui-table-row"}))},k=function(r){var n=r.vfx,o=r.children,e=r.className,t=g(r,["vfx","children","className"]);return a(f,l({},t,{className:z("aui-table-cell",e),vfx:l({paddingX:"m",paddingY:"s"},n),children:o}))},M=W;export{M as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./Table";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{default as o}from"./Table";export{o as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var c={pos:function(n){var r=n.pos;return"aui-pos-".concat(r)},axis:function(n){var r=n.axis;return"aui-flex-".concat(r)},gap:function(n){var r=n.gap;return"aui-gap-".concat(r)},align:function(n){var r=n.align;return"aui-align-".concat(r)},justify:function(n){var r=n.justify;return"aui-justify-".concat(r)},stretch:function(n){var r=n.stretch;return"aui-stretch-".concat(r)},wrap:function(){return"aui-flex-wrap"},overflow:function(n){var r=n.overflow;return"aui-ov-".concat(r)},overflowX:function(n){var r=n.overflowX;return"aui-ov-x-".concat(r)},overflowY:function(n){var r=n.overflowY;return"aui-ov-y-".concat(r)},z:function(n){var r=n.z;return"aui-z-".concat(r)},padding:function(n){var r=n.padding;return"aui-pa-".concat(r)},paddingX:function(n){var r=n.paddingX,
|
|
1
|
+
var c={pos:function(n){var r=n.pos;return"aui-pos-".concat(r)},axis:function(n){var r=n.axis;return"aui-flex-".concat(r)},gap:function(n){var r=n.gap;return"aui-gap-".concat(r)},align:function(n){var r=n.align;return"aui-align-".concat(r)},justify:function(n){var r=n.justify;return"aui-justify-".concat(r)},stretch:function(n){var r=n.stretch;return"aui-stretch-".concat(r)},wrap:function(){return"aui-flex-wrap"},overflow:function(n){var r=n.overflow;return"aui-ov-".concat(r)},overflowX:function(n){var r=n.overflowX;return"aui-ov-x-".concat(r)},overflowY:function(n){var r=n.overflowY;return"aui-ov-y-".concat(r)},z:function(n){var r=n.z;return"aui-z-".concat(r)},padding:function(n){var r=n.padding;return"aui-pa-".concat(r)},paddingX:function(n){var r=n.paddingX,i=n.paddingLeft,a=n.paddingRight,t=[];return i||t.push("aui-pl-".concat(r)),a||t.push("aui-pr-".concat(r)),t.join(" ")},paddingY:function(n){var r=n.paddingY,i=n.paddingTop,a=n.paddingBottom,t=[];return i||t.push("aui-pt-".concat(r)),a||t.push("aui-pb-".concat(r)),t.join(" ")},paddingTop:function(n){var r=n.paddingTop;return"aui-pt-".concat(r)},paddingBottom:function(n){var r=n.paddingBottom;return"aui-pb-".concat(r)},paddingLeft:function(n){var r=n.paddingLeft;return"aui-pl-".concat(r)},paddingRight:function(n){var r=n.paddingRight;return"aui-pr-".concat(r)},margin:function(n){var r=n.margin;return"aui-ma-".concat(r)},marginX:function(n){var r=n.marginX,i=n.marginLeft,a=n.marginRight,t=[];return i||t.push("aui-ml-".concat(r)),a||t.push("aui-mr-".concat(r)),t.join(" ")},marginY:function(n){var r=n.marginY,i=n.marginTop,a=n.marginBottom,t=[];return i||t.push("aui-mt-".concat(r)),a||t.push("aui-mb-".concat(r)),t.join(" ")},marginTop:function(n){var r=n.marginTop;return"aui-mt-".concat(r)},marginBottom:function(n){var r=n.marginBottom;return"aui-mb-".concat(r)},marginLeft:function(n){var r=n.marginLeft;return"aui-ml-".concat(r)},marginRight:function(n){var r=n.marginRight;return"aui-mr-".concat(r)},width:function(n){var r=n.width;return"aui-w-".concat(r)},minWidth:function(n){var r=n.minWidth;return"aui-minw-".concat(r)},maxWidth:function(n){var r=n.maxWidth;return"aui-maxw-".concat(r)},height:function(n){var r=n.height;return"aui-h-".concat(r)},minHeight:function(n){var r=n.minHeight;return"aui-minh-".concat(r)},maxHeight:function(n){var r=n.maxHeight;return"aui-maxh-".concat(r)},radius:function(n){var r=n.radius;return"aui-radius-".concat(r)},border:function(){return"aui-ba"},borderTop:function(){return"aui-bt"},borderBottom:function(){return"aui-bb"},borderLeft:function(){return"aui-bl"},borderRight:function(){return"aui-br"},borderWidth:function(n){var r=n.borderWidth;return"aui-bw-".concat(r)},borderStyle:function(n){var r=n.borderStyle;return"aui-bs-".concat(r)},borderColor:function(n){var r=n.borderColor;return"aui-bc-".concat(r)},shadow:function(n){var r=n.shadow;return"aui-shadow-".concat(r)},opacity:function(n){var r=n.opacity;return"aui-op-".concat(r)},fontSize:function(n){var r=n.fontSize;return"aui-f-".concat(r)},fontWeight:function(n){var r=n.fontWeight;return"aui-fw-".concat(r)},textAlign:function(n){var r=n.textAlign;return"aui-ta-".concat(r)},italics:function(){return"aui-it"},color:function(n){var r=n.color;return"aui-c-".concat(r)},backgroundColor:function(n){var r=n.backgroundColor;return"aui-bg-".concat(r)},cursor:function(n){var r=n.cursor;return"aui-cursor-".concat(r)}};function e(n){if(!n)return null;var r=[];return Object.entries(n).forEach(function(i){var a=i[0],t=i[1],u=c[a],o=u(n);t&&o&&r.push(o)}),r.join(" ")||null}export{e as default};
|
package/icons/index.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export declare const plus: IconType;
|
|
|
67
67
|
export declare const plusCircle: IconType;
|
|
68
68
|
export declare const podium: IconType;
|
|
69
69
|
export declare const search: IconType;
|
|
70
|
+
export declare const select: IconType;
|
|
70
71
|
export declare const settings: IconType;
|
|
71
72
|
export declare const share: IconType;
|
|
72
73
|
export declare const shell: IconType;
|
package/icons/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var c="M15.5778,11.0972c.2812-.3581.4222-.7534.4222-1.1856V.375c0-.2072-.1678-.375-.375-.375h-2.2056c-.2072,0-.375.1678-.375.375v9.42L9.1734,1.6684c-.0622-.1306-.1941-.2137-.3384-.2137h-1.6697c-.1447,0-.2762.0831-.3384.2137l-3.8909,8.1684c-.0016-.0091-.0025-.0181-.0025-.0275v-.9216c0-.2072-.1678-.375-.375-.375H.375c-.2072,0-.375.1678-.375.375v1.0238c0,.4322.1406.8275.4222,1.1856.2812.3581.6556.6456,1.1222.8616.1041.0481.2106.0906.3194.1281l-1.6084,3.3769c-.1184.2487.0628.5363.3384.5363h2.1431c.1447,0,.2766-.0834.3387-.2141l1.6638-3.5031h6.5047l1.6637,3.5031c.0622.1309.1941.2141.3387.2141h2.1597c.2756,0,.4572-.2875.3384-.5363l-1.6084-3.3769c.1088-.0375.2153-.08.3194-.1281.4666-.2159.8406-.5031,1.1222-.8616h0ZM6.0712,9.4781l1.5816-3.3303c.1356-.2856.5419-.2856.6775,0l1.5816,3.3303c.1181.2487-.0634.5359-.3387.5359h-3.1631c-.2753,0-.4569-.2872-.3387-.5359Z",h="M7.6177,15.9241c.2446.1012.52.1012.7646,0,.1185-.0492.2247-.121.3151-.2092.0029-.0029.0069-.0036.0098-.0065l4.9497-4.9502c.3905-.3905.3905-1.0238,0-1.4143-.3905-.3906-1.0237-.3906-1.4142,0l-3.2427,3.2429V1.0001C9,.4477,8.5523,0,8,0s-1,.4477-1,1.0001v11.5867s-3.2426-3.2428-3.2426-3.2428c-.3905-.3906-1.0237-.3906-1.4142,0s-.3905,1.0238,0,1.4143l4.9498,4.9502c.0018.0018.0042.0022.0059.0039.0911.0898.199.1621.3189.2118Z",v="M.0753,8.3823c-.1012-.2446-.1012-.52,0-.7646.0492-.1185.121-.2247.2092-.3151.0029-.0029.0036-.0069.0065-.0098L5.2411,2.3431c.3905-.3905,1.0238-.3905,1.4143,0,.3906.3905.3906,1.0237,0,1.4142l-3.2429,3.2427h11.5868c.5524,0,1.0001.4477,1.0001,1s-.4477,1-1.0001,1H3.4126l3.2428,3.2426c.3906.3905.3906,1.0237,0,1.4142s-1.0238.3905-1.4143,0L.291,8.7071c-.0018-.0018-.0022-.0042-.0039-.0059-.0898-.0911-.1621-.199-.2118-.3189Z",l="M15.9235,8.3823c.1012-.2446.1012-.52,0-.7646-.0492-.1185-.121-.2247-.2092-.3151-.0029-.0029-.0036-.0069-.0065-.0098l-4.9502-4.9497c-.3905-.3905-1.0238-.3905-1.4143,0-.3906.3905-.3906,1.0237,0,1.4142l3.2429,3.2427H.9995C.4471,7-.0006,7.4477-.0006,8s.4477,1,1.0001,1h11.5867l-3.2428,3.2426c-.3906.3905-.3906,1.0237,0,1.4142s1.0238.3905,1.4143,0l4.9502-4.9498c.0018-.0018.0022-.0042.0039-.0059.0898-.0911.1621-.199.2118-.3189Z",M="M7.6177.0759c.2446-.1012.52-.1012.7646,0,.1185.0492.2247.121.3151.2092.0029.0029.0069.0036.0098.0065l4.9497,4.9502c.3905.3905.3905,1.0238,0,1.4143-.3905.3906-1.0237.3906-1.4142,0l-3.2427-3.2429v11.5868c0,.5524-.4477,1.0001-1,1.0001s-1-.4477-1-1.0001V3.4133s-3.2426,3.2428-3.2426,3.2428c-.3905.3906-1.0237.3906-1.4142,0s-.3905-1.0238,0-1.4143L7.2929.2916c.0018-.0018.0042-.0022.0059-.0039.0911-.0898.199-.1621.3189-.2118Z",Z="M14.9282,4c-.6038-1.0458-2.0749-1.4437-3.9071-1.2328C10.2877,1.075,9.2076,0,8,0s-2.2877,1.0751-3.0211,2.7672c-1.8322-.2109-3.3033.1869-3.9071,1.2328s-.2129,2.5187.8859,4c-1.0988,1.4813-1.4897,2.9542-.8859,4s2.0748,1.4437,3.907,1.2328c.7334,1.6922,1.8135,2.7672,3.0211,2.7672s2.2877-1.0751,3.0211-2.7672c1.8322.2109,3.3033-.1869,3.9071-1.2328s.2129-2.5186-.8859-3.9999c1.0988-1.4813,1.4898-2.9542.8859-4.0001ZM4.3932,11.4411c-.7919.0757-1.3691-.0597-1.5893-.4411s-.0489-.949.4126-1.597c.2927.2772.6059.5496.9426.8145.0611.4241.1404.8315.2341,1.2235ZM2.8039,5c.2202-.3814.7974-.5167,1.5893-.4411-.0937.392-.1729.7994-.2341,1.2235-.3353.2639-.6474.5351-.9389.811-.4586-.6457-.636-1.2131-.4163-1.5934ZM8,14c-.4392,0-.8419-.4373-1.1718-1.1573.3848-.1145.7756-.2492,1.1718-.4076.3978.1591.7903.2942,1.1766.4091-.3304.7237-.7362,1.1558-1.1766,1.1558ZM5.4019,9.5c-.8284-1.4349-.3368-3.2696,1.0981-4.0981s3.2696-.3368,4.0981,1.0981.3368,3.2696-1.0981,4.0981-3.2696.3368-4.0981-1.0981ZM13.1962,11c-.2202.3814-.7974.5168-1.5894.4411.0937-.392.1729-.7995.2341-1.2235.3353-.2639.6473-.5351.9389-.811.4586.6457.6359,1.2131.4163,1.5934ZM9.1718,3.1573c-.3847.1145-.7756.2492-1.1718.4076-.3979-.1591-.7904-.2943-1.1767-.4091.3304-.7236.7363-1.1558,1.1767-1.1558.4392,0,.8419.4373,1.1718,1.1573ZM12.7835,6.5969c-.2927-.2772-.6059-.5495-.9426-.8145-.0611-.4241-.1404-.8316-.2341-1.2236.7919-.0757,1.3691.0597,1.5893.4411s.0488.949-.4127,1.5969ZM8.866,7.5c.2761.4783.1123,1.0899-.366,1.366s-1.0899.1123-1.366-.366-.1123-1.0899.366-1.366,1.0899-.1123,1.366.366Z",r="M14.3374,6.1735h.0001c-.0375-.4687-.512-.8192-.6546-1.2562l-.0419-.1562c-.0953-.4498.1407-.9905-.0612-1.4155-.2278-.6859-.9683-.6907-1.4266-1.1453-.389-.3591-.4005-.9323-.8239-1.2454-.5374-.4791-1.1875-.1111-1.8097-.275-.594-.1584-.9305-.7239-1.5197-.6772-.5906-.0469-.9323.519-1.5233.6772-.522.155-1.0462-.1177-1.4901.095-.507.1795-.6814.6392-.9037,1.1151-.3085.6185-1.1274.673-1.4871,1.1352-.3477.4052-.2687.8929-.222,1.4184.0414.7628-.7646,1.2202-.7302,1.9108-.047.5906.519.9322.6772,1.5234.1625.622-.2001,1.2735.2803,1.8109.2726.3875.837.4611,1.2141.8203v4.9668c0,.466.5634.6993.893.3698l2.9217-2.9218c.2043-.2043.5355-.2043.7399,0l2.9218,2.9218c.3295.3295.893.0962.893-.3699v-4.9854c.0103-.0192.0187-.0348.029-.0541.5892-.3795,1.4185-.5754,1.4506-1.4131.0268-.3505-.1125-.7572.0103-1.1447.1692-.6226.8096-.9972.6628-1.7051ZM8.0001,8.7724c-1.3807,0-2.5-1.1172-2.5-2.4954s1.1193-2.4953,2.5-2.4953,2.5,1.1172,2.5,2.4953-1.1193,2.4954-2.5,2.4954Z",s="M5,6h0c.5523,0,1,.4477,1,1v4c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1v-4c0-.5523.4477-1,1-1ZM13,4h0c.5523,0,1,.4477,1,1v6c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1v-6c0-.5523.4477-1,1-1ZM9,2h0c.5523,0,1,.4477,1,1v8c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1V3c0-.5523.4477-1,1-1ZM15,13.9948H2V1c0-.5523-.4477-1-1-1S0,.4477,0,1v14c0,.5522.4478,1,1,1,.0091,0,.0167-.0049.0257-.0052h13.9743c.5523,0,1-.4477,1-1s-.4477-1-1-1Z",e="M14.1079,12.2049c-.512-.3928-.8403-.9752-.9876-1.6036-.2782-1.1865-.6092-3.0107-.62-5.006-.0114-2.1172-1.4575-4.0092-3.5003-4.4756v-.1196c0-.5523-.4477-1-1-1s-1,.4477-1,1v.1196c-2.0428.4664-3.4889,2.3584-3.5003,4.4756-.0108,1.9953-.3418,3.8195-.62,5.006-.1473.6284-.4756,1.2109-.9876,1.6036-.2736.2098-.4356.5579-.3818.9399.0714.5071.5548.8552,1.0666.8552h3.4232c0,1.0972.9028,2,2,2s2-.9028,2-2h3.4232c.5118,0,.9952-.3481,1.0666-.8552.0538-.382-.1083-.73-.3818-.9399ZM8,14h-.0292c.0162,0,.0292-.0131.0292-.0292,0,.0161.0131.0292.0292.0292h-.0292Z",o="M12,0H4c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h8c1.1046,0,2-.8954,2-2V2c0-1.1046-.8954-2-2-2ZM9.3333,2.25c0-.1381.1119-.25.25-.25h1.5c.1381,0,.25.1119.25.25v1.5c0,.1381-.1119.25-.25.25h-1.5c-.1381,0-.25-.1119-.25-.25v-1.5ZM9.3333,6.25c0-.1381.1119-.25.25-.25h1.5c.1381,0,.25.1119.25.25v1.5c0,.1381-.1119.25-.25.25h-1.5c-.1381,0-.25-.1119-.25-.25v-1.5ZM8.9062,10c.5523,0,1,.4477,1,1v2.75c0,.1381-.1119.25-.25.25h-3.5c-.1381,0-.25-.1119-.25-.25v-2.75c0-.5523.4477-1,1-1h2ZM4.6667,2.25c0-.1381.1119-.25.25-.25h1.5c.1381,0,.25.1119.25.25v1.5c0,.1381-.1119.25-.25.25h-1.5c-.1381,0-.25-.1119-.25-.25v-1.5ZM4.6667,6.25c0-.1381.1119-.25.25-.25h1.5c.1381,0,.25.1119.25.25v1.5c0,.1381-.1119.25-.25.25h-1.5c-.1381,0-.25-.1119-.25-.25v-1.5Z",a="M8,11.25c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5,11.25c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM8,8.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5,8.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM8,5.75c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5,5.75c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM11,5.75c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM4.5,2.875h7c.2761,0,.5.2239.5.5v1c0,.2761-.2239.5-.5.5h-7c-.2761,0-.5-.2239-.5-.5v-1c0-.2761.2239-.5.5-.5ZM11,8.5h0c.5523,0,1,.4477,1,1v2.75c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1v-2.75c0-.5523.4477-1,1-1ZM13,0H3C1.8954,0,1,.8954,1,2v12c0,1.1046.8954,2,2,2h10c1.1046,0,2-.8954,2-2V2c0-1.1046-.8954-2-2-2ZM12.5,14H3.5c-.2761,0-.5-.2239-.5-.5V2.5c0-.2761.2239-.5.5-.5h9c.2761,0,.5.2239.5.5v11c0,.2761-.2239.5-.5.5Z",t="M4.5,10.25h-.5c-.2761,0-.5-.2239-.5-.5v-.5c0-.2761.2239-.5.5-.5h.5c.2761,0,.5.2239.5.5v.5c0,.2761-.2239.5-.5.5ZM5,12.25v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM7.5,9.75v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM7.5,12.25v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM10,9.75v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM10,12.25v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM12.5,9.75v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM12.5,12.25v-.5c0-.2761-.2239-.5-.5-.5h-.5c-.2761,0-.5.2239-.5.5v.5c0,.2761.2239.5.5.5h.5c.2761,0,.5-.2239.5-.5ZM16,3.5v10.5c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2V3.5C0,2.3954.8954,1.5,2,1.5h2v-.5c0-.5523.4477-1,1-1s1,.4477,1,1v.5h4v-.5c0-.5523.4477-1,1-1s1,.4477,1,1v.5h2c1.1046,0,2,.8954,2,2ZM14,13.5v-5.5c0-.2761-.2239-.5-.5-.5H2.5c-.2761,0-.5.2239-.5.5v5.5c0,.2761.2239.5.5.5h11c.2761,0,.5-.2239.5-.5ZM2.5,5.5h11c.2761,0,.5-.2239.5-.5v-1c0-.2761-.2239-.5-.5-.5H2.5c-.2761,0-.5.2239-.5.5v1c0,.2761.2239.5.5.5Z",p="M15,6.5h-.5l-.9148-3.5051c-.2299-.8806-1.0251-1.4949-1.9352-1.4949h-7.3c-.91,0-1.7053.6144-1.9352,1.4949l-.9148,3.5051h-.5c-.5523,0-1,.4477-1,1s.4477,1,1,1v5c0,.5522.4477,1,1,1h1c.5523,0,1-.4478,1-1v-1h8v1c0,.5522.4477,1,1,1h1c.5523,0,1-.4478,1-1v-5c.5523,0,1-.4478,1-1s-.4477-1-1-1ZM4.0926,3.8893c.0517-.2277.2541-.3893.4876-.3893h6.8396c.2335,0,.4359.1616.4876.3893l.5926,2.6107H3.5l.5926-2.6107ZM4,10.5c-.5523,0-1-.4478-1-1s.4477-1,1-1,1,.4477,1,1-.4477,1-1,1ZM13,9.5c0,.5522-.4477,1-1,1s-1-.4478-1-1,.4477-1,1-1,1,.4477,1,1Z",x="M12.4194,3.7574l-6.364,6.364-2.4749-2.4749c-.3905-.3905-1.0237-.3905-1.4142,0s-.3905,1.0237,0,1.4142l3.182,3.182c.3905.3905,1.0237.3905,1.4142,0l7.0711-7.0711c.3905-.3905.3905-1.0237,0-1.4142s-1.0237-.3905-1.4142,0Z",H="M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM10.2981,5.4716l-3.5355,3.5355-1.0607-1.0607c-.3905-.3905-1.0237-.3905-1.4142,0-.3905.3905-.3905,1.0237,0,1.4142l1.7678,1.7678c.3905.3905,1.0237.3905,1.4142,0l4.2426-4.2426c.3905-.3905.3905-1.0237,0-1.4142-.3905-.3905-1.0237-.3905-1.4142,0Z",V="M7.3266,11.9228c-.012-.012-.0157-.0281-.0269-.0406-.0124-.0112-.0286-.0149-.0405-.0269L.8952,5.4914c-.3905-.3905-.3905-1.0237,0-1.4142s1.0237-.3905,1.4142,0l5.7243,5.7243,5.6569-5.6569c.3905-.3905,1.0237-.3905,1.4142,0s.3905,1.0237,0,1.4142l-6.364,6.364c-.3905.3905-1.0237.3905-1.4142,0Z",C="M4.0772,8.6734c.012.012.0281.0157.0406.0269.0112.0124.0149.0286.0269.0405l6.364,6.364c.3905.3905,1.0237.3905,1.4142,0s.3905-1.0237,0-1.4142l-5.7243-5.7243,5.6569-5.6569c.3905-.3905.3905-1.0237,0-1.4142s-1.0237-.3905-1.4142,0l-6.364,6.364c-.3905.3905-.3905,1.0237,0,1.4142Z",n="M11.9228,8.6734c-.012.012-.0281.0157-.0406.0269-.0112.0124-.0149.0286-.0269.0405l-6.364,6.364c-.3905.3905-1.0237.3905-1.4142,0s-.3905-1.0237,0-1.4142l5.7243-5.7243L4.1446,2.3094c-.3905-.3905-.3905-1.0237,0-1.4142s1.0237-.3905,1.4142,0l6.364,6.364c.3905.3905.3905,1.0237,0,1.4142Z",i="M7.3266,4.0772c-.012.012-.0157.0281-.0269.0406-.0124.0112-.0286.0149-.0405.0269L.8952,10.5086c-.3905.3905-.3905,1.0237,0,1.4142s1.0237.3905,1.4142,0l5.7243-5.7243,5.6569,5.6569c.3905.3905,1.0237.3905,1.4142,0s.3905-1.0237,0-1.4142l-6.364-6.364c-.3905-.3905-1.0237-.3905-1.4142,0Z",L="M7,12.2308c0,.8922-.7232,1.6154-1.6154,1.6154h-1.3462v1.6154c0,.2974-.2411.5385-.5385.5385s-.5385-.2411-.5385-.5385v-1.6154h-1.3462c-.8922,0-1.6154-.7232-1.6154-1.6154,0-.6889.4331-1.2728,1.0403-1.5051-.2068-.4898-.1124-1.0765.2867-1.4756.2487-.2487.5709-.3756.8966-.389.1736-.5426.6761-.938,1.2763-.938s1.1027.3955,1.2763.938c.3258.0133.6479.1403.8966.389.3991.3991.4935.9858.2867,1.4756.6072.2323,1.0403.8162,1.0403,1.5051ZM16,3v12c0,.5522-.4477,1-1,1h-6c-.5523,0-1-.4478-1-1V3c0-.5523.4477-1,1-1h6c.5523,0,1,.4477,1,1ZM11.25,13.5c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM11.25,10.25c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM11.25,7c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM11.25,3.75c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM14.5,13.5c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM14.5,10.25c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM14.5,7c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM14.5,3.75c0-.2762-.2239-.5-.5-.5h-.75c-.2761,0-.5.2238-.5.5v.75c0,.2761.2239.5.5.5h.75c.2761,0,.5-.2239.5-.5v-.75ZM3.908,4.382c.0816-.0124.1265.0927.0596.1413-.4867.354-1.1041.5374-1.7672.4586C1.0673,4.8472.1453,3.918.0167,2.7795-.1403,1.3902.8313.1968,2.1285.001c.0811-.0123.1222.0938.0559.1422-.6546.478-1.054,1.2871-.953,2.1826.103.9136.756,1.6992,1.63,1.9732.3641.1141.7165.1331,1.0465.0831Z",u="M12,2c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2-1.1046,0-2,.8954-2,2v10c0,1.1046.8954,2,2,2h8c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2ZM7,2h2c.5523,0,1,.4477,1,1s-.4477,1-1,1h-2c-.5523,0-1-.4478-1-1s.4477-1,1-1ZM12,13.5c0,.2761-.2239.5-.5.5h-7c-.2761,0-.5-.2239-.5-.5V4c0,1.1046.8954,2,2,2h4c1.1046,0,2-.8954,2-2v9.5Z",d="M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM11.0983,8.6342l-2.0983-1.2114v-3.4227c0-.5523-.4477-1-1-1s-1,.4477-1,1v4c0,.0435.0193.0805.0247.1225.0087.0687.0178.1341.0403.1995.0212.0615.051.1151.0832.1705.0317.0551.0629.1073.1052.156.0457.0526.0983.0936.1539.1357.0334.0254.0556.0604.0929.082l2.5981,1.5c.4783.2762,1.0898.1123,1.366-.366.2761-.4783.1122-1.0898-.366-1.366h0Z",g="M5,2v7c0,1.1046.8954,2,2,2h7c1.1046,0,2-.8954,2-2V2c0-1.1046-.8954-2-2-2h-7c-1.1046,0-2,.8954-2,2ZM13.5,9h-6c-.2761,0-.5-.2239-.5-.5V2.5c0-.2761.2239-.5.5-.5h6c.2761,0,.5.2239.5.5v6c0,.2761-.2239.5-.5.5ZM10,12.5h0c.5523,0,1,.4477,1,1v.5c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2v-7c0-1.1046.8954-2,2-2h.5c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h0c-.2761,0-.5.2239-.5.5v6c0,.2761.2239.5.5.5h6c.2761,0,.5-.2239.5-.5h0c0-.5523.4477-1,1-1Z",m="M13,6.3004v-.5504c0-1.6569-1.3431-3-3-3-1.2758,0-2.3583.7997-2.7922,1.9224l-.0839-.0839c-.9763-.9763-2.5592-.9763-3.5355,0-.7198.7198-.9048,1.7684-.5631,2.6615h-.0253c-1.6569,0-3,1.3431-3,3s1.3431,3,3,3h9.5c1.933,0,3.5-1.567,3.5-3.5,0-1.7617-1.306-3.2051-3-3.4496Z",w="M3.984,2.8037c-.4783-.2761-1.0898-.1123-1.366.366L.118,7.4999c-.0216.0374-.0233.079-.0396.1178-.027.0641-.052.1258-.0652.194-.0123.0634-.0134.1242-.0132.1879-.0002.0641.0008.1253.0132.1891.0132.0678.038.1291.0649.1929.0163.0391.0181.0808.0398.1184l2.5,4.3301c.2762.4783.8877.6422,1.366.366s.6422-.8877.366-1.366l-2.2114-3.8302,2.2114-3.8303c.2762-.4783.1123-1.0899-.366-1.366h0ZM12.016,2.8037c.4783-.2761,1.0898-.1123,1.366.366l2.5,4.3301c.0216.0374.0233.079.0396.1178.027.0641.052.1258.0652.194.0123.0634.0133.1243.0131.1879.0002.0641-.0008.1253-.0132.1891-.0132.0678-.038.1291-.0649.1929-.0163.0391-.0181.0808-.0398.1184l-2.5,4.3301c-.2762.4783-.8877.6422-1.366.366s-.6422-.8877-.366-1.366l2.2114-3.8302-2.2114-3.8303c-.2762-.4783-.1123-1.0899.366-1.366v.0002ZM6.0571,13.3377h0c-.519-.1889-.7866-.7627-.5977-1.2817l3.1946-8.7768c.1889-.519.7627-.7865,1.2817-.5977h0c.519.1889.7866.7627.5977,1.2817l-3.1946,8.7768c-.1889.519-.7627.7865-1.2817.5977Z",S="M9,6.8381c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1ZM11.5,5.8381c-.5523,0-1,.4477-1,1s.4477,1,1,1,1-.4477,1-1-.4477-1-1-1ZM4.5,5.8381c-.5523,0-1,.4477-1,1s.4477,1,1,1,1-.4477,1-1-.4477-1-1-1ZM16,6.8381c0,3.31-3.58,6-8,6-.63,0-1.25-.05-1.83-.16-.0115-.0029-.0248-.0058-.0375-.0087l-4.1781,2.4122c-.4747.274-1.0302-.2006-.8336-.7122l1.2585-3.2755c-1.4677-1.0804-2.3792-2.587-2.3792-4.2559C0,3.5281,3.58.8381,8,.8381s8,2.69,8,6ZM14,6.8381c0-2.21-2.69-4-6-4s-6,1.79-6,4c0,.91.46,1.75,1.24,2.43.02.02.05.04.07.06.38.32.83.6,1.33.83.27.12.57.23.87.32.76.23,1.6.36,2.49.36,3.31,0,6-1.79,6-4Z",f="M7.5.2887L1.5718,3.7113c-.3094.1786-.5.5088-.5.866v6.8454c0,.3573.1906.6874.5.866l5.9282,3.4226c.3094.1786.6906.1786,1,0l5.9282-3.4227c.3094-.1786.5-.5088.5-.866v-7.4226L8.5.2887c-.3094-.1786-.6906-.1786-1,0ZM11.8212,4.6392l-3.6962,2.134c-.0774.0447-.1726.0447-.25,0l-3.6962-2.134c-.1667-.0962-.1667-.3368,0-.433l3.6962-2.134c.0774-.0447.1726-.0447.25,0l3.6962,2.134c.1667.0962.1667.3368,0,.433ZM3.1789,6.3713l3.696,2.1339c.0773.0447.125.1272.125.2165v4.2679c0,.1925-.2083.3127-.375.2165l-3.696-2.1339c-.0773-.0447-.125-.1272-.125-.2165v-4.2679c0-.1925.2083-.3127.375-.2165ZM8.9999,12.9897v-4.2679c0-.0893.0477-.1718.125-.2165l3.6962-2.134c.1667-.0962.375.0241.375.2165v4.2679c0,.0893-.0477.1718-.125.2165l-3.6962,2.134c-.1667.0962-.375-.0241-.375-.2165Z",k="M8,0C4.4102,0,1.5,1.7908,1.5,4v8c0,2.2091,2.9102,4,6.5,4s6.5-1.7909,6.5-4V4c0-2.2092-2.9102-4-6.5-4ZM8,2c2.4853,0,4.5.8954,4.5,2s-2.0147,2-4.5,2-4.5-.8954-4.5-2,2.0147-2,4.5-2ZM8,14c-2.4853,0-4.5-.8954-4.5-2v-1.1178c1.1682.6909,2.7518,1.1178,4.5,1.1178s3.3318-.4269,4.5-1.1178v1.1178c0,1.1046-2.0147,2-4.5,2ZM8,10c-2.4853,0-4.5-.8954-4.5-2v-1.1178c1.1682.6909,2.7518,1.1178,4.5,1.1178s3.3318-.4269,4.5-1.1178v1.1178c0,1.1046-2.0147,2-4.5,2Z",b="M14,1H2C.8954,1,0,1.8954,0,3v8c0,1.1046.8954,2,2,2h1.5c-.5523,0-1,.4477-1,1s.4477,1,1,1h9c.5523,0,1-.4478,1-1s-.4477-1-1-1h1.5c1.1046,0,2-.8954,2-2V3c0-1.1046-.8954-2-2-2ZM8,13c-.5523,0-1-.4478-1-1s.4477-1,1-1,1,.4477,1,1-.4477,1-1,1ZM14,9.5c0,.2761-.2239.5-.5.5H2.5c-.2761,0-.5-.2239-.5-.5V3.5c0-.2762.2239-.5.5-.5h11c.2761,0,.5.2238.5.5v6Z",D="M13.42,3.07l-.01-.01-2.48-2.48c-.01-.0099-.02-.02-.04-.04C10.52.2,10.02,0,9.51,0h-5.51C2.9,0,2,.9,2,2v12c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2V4.48c0-.53-.21-1.03-.58-1.41ZM12,4.49v.01h-2c-.28,0-.5-.22-.5-.5v-2h.02l2.48,2.49ZM12,13.5c0,.28-.22.5-.5.5h-7c-.28,0-.5-.22-.5-.5V2.5c0-.28.22-.5.5-.5h3v2.5c0,.55.22,1.05.59,1.41.36.37.86.59,1.41.59h2.5v7ZM10.4,8.35h-4.8c-.3314,0-.6-.2686-.6-.6h0c0-.3314.2686-.6.6-.6h4.8c.3314,0,.6.2686.6.6h0c0,.3314-.2686.6-.6.6ZM10.4,10.85h-4.8c-.3314,0-.6-.2686-.6-.6h0c0-.3314.2686-.6.6-.6h4.8c.3314,0,.6.2686.6.6h0c0,.3314-.2686.6-.6.6ZM10.4,13.35h-4.8c-.3314,0-.6-.2686-.6-.6h0c0-.3314.2686-.6.6-.6h4.8c.3314,0,.6.2686.6.6h0c0,.3314-.2686.6-.6.6Z",U="M7.6178,11.9242c-.1208-.0501-.2296-.1226-.321-.2132-.0012-.0012-.0028-.0015-.004-.0026l-3.1819-3.1823c-.3905-.3905-.3905-1.0239,0-1.4144s1.0237-.3905,1.4142,0l1.4749,1.4751V1.0001c0-.5524.4477-1.0001,1-1.0001s1,.4477,1,1.0001v7.5866l1.4749-1.475c.3905-.3905,1.0237-.3905,1.4142,0s.3906,1.0238,0,1.4144l-3.1819,3.1823c-.0922.0922-.2027.1651-.325.2158-.2445.1011-.5198.1011-.7643,0h-.0001ZM16,15h0c0-.5523-.4477-1-1-1H1c-.5523,0-1,.4477-1,1h0c0,.5523.4477,1,1,1h14c.5523,0,1-.4477,1-1Z",R="M14,10v4c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h4c.5523,0,1,.4477,1,1s-.4477,1-1,1h-3.5c-.2761,0-.5.2239-.5.5v9c0,.2761.2239.5.5.5h9c.2761,0,.5-.2239.5-.5v-3.5c0-.5523.4477-1,1-1s1,.4477,1,1ZM15.7071,1.3535l-1.0607-1.0606c-.3905-.3905-1.0237-.3905-1.4142,0l-5.4747,5.4747c-.0574.0574-.0999.1279-.124.2054l-.7954,2.5631c-.1193.3844.2413.745.6257.6257l2.5631-.7954c.0775-.024.148-.0666.2054-.124l5.4747-5.4747c.3905-.3905.3905-1.0237,0-1.4142Z",q="M13.1465,12.1464l-2.6464-2.6465h1.4324c.4239,0,.6555-.4944.3841-.8201l-2.233-2.6796h1.0179c.3919,0,.6315-.4305.4249-.7636L8.4249.2364c-.1956-.3152-.6543-.3152-.8499,0l-3.1014,5.0001c-.2066.3331.033.7636.4249.7636h1.0179l-2.233,2.6796c-.2714.3257-.0398.8201.3841.8201h1.4324l-2.6464,2.6465c-.3149.315-.0919.8536.3536.8536h3.7929v2.0001c0,.5522.4477,1,1,1s1-.4477,1-1v-2.0001h3.7929c.4454,0,.6685-.5386.3536-.8536Z",y="M14,10v4c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h4c.5523,0,1,.4477,1,1s-.4477,1-1,1h-3.5c-.2761,0-.5.2239-.5.5v9c0,.2761.2239.5.5.5h9c.2761,0,.5-.2239.5-.5v-3.5c0-.5523.4477-1,1-1s1,.4477,1,1ZM15,0h-6c-.5522,0-1,.4478-1,1s.4478,1,1,1h3.5858l-6.2928,6.2929c-.3906.3905-.3906,1.0237,0,1.4142.3905.3905,1.0237.3905,1.4142,0l6.2929-6.2929v3.5858c0,.5523.4478,1,1,1s1-.4477,1-1V1c0-.5522-.4477-1-1-1Z",A="M13.42,3.07l-.01-.01-2.48-2.48c-.01-.0099-.02-.02-.04-.04-.37-.34-.87-.54-1.38-.54h-5.51c-1.1,0-2,.9-2,2v12c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2V4.48c0-.53-.21-1.03-.58-1.41ZM12,4.49v.01h-2c-.28,0-.5-.22-.5-.5v-2h.02l2.48,2.49ZM12,13.5c0,.28-.22.5-.5.5h-7c-.28,0-.5-.22-.5-.5V2.5c0-.28.22-.5.5-.5h3v2.5c0,.55.22,1.05.59,1.41.36.37.86.59,1.41.59h2.5v7Z",G="M0,3v10c0,1.6569,1.3431,3,3,3h10c1.6569,0,3-1.3431,3-3V3c0-1.6569-1.3431-3-3-3H3C1.3431,0,0,1.3431,0,3ZM13.5,4h-1.6666c-.2761,0-.5-.2239-.5-.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5v.9999c0,.2761-.2239.5-.5.5ZM9.3333,12.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5ZM2,9.5v-2.9999c0-.2761.2239-.5.5-.5h10.9999c.2761,0,.5.2239.5.5v2.9999c0,.2761-.2239.5-.5.5H2.5c-.2761,0-.5-.2239-.5-.5ZM6.6667,3.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5ZM4.6667,2.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5ZM2.5,12h1.6666c.2761,0,.5.2239.5.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5v-.9999c0-.2761.2239-.5.5-.5ZM11.3333,13.5v-.9999c0-.2761.2239-.5.5-.5h1.6666c.2761,0,.5.2239.5.5v.9999c0,.2761-.2239.5-.5.5h-1.6666c-.2761,0-.5-.2239-.5-.5Z",j="M12.2426,9.364c1.1716-1.1716,1.1716-3.071,0-4.2426,1.1716-1.1716,1.1716-3.0711,0-4.2427-1.1716-1.1716-3.071-1.1716-4.2426,0C6.8284-.2929,4.929-.2929,3.7574.8787c-1.1716,1.1716-1.1716,3.071,0,4.2427-1.1716,1.1716-1.1716,3.071,0,4.2426.8765.8765,2.1601,1.0964,3.2418.6615v2.668c-1.421-.8044-2.8931-.8878-3.3029-.1779-.4142.7175.4132,1.9706,1.8481,2.7991.8587.4958,1.7356.721,2.394.673.0212.0013.0392.0123.0609.0123s.0396-.0109.0609-.0123c.6584.048,1.5353-.1772,2.394-.673,1.4349-.8284,2.2623-2.0816,1.848-2.7991-.4099-.7099-1.8818-.6265-3.3029.1779v-2.6686c1.082.4358,2.3665.2159,3.2434-.661ZM6.2322,3.3535c.9763-.9763,2.5592-.9763,3.5355,0s.9763,2.5592,0,3.5356c-.9763.9763-2.5593.9763-3.5355,0-.9763-.9764-.9763-2.5592,0-3.5356Z",z="M14,3h-5.5858l-1.7072-1.7071c-.0922-.0922-.2027-.1652-.325-.2158-.1223-.0506-.2519-.0771-.3821-.0771H2C.8954,1,0,1.8954,0,3v10c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2V5c0-1.1046-.8954-2-2-2ZM13.5,13H2.5c-.2761,0-.5-.2239-.5-.5V3.5c0-.2761.2239-.5.5-.5h3.0858l1.7062,1.7063s.0004.0002.0005.0004c.0923.0924.2032.1655.3258.2163.092.0378.1898.0487.2874.058.0326.0032.0608.019.0942.019h5.5c.2761,0,.5.2239.5.5v7c0,.2761-.2239.5-.5.5Z",B="M15.5687,7.2999c.0225-.0385.0544-.0697.0716-.1112.0092-.0222.0087-.046.0162-.0687.0201-.0602.0273-.1206.0358-.1837.0085-.0646.0173-.1264.0133-.1913-.0037-.0609-.0197-.1184-.0348-.1786-.0118-.0474-.0115-.0964-.0305-.1421-.0093-.0226-.0269-.0394-.0378-.0611-.0092-.0184-.0087-.0388-.0191-.0569l-2.5-4.3301c-.0215-.0372-.0565-.0594-.0818-.0928-.0421-.0557-.0832-.1083-.1359-.1541-.0487-.0422-.1007-.0735-.1558-.1051-.0555-.0323-.1092-.0621-.1708-.0833-.0653-.0225-.1307-.0316-.1993-.0402-.042-.0054-.0791-.0247-.1226-.0247H3.7828c-.0435,0-.0805.0193-.1225.0247-.0686.0087-.1342.0177-.1995.0402-.0615.0212-.1151.051-.1705.0833-.0552.0317-.1074.063-.1561.1053-.0525.0457-.0934.0981-.1355.1536-.0255.0335-.0605.0557-.0821.0931L.4166,6.3063c-.0104.0181-.0099.0385-.0191.0569-.0109.0217-.0285.0385-.0378.0611-.0189.0456-.0186.0945-.0304.1419-.0151.0604-.0312.1179-.0349.179-.0011.018-.0101.0351-.0103.0532,0,.0029-.0016.0052-.0016.0082s.0016.0053.0016.0082c.0004.0414.0182.0806.0237.1217.0084.063.0156.1234.0357.1835.0075.0227.007.0465.0162.0688.0172.0415.0493.0728.0717.1113.0314.0544.0621.106.1039.1541.0157.0181.0232.0425.0401.0594l6.7175,6.7175c.3906.3906,1.0237.3905,1.4142,0l6.7175-6.7175c.0169-.0169.0244-.0414.0401-.0594.0417-.0482.0726-.0998.104-.1542ZM4.1725,3.8008l1.683,2.0056h-2.8409l1.158-2.0056ZM6.5108,3.476h2.9784l-1.4892,1.7748-1.4892-1.7748ZM11.8275,3.8008l1.158,2.0056h-2.8409l1.683-2.0056ZM8,12.1097L3.6967,7.8065h8.6066l-4.3033,4.3033Z",E="M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM13.91,7h-1.9446c-.0983-1.5734-.4231-3.0046-.9099-4.157,1.4869.883,2.5568,2.3868,2.8544,4.157ZM8,14c-.9907,0-1.811-2.1634-1.97-5h3.9401c-.159,2.8366-.9793,5-1.97,5ZM6.03,7c.159-2.8366.9793-5,1.97-5s1.811,2.1634,1.97,5h-3.9401ZM4.9444,2.843c-.4868,1.1524-.8115,2.5836-.9099,4.157h-1.9446c.2977-1.7702,1.3676-3.274,2.8544-4.157ZM2.09,9h1.9446c.0983,1.5734.4231,3.0046.9099,4.157-1.4869-.883-2.5568-2.3868-2.8544-4.157ZM11.0556,13.157c.4868-1.1524.8115-2.5836.9099-4.157h1.9446c-.2977,1.7702-1.3676,3.274-2.8544,4.157Z",F="M15,13.9948H2V1c0-.5523-.4477-1-1-1S0,.4477,0,1v14c0,.5522.4478,1,1,1,.0091,0,.0167-.0049.0257-.0052h13.9743c.5523,0,1-.4477,1-1s-.4477-1-1-1ZM14.2322,12.0622c-.4783.2762-1.0899.1123-1.366-.366l-2.5001-4.3303-2.5984,1.5002c-.4783.2761-1.0898.1122-1.366-.366,0-.0001,0-.0003-.0001-.0004L3.4017,3.3037c-.2761-.4783-.1122-1.0898.366-1.366.4783-.2761,1.0899-.1122,1.366.366l2.5001,4.3303,2.598-1.4999c.1197-.0691.2477-.1106.3767-.1266.3867-.048.7825.1339.9897.4926l3,5.1961c.2761.4783.1122,1.0899-.366,1.366Z",I="M15,13.9948H2V1c0-.5523-.4477-1-1-1S0,.4477,0,1v14c0,.5522.4478,1,1,1,.0091,0,.0167-.0049.0257-.0052h13.9743c.5523,0,1-.4477,1-1s-.4477-1-1-1ZM14.2322,1.9377c-.4783-.2762-1.0899-.1123-1.366.366l-2.5001,4.3303-2.5984-1.5002c-.4783-.2761-1.0898-.1122-1.366.366,0,.0001,0,.0003-.0001.0004l-2.9999,5.1959c-.2761.4783-.1122,1.0898.366,1.366.4783.2761,1.0899.1122,1.366-.366l2.5001-4.3303,2.598,1.4999c.1197.0691.2477.1106.3767.1266.3867.048.7825-.1339.9897-.4926l3-5.1961c.2761-.4783.1122-1.0899-.366-1.366h0Z",J="M8.5,12.125h-1c-.5523,0-1-.4477-1-1v-1c0-.5523.4477-1,1-1h1c.5523,0,1,.4477,1,1v1c0,.5523-.4477,1-1,1ZM14.75,11.125v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1ZM4.25,11.125v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1ZM9.5,5.875v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1ZM14.75,5.875v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1ZM4.25,5.875v-1c0-.5523-.4477-1-1-1h-1c-.5523,0-1,.4477-1,1v1c0,.5523.4477,1,1,1h1c.5523,0,1-.4477,1-1Z",K="M13.768,2.2152c-1.7163-.9793-3.7923-.6831-5.1827.4588-.2044.1766-.4127.3587-.6241.5462-.2507-.2226-.4968-.4375-.7373-.6447-.795-.6763-1.7705-.9553-2.7905-.9637-.9619-.0007-1.9774.2774-2.7513.9719C.0122,4.2228.2158,6.927,1.5272,8.6156c.1634.1955.3318.3935.5052.5931,1.5262,1.7741,3.5071,3.6548,5.2166,4.9515.4055.3045,1.0238.3046,1.4286.0006,1.7081-1.2954,3.6946-3.1738,5.232-4.9504.2218-.2542.4357-.5059.6413-.7535.6724-.8192.9447-1.8267.9525-2.8452.0071-1.2525-.4792-2.6201-1.7354-3.3966Z",N="M15.627,7.2222l-.627-.627v-2.5c0-.5523-.4477-1-1-1s-1,.4477-1,1v.5L8.7207.3159c-.1985-.1985-.4597-.293-.7198-.2891-.2595-.0038-.5198.0905-.7178.2885L3,4.5983l-2,2-.6276.6276c-.3884.3884-.3884,1.0182,0,1.4066.1746.1746.3994.259.6276.2766v6.5908c0,.2761.2239.5.5.5h4c.2761,0,.5-.2239.5-.5v-5.5853c0-.2762.2239-.5.5-.5h3c.2761,0,.5.2238.5.5v5.5853c0,.2761.2239.5.5.5h4c.2761,0,.5-.2239.5-.5v-6.5913c.228-.0181.4525-.1024.627-.2768.3893-.3893.3893-1.0204,0-1.4097Z",O="M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM8,3.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM7.5,6.5c-.069,0-.1348.014-.1946.0393-.4557.0933-.8054.4775-.8054.9607,0,.2378.0871.4503.2285.6179.1633.1935.2715.4265.2715.6796v2.7025c0,.5523.4477,1,1,1h0c.5523,0,1-.4477,1-1v-4c0-.5523-.4477-1-1-1h-.5Z",P="M13,0H3C1.3431,0,0,1.3431,0,3v10c0,1.6569,1.3431,3,3,3h10c1.6569,0,3-1.3431,3-3V3c0-1.6569-1.3431-3-3-3ZM14,12.5c0,.8284-.6716,1.5-1.5,1.5H3.5c-.8284,0-1.5-.6716-1.5-1.5V3.5c0-.8284.6716-1.5,1.5-1.5h9c.8284,0,1.5.6716,1.5,1.5v9ZM8,3.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM7.5,6.5c-.069,0-.1348.014-.1946.0393-.4557.0933-.8054.4775-.8054.9607,0,.2378.0871.4503.2285.6179.1633.1935.2715.4265.2715.6796v2.7025c0,.5523.4477,1,1,1h0c.5523,0,1-.4477,1-1v-4c0-.5523-.4477-1-1-1h-.5Z",Q="M14,2H2c-1.1,0-2,.9-2,2v8c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM12.8165,4l-.5865.3385-4.23,2.44-4.23-2.44-.5865-.3385h9.6329ZM13.5,12H2.5c-.04,0-.07,0-.1-.01-.23-.05-.4-.25-.4-.49v-5.8615l3.99,2.3,1.5101.8716c.3093.1785.6904.1785.9998,0l1.5101-.8716,3.99-2.3v5.8615c0,.24-.17.44-.4.49-.03.01-.06.01-.1.01Z",T="M0,4v8c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H2c-1.1046,0-2,.8954-2,2ZM13.5,12H2.5c-.2761,0-.5-.2239-.5-.5v-7c0-.2761.2239-.5.5-.5h11c.2761,0,.5.2239.5.5v7c0,.2761-.2239.5-.5.5ZM5,6c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM4.375,8.5h1.25c.7589,0,1.375.6161,1.375,1.375h0c0,.069-.056.125-.125.125h-3.75c-.069,0-.125-.056-.125-.125h0c0-.7589.6161-1.375,1.375-1.375ZM12.25,7.5h-3.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h3.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75ZM12.25,10h-3.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h3.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75Z",W="M10.8284,6.5858l-4.2426,4.2426c-.3905.3905-1.0237.3905-1.4142,0h0c-.3905-.3905-.3905-1.0237,0-1.4142l4.2426-4.2426c.3905-.3905,1.0237-.3905,1.4142,0h0c.3905.3905.3905,1.0237,0,1.4142ZM2.7071,13.9876c2.0135,1.6629,5.0125,1.3639,6.8591-.4827l.5552-.5552c.3905-.3905.3905-1.0237,0-1.4142h0c-.3905-.3905-1.0237-.3905-1.4142,0l-.5871.5871c-1.1487,1.1487-3.0384,1.3181-4.2456.2311-1.2874-1.1593-1.3264-3.1443-.1171-4.3537l.7071-.7071c.3905-.3905.3905-1.0237,0-1.4142h0c-.3905-.3905-1.0237-.3905-1.4142,0l-.7071.7071c-2.0672,2.0672-1.9459,5.4942.3639,7.4018ZM6.5858,2.3431l-.7071.7071c-.3905.3905-.3905,1.0237,0,1.4142h0c.3905.3905,1.0237.3905,1.4142,0l.7071-.7071c1.2094-1.2094,3.1944-1.1704,4.3537.1171,1.087,1.2072.9176,3.0969-.2311,4.2456l-.5871.5871c-.3905.3905-.3905,1.0237,0,1.4142h0c.3905.3905,1.0237.3905,1.4142,0l.5552-.5552c1.8466-1.8466,2.1456-4.8456.4827-6.8591-1.9076-2.3098-5.3346-2.4311-7.4018-.3639Z",X="M2.375,7c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5.625,7h8c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H5.625c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1ZM2.375,3c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5.625,3h8c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H5.625c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1ZM2.375,11c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM5.625,11h8c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H5.625c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z",Y="M12,6v-2c0-2.2092-1.7908-4-4-4s-4,1.7908-4,4v2c-1.1045,0-2,.8954-2,2v6c0,1.1046.8955,2,2,2h8c1.1046,0,2-.8954,2-2v-6c0-1.1046-.8954-2-2-2ZM9,11.1107v1.3893c0,.5522-.4477,1-1,1s-1-.4478-1-1v-1.3893c-.3048-.2745-.5-.6682-.5-1.1107,0-.8284.6716-1.5,1.5-1.5s1.5.6716,1.5,1.5c0,.4425-.1952.8362-.5,1.1107ZM10,6h-4v-2c0-1.1046.8955-2,2-2s2,.8954,2,2v2Z",_="M14,0c1.1046,0,2,.8954,2,2h0v12h0c0,1.1046-.8954,2-2,2h-5c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h4.5c.2761,0,.5-.2239.5-.5V2h-5c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h5ZM11.9242,7.6178c-.0501-.1208-.1226-.2296-.2132-.321-.0012-.0012-.0015-.0028-.0026-.004l-3.1823-3.1819c-.3905-.3905-1.0239-.3905-1.4144,0s-.3905,1.0237,0,1.4142l1.4751,1.4749H1.0001c-.5524,0-1.0001.4477-1.0001,1s.4477,1,1.0001,1h7.5866l-1.475,1.4749c-.3905.3905-.3905,1.0237,0,1.4142s1.0238.3906,1.4144,0l3.1823-3.1819c.0922-.0922.1651-.2027.2158-.325.1011-.2445.1011-.5198,0-.7643Z",$="M2,0h5c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2v11.5c0,.2761.2239.5.5.5h4.5c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2c-1.1046,0-2-.8954-2-2h0V2h0C0,.8954.8954,0,2,0h0ZM15.9242,7.6178c-.0501-.1208-.1226-.2296-.2132-.321-.0012-.0012-.0015-.0028-.0026-.004l-3.1823-3.1819c-.3905-.3905-1.0239-.3905-1.4144,0s-.3905,1.0237,0,1.4142l1.4751,1.4749h-7.5867c-.5524,0-1.0001.4477-1.0001,1s.4477,1,1.0001,1h7.5866l-1.475,1.4749c-.3905.3905-.3905,1.0237,0,1.4142s1.0238.3906,1.4144,0l3.1823-3.1819c.0922-.0922.1651-.2027.2158-.325.1011-.2445.1011-.5198,0-.7643Z",c1="M2,7h12c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1ZM2,1.75h12c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1ZM2,12.25h12c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1H2c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z",h1="M15,9H1c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h14c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1Z",v1="M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM5,7h6c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h-6c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z",l1="M10.5844,13.3968c-2.6221-.8219-4.581-3.1786-4.8901-5.9195-.3029-2.6865.8951-5.1138,2.859-6.5477.199-.1453.0756-.4634-.1677-.4266C4.494,1.0905,1.579,4.6707,2.05,8.8387c.386,3.4153,3.152,6.203,6.5511,6.607,1.9894.2365,3.8416-.3137,5.3017-1.3758.2006-.1459.066-.4611-.1789-.4239-.99.1502-2.0471.0932-3.1395-.2492Z",M1="M9.75,8c0,.9665-.7835,1.75-1.75,1.75s-1.75-.7835-1.75-1.75.7835-1.75,1.75-1.75,1.75.7835,1.75,1.75ZM14.25,6.25c-.9665,0-1.75.7835-1.75,1.75s.7835,1.75,1.75,1.75,1.75-.7835,1.75-1.75-.7835-1.75-1.75-1.75ZM1.75,6.25C.7835,6.25,0,7.0335,0,8s.7835,1.75,1.75,1.75,1.75-.7835,1.75-1.75-.7835-1.75-1.75-1.75Z",Z1="M15.8752,14.3163c.3522.7463-.0832,1.6837-.782,1.6837H.9067c-.6987,0-1.134-.9372-.782-1.6837l3.3047-7.0054c.3494-.7404,1.2147-.7404,1.5639,0l.4314.9147,1.8877-4.0015c.3493-.7404,1.2146-.7404,1.564,0l2.6251,5.5648.3369-.7143c.3493-.7404,1.2146-.7404,1.564,0l2.4726,5.2417ZM14,0c-1.1046,0-2,.8954-2,2s.8954,2,2,2,2-.8954,2-2-.8954-2-2-2Z",r1="M1,2v12c0,1.1046.8954,2,2,2h10c1.1046,0,2-.8954,2-2V2c0-1.1046-.8954-2-2-2H3C1.8954,0,1,.8954,1,2ZM12.5,14H3.5c-.2761,0-.5-.2239-.5-.5V2.5c0-.2761.2239-.5.5-.5h9c.2761,0,.5.2239.5.5v11c0,.2761-.2239.5-.5.5ZM6.5,6.5h-2c-.2761,0-.5-.2239-.5-.5v-2c0-.2761.2239-.5.5-.5h2c.2761,0,.5.2239.5.5v2c0,.2761-.2239.5-.5.5ZM11.25,6.5h-2.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h2.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75ZM11.25,9.5h-6.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h6.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75ZM11.25,12.5h-6.5c-.4142,0-.75-.3358-.75-.75h0c0-.4142.3358-.75.75-.75h6.5c.4142,0,.75.3358.75.75h0c0,.4142-.3358.75-.75.75Z",s1="M8,5.25c0,.9665-.7835,1.75-1.75,1.75s-1.75-.7835-1.75-1.75.7835-1.75,1.75-1.75,1.75.7835,1.75,1.75ZM16,8c0,.34-.02.67-.06,1-.49,3.95-3.86,7-7.94,7S.55,12.95.06,9c-.04-.33-.06-.66-.06-1,0-.36.02-.71.07-1.06C.59,3.02,3.94,0,8,0s7.41,3.02,7.93,6.94c.05.35.07.7.07,1.06ZM2.03,7.49c1.58.32,3.68.51,5.97.51s4.39-.19,5.97-.51c-.25-3.07-2.83-5.49-5.97-5.49S2.28,4.42,2.03,7.49ZM13.8,9.5c-1.72.32-3.7.5-5.8.5s-4.08-.18-5.8-.5c.66,2.58,3.01,4.5,5.8,4.5s5.14-1.92,5.8-4.5Z",e1="M8,6.25c.9665,0,1.75.7835,1.75,1.75s-.7835,1.75-1.75,1.75-1.75-.7835-1.75-1.75.7835-1.75,1.75-1.75ZM6.25,1.75c0,.9665.7835,1.75,1.75,1.75s1.75-.7835,1.75-1.75-.7835-1.75-1.75-1.75-1.75.7835-1.75,1.75ZM6.25,14.25c0,.9665.7835,1.75,1.75,1.75s1.75-.7835,1.75-1.75-.7835-1.75-1.75-1.75-1.75.7835-1.75,1.75Z",o1="M8,0c2.2091,0,4,1.7909,4,4s-1.7909,4-4,4-4-1.7909-4-4S5.7909,0,8,0ZM5.5,10h5c3.0355,0,5.5,2.4645,5.5,5.5h0c0,.276-.224.5-.5.5H.5c-.276,0-.5-.224-.5-.5h0c0-3.0355,2.4645-5.5,5.5-5.5Z",a1="M15,7h-6V1c0-.5523-.4477-1-1-1s-1,.4477-1,1v6H1c-.5523,0-1,.4477-1,1s.4477,1,1,1h6v6c0,.5523.4477,1,1,1s1-.4477,1-1v-6h6c.5523,0,1-.4477,1-1s-.4477-1-1-1Z",t1="M13.6569,2.3431C10.5326-.7811,5.4674-.7811,2.3431,2.3431-.781,5.4674-.781,10.5326,2.3431,13.6569c3.1242,3.1241,8.1895,3.1241,11.3137,0,3.1242-3.1242,3.1242-8.1895,0-11.3137h.0001ZM12.2426,12.2426c-2.3431,2.3431-6.1421,2.3431-8.4852,0-2.3432-2.3431-2.3432-6.1421,0-8.4853,2.3431-2.3431,6.1421-2.3431,8.4852,0,2.3432,2.3431,2.3432,6.1421,0,8.4853ZM9,7v-2c0-.5523-.4477-1-1-1h0c-.5523,0-1,.4477-1,1v2h-2c-.5523,0-1,.4477-1,1h0c0,.5523.4477,1,1,1h2v2c0,.5523.4477,1,1,1h0c.5523,0,1-.4477,1-1v-2h2c.5523,0,1-.4477,1-1h0c0-.5523-.4477-1-1-1h-2Z",p1="M9.5,15.1928h-3c-.5523,0-1-.4477-1-1v-6c0-.5523.4477-1,1-1h3c.5523,0,1,.4477,1,1v6c0,.5523-.4477,1-1,1ZM5,14.1928v-2c0-.5523-.4477-1-1-1H1c-.5523,0-1,.4477-1,1v2c0,.5523.4477,1,1,1h3c.5523,0,1-.4477,1-1ZM16,14.1928v-4c0-.5523-.4477-1-1-1h-3c-.5523,0-1,.4477-1,1v4c0,.5523.4477,1,1,1h3c.5523,0,1-.4477,1-1ZM7.8451.9206l-.4693,1.4831c-.0215.068-.0849.114-.1562.1135l-1.5555-.012c-.1587-.0012-.2248.2024-.0957.2947l1.2656.9046c.058.0415.0822.1159.0596.1836l-.4921,1.4757c-.0502.1505.123.2764.2507.1821l1.2514-.924c.0574-.0424.1357-.0424.1931,0l1.2514.924c.1277.0943.3009-.0316.2507-.1821l-.4921-1.4757c-.0226-.0677.0017-.1421.0597-.1836l1.2655-.9046c.1291-.0923.063-.2959-.0957-.2947l-1.5555.012c-.0713.0005-.1347-.0455-.1562-.1135l-.4693-1.4831c-.0479-.1513-.262-.1513-.3099,0ZM2.407,6.3295l-.2816.8899c-.0129.0408-.0509.0684-.0937.0681l-.9333-.0072c-.0952-.0007-.1349.1214-.0574.1768l.7594.5428c.0348.0249.0493.0696.0358.1102l-.2953.8854c-.0301.0903.0738.1658.1504.1093l.7508-.5544c.0344-.0254.0814-.0254.1158,0l.7508.5544c.0766.0566.1805-.019.1504-.1093l-.2953-.8854c-.0135-.0406.001-.0853.0358-.1102l.7593-.5428c.0775-.0554.0378-.1775-.0574-.1768l-.9333.0072c-.0428.0003-.0808-.0273-.0937-.0681l-.2816-.8899c-.0287-.0908-.1572-.0908-.1859,0ZM13.3761,3.3751l-.3754,1.1865c-.0172.0544-.0679.0912-.125.0908l-1.2444-.0096c-.127-.001-.1799.1619-.0766.2357l1.0125.7237c.0464.0332.0658.0927.0477.1469l-.3937,1.1805c-.0402.1204.0984.2211.2005.1457l1.0011-.7392c.0459-.0339.1086-.0339.1544,0l1.0011.7392c.1021.0754.2407-.0253.2005-.1457l-.3937-1.1805c-.018-.0541.0013-.1137.0477-.1469l1.0124-.7237c.1033-.0738.0504-.2367-.0766-.2357l-1.2444.0096c-.0571.0004-.1077-.0364-.125-.0908l-.3754-1.1865c-.0383-.121-.2096-.121-.2479,0Z",x1="M15.1412,13.675l-3.6439-3.6439c.6722-.9694,1.0686-2.1444,1.0686-3.4133,0-3.3137-2.6863-6-6-6S.5659,3.3041.5659,6.6178s2.6863,6,6,6c1.3222,0,2.5405-.4329,3.5322-1.1575l3.6289,3.6289c.3906.3906,1.0237.3906,1.4143,0,.3905-.3905.3905-1.0237,0-1.4142h0ZM6.5659,10.6178c-2.2092,0-4-1.7909-4-4s1.7908-4,4-4,4,1.7908,4,4-1.7908,4-4,4Z",H1="M15.98,7.5543c-.0204-.3629-.3464-.6065-.7092-.6272-.7396-.0422-1.4248-.4924-1.7275-1.2231-.3027-.7308-.1365-1.5337.3567-2.0865.2419-.2712.3001-.6739.058-.945-.1992-.223-.4098-.4335-.6306-.6308-.2644-.2363-.68-.1777-.9446.0584-.5528.4932-1.3558.6595-2.0866.3568-.7308-.3027-1.181-.988-1.2231-1.7277-.0201-.3541-.2726-.6894-.6266-.7093-.2957-.0166-.5934-.0167-.892.0002-.3629.0205-.6065.3464-.6272.7092-.0422.7396-.4924,1.4248-1.2231,1.7275-.7308.3027-1.5337.1365-2.0865-.3567-.2712-.2419-.6739-.3001-.945-.058-.223.1992-.4335.4098-.6308.6306-.2363.2644-.1777.6801.0584.9446.4932.5528.6595,1.3558.3568,2.0866-.3027.7308-.988,1.181-1.7276,1.2231-.3541.0201-.6895.2726-.7093.6267-.0166.2957-.0167.5934.0002.8921.0205.3628.3464.6065.7092.6272.7396.0422,1.4249.4923,1.7275,1.2231s.1365,1.5337-.3567,2.0864c-.2419.2712-.3001.674-.058.945.1993.2231.4099.4335.6307.6309.2645.2363.6801.1777.9447-.0583.5528-.4932,1.3558-.6595,2.0865-.3568.7308.3027,1.181.988,1.2231,1.7276.0201.3541.2726.6895.6267.7093.2957.0166.5934.0167.8921-.0002.3628-.0204.6065-.3464.6272-.7092.0422-.7396.4923-1.4249,1.2231-1.7275s1.5337-.1365,2.0864.3567c.2712.2419.674.3001.945.058.2231-.1993.4335-.4099.6309-.6307.2363-.2645.1777-.6801-.0583-.9447-.4932-.5528-.6595-1.3558-.3568-2.0865.3027-.7308.988-1.181,1.7277-1.2231.3541-.0201.6894-.2726.7093-.6266.0166-.2957.0167-.5934-.0002-.892ZM8.0003,11c-1.6568-.0002-3.0001-1.3435-3.0003-3.0003-.0002-1.6569,1.3428-2.9999,2.9997-2.9997,1.6568.0002,3.0001,1.3435,3.0003,3.0003.0002,1.6569-1.3428,2.9999-2.9997,2.9997Z",V1="M16,12v2c0,1.1046-.8954,2-2,2H2c-1.1046,0-2-.8954-2-2v-2c0-.5523.4477-1,1-1s1,.4477,1,1v1.5c0,.2761.2239.5.5.5h11c.2761,0,.5-.2239.5-.5v-1.5c0-.5523.4477-1,1-1s1,.4477,1,1ZM15.7071,3.4749L12.5251.2928c-.3904-.3905-1.0236-.3905-1.4141,0-.3905.3905-.3906,1.0237,0,1.4142l1.4913,1.4913h-3.6022c-1.1046,0-2,.8954-2,2v5.7878c0,.5522.4477,1,1,1s1-.4478,1-1v-5.2878c0-.2761.2239-.5.5-.5h3.0693l-1.4584,1.4584c-.3905.3905-.3905,1.0237,0,1.4142s1.0237.3905,1.4142,0l3.1316-3.1316c.2068-.1832.3433-.4431.3433-.7411,0-.0029-.0016-.0052-.0016-.0081.0022-.2587-.0938-.518-.2913-.7155Z",C1="M0,3v10c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2V3c0-1.1046-.8954-2-2-2H2C.8954,1,0,1.8954,0,3ZM13.5,13H2.5c-.2761,0-.5-.2239-.5-.5V3.5c0-.2761.2239-.5.5-.5h11c.2761,0,.5.2239.5.5v9c0,.2761-.2239.5-.5.5ZM12,11.4749h-3.5c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h3.5c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1ZM7.1819,8.7071l-2.4749,2.4749c-.3905.3905-1.0237.3905-1.4142,0s-.3905-1.0237,0-1.4142l1.7678-1.7678-1.7678-1.7678c-.3905-.3905-.3905-1.0237,0-1.4142s1.0237-.3905,1.4142,0l2.4749,2.4749c.3905.3905.3905,1.0237,0,1.4142Z",n1="M15.7071,12.8029l-2.4749,2.4749c-.3906.3905-1.0237.3905-1.4142,0s-.3906-1.0237,0-1.4142l.7678-.7678h-2.1302c-.0314,0-.058-.015-.0887-.0179-.3063-.0079-.6055-.1384-.7947-.4086l-5.4373-7.7652H.9576c-.5289,0-.9576-.4287-.9576-.9576v-.0848c0-.5289.4287-.9576.9576-.9576h3.7048c.0295,0,.0544.0142.0832.0168.0637.0058.1228.0194.1843.0372.0602.0179.1168.037.1714.0658.0636.032.1193.0726.1755.1184.0341.0291.0658.0573.0955.0908.0327.0348.0742.0572.1024.0975l5.4373,7.7652h1.6738l-.7678-.7678c-.3905-.3906-.3905-1.0237,0-1.4142.3905-.3905,1.0237-.3905,1.4142,0l2.4749,2.4749c.3906.3905.3905,1.0237,0,1.4142ZM6.4276,9.6459l-.0695-.0486c-.4332-.3033-1.0303-.1981-1.3337.2351l-.8846,1.2634H.9576c-.5289,0-.9576.4287-.9576.9576v.0848c0,.5289.4287.9576.9576.9576h3.7048c.029,0,.0534-.014.0817-.0165.08-.0052.1547-.0217.2309-.0466.0337-.0118.066-.0223.098-.0377.0894-.0405.1677-.0955.2424-.1634.0126-.0118.0249-.0226.0368-.035.0375-.038.0832-.0641.1148-.1093l1.1958-1.7077c.3033-.4332.1981-1.0304-.2352-1.3337ZM15.6849,3.197l-2.4749-2.4749c-.3906-.3906-1.0237-.3906-1.4142,0-.3906.3906-.3906,1.0237,0,1.4142l.7678.7678h-2.1302c-.0301,0-.0554.0145-.0848.0172-.2925.0082-.5781.1332-.7588.3913l-1.1958,1.7078c-.3033.4332-.1981,1.0303.2352,1.3337l.0695.0486c.4332.3033,1.0303.1981,1.3337-.2352l.8846-1.2634h1.6467l-.7678.7678c-.3906.3905-.3906,1.0236,0,1.4142.3904.3905,1.0236.3906,1.4142,0l2.4749-2.4749c.3906-.3906.3905-1.0237,0-1.4142Z",i1="M14.6537,10.9755l-1.1459-.6616.6658-.1784c.4001-.1072.6376-.5184.5303-.9186-.1072-.4001-.5184-.6375-.9186-.5303l-2.1147.5667-2.1707-1.2532,2.1706-1.2532,2.1147.5667c.4001.1072.8114-.1302.9186-.5303.1072-.4001-.1302-.8113-.5303-.9186l-.6658-.1784,1.1459-.6616c.3587-.2071.4816-.6658.2745-1.0245-.2072-.3588-.6658-.4816-1.0245-.2745l-1.1459.6616.1784-.6658c.1072-.4001-.1302-.8114-.5303-.9186-.4001-.1072-.8113.1302-.9186.5303l-.5667,2.1147-2.1706,1.2532v-2.5064l1.5481-1.5481c.2929-.2929.2929-.7678,0-1.0607-.2929-.2928-.7678-.2928-1.0607,0l-.4874.4874V.75c0-.4142-.3358-.75-.75-.75s-.75.3358-.75.75v1.3232l-.4874-.4874c-.2929-.2928-.7678-.2928-1.0607,0-.2929.2929-.2929.7678,0,1.0607l1.5481,1.5481v2.5064l-2.1706-1.2532-.5667-2.1147c-.1072-.4001-.5185-.6376-.9186-.5303-.4001.1072-.6375.5184-.5303.9186l.1784.6658-1.1459-.6616c-.3587-.2071-.8174-.0842-1.0245.2745-.2071.3587-.0842.8174.2745,1.0245l1.1459.6616-.6658.1784c-.4001.1072-.6376.5185-.5303.9186.1072.4001.5184.6376.9186.5303l2.1147-.5667,2.1706,1.2532-2.1707,1.2532-2.1147-.5667c-.4001-.1072-.8114.1302-.9186.5303-.1072.4001.1302.8114.5303.9186l.6658.1784-1.1459.6616c-.3587.2071-.4816.6658-.2745,1.0245.2072.3587.6658.4816,1.0245.2745l1.1459-.6616-.1784.6659c-.1072.4001.1302.8113.5303.9186.4001.1072.8113-.1302.9186-.5303l.5667-2.1148,2.1706-1.2532v2.5064l-1.5481,1.5481c-.2929.2929-.2929.7678,0,1.0607s.7678.2929,1.0607,0l.4874-.4874v1.3232c0,.4142.3358.75.75.75s.75-.3358.75-.75v-1.3232l.4874.4874c.2929.2929.7678.2929,1.0607,0s.2929-.7678,0-1.0607l-1.5481-1.5481v-2.5064l2.1706,1.2532.5667,2.1148c.1072.4001.5185.6375.9186.5303.4001-.1072.6375-.5185.5303-.9186l-.1784-.6659,1.1459.6616c.3587.2072.8174.0842,1.0245-.2745.2071-.3588.0842-.8174-.2745-1.0245Z",L1="M8.4625.5955l1.9827,4.8233c.0254.0618.0744.1108.1362.1362l4.8233,1.9827c.4132.1699.4132.7551,0,.9249l-4.8233,1.9827c-.0618.0254-.1108.0744-.1362.1362l-1.9827,4.8233c-.1699.4132-.7551.4132-.9249,0l-1.9827-4.8233c-.0254-.0618-.0744-.1108-.1362-.1362l-4.8232-1.9828c-.4132-.1699-.4132-.7551,0-.9249l4.8233-1.9827c.0618-.0254.1108-.0744.1362-.1362L7.5375.5955c.1698-.4132.7551-.4132.9249,0h.0001ZM13.1818.9423l.5465,1.3294,1.3294.5465c.1625.0668.1625.2969,0,.3636l-1.3294.5465-.5465,1.3294c-.0668.1625-.2969.1625-.3636,0l-.5465-1.3294-1.3294-.5465c-.1625-.0668-.1625-.2969,0-.3636l1.3294-.5465.5465-1.3294c.0668-.1625.2969-.1625.3636,0ZM2.141,2.8429l.296.7201.7201.296c.1259.0518.1259.2301,0,.2819l-.7201.296-.296.7201c-.0518.1259-.2301.1259-.2819,0l-.296-.7201-.7201-.296c-.1259-.0518-.1259-.2301,0-.2819l.7201-.296.296-.7201c.0518-.1259.2301-.1259.2819,0Z",u1="M8.4767.981l1.4439,4.5635c.0662.2092.2611.3508.4806.3492l4.7862-.0369c.4883-.0038.6919.6228.2946.9067l-3.8939,2.7834c-.1785.1276-.253.3567-.1836.5649l1.5142,4.5405c.1545.4632-.3785.8505-.7713.5604l-3.8504-2.8432c-.1765-.1304-.4175-.1304-.594,0l-3.8504,2.8432c-.3928.2901-.9258-.0972-.7713-.5604l1.5142-4.5405c.0694-.2082-.005-.4373-.1835-.5649L.5179,6.7634c-.3972-.284-.1937-.9105.2946-.9067l4.7862.0369c.2194.0017.4143-.1399.4806-.3491L7.5233.981c.1473-.4655.8061-.4655.9534,0Z",d1="M8,11.5c-1.933,0-3.5-1.567-3.5-3.5s1.567-3.5,3.5-3.5,3.5,1.567,3.5,3.5-1.567,3.5-3.5,3.5ZM16,8h0c0-.4142-.3358-.75-.75-.75h-2c-.4142,0-.75.3358-.75.75h0c0,.4142.3358.75.75.75h2c.4142,0,.75-.3358.75-.75ZM3.5,8h0c0-.4142-.3358-.75-.75-.75H.75c-.4142,0-.75.3358-.75.75h0c0,.4142.3358.75.75.75h2c.4142,0,.75-.3358.75-.75ZM8.098,12.5h0c-.4142,0-.75.3358-.75.75v2c0,.4142.3358.75.75.75h0c.4142,0,.75-.3358.75-.75v-2c0-.4142-.3358-.75-.75-.75ZM8,0h0c-.4142,0-.75.3358-.75.75v2c0,.4142.3358.75.75.75h0c.4142,0,.75-.3358.75-.75V.75c0-.4142-.3358-.75-.75-.75ZM13.6569,13.6569h0c.2929-.2929.2929-.7678,0-1.0607l-1.4142-1.4142c-.2929-.2929-.7678-.2929-1.0607,0h0c-.2929.2929-.2929.7678,0,1.0607l1.4142,1.4142c.2929.2929.7678.2929,1.0607,0ZM4.818,4.818h0c.2929-.2929.2929-.7678,0-1.0607l-1.4142-1.4142c-.2929-.2929-.7678-.2929-1.0607,0h0c-.2929.2929-.2929.7678,0,1.0607l1.4142,1.4142c.2929.2929.7678.2929,1.0607,0ZM4.8873,11.2512h0c-.2929-.2929-.7678-.2929-1.0607,0l-1.4142,1.4142c-.2929.2929-.2929.7678,0,1.0607h0c.2929.2929.7678.2929,1.0607,0l1.4142-1.4142c.2929-.2929.2929-.7678,0-1.0607ZM13.6569,2.3431h0c-.2929-.2929-.7678-.2929-1.0607,0l-1.4142,1.4142c-.2929.2929-.2929.7678,0,1.0607h0c.2929.2929.7678.2929,1.0607,0l1.4142-1.4142c.2929-.2929.2929-.7678,0-1.0607Z",g1="M14.7426,7.3284L8.3787.9644c-.0017-.0017-.0042-.0022-.0059-.0039-.0911-.0898-.199-.162-.319-.2118-.1224-.0507-.2521-.0772-.3825-.0771H2.6716C1.567.6716.6716,1.567.6716,2.6716v5c0,.0005.0003.001.0003.0016.0002.1297.0266.2589.0769.3807.0507.1222.1236.2327.2157.3248l6.364,6.364c.7811.7811,2.0474.781,2.8284,0l4.5858-4.5858c.781-.781.781-2.0474,0-2.8284ZM7.4038,2.818l5.571,5.571c.1953.1953.1953.5118,0,.7071l-3.8786,3.8786c-.1953.1953-.5118.1953-.7071,0L2.818,7.4038c-.0938-.0938-.1464-.2209-.1464-.3536v-3.8786c0-.2761.2239-.5.5-.5h3.8787c.1326,0,.2598.0527.3536.1464ZM6.6716,5.6716c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1Z",m1="M16,6v-1c0-1.1046-.8954-2-2-2H2c-1.1046,0-2,.8954-2,2v1c1.1046,0,2,.8954,2,2s-.8954,2-2,2v1c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2v-1c-1.1046,0-2-.8954-2-2s.8954-2,2-2ZM12,10c0,.5522-.4477,1-1,1h-6c-.5523,0-1-.4478-1-1v-4c0-.5523.4477-1,1-1h6c.5523,0,1,.4477,1,1v4Z",w1="M14.25,2h-3.75v-.5c0-.8284-.6716-1.5-1.5-1.5h-2c-.8284,0-1.5.6716-1.5,1.5v.5H1.75c-.5523,0-1,.4477-1,1s.4477,1,1,1h.4155l.7042,10.1268c.0734,1.0551.9448,1.8732,1.9951,1.8732h6.2703c1.0504,0,1.9218-.8181,1.9951-1.8732l.7042-10.1268h.4155c.5523,0,1-.4477,1-1s-.4477-1-1-1ZM11.0211,13.5049c-.0118.2692-.2319.4813-.4995.4813h-5.0431c-.2676,0-.4877-.2122-.4995-.4813l-.4156-9.5049h6.8733l-.4156,9.5049Z",S1="M12.568,5.2049h.0002c.3841-.9095.2087-1.9991-.5325-2.7404-.4619-.4619-1.0602-.6976-1.6652-.7224-.3224-1.0076-1.2557-1.7421-2.3704-1.7421s-2.0479.7344-2.3704,1.7421c-.605.0248-1.2032.2605-1.6652.7224-.7411.7411-.9166,1.8308-.5325,2.7404-1.1277.4313-1.932,1.5158-1.932,2.7952,0,1.6569,1.3431,3,3,3h2.5v3.9999c0,.5523.4477,1,1,1s1-.4477,1-1v-3.9999h2.5c1.6569,0,3-1.3431,3-3,0-1.2794-.8043-2.3638-1.932-2.7952Z",f1="M14,1.5H2C.8954,1.5,0,2.3954,0,3.5v6c0,1.1046.8954,2,2,2h5v1h-3c-.5523,0-1,.4477-1,1s.4477,1,1,1h8c.5523,0,1-.4478,1-1s-.4477-1-1-1h-3v-1h5c1.1046,0,2-.8954,2-2V3.5c0-1.1046-.8954-2-2-2ZM14,9c0,.2761-.2239.5-.5.5H2.5c-.2761,0-.5-.2239-.5-.5V4c0-.2761.2239-.5.5-.5h11c.2761,0,.5.2239.5.5v5Z",k1="M12,6h-6v-1.893c0-.9962.6807-1.9196,1.6641-2.0796,1.1178-.1818,2.1002.5639,2.2992,1.5893.044.2264.2514.3833.4821.3833h1.0154c.3142,0,.5415-.2857.495-.5965C11.6493,1.3529,9.7861-.189,7.6071.0188c-2.0797.1983-3.6071,2.0639-3.6071,4.1531v1.8281c-1.1045,0-2,.8954-2,2v6c0,1.1046.8954,2,2,2h8c1.1046,0,2-.8954,2-2v-6c0-1.1046-.8954-2-2-2ZM9,11.1107v1.3893c0,.5522-.4477,1-1,1s-1-.4478-1-1v-1.3893c-.3048-.2745-.5-.6682-.5-1.1107,0-.8284.6716-1.5,1.5-1.5s1.5.6716,1.5,1.5c0,.4425-.1952.8362-.5,1.1107Z",b1="M7.6178.0758c-.1208.0501-.2296.1226-.321.2132-.0012.0012-.0028.0015-.004.0026l-3.1819,3.1823c-.3905.3905-.3905,1.0239,0,1.4144s1.0237.3905,1.4142,0l1.4749-1.4751v7.5867c0,.5524.4477,1.0001,1,1.0001s1-.4477,1-1.0001V3.4133l1.4749,1.475c.3905.3905,1.0237.3905,1.4142,0s.3906-1.0238,0-1.4144L8.7072.2916c-.0922-.0922-.2027-.1651-.325-.2158-.2445-.1011-.5198-.1011-.7643,0h-.0001ZM15,16H1c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1h14c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1Z",D1="M0,3v10c0,1.1046.8954,2,2,2h12c1.1046,0,2-.8954,2-2V3c0-1.1046-.8954-2-2-2H2C.8954,1,0,1.8954,0,3ZM13.5,13H2.5c-.2761,0-.5-.2239-.5-.5V3.5c0-.2761.2239-.5.5-.5h11c.2761,0,.5.2239.5.5v9c0,.2761-.2239.5-.5.5ZM12,5c0,.5523-.4477,1-1,1s-1-.4477-1-1,.4477-1,1-1,1,.4477,1,1ZM3.6504,11.0019l1.8252-3.129c.193-.3307.6709-.3307.8638,0l.2383.4086,1.0426-1.7873c.1929-.3307.6708-.3307.8638,0l1.4499,2.4855.1861-.319c.1929-.3307.6708-.3307.8638,0l1.3657,2.3412c.1945.3333-.046.752-.4319.752h-7.8354c-.3859,0-.6263-.4186-.4319-.752Z",U1="M13.6568,2.3432C10.5326-.7811,5.4673-.7811,2.3431,2.3432-.781,5.4674-.781,10.5327,2.3431,13.6569c3.1242,3.1242,8.1895,3.1242,11.3137,0,3.1242-3.1242,3.1242-8.1895,0-11.3137ZM12.2426,12.2426c-2.3431,2.3431-6.1421,2.3431-8.4852,0-2.3432-2.3431-2.3432-6.1421,0-8.4853,2.3431-2.3431,6.1421-2.3431,8.4852,0,2.3432,2.3431,2.3432,6.1421,0,8.4853ZM8,10.5c.5523,0,1,.4477,1,1s-.4477,1-1,1-1-.4477-1-1,.4477-1,1-1ZM8,3.5h0c.5523,0,1,.4477,1,1v4c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1v-4c0-.5523.4477-1,1-1Z",R1="M9.4142,8l4.9498-4.9498c.3905-.3905.3905-1.0237,0-1.4142-.3905-.3906-1.0237-.3906-1.4142,0l-4.9498,4.9498L3.0502,1.636c-.3905-.3905-1.0237-.3905-1.4142,0-.3906.3905-.3906,1.0237,0,1.4142l4.9498,4.9498L1.636,12.9498c-.3905.3905-.3905,1.0237,0,1.4142.3905.3906,1.0237.3906,1.4142,0l4.9498-4.9498,4.9498,4.9498c.3905.3905,1.0237.3905,1.4142,0,.3906-.3905.3906-1.0237,0-1.4142l-4.9498-4.9498Z",q1="M8,0C3.5817,0,0,3.5817,0,8s3.5817,8,8,8,8-3.5817,8-8S12.4183,0,8,0ZM8,14c-3.3137,0-6-2.6863-6-6s2.6863-6,6-6,6,2.6863,6,6-2.6863,6-6,6ZM11.182,9.7678c.3905.3905.3905,1.0237,0,1.4142-.3906.3905-1.0237.3905-1.4142,0l-1.7678-1.7678-1.7678,1.7678c-.3905.3905-1.0237.3905-1.4142,0-.3905-.3906-.3905-1.0237,0-1.4142l1.7678-1.7678-1.7678-1.7678c-.3905-.3905-.3905-1.0237,0-1.4142.3906-.3905,1.0237-.3905,1.4142,0l1.7678,1.7678,1.7678-1.7678c.3905-.3905,1.0237-.3905,1.4142,0,.3905.3906.3905,1.0237,0,1.4142l-1.7678,1.7678,1.7678,1.7678Z";export{c as architect,h as arrowDown,v as arrowLeft,l as arrowRight,M as arrowUp,Z as atom,r as award,s as barGraph,e as bell,o as building,a as calculator,t as calendar,p as car,x as check,H as checkCircle,V as chevronDown,C as chevronLeft,n as chevronRight,i as chevronUp,L as city,u as clipboard,d as clock,g as clone,m as cloud,w as code,S as comment,f as cube,k as database,b as desktop,D as document,U as download,R as edit,q as evergreen,y as external,A as file,G as film,j as flower,z as folder,B as gem,E as globe,F as graphDown,I as graphUp,J as grid,K as heart,N as home,O as infoCircle,P as infoSquare,Q as letter,T as license,W as link,X as list,Y as lock,_ as login,$ as logout,c1 as menu,h1 as minus,v1 as minusCircle,l1 as moon,M1 as more,Z1 as mountains,r1 as newspaper,s1 as notAMoon,e1 as overflow,o1 as person,a1 as plus,t1 as plusCircle,p1 as podium,x1 as search,H1 as settings,V1 as share,C1 as shell,n1 as shuffle,i1 as snowflake,L1 as sparkles,u1 as star,d1 as sun,g1 as tag,m1 as ticket,w1 as trash,S1 as tree,f1 as tv,k1 as unlock,b1 as upload,D1 as vista,U1 as warningCircle,R1 as x,q1 as xCircle};
|
|
1
|
+
var c="M15.58,11.1c.28-.36.42-.75.42-1.19V.38c0-.21-.17-.38-.38-.38h-2.21c-.21,0-.38.17-.38.38v9.42L9.17,1.67c-.06-.13-.19-.21-.34-.21h-1.67c-.14,0-.28.08-.34.21l-3.89,8.17s0-.02,0-.03v-.92c0-.21-.17-.38-.38-.38H.38c-.21,0-.38.17-.38.38v1.02c0,.43.14.83.42,1.19.28.36.66.65,1.12.86.1.05.21.09.32.13l-1.61,3.38c-.12.25.06.54.34.54h2.14c.14,0,.28-.08.34-.21l1.66-3.5h6.5l1.66,3.5c.06.13.19.21.34.21h2.16c.28,0,.46-.29.34-.54l-1.61-3.38c.11-.04.22-.08.32-.13.47-.22.84-.5,1.12-.86h0ZM6.07,9.48l1.58-3.33c.14-.29.54-.29.68,0l1.58,3.33c.12.25-.06.54-.34.54h-3.16c-.28,0-.46-.29-.34-.54h0Z",h="M7.62,15.92c.24.1.52.1.76,0,.12-.05.22-.12.32-.21,0,0,0,0,0,0l4.95-4.95c.39-.39.39-1.02,0-1.41-.39-.39-1.02-.39-1.41,0l-3.24,3.24V1c0-.55-.45-1-1-1s-1,.45-1,1v11.59l-3.24-3.24c-.39-.39-1.02-.39-1.41,0s-.39,1.02,0,1.41l4.95,4.95s0,0,0,0c.09.09.2.16.32.21h0Z",v="M.08,8.38c-.1-.24-.1-.52,0-.76.05-.12.12-.22.21-.32,0,0,0,0,0,0L5.24,2.34c.39-.39,1.02-.39,1.41,0,.39.39.39,1.02,0,1.41l-3.24,3.24h11.59c.55,0,1,.45,1,1s-.45,1-1,1H3.41l3.24,3.24c.39.39.39,1.02,0,1.41s-1.02.39-1.41,0L.29,8.71s0,0,0,0c-.09-.09-.16-.2-.21-.32Z",l="M15.92,8.38c.1-.24.1-.52,0-.76-.05-.12-.12-.22-.21-.32,0,0,0,0,0,0l-4.95-4.95c-.39-.39-1.02-.39-1.41,0-.39.39-.39,1.02,0,1.41l3.24,3.24H1C.45,7,0,7.45,0,8s.45,1,1,1h11.59l-3.24,3.24c-.39.39-.39,1.02,0,1.41s1.02.39,1.41,0l4.95-4.95s0,0,0,0c.09-.09.16-.2.21-.32h0Z",M="M7.62.08c.24-.1.52-.1.76,0,.12.05.22.12.32.21,0,0,0,0,0,0l4.95,4.95c.39.39.39,1.02,0,1.41-.39.39-1.02.39-1.41,0l-3.24-3.24v11.59c0,.55-.45,1-1,1s-1-.45-1-1V3.41l-3.24,3.24c-.39.39-1.02.39-1.41,0s-.39-1.02,0-1.41L7.29.29s0,0,0,0c.09-.09.2-.16.32-.21Z",Z="M14.93,4c-.6-1.05-2.07-1.44-3.91-1.23-.73-1.69-1.81-2.77-3.02-2.77s-2.29,1.08-3.02,2.77c-1.83-.21-3.3.19-3.91,1.23-.6,1.05-.21,2.52.89,4-1.1,1.48-1.49,2.95-.89,4s2.07,1.44,3.91,1.23c.73,1.69,1.81,2.77,3.02,2.77s2.29-1.08,3.02-2.77c1.83.21,3.3-.19,3.91-1.23s.21-2.52-.89-4c1.1-1.48,1.49-2.95.89-4h0ZM4.39,11.44c-.79.08-1.37-.06-1.59-.44s-.05-.95.41-1.6c.29.28.61.55.94.81.06.42.14.83.23,1.22h0ZM2.8,5c.22-.38.8-.52,1.59-.44-.09.39-.17.8-.23,1.22-.34.26-.65.54-.94.81-.46-.65-.64-1.21-.42-1.59ZM8,14c-.44,0-.84-.44-1.17-1.16.38-.11.78-.25,1.17-.41.4.16.79.29,1.18.41-.33.72-.74,1.16-1.18,1.16ZM5.4,9.5c-.83-1.43-.34-3.27,1.1-4.1s3.27-.34,4.1,1.1.34,3.27-1.1,4.1-3.27.34-4.1-1.1ZM13.2,11c-.22.38-.8.52-1.59.44.09-.39.17-.8.23-1.22.34-.26.65-.54.94-.81.46.65.64,1.21.42,1.59h0ZM9.17,3.16c-.38.11-.78.25-1.17.41-.4-.16-.79-.29-1.18-.41.33-.72.74-1.16,1.18-1.16s.84.44,1.17,1.16ZM12.78,6.6c-.29-.28-.61-.55-.94-.81-.06-.42-.14-.83-.23-1.22.79-.08,1.37.06,1.59.44s.05.95-.41,1.6h0ZM8.87,7.5c.28.48.11,1.09-.37,1.37s-1.09.11-1.37-.37-.11-1.09.37-1.37,1.09-.11,1.37.37Z",s="M14.34,6.17h0c-.04-.47-.51-.82-.65-1.26l-.04-.16c-.1-.45.14-.99-.06-1.42-.23-.69-.97-.69-1.43-1.15-.39-.36-.4-.93-.82-1.25-.54-.48-1.19-.11-1.81-.28-.59-.16-.93-.72-1.52-.68-.59-.05-.93.52-1.52.68-.52.16-1.05-.12-1.49.1-.51.18-.68.64-.9,1.12-.31.62-1.13.67-1.49,1.14-.35.41-.27.89-.22,1.42.04.76-.76,1.22-.73,1.91-.05.59.52.93.68,1.52.16.62-.2,1.27.28,1.81.27.39.84.46,1.21.82v4.97c0,.47.56.7.89.37l2.92-2.92c.2-.2.54-.2.74,0l2.92,2.92c.33.33.89.1.89-.37v-4.99s.02-.03.03-.05c.59-.38,1.42-.58,1.45-1.41.03-.35-.11-.76.01-1.14.17-.62.81-1,.66-1.71h0ZM8,8.77c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5,2.5,1.12,2.5,2.5-1.12,2.5-2.5,2.5Z",r="M5,6h0c.55,0,1,.45,1,1v4c0,.55-.45,1-1,1h0c-.55,0-1-.45-1-1v-4c0-.55.45-1,1-1ZM13,4h0c.55,0,1,.45,1,1v6c0,.55-.45,1-1,1h0c-.55,0-1-.45-1-1v-6c0-.55.45-1,1-1ZM9,2h0c.55,0,1,.45,1,1v8c0,.55-.45,1-1,1h0c-.55,0-1-.45-1-1V3c0-.55.45-1,1-1ZM15,13.99H2V1c0-.55-.45-1-1-1S0,.45,0,1v14c0,.55.45,1,1,1,0,0,.02,0,.03,0h13.97c.55,0,1-.45,1-1s-.45-1-1-1Z",e="M14.11,12.2c-.51-.39-.84-.98-.99-1.6-.28-1.19-.61-3.01-.62-5.01-.01-2.12-1.46-4.01-3.5-4.48v-.12C9,.45,8.55,0,8,0s-1,.45-1,1v.12c-2.04.47-3.49,2.36-3.5,4.48-.01,2-.34,3.82-.62,5.01-.15.63-.48,1.21-.99,1.6-.27.21-.44.56-.38.94.07.51.55.86,1.07.86h3.42c0,1.1.9,2,2,2s2-.9,2-2h3.42c.51,0,1-.35,1.07-.86.05-.38-.11-.73-.38-.94h0ZM8,14h-.03s.03-.01.03-.03c0,.02.01.03.03.03,0,0-.03,0-.03,0Z",o="M12,0H4c-1.1,0-2,.9-2,2v12c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2V2c0-1.1-.9-2-2-2ZM9.33,2.25c0-.14.11-.25.25-.25h1.5c.14,0,.25.11.25.25v1.5c0,.14-.11.25-.25.25h-1.5c-.14,0-.25-.11-.25-.25v-1.5ZM9.33,6.25c0-.14.11-.25.25-.25h1.5c.14,0,.25.11.25.25v1.5c0,.14-.11.25-.25.25h-1.5c-.14,0-.25-.11-.25-.25v-1.5ZM8.91,10c.55,0,1,.45,1,1v2.75c0,.14-.11.25-.25.25h-3.5c-.14,0-.25-.11-.25-.25v-2.75c0-.55.45-1,1-1h2ZM4.67,2.25c0-.14.11-.25.25-.25h1.5c.14,0,.25.11.25.25v1.5c0,.14-.11.25-.25.25h-1.5c-.14,0-.25-.11-.25-.25v-1.5ZM4.67,6.25c0-.14.11-.25.25-.25h1.5c.14,0,.25.11.25.25v1.5c0,.14-.11.25-.25.25h-1.5c-.14,0-.25-.11-.25-.25v-1.5Z",a="M13,0H3C1.9,0,1,.9,1,2v12c0,1.1.9,2,2,2h10c1.1,0,2-.9,2-2V2c0-1.1-.9-2-2-2ZM3,2.5c0-.28.22-.5.5-.5h9c.28,0,.5.22.5.5v1c0,.28-.22.5-.5.5H3.5c-.28,0-.5-.22-.5-.5v-1ZM13,7.12c0,.62-.5,1.12-1.12,1.12s-1.12-.5-1.12-1.12.5-1.12,1.12-1.12,1.12.5,1.12,1.12ZM4.12,14c-.62,0-1.12-.5-1.12-1.12s.5-1.12,1.12-1.12,1.12.5,1.12,1.12-.5,1.12-1.12,1.12ZM4.12,11.12c-.62,0-1.12-.5-1.12-1.12s.5-1.12,1.12-1.12,1.12.5,1.12,1.12-.5,1.12-1.12,1.12ZM4.12,8.25c-.62,0-1.12-.5-1.12-1.12s.5-1.12,1.12-1.12,1.12.5,1.12,1.12-.5,1.12-1.12,1.12ZM8,14c-.62,0-1.12-.5-1.12-1.12s.5-1.12,1.12-1.12,1.12.5,1.12,1.12-.5,1.12-1.12,1.12ZM8,11.12c-.62,0-1.12-.5-1.12-1.12s.5-1.12,1.12-1.12,1.12.5,1.12,1.12-.5,1.12-1.12,1.12ZM8,8.25c-.62,0-1.12-.5-1.12-1.12s.5-1.12,1.12-1.12,1.12.5,1.12,1.12-.5,1.12-1.12,1.12ZM13.12,12.75c0,.69-.56,1.25-1.25,1.25s-1.25-.56-1.25-1.25v-2.62c0-.69.56-1.25,1.25-1.25s1.25.56,1.25,1.25v2.62Z",t="M4.5,10.25h-.5c-.28,0-.5-.22-.5-.5v-.5c0-.28.22-.5.5-.5h.5c.28,0,.5.22.5.5v.5c0,.28-.22.5-.5.5ZM5,12.25v-.5c0-.28-.22-.5-.5-.5h-.5c-.28,0-.5.22-.5.5v.5c0,.28.22.5.5.5h.5c.28,0,.5-.22.5-.5ZM7.5,9.75v-.5c0-.28-.22-.5-.5-.5h-.5c-.28,0-.5.22-.5.5v.5c0,.28.22.5.5.5h.5c.28,0,.5-.22.5-.5ZM7.5,12.25v-.5c0-.28-.22-.5-.5-.5h-.5c-.28,0-.5.22-.5.5v.5c0,.28.22.5.5.5h.5c.28,0,.5-.22.5-.5ZM10,9.75v-.5c0-.28-.22-.5-.5-.5h-.5c-.28,0-.5.22-.5.5v.5c0,.28.22.5.5.5h.5c.28,0,.5-.22.5-.5ZM10,12.25v-.5c0-.28-.22-.5-.5-.5h-.5c-.28,0-.5.22-.5.5v.5c0,.28.22.5.5.5h.5c.28,0,.5-.22.5-.5ZM12.5,9.75v-.5c0-.28-.22-.5-.5-.5h-.5c-.28,0-.5.22-.5.5v.5c0,.28.22.5.5.5h.5c.28,0,.5-.22.5-.5ZM12.5,12.25v-.5c0-.28-.22-.5-.5-.5h-.5c-.28,0-.5.22-.5.5v.5c0,.28.22.5.5.5h.5c.28,0,.5-.22.5-.5ZM16,3.5v10.5c0,1.1-.9,2-2,2H2c-1.1,0-2-.9-2-2V3.5C0,2.4.9,1.5,2,1.5h2v-.5c0-.55.45-1,1-1s1,.45,1,1v.5h4v-.5c0-.55.45-1,1-1s1,.45,1,1v.5h2c1.1,0,2,.9,2,2ZM14,13.5v-5.5c0-.28-.22-.5-.5-.5H2.5c-.28,0-.5.22-.5.5v5.5c0,.28.22.5.5.5h11c.28,0,.5-.22.5-.5ZM2.5,5.5h11c.28,0,.5-.22.5-.5v-1c0-.28-.22-.5-.5-.5H2.5c-.28,0-.5.22-.5.5v1c0,.28.22.5.5.5Z",p="M15,6.5h-.5l-.91-3.51c-.23-.88-1.03-1.49-1.94-1.49h-7.3c-.91,0-1.71.61-1.94,1.49l-.91,3.51h-.5C.45,6.5,0,6.95,0,7.5s.45,1,1,1v5c0,.55.45,1,1,1h1c.55,0,1-.45,1-1v-1h8v1c0,.55.45,1,1,1h1c.55,0,1-.45,1-1v-5c.55,0,1-.45,1-1s-.45-1-1-1ZM4.09,3.89c.05-.23.25-.39.49-.39h6.84c.23,0,.44.16.49.39l.59,2.61H3.5l.59-2.61ZM4,10.5c-.55,0-1-.45-1-1s.45-1,1-1,1,.45,1,1-.45,1-1,1ZM13,9.5c0,.55-.45,1-1,1s-1-.45-1-1,.45-1,1-1,1,.45,1,1Z",x="M12.42,3.76l-6.36,6.36-2.47-2.47c-.39-.39-1.02-.39-1.41,0s-.39,1.02,0,1.41l3.18,3.18c.39.39,1.02.39,1.41,0l7.07-7.07c.39-.39.39-1.02,0-1.41s-1.02-.39-1.41,0Z",H="M8,0C3.58,0,0,3.58,0,8s3.58,8,8,8,8-3.58,8-8S12.42,0,8,0ZM8,14c-3.31,0-6-2.69-6-6s2.69-6,6-6,6,2.69,6,6-2.69,6-6,6ZM10.3,5.47l-3.54,3.54-1.06-1.06c-.39-.39-1.02-.39-1.41,0-.39.39-.39,1.02,0,1.41l1.77,1.77c.39.39,1.02.39,1.41,0l4.24-4.24c.39-.39.39-1.02,0-1.41-.39-.39-1.02-.39-1.41,0Z",V="M7.33,11.92s-.02-.03-.03-.04c-.01-.01-.03-.01-.04-.03L.9,5.49c-.39-.39-.39-1.02,0-1.41.39-.39,1.02-.39,1.41,0l5.72,5.72,5.66-5.66c.39-.39,1.02-.39,1.41,0s.39,1.02,0,1.41l-6.36,6.36c-.39.39-1.02.39-1.41,0Z",C="M4.08,8.67s.03.02.04.03c.01.01.01.03.03.04l6.36,6.36c.39.39,1.02.39,1.41,0s.39-1.02,0-1.41l-5.72-5.72,5.66-5.66c.39-.39.39-1.02,0-1.41s-1.02-.39-1.41,0l-6.36,6.36c-.39.39-.39,1.02,0,1.41h0Z",n="M11.92,8.67s-.03.02-.04.03c-.01.01-.01.03-.03.04l-6.36,6.36c-.39.39-1.02.39-1.41,0s-.39-1.02,0-1.41l5.72-5.72L4.14,2.31c-.39-.39-.39-1.02,0-1.41s1.02-.39,1.41,0l6.36,6.36c.39.39.39,1.02,0,1.41Z",i="M7.33,4.08s-.02.03-.03.04c-.01.01-.03.01-.04.03L.9,10.51c-.39.39-.39,1.02,0,1.41.39.39,1.02.39,1.41,0l5.72-5.72,5.66,5.66c.39.39,1.02.39,1.41,0s.39-1.02,0-1.41l-6.36-6.36c-.39-.39-1.02-.39-1.41,0Z",L="M7,12.23c0,.89-.72,1.62-1.62,1.62h-1.35v1.62c0,.3-.24.54-.54.54s-.54-.24-.54-.54v-1.62h-1.35c-.89,0-1.62-.72-1.62-1.62,0-.69.43-1.27,1.04-1.51-.21-.49-.11-1.08.29-1.48.25-.25.57-.38.9-.39.17-.54.68-.94,1.28-.94s1.1.4,1.28.94c.33.01.65.14.9.39.4.4.49.99.29,1.48.61.23,1.04.82,1.04,1.51h0ZM16,3v12c0,.55-.45,1-1,1h-6c-.55,0-1-.45-1-1V3c0-.55.45-1,1-1h6c.55,0,1,.45,1,1ZM11.25,13.5c0-.28-.22-.5-.5-.5h-.75c-.28,0-.5.22-.5.5v.75c0,.28.22.5.5.5h.75c.28,0,.5-.22.5-.5v-.75ZM11.25,10.25c0-.28-.22-.5-.5-.5h-.75c-.28,0-.5.22-.5.5v.75c0,.28.22.5.5.5h.75c.28,0,.5-.22.5-.5v-.75ZM11.25,7c0-.28-.22-.5-.5-.5h-.75c-.28,0-.5.22-.5.5v.75c0,.28.22.5.5.5h.75c.28,0,.5-.22.5-.5v-.75ZM11.25,3.75c0-.28-.22-.5-.5-.5h-.75c-.28,0-.5.22-.5.5v.75c0,.28.22.5.5.5h.75c.28,0,.5-.22.5-.5v-.75ZM14.5,13.5c0-.28-.22-.5-.5-.5h-.75c-.28,0-.5.22-.5.5v.75c0,.28.22.5.5.5h.75c.28,0,.5-.22.5-.5v-.75ZM14.5,10.25c0-.28-.22-.5-.5-.5h-.75c-.28,0-.5.22-.5.5v.75c0,.28.22.5.5.5h.75c.28,0,.5-.22.5-.5v-.75ZM14.5,7c0-.28-.22-.5-.5-.5h-.75c-.28,0-.5.22-.5.5v.75c0,.28.22.5.5.5h.75c.28,0,.5-.22.5-.5v-.75ZM14.5,3.75c0-.28-.22-.5-.5-.5h-.75c-.28,0-.5.22-.5.5v.75c0,.28.22.5.5.5h.75c.28,0,.5-.22.5-.5v-.75ZM3.91,4.38c.08-.01.13.09.06.14-.49.35-1.1.54-1.77.46C1.07,4.85.15,3.92.02,2.78-.14,1.39.83.2,2.13,0c.08-.01.12.09.06.14-.65.48-1.05,1.29-.95,2.18.1.91.76,1.7,1.63,1.97.36.11.72.13,1.05.08h0Z",u="M12,2c0-1.1-.9-2-2-2h-4c-1.1,0-2,.9-2,2-1.1,0-2,.9-2,2v10c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM7,2h2c.55,0,1,.45,1,1s-.45,1-1,1h-2c-.55,0-1-.45-1-1s.45-1,1-1ZM12,13.5c0,.28-.22.5-.5.5h-7c-.28,0-.5-.22-.5-.5V4c0,1.1.9,2,2,2h4c1.1,0,2-.9,2-2v9.5Z",d="M8,0C3.58,0,0,3.58,0,8s3.58,8,8,8,8-3.58,8-8S12.42,0,8,0ZM8,14c-3.31,0-6-2.69-6-6s2.69-6,6-6,6,2.69,6,6-2.69,6-6,6ZM11.1,8.63l-2.1-1.21v-3.42c0-.55-.45-1-1-1s-1,.45-1,1v4s.02.08.02.12c0,.07.02.13.04.2.02.06.05.12.08.17.03.06.06.11.11.16.05.05.1.09.15.14.03.03.06.06.09.08l2.6,1.5c.48.28,1.09.11,1.37-.37.28-.48.11-1.09-.37-1.37h0Z",S="M5,2v7c0,1.1.9,2,2,2h7c1.1,0,2-.9,2-2V2c0-1.1-.9-2-2-2h-7c-1.1,0-2,.9-2,2ZM13.5,9h-6c-.28,0-.5-.22-.5-.5V2.5c0-.28.22-.5.5-.5h6c.28,0,.5.22.5.5v6c0,.28-.22.5-.5.5ZM10,12.5h0c.55,0,1,.45,1,1v.5c0,1.1-.9,2-2,2H2c-1.1,0-2-.9-2-2v-7c0-1.1.9-2,2-2h.5c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1h0c-.28,0-.5.22-.5.5v6c0,.28.22.5.5.5h6c.28,0,.5-.22.5-.5h0c0-.55.45-1,1-1Z",g="M13,6.3v-.55c0-1.66-1.34-3-3-3-1.28,0-2.36.8-2.79,1.92l-.08-.08c-.98-.98-2.56-.98-3.54,0-.72.72-.9,1.77-.56,2.66h-.03c-1.66,0-3,1.34-3,3s1.34,3,3,3h9.5c1.93,0,3.5-1.57,3.5-3.5,0-1.76-1.31-3.21-3-3.45Z",m="M3.98,2.79c-.48-.28-1.09-.11-1.37.37L.12,7.49s-.02.08-.04.12c-.03.06-.05.13-.07.19C0,7.87,0,7.93,0,7.99c0,.06,0,.13.01.19.01.07.04.13.06.19.02.04.02.08.04.12l2.5,4.33c.28.48.89.64,1.37.37s.64-.89.37-1.37l-2.21-3.83,2.21-3.83c.28-.48.11-1.09-.37-1.37h0ZM12.02,2.79c.48-.28,1.09-.11,1.37.37l2.5,4.33s.02.08.04.12c.03.06.05.13.07.19.01.06.01.12.01.19,0,.06,0,.13-.01.19-.01.07-.04.13-.06.19-.02.04-.02.08-.04.12l-2.5,4.33c-.28.48-.89.64-1.37.37s-.64-.89-.37-1.37l2.21-3.83-2.21-3.83c-.28-.48-.11-1.09.37-1.37h0ZM6.06,13.33h0c-.52-.19-.79-.76-.6-1.28l3.19-8.78c.19-.52.76-.79,1.28-.6h0c.52.19.79.76.6,1.28l-3.19,8.78c-.19.52-.76.79-1.28.6Z",w="M9,6.84c0,.55-.45,1-1,1s-1-.45-1-1,.45-1,1-1,1,.45,1,1ZM11.5,5.84c-.55,0-1,.45-1,1s.45,1,1,1,1-.45,1-1-.45-1-1-1ZM4.5,5.84c-.55,0-1,.45-1,1s.45,1,1,1,1-.45,1-1-.45-1-1-1ZM16,6.84c0,3.31-3.58,6-8,6-.63,0-1.25-.05-1.83-.16-.01,0-.02,0-.04,0l-4.18,2.41c-.47.27-1.03-.2-.83-.71l1.26-3.28C.91,10.01,0,8.51,0,6.84,0,3.53,3.58.84,8,.84s8,2.69,8,6ZM14,6.84c0-2.21-2.69-4-6-4S2,4.63,2,6.84c0,.91.46,1.75,1.24,2.43.02.02.05.04.07.06.38.32.83.6,1.33.83.27.12.57.23.87.32.76.23,1.6.36,2.49.36,3.31,0,6-1.79,6-4Z",f="M7.5.29L1.57,3.71c-.31.18-.5.51-.5.87v6.85c0,.36.19.69.5.87l5.93,3.42c.31.18.69.18,1,0l5.93-3.42c.31-.18.5-.51.5-.87v-7.42L8.5.29c-.31-.18-.69-.18-1,0ZM11.82,4.64l-3.7,2.13c-.08.04-.17.04-.25,0l-3.7-2.13c-.17-.1-.17-.34,0-.43l3.7-2.13c.08-.04.17-.04.25,0l3.7,2.13c.17.1.17.34,0,.43ZM3.18,6.37l3.7,2.13c.08.04.12.13.12.22v4.27c0,.19-.21.31-.38.22l-3.7-2.13c-.08-.04-.12-.13-.12-.22v-4.27c0-.19.21-.31.38-.22ZM9,12.99v-4.27c0-.09.05-.17.12-.22l3.7-2.13c.17-.1.38.02.38.22v4.27c0,.09-.05.17-.12.22l-3.7,2.13c-.17.1-.38-.02-.38-.22Z",k="M8,0C4.41,0,1.5,1.79,1.5,4v8c0,2.21,2.91,4,6.5,4s6.5-1.79,6.5-4V4c0-2.21-2.91-4-6.5-4ZM8,2c2.49,0,4.5.9,4.5,2s-2.01,2-4.5,2-4.5-.9-4.5-2,2.01-2,4.5-2ZM8,14c-2.49,0-4.5-.9-4.5-2v-1.12c1.17.69,2.75,1.12,4.5,1.12s3.33-.43,4.5-1.12v1.12c0,1.1-2.01,2-4.5,2ZM8,10c-2.49,0-4.5-.9-4.5-2v-1.12c1.17.69,2.75,1.12,4.5,1.12s3.33-.43,4.5-1.12v1.12c0,1.1-2.01,2-4.5,2Z",b="M14,1H2C.9,1,0,1.9,0,3v8c0,1.1.9,2,2,2h1.5c-.55,0-1,.45-1,1s.45,1,1,1h9c.55,0,1-.45,1-1s-.45-1-1-1h1.5c1.1,0,2-.9,2-2V3c0-1.1-.9-2-2-2ZM8,13c-.55,0-1-.45-1-1s.45-1,1-1,1,.45,1,1-.45,1-1,1ZM14,9.5c0,.28-.22.5-.5.5H2.5c-.28,0-.5-.22-.5-.5V3.5c0-.28.22-.5.5-.5h11c.28,0,.5.22.5.5v6Z",D="M13.42,3.07h-.01s-2.48-2.49-2.48-2.49c-.01,0-.02-.02-.04-.04-.37-.34-.87-.54-1.38-.54h-5.51c-1.1,0-2,.9-2,2v12c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2V4.48c0-.53-.21-1.03-.58-1.41ZM12,4.49h0s-2,.01-2,.01c-.28,0-.5-.22-.5-.5v-2h.02l2.48,2.49ZM12,13.5c0,.28-.22.5-.5.5h-7c-.28,0-.5-.22-.5-.5V2.5c0-.28.22-.5.5-.5h3v2.5c0,.55.22,1.05.59,1.41.36.37.86.59,1.41.59h2.5v7ZM10.4,8.35h-4.8c-.33,0-.6-.27-.6-.6h0c0-.33.27-.6.6-.6h4.8c.33,0,.6.27.6.6h0c0,.33-.27.6-.6.6ZM10.4,10.85h-4.8c-.33,0-.6-.27-.6-.6h0c0-.33.27-.6.6-.6h4.8c.33,0,.6.27.6.6h0c0,.33-.27.6-.6.6ZM10.4,13.35h-4.8c-.33,0-.6-.27-.6-.6h0c0-.33.27-.6.6-.6h4.8c.33,0,.6.27.6.6h0c0,.33-.27.6-.6.6Z",U="M7.62,11.92c-.12-.05-.23-.12-.32-.21,0,0,0,0,0,0l-3.18-3.18c-.39-.39-.39-1.02,0-1.41s1.02-.39,1.41,0l1.47,1.48V1c0-.55.45-1,1-1s1,.45,1,1v7.59l1.47-1.47c.39-.39,1.02-.39,1.41,0s.39,1.02,0,1.41l-3.18,3.18c-.09.09-.2.17-.32.22-.24.1-.52.1-.76,0,0,0,0,0,0,0ZM16,15h0c0-.55-.45-1-1-1H1c-.55,0-1,.45-1,1h0c0,.55.45,1,1,1h14c.55,0,1-.45,1-1Z",R="M14,10v4c0,1.1-.9,2-2,2H2c-1.1,0-2-.9-2-2V4c0-1.1.9-2,2-2h4c.55,0,1,.45,1,1s-.45,1-1,1h-3.5c-.28,0-.5.22-.5.5v9c0,.28.22.5.5.5h9c.28,0,.5-.22.5-.5v-3.5c0-.55.45-1,1-1s1,.45,1,1ZM15.71,1.35l-1.06-1.06c-.39-.39-1.02-.39-1.41,0l-5.47,5.47c-.06.06-.1.13-.12.21l-.8,2.56c-.12.38.24.74.63.63l2.56-.8c.08-.02.15-.07.21-.12l5.47-5.47c.39-.39.39-1.02,0-1.41h0Z",q="M13.15,12.15l-2.65-2.65h1.43c.42,0,.66-.49.38-.82l-2.23-2.68h1.02c.39,0,.63-.43.42-.76L8.42.24c-.2-.32-.65-.32-.85,0l-3.1,5c-.21.33.03.76.42.76h1.02l-2.23,2.68c-.27.33-.04.82.38.82h1.43l-2.65,2.65c-.31.31-.09.85.35.85h3.79v2c0,.55.45,1,1,1s1-.45,1-1v-2h3.79c.45,0,.67-.54.35-.85h0Z",y="M14,10v4c0,1.1-.9,2-2,2H2C.9,16,0,15.1,0,14V4C0,2.9.9,2,2,2h4c.55,0,1,.45,1,1s-.45,1-1,1h-3.5c-.28,0-.5.22-.5.5v9c0,.28.22.5.5.5h9c.28,0,.5-.22.5-.5v-3.5c0-.55.45-1,1-1s1,.45,1,1ZM15,0h-6c-.55,0-1,.45-1,1s.45,1,1,1h3.59l-6.29,6.29c-.39.39-.39,1.02,0,1.41.39.39,1.02.39,1.41,0l6.29-6.29v3.59c0,.55.45,1,1,1s1-.45,1-1V1c0-.55-.45-1-1-1h0Z",A="M13.42,3.07h-.01s-2.48-2.49-2.48-2.49c-.01,0-.02-.02-.04-.04C10.52.2,10.02,0,9.51,0h-5.51C2.9,0,2,.9,2,2v12c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2V4.48c0-.53-.21-1.03-.58-1.41ZM12,4.49h0s-2,.01-2,.01c-.28,0-.5-.22-.5-.5v-2h.02l2.48,2.49ZM12,13.5c0,.28-.22.5-.5.5h-7c-.28,0-.5-.22-.5-.5V2.5c0-.28.22-.5.5-.5h3v2.5c0,.55.22,1.05.59,1.41.36.37.86.59,1.41.59h2.5v7Z",G="M0,3v10c0,1.66,1.34,3,3,3h10c1.66,0,3-1.34,3-3V3c0-1.66-1.34-3-3-3H3C1.34,0,0,1.34,0,3ZM13.5,4h-1.67c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5h1.67c.28,0,.5.22.5.5v1c0,.28-.22.5-.5.5ZM9.33,12.5v1c0,.28-.22.5-.5.5h-1.67c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5h1.67c.28,0,.5.22.5.5ZM2,9.5v-3c0-.28.22-.5.5-.5h11c.28,0,.5.22.5.5v3c0,.28-.22.5-.5.5H2.5c-.28,0-.5-.22-.5-.5ZM6.67,3.5v-1c0-.28.22-.5.5-.5h1.67c.28,0,.5.22.5.5v1c0,.28-.22.5-.5.5h-1.67c-.28,0-.5-.22-.5-.5ZM4.67,2.5v1c0,.28-.22.5-.5.5h-1.67c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5h1.67c.28,0,.5.22.5.5ZM2.5,12h1.67c.28,0,.5.22.5.5v1c0,.28-.22.5-.5.5h-1.67c-.28,0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5ZM11.33,13.5v-1c0-.28.22-.5.5-.5h1.67c.28,0,.5.22.5.5v1c0,.28-.22.5-.5.5h-1.67c-.28,0-.5-.22-.5-.5Z",j="M12.24,9.36c1.17-1.17,1.17-3.07,0-4.24,1.17-1.17,1.17-3.07,0-4.24-1.17-1.17-3.07-1.17-4.24,0-1.17-1.17-3.07-1.17-4.24,0-1.17,1.17-1.17,3.07,0,4.24-1.17,1.17-1.17,3.07,0,4.24.88.88,2.16,1.1,3.24.66v2.67c-1.42-.8-2.89-.89-3.3-.18-.41.72.41,1.97,1.85,2.8.86.5,1.74.72,2.39.67.02,0,.04.01.06.01s.04-.01.06-.01c.66.05,1.54-.18,2.39-.67,1.43-.83,2.26-2.08,1.85-2.8-.41-.71-1.88-.63-3.3.18v-2.67c1.08.44,2.37.22,3.24-.66h0ZM6.23,3.35c.98-.98,2.56-.98,3.54,0,.98.98.98,2.56,0,3.54-.98.98-2.56.98-3.54,0-.98-.98-.98-2.56,0-3.54Z",z="M14,3h-5.59l-1.71-1.71c-.09-.09-.2-.17-.32-.22-.12-.05-.25-.08-.38-.08h-4c-1.1,0-2,.9-2,2v10c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V5c0-1.1-.9-2-2-2ZM13.5,13H2.5c-.28,0-.5-.22-.5-.5V3.5c0-.28.22-.5.5-.5h3.09l1.71,1.71s0,0,0,0c.09.09.2.17.33.22.09.04.19.05.29.06.03,0,.06.02.09.02h5.5c.28,0,.5.22.5.5v7c0,.28-.22.5-.5.5h0Z",B="M15.57,7.3s.05-.07.07-.11c0-.02,0-.05.02-.07.02-.06.03-.12.04-.18,0-.06.02-.13.01-.19,0-.06-.02-.12-.03-.18-.01-.05-.01-.1-.03-.14,0-.02-.03-.04-.04-.06,0-.02,0-.04-.02-.06l-2.5-4.33s-.06-.06-.08-.09c-.04-.06-.08-.11-.14-.15-.05-.04-.1-.07-.16-.11-.06-.03-.11-.06-.17-.08-.07-.02-.13-.03-.2-.04-.04,0-.08-.02-.12-.02H3.79s-.08.02-.12.02c-.07,0-.13.02-.2.04-.06.02-.12.05-.17.08-.06.03-.11.06-.16.11-.05.05-.09.1-.14.15-.03.03-.06.06-.08.09L.42,6.31s0,.04-.02.06c-.01.02-.03.04-.04.06-.02.05-.02.09-.03.14-.02.06-.03.12-.03.18,0,.02-.01.04-.01.05,0,0,0,0,0,0s0,0,0,0c0,.04.02.08.02.12,0,.06.02.12.04.18,0,.02,0,.05.02.07.02.04.05.07.07.11.03.05.06.11.1.15.02.02.02.04.04.06l6.72,6.72c.39.39,1.02.39,1.41,0l6.72-6.72s.02-.04.04-.06c.04-.05.07-.1.1-.15h0ZM4.18,3.8l1.68,2.01h-2.84l1.16-2.01h0ZM6.52,3.48h2.98l-1.49,1.77s-1.49-1.77-1.49-1.77ZM11.83,3.8l1.16,2.01h-2.84l1.68-2.01h0ZM8.01,12.11L3.7,7.81h8.61l-4.3,4.3h0Z",E="M8,0C3.58,0,0,3.58,0,8s3.58,8,8,8,8-3.58,8-8S12.42,0,8,0ZM13.91,7h-1.94c-.1-1.57-.42-3-.91-4.16,1.49.88,2.56,2.39,2.85,4.16h0ZM8,14c-.99,0-1.81-2.16-1.97-5h3.94c-.16,2.84-.98,5-1.97,5h0ZM6.03,7c.16-2.84.98-5,1.97-5s1.81,2.16,1.97,5h-3.94,0ZM4.94,2.84c-.49,1.15-.81,2.58-.91,4.16h-1.94c.3-1.77,1.37-3.27,2.85-4.16h0ZM2.09,9h1.94c.1,1.57.42,3,.91,4.16-1.49-.88-2.56-2.39-2.85-4.16h0ZM11.06,13.16c.49-1.15.81-2.58.91-4.16h1.94c-.3,1.77-1.37,3.27-2.85,4.16h0Z",F="M15,13.99H2V1c0-.55-.45-1-1-1S0,.45,0,1v14c0,.55.45,1,1,1,0,0,.02,0,.03,0h13.97c.55,0,1-.45,1-1s-.45-1-1-1ZM14.23,12.06c-.48.28-1.09.11-1.37-.37l-2.5-4.33-2.6,1.5c-.48.28-1.09.11-1.37-.37,0,0,0,0,0,0L3.4,3.3c-.28-.48-.11-1.09.37-1.37.48-.28,1.09-.11,1.37.37l2.5,4.33,2.6-1.5c.12-.07.25-.11.38-.13.39-.05.78.13.99.49l3,5.2c.28.48.11,1.09-.37,1.37Z",I="M15,13.99H2V1c0-.55-.45-1-1-1S0,.45,0,1v14c0,.55.45,1,1,1,0,0,.02,0,.03,0h13.97c.55,0,1-.45,1-1s-.45-1-1-1ZM14.23,1.94c-.48-.28-1.09-.11-1.37.37l-2.5,4.33-2.6-1.5c-.48-.28-1.09-.11-1.37.37,0,0,0,0,0,0l-3,5.2c-.28.48-.11,1.09.37,1.37.48.28,1.09.11,1.37-.37l2.5-4.33,2.6,1.5c.12.07.25.11.38.13.39.05.78-.13.99-.49l3-5.2c.28-.48.11-1.09-.37-1.37h0Z",J="M8.5,12.12h-1c-.55,0-1-.45-1-1v-1c0-.55.45-1,1-1h1c.55,0,1,.45,1,1v1c0,.55-.45,1-1,1ZM14.75,11.12v-1c0-.55-.45-1-1-1h-1c-.55,0-1,.45-1,1v1c0,.55.45,1,1,1h1c.55,0,1-.45,1-1ZM4.25,11.12v-1c0-.55-.45-1-1-1h-1c-.55,0-1,.45-1,1v1c0,.55.45,1,1,1h1c.55,0,1-.45,1-1ZM9.5,5.88v-1c0-.55-.45-1-1-1h-1c-.55,0-1,.45-1,1v1c0,.55.45,1,1,1h1c.55,0,1-.45,1-1ZM14.75,5.88v-1c0-.55-.45-1-1-1h-1c-.55,0-1,.45-1,1v1c0,.55.45,1,1,1h1c.55,0,1-.45,1-1ZM4.25,5.88v-1c0-.55-.45-1-1-1h-1c-.55,0-1,.45-1,1v1c0,.55.45,1,1,1h1c.55,0,1-.45,1-1Z",K="M13.77,2.21c-1.72-.98-3.79-.68-5.18.46-.2.18-.41.36-.62.55-.25-.22-.5-.44-.74-.64-.8-.68-1.77-.96-2.79-.96-.96,0-1.98.28-2.75.97C.02,4.22.22,6.93,1.53,8.62c.16.2.33.39.51.59,1.53,1.77,3.51,3.65,5.22,4.95.41.3,1.02.3,1.43,0,1.71-1.3,3.69-3.17,5.23-4.95.22-.25.44-.51.64-.75.67-.82.94-1.83.95-2.85,0-1.25-.48-2.62-1.74-3.4h0Z",N="M15.71,7.21l-.63-.63v-2.5c0-.55-.45-1-1.01-1s-1.01.45-1.01,1v.5L8.73.29C8.53.09,8.26,0,8,0c-.26,0-.53.09-.73.29L2.95,4.58.93,6.58l-.63.63c-.39.39-.39,1.02,0,1.41.18.17.4.26.63.28v6.6c0,.28.23.5.51.5h4.04c.28,0,.51-.22.51-.5v-5.59c0-.28.23-.5.51-.5h3.03c.28,0,.51.22.51.5v5.59c0,.28.23.5.51.5h4.04c.28,0,.51-.22.51-.5v-6.6c.23-.02.46-.1.63-.28.39-.39.39-1.02,0-1.41h0Z",O="M8,0C3.58,0,0,3.58,0,8s3.58,8,8,8,8-3.58,8-8S12.42,0,8,0ZM8,14c-3.31,0-6-2.69-6-6s2.69-6,6-6,6,2.69,6,6-2.69,6-6,6ZM8,3.5c.55,0,1,.45,1,1s-.45,1-1,1-1-.45-1-1,.45-1,1-1ZM7.5,6.5c-.07,0-.13.01-.19.04-.46.09-.81.48-.81.96,0,.24.09.45.23.62.16.19.27.43.27.68v2.7c0,.55.45,1,1,1h0c.55,0,1-.45,1-1v-4c0-.55-.45-1-1-1h-.5Z",P="M13,0H3C1.34,0,0,1.34,0,3v10c0,1.66,1.34,3,3,3h10c1.66,0,3-1.34,3-3V3c0-1.66-1.34-3-3-3ZM14,12.5c0,.83-.67,1.5-1.5,1.5H3.5c-.83,0-1.5-.67-1.5-1.5V3.5c0-.83.67-1.5,1.5-1.5h9c.83,0,1.5.67,1.5,1.5v9ZM8,3.5c.55,0,1,.45,1,1s-.45,1-1,1-1-.45-1-1,.45-1,1-1ZM7.5,6.5c-.07,0-.13.01-.19.04-.46.09-.81.48-.81.96,0,.24.09.45.23.62.16.19.27.43.27.68v2.7c0,.55.45,1,1,1h0c.55,0,1-.45,1-1v-4c0-.55-.45-1-1-1h-.5Z",Q="M14,2H2c-1.1,0-2,.9-2,2v8c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM12.82,4l-.59.34-4.23,2.44-4.23-2.44-.59-.34h9.63ZM13.5,12H2.5s-.07,0-.1-.01c-.23-.05-.4-.25-.4-.49v-5.86l3.99,2.3,1.51.87c.31.18.69.18,1,0l1.51-.87,3.99-2.3v5.86c0,.24-.17.44-.4.49-.03.01-.06.01-.1.01Z",T="M0,4v8c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2H2c-1.1,0-2,.9-2,2ZM13.5,12H2.5c-.28,0-.5-.22-.5-.5v-7c0-.28.22-.5.5-.5h11c.28,0,.5.22.5.5v7c0,.28-.22.5-.5.5ZM5,6c.55,0,1,.45,1,1s-.45,1-1,1-1-.45-1-1,.45-1,1-1ZM4.38,8.5h1.25c.76,0,1.38.62,1.38,1.38h0c0,.07-.06.12-.12.12h-3.75c-.07,0-.12-.06-.12-.12h0c0-.76.62-1.38,1.38-1.38ZM12.25,7.5h-3.5c-.41,0-.75-.34-.75-.75h0c0-.41.34-.75.75-.75h3.5c.41,0,.75.34.75.75h0c0,.41-.34.75-.75.75ZM12.25,10h-3.5c-.41,0-.75-.34-.75-.75h0c0-.41.34-.75.75-.75h3.5c.41,0,.75.34.75.75h0c0,.41-.34.75-.75.75Z",W="M10.85,6.61l-4.24,4.24c-.39.39-1.02.39-1.41,0h0c-.39-.39-.39-1.02,0-1.41l4.24-4.24c.39-.39,1.02-.39,1.41,0h0c.39.39.39,1.02,0,1.41ZM2.73,14.01c2.01,1.66,5.01,1.36,6.86-.48l.56-.56c.39-.39.39-1.02,0-1.41h0c-.39-.39-1.02-.39-1.41,0l-.59.59c-1.15,1.15-3.04,1.32-4.25.23-1.29-1.16-1.33-3.14-.12-4.35l.71-.71c.39-.39.39-1.02,0-1.41h0c-.39-.39-1.02-.39-1.41,0l-.71.71c-2.07,2.07-1.95,5.49.36,7.4ZM6.61,2.36l-.71.71c-.39.39-.39,1.02,0,1.41h0c.39.39,1.02.39,1.41,0l.71-.71c1.21-1.21,3.19-1.17,4.35.12,1.09,1.21.92,3.1-.23,4.25l-.59.59c-.39.39-.39,1.02,0,1.41h0c.39.39,1.02.39,1.41,0l.56-.56c1.85-1.85,2.15-4.85.48-6.86-1.91-2.31-5.33-2.43-7.4-.36Z",X="M2.38,7c.55,0,1,.45,1,1s-.45,1-1,1-1-.45-1-1,.45-1,1-1ZM5.62,7h8c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1H5.62c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1ZM2.38,3c.55,0,1,.45,1,1s-.45,1-1,1-1-.45-1-1,.45-1,1-1ZM5.62,3h8c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1H5.62c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1ZM2.38,11c.55,0,1,.45,1,1s-.45,1-1,1-1-.45-1-1,.45-1,1-1ZM5.62,11h8c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1H5.62c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1Z",Y="M12,6v-2c0-2.21-1.79-4-4-4s-4,1.79-4,4v2c-1.1,0-2,.9-2,2v6c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2v-6c0-1.1-.9-2-2-2ZM9,11.11v1.39c0,.55-.45,1-1,1s-1-.45-1-1v-1.39c-.3-.27-.5-.67-.5-1.11,0-.83.67-1.5,1.5-1.5s1.5.67,1.5,1.5c0,.44-.2.84-.5,1.11ZM10,6h-4v-2c0-1.1.9-2,2-2s2,.9,2,2v2Z",_="M14,0c1.1,0,2,.9,2,2h0v12h0c0,1.1-.9,2-2,2h-5c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1h4.5c.28,0,.5-.22.5-.5V2h-5c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1h5ZM11.92,7.62c-.05-.12-.12-.23-.21-.32,0,0,0,0,0,0l-3.18-3.18c-.39-.39-1.02-.39-1.41,0s-.39,1.02,0,1.41l1.48,1.47H1c-.55,0-1,.45-1,1s.45,1,1,1h7.59l-1.47,1.47c-.39.39-.39,1.02,0,1.41s1.02.39,1.41,0l3.18-3.18c.09-.09.17-.2.22-.32.1-.24.1-.52,0-.76h0Z",$="M2,0h5c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1H2v11.5c0,.28.22.5.5.5h4.5c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1H2c-1.1,0-2-.9-2-2h0V2h0C0,.9.9,0,2,0h0ZM15.92,7.62c-.05-.12-.12-.23-.21-.32,0,0,0,0,0,0l-3.18-3.18c-.39-.39-1.02-.39-1.41,0s-.39,1.02,0,1.41l1.48,1.47h-7.59c-.55,0-1,.45-1,1s.45,1,1,1h7.59l-1.48,1.47c-.39.39-.39,1.02,0,1.41s1.02.39,1.41,0l3.18-3.18c.09-.09.17-.2.22-.32.1-.24.1-.52,0-.76h0Z",c1="M2,7h12c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1H2c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1ZM2,1.75h12c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1H2c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1ZM2,12.25h12c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1H2c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1Z",h1="M15,9H1c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1h14c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1Z",v1="M8,0C3.58,0,0,3.58,0,8s3.58,8,8,8,8-3.58,8-8S12.42,0,8,0ZM8,14c-3.31,0-6-2.69-6-6s2.69-6,6-6,6,2.69,6,6-2.69,6-6,6ZM5,7h6c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1h-6c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1Z",l1="M10.58,13.4c-2.62-.82-4.58-3.18-4.89-5.92-.3-2.69.9-5.11,2.86-6.55.2-.15.08-.46-.17-.43C4.49,1.09,1.58,4.67,2.05,8.84c.39,3.42,3.15,6.2,6.55,6.61,1.99.24,3.84-.31,5.3-1.38.2-.15.07-.46-.18-.42-.99.15-2.05.09-3.14-.25Z",M1="M9.75,8c0,.97-.78,1.75-1.75,1.75s-1.75-.78-1.75-1.75.78-1.75,1.75-1.75,1.75.78,1.75,1.75ZM14.25,6.25c-.97,0-1.75.78-1.75,1.75s.78,1.75,1.75,1.75,1.75-.78,1.75-1.75-.78-1.75-1.75-1.75ZM1.75,6.25c-.97,0-1.75.78-1.75,1.75s.78,1.75,1.75,1.75,1.75-.78,1.75-1.75-.78-1.75-1.75-1.75Z",Z1="M15.88,14.32c.35.75-.08,1.68-.78,1.68H.91c-.7,0-1.13-.94-.78-1.68l3.3-7.01c.35-.74,1.21-.74,1.56,0l.43.91,1.89-4c.35-.74,1.21-.74,1.56,0l2.63,5.56.34-.71c.35-.74,1.21-.74,1.56,0l2.47,5.24h0ZM14,0c-1.1,0-2,.9-2,2s.9,2,2,2,2-.9,2-2-.9-2-2-2Z",s1="M1,2v12c0,1.1.9,2,2,2h10c1.1,0,2-.9,2-2V2c0-1.1-.9-2-2-2H3C1.9,0,1,.9,1,2ZM12.5,14H3.5c-.28,0-.5-.22-.5-.5V2.5c0-.28.22-.5.5-.5h9c.28,0,.5.22.5.5v11c0,.28-.22.5-.5.5ZM6.5,6.5h-2c-.28,0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5h2c.28,0,.5.22.5.5v2c0,.28-.22.5-.5.5ZM11.25,6.5h-2.5c-.41,0-.75-.34-.75-.75h0c0-.41.34-.75.75-.75h2.5c.41,0,.75.34.75.75h0c0,.41-.34.75-.75.75ZM11.25,9.5h-6.5c-.41,0-.75-.34-.75-.75h0c0-.41.34-.75.75-.75h6.5c.41,0,.75.34.75.75h0c0,.41-.34.75-.75.75ZM11.25,12.5h-6.5c-.41,0-.75-.34-.75-.75h0c0-.41.34-.75.75-.75h6.5c.41,0,.75.34.75.75h0c0,.41-.34.75-.75.75Z",r1="M8,5.25c0,.97-.78,1.75-1.75,1.75s-1.75-.78-1.75-1.75.78-1.75,1.75-1.75,1.75.78,1.75,1.75ZM16,8c0,.34-.02.67-.06,1-.49,3.95-3.86,7-7.94,7S.55,12.95.06,9c-.04-.33-.06-.66-.06-1,0-.36.02-.71.07-1.06C.59,3.02,3.94,0,8,0s7.41,3.02,7.93,6.94c.05.35.07.7.07,1.06ZM2.03,7.49c1.58.32,3.68.51,5.97.51s4.39-.19,5.97-.51c-.25-3.07-2.83-5.49-5.97-5.49S2.28,4.42,2.03,7.49ZM13.8,9.5c-1.72.32-3.7.5-5.8.5s-4.08-.18-5.8-.5c.66,2.58,3.01,4.5,5.8,4.5s5.14-1.92,5.8-4.5Z",e1="M8,6.25c.97,0,1.75.78,1.75,1.75s-.78,1.75-1.75,1.75-1.75-.78-1.75-1.75.78-1.75,1.75-1.75ZM6.25,1.75c0,.97.78,1.75,1.75,1.75s1.75-.78,1.75-1.75-.78-1.75-1.75-1.75-1.75.78-1.75,1.75ZM6.25,14.25c0,.97.78,1.75,1.75,1.75s1.75-.78,1.75-1.75-.78-1.75-1.75-1.75-1.75.78-1.75,1.75Z",o1="M8,0c2.21,0,4,1.79,4,4s-1.79,4-4,4-4-1.79-4-4S5.79,0,8,0ZM5.5,10h5c3.04,0,5.5,2.46,5.5,5.5h0c0,.28-.22.5-.5.5H.5c-.28,0-.5-.22-.5-.5h0c0-3.04,2.46-5.5,5.5-5.5Z",a1="M15,7h-6V1c0-.55-.45-1-1-1s-1,.45-1,1v6H1c-.55,0-1,.45-1,1s.45,1,1,1h6v6c0,.55.45,1,1,1s1-.45,1-1v-6h6c.55,0,1-.45,1-1s-.45-1-1-1Z",t1="M13.66,2.34C10.53-.78,5.47-.78,2.34,2.34-.78,5.47-.78,10.53,2.34,13.66c3.12,3.12,8.19,3.12,11.31,0,3.12-3.12,3.12-8.19,0-11.31h0ZM12.24,12.24c-2.34,2.34-6.14,2.34-8.49,0-2.34-2.34-2.34-6.14,0-8.49,2.34-2.34,6.14-2.34,8.49,0,2.34,2.34,2.34,6.14,0,8.49ZM9,7v-2c0-.55-.45-1-1-1h0c-.55,0-1,.45-1,1v2h-2c-.55,0-1,.45-1,1h0c0,.55.45,1,1,1h2v2c0,.55.45,1,1,1h0c.55,0,1-.45,1-1v-2h2c.55,0,1-.45,1-1h0c0-.55-.45-1-1-1h-2Z",p1="M9.5,15.19h-3c-.55,0-1-.45-1-1v-6c0-.55.45-1,1-1h3c.55,0,1,.45,1,1v6c0,.55-.45,1-1,1ZM5,14.19v-2c0-.55-.45-1-1-1H1c-.55,0-1,.45-1,1v2c0,.55.45,1,1,1h3c.55,0,1-.45,1-1ZM16,14.19v-4c0-.55-.45-1-1-1h-3c-.55,0-1,.45-1,1v4c0,.55.45,1,1,1h3c.55,0,1-.45,1-1ZM7.85.92l-.47,1.48c-.02.07-.08.11-.16.11h-1.56c-.16-.01-.22.19-.1.28l1.27.9c.06.04.08.12.06.18l-.49,1.48c-.05.15.12.28.25.18l1.25-.92c.06-.04.14-.04.19,0l1.25.92c.13.09.3-.03.25-.18l-.49-1.48c-.02-.07,0-.14.06-.18l1.27-.9c.13-.09.06-.3-.1-.29h-1.56c-.07.01-.13-.03-.16-.1l-.47-1.48c-.05-.15-.26-.15-.31,0h0ZM2.41,6.33l-.28.89s-.05.07-.09.07h-.93c-.1,0-.13.11-.06.17l.76.54s.05.07.04.11l-.3.89c-.03.09.07.17.15.11l.75-.55s.08-.03.12,0l.75.55c.08.06.18-.02.15-.11l-.3-.89s0-.09.04-.11l.76-.54c.08-.06.04-.18-.06-.18h-.93s-.08-.02-.09-.06l-.28-.89c-.03-.09-.16-.09-.19,0ZM13.38,3.38l-.38,1.19c-.02.05-.07.09-.12.09h-1.24c-.13-.01-.18.15-.08.23l1.01.72s.07.09.05.15l-.39,1.18c-.04.12.1.22.2.15l1-.74s.11-.03.15,0l1,.74c.1.08.24-.03.2-.15l-.39-1.18c-.02-.05,0-.11.05-.15l1.01-.72c.1-.07.05-.24-.08-.24h-1.24c-.06.01-.11-.03-.12-.08l-.38-1.19c-.04-.12-.21-.12-.25,0h0Z",x1="M15.14,13.68l-3.64-3.64c.67-.97,1.07-2.14,1.07-3.41,0-3.31-2.69-6-6-6S.57,3.3.57,6.62s2.69,6,6,6c1.32,0,2.54-.43,3.53-1.16l3.63,3.63c.39.39,1.02.39,1.41,0s.39-1.02,0-1.41h0ZM6.57,10.62c-2.21,0-4-1.79-4-4s1.79-4,4-4,4,1.79,4,4-1.79,4-4,4Z",H1="M8.71.29l4.95,4.95c.39.39.39,1.02,0,1.41s-1.02.39-1.41,0l-4.24-4.24L3.76,6.66c-.39.39-1.02.39-1.41,0s-.39-1.02,0-1.41L7.29.29c.39-.39,1.02-.39,1.41,0ZM8.71,15.71l4.95-4.95c.39-.39.39-1.02,0-1.41s-1.02-.39-1.41,0l-4.24,4.24-4.24-4.24c-.39-.39-1.02-.39-1.41,0s-.39,1.02,0,1.41l4.95,4.95c.39.39,1.02.39,1.41,0Z",V1="M15.99,7.55c-.02-.36-.35-.61-.71-.63-.74-.04-1.43-.49-1.73-1.22-.3-.73-.14-1.54.36-2.09.24-.27.3-.67.06-.95-.2-.22-.41-.43-.63-.63-.26-.24-.68-.18-.95.06-.55.49-1.36.66-2.09.36-.73-.3-1.18-.99-1.22-1.73-.02-.35-.27-.69-.63-.71-.3-.02-.59-.02-.89,0-.36.02-.61.35-.63.71-.04.74-.49,1.43-1.22,1.73-.73.3-1.54.14-2.09-.36-.27-.24-.67-.3-.95-.06-.22.2-.43.41-.63.63-.24.26-.18.68.06.95.49.55.66,1.36.36,2.09-.3.73-.99,1.18-1.73,1.22-.35.02-.69.27-.71.63-.02.3-.02.59,0,.89.02.36.35.61.71.63.74.04,1.43.49,1.73,1.22s.14,1.54-.36,2.09c-.24.27-.3.67-.06.95.2.22.41.43.63.63.26.24.68.18.95-.06.55-.49,1.36-.66,2.09-.36.73.3,1.18.99,1.22,1.73.02.35.27.69.63.71.3.02.59.02.89,0,.36-.02.61-.35.63-.71.04-.74.49-1.43,1.22-1.73s1.54-.14,2.09.36c.27.24.67.3.95.06.22-.2.43-.41.63-.63.24-.26.18-.68-.06-.95-.49-.55-.66-1.36-.36-2.09.3-.73.99-1.18,1.73-1.22.35-.02.69-.27.71-.63.02-.3.02-.59,0-.89h0ZM8,11c-1.66,0-3-1.34-3-3,0-1.66,1.34-3,3-3,1.66,0,3,1.34,3,3,0,1.66-1.34,3-3,3Z",C1="M16,12v2c0,1.1-.9,2-2,2H2C.9,16,0,15.1,0,14v-2C0,11.45.45,11,1,11s1,.45,1,1v1.5c0,.28.22.5.5.5h11c.28,0,.5-.22.5-.5v-1.5c0-.55.45-1,1-1s1,.45,1,1ZM15.71,3.47L12.53.29c-.39-.39-1.02-.39-1.41,0s-.39,1.02,0,1.41l1.49,1.49h-3.6c-1.1,0-2,.9-2,2v5.79c0,.55.45,1,1,1s1-.45,1-1v-5.29c0-.28.22-.5.5-.5h3.07l-1.46,1.46c-.39.39-.39,1.02,0,1.41s1.02.39,1.41,0l3.13-3.13c.21-.18.34-.44.34-.74,0,0,0,0,0,0,0-.26-.09-.52-.29-.72h0Z",n1="M0,3v10c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V3c0-1.1-.9-2-2-2H2C.9,1,0,1.9,0,3ZM13.5,13H2.5c-.28,0-.5-.22-.5-.5V3.5c0-.28.22-.5.5-.5h11c.28,0,.5.22.5.5v9c0,.28-.22.5-.5.5ZM12,11.47h-3.5c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1h3.5c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1ZM7.18,8.71l-2.47,2.47c-.39.39-1.02.39-1.41,0s-.39-1.02,0-1.41l1.77-1.77-1.77-1.77c-.39-.39-.39-1.02,0-1.41s1.02-.39,1.41,0l2.47,2.47c.39.39.39,1.02,0,1.41Z",i1="M15.71,12.8l-2.47,2.47c-.39.39-1.02.39-1.41,0s-.39-1.02,0-1.41l.77-.77h-2.13s-.06-.02-.09-.02c-.31,0-.61-.14-.79-.41l-5.44-7.77H.96c-.53,0-.96-.43-.96-.96v-.08c0-.53.43-.96.96-.96h3.7s.05.01.08.02c.06,0,.12.02.18.04.06.02.12.04.17.07.06.03.12.07.18.12.03.03.07.06.1.09.03.03.07.06.1.1l5.44,7.77h1.67l-.77-.77c-.39-.39-.39-1.02,0-1.41s1.02-.39,1.41,0l2.47,2.47c.39.39.39,1.02,0,1.41ZM6.43,9.65l-.07-.05c-.43-.3-1.03-.2-1.33.24l-.88,1.26H.96c-.53,0-.96.43-.96.96v.08c0,.53.43.96.96.96h3.7s.05-.01.08-.02c.08,0,.15-.02.23-.05.03-.01.07-.02.1-.04.09-.04.17-.1.24-.16.01-.01.02-.02.04-.03.04-.04.08-.06.11-.11l1.2-1.71c.3-.43.2-1.03-.24-1.33ZM15.68,3.2l-2.47-2.47c-.39-.39-1.02-.39-1.41,0-.39.39-.39,1.02,0,1.41l.77.77h-2.13s-.06.01-.08.02c-.29,0-.58.13-.76.39l-1.2,1.71c-.3.43-.2,1.03.24,1.33l.07.05c.43.3,1.03.2,1.33-.24l.88-1.26h1.65l-.77.77c-.39.39-.39,1.02,0,1.41.39.39,1.02.39,1.41,0l2.47-2.47c.39-.39.39-1.02,0-1.41h0Z",L1="M14.65,10.98l-1.15-.66.67-.18c.4-.11.64-.52.53-.92-.11-.4-.52-.64-.92-.53l-2.11.57-2.17-1.25,2.17-1.25,2.11.57c.4.11.81-.13.92-.53s-.13-.81-.53-.92l-.67-.18,1.15-.66c.36-.21.48-.67.27-1.02-.21-.36-.67-.48-1.02-.27l-1.15.66.18-.67c.11-.4-.13-.81-.53-.92-.4-.11-.81.13-.92.53l-.57,2.11-2.17,1.25v-2.51l1.55-1.55c.29-.29.29-.77,0-1.06-.29-.29-.77-.29-1.06,0l-.49.49V.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.32l-.49-.49c-.29-.29-.77-.29-1.06,0-.29.29-.29.77,0,1.06l1.55,1.55v2.51l-2.17-1.25-.57-2.11c-.11-.4-.52-.64-.92-.53-.4.11-.64.52-.53.92l.18.67-1.15-.66c-.36-.21-.82-.08-1.02.27s-.08.82.27,1.02l1.15.66-.67.18c-.4.11-.64.52-.53.92.11.4.52.64.92.53l2.11-.57,2.17,1.25-2.17,1.25-2.11-.57c-.4-.11-.81.13-.92.53-.11.4.13.81.53.92l.67.18-1.15.66c-.36.21-.48.67-.27,1.02.21.36.67.48,1.02.27l1.15-.66-.18.67c-.11.4.13.81.53.92.4.11.81-.13.92-.53l.57-2.11,2.17-1.25v2.51l-1.55,1.55c-.29.29-.29.77,0,1.06s.77.29,1.06,0l.49-.49v1.32c0,.41.34.75.75.75s.75-.34.75-.75v-1.32l.49.49c.29.29.77.29,1.06,0s.29-.77,0-1.06l-1.55-1.55v-2.51l2.17,1.25.57,2.11c.11.4.52.64.92.53s.64-.52.53-.92l-.18-.67,1.15.66c.36.21.82.08,1.02-.27.21-.36.08-.82-.27-1.02h0Z",u1="M8.46.6l1.98,4.82c.03.06.07.11.14.14l4.82,1.98c.41.17.41.76,0,.92l-4.82,1.98c-.06.03-.11.07-.14.14l-1.98,4.82c-.17.41-.76.41-.92,0l-1.98-4.82c-.03-.06-.07-.11-.14-.14l-4.82-1.98c-.41-.17-.41-.76,0-.92l4.82-1.98c.06-.03.11-.07.14-.14L7.54.6c.17-.41.76-.41.92,0h0ZM13.18.94l.55,1.33,1.33.55c.16.07.16.3,0,.36l-1.33.55-.55,1.33c-.07.16-.3.16-.36,0l-.55-1.33-1.33-.55c-.16-.07-.16-.3,0-.36l1.33-.55.55-1.33c.07-.16.3-.16.36,0ZM2.14,2.84l.3.72.72.3c.13.05.13.23,0,.28l-.72.3-.3.72c-.05.13-.23.13-.28,0l-.3-.72-.72-.3c-.13-.05-.13-.23,0-.28l.72-.3.3-.72c.05-.13.23-.13.28,0Z",d1="M8.48,1.01l1.44,4.56c.07.21.26.35.48.35l4.79-.04c.49,0,.69.62.29.91l-3.89,2.78c-.18.13-.25.36-.18.56l1.51,4.54c.15.46-.38.85-.77.56l-3.85-2.84c-.18-.13-.42-.13-.59,0l-3.85,2.84c-.39.29-.93-.1-.77-.56l1.51-4.54c.07-.21,0-.44-.18-.56L.52,6.79c-.4-.28-.19-.91.29-.91l4.79.04c.22,0,.41-.14.48-.35l1.44-4.56c.15-.47.81-.47.95,0Z",S1="M8,11.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5,3.5,1.57,3.5,3.5-1.57,3.5-3.5,3.5ZM16,8h0c0-.41-.34-.75-.75-.75h-2c-.41,0-.75.34-.75.75h0c0,.41.34.75.75.75h2c.41,0,.75-.34.75-.75ZM3.5,8h0c0-.41-.34-.75-.75-.75H.75c-.41,0-.75.34-.75.75h0c0,.41.34.75.75.75h2c.41,0,.75-.34.75-.75ZM8.1,12.5h0c-.41,0-.75.34-.75.75v2c0,.41.34.75.75.75h0c.41,0,.75-.34.75-.75v-2c0-.41-.34-.75-.75-.75ZM8,0h0c-.41,0-.75.34-.75.75v2c0,.41.34.75.75.75h0c.41,0,.75-.34.75-.75V.75c0-.41-.34-.75-.75-.75ZM13.66,13.66h0c.29-.29.29-.77,0-1.06l-1.41-1.41c-.29-.29-.77-.29-1.06,0h0c-.29.29-.29.77,0,1.06l1.41,1.41c.29.29.77.29,1.06,0ZM4.82,4.82h0c.29-.29.29-.77,0-1.06l-1.41-1.41c-.29-.29-.77-.29-1.06,0h0c-.29.29-.29.77,0,1.06l1.41,1.41c.29.29.77.29,1.06,0ZM4.89,11.25h0c-.29-.29-.77-.29-1.06,0l-1.41,1.41c-.29.29-.29.77,0,1.06h0c.29.29.77.29,1.06,0l1.41-1.41c.29-.29.29-.77,0-1.06ZM13.66,2.34h0c-.29-.29-.77-.29-1.06,0l-1.41,1.41c-.29.29-.29.77,0,1.06h0c.29.29.77.29,1.06,0l1.41-1.41c.29-.29.29-.77,0-1.06Z",g1="M14.74,7.33L8.38.96s0,0,0,0c-.09-.09-.2-.16-.32-.21-.12-.05-.25-.08-.38-.08H2.67c-1.1,0-2,.9-2,2v5s0,0,0,0c0,.13.03.26.08.38.05.12.12.23.22.32l6.36,6.36c.78.78,2.05.78,2.83,0l4.59-4.59c.78-.78.78-2.05,0-2.83h0ZM7.4,2.82l5.57,5.57c.2.2.2.51,0,.71l-3.88,3.88c-.2.2-.51.2-.71,0L2.82,7.4c-.09-.09-.15-.22-.15-.35v-3.88c0-.28.22-.5.5-.5h3.88c.13,0,.26.05.35.15h0ZM6.67,5.67c0,.55-.45,1-1,1s-1-.45-1-1,.45-1,1-1,1,.45,1,1Z",m1="M16,6v-1c0-1.1-.9-2-2-2H2c-1.1,0-2,.9-2,2v1c1.1,0,2,.9,2,2s-.9,2-2,2v1c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2v-1c-1.1,0-2-.9-2-2s.9-2,2-2ZM12,10c0,.55-.45,1-1,1h-6c-.55,0-1-.45-1-1v-4c0-.55.45-1,1-1h6c.55,0,1,.45,1,1v4Z",w1="M14.25,2h-3.75v-.5c0-.83-.67-1.5-1.5-1.5h-2c-.83,0-1.5.67-1.5,1.5v.5H1.75c-.55,0-1,.45-1,1s.45,1,1,1h.42l.7,10.13c.07,1.06.94,1.87,2,1.87h6.27c1.05,0,1.92-.82,2-1.87l.7-10.13h.42c.55,0,1-.45,1-1s-.45-1-1-1h0ZM11.02,13.5c-.01.27-.23.48-.5.48h-5.04c-.27,0-.49-.21-.5-.48l-.42-9.5h6.87s-.42,9.5-.42,9.5Z",f1="M12.57,5.2h0c.38-.91.21-2-.53-2.74-.46-.46-1.06-.7-1.67-.72C10.05.73,9.11,0,8,0s-2.05.73-2.37,1.74c-.61.02-1.2.26-1.67.72-.74.74-.92,1.83-.53,2.74-1.13.43-1.93,1.52-1.93,2.8,0,1.66,1.34,3,3,3h2.5v4c0,.55.45,1,1,1s1-.45,1-1v-4h2.5c1.66,0,3-1.34,3-3,0-1.28-.8-2.36-1.93-2.8Z",k1="M14,1.5H2C.9,1.5,0,2.4,0,3.5v6c0,1.1.9,2,2,2h5v1h-3c-.55,0-1,.45-1,1s.45,1,1,1h8c.55,0,1-.45,1-1s-.45-1-1-1h-3v-1h5c1.1,0,2-.9,2-2V3.5c0-1.1-.9-2-2-2ZM14,9c0,.28-.22.5-.5.5H2.5c-.28,0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h11c.28,0,.5.22.5.5v5Z",b1="M12,6h-6v-1.89c0-1,.68-1.92,1.66-2.08,1.12-.18,2.1.56,2.3,1.59.04.23.25.38.48.38h1.02c.31,0,.54-.29.49-.6C11.65,1.35,9.79-.19,7.61.02c-2.08.2-3.61,2.06-3.61,4.15v1.83c-1.1,0-2,.9-2,2v6c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2v-6c0-1.1-.9-2-2-2ZM9,11.11v1.39c0,.55-.45,1-1,1s-1-.45-1-1v-1.39c-.3-.27-.5-.67-.5-1.11,0-.83.67-1.5,1.5-1.5s1.5.67,1.5,1.5c0,.44-.2.84-.5,1.11Z",D1="M7.62.08c-.12.05-.23.12-.32.21,0,0,0,0,0,0l-3.18,3.18c-.39.39-.39,1.02,0,1.41s1.02.39,1.41,0l1.47-1.48v7.59c0,.55.45,1,1,1s1-.45,1-1V3.41l1.47,1.47c.39.39,1.02.39,1.41,0s.39-1.02,0-1.41L8.71.29c-.09-.09-.2-.17-.32-.22-.24-.1-.52-.1-.76,0,0,0,0,0,0,0ZM15,16H1c-.55,0-1-.45-1-1h0c0-.55.45-1,1-1h14c.55,0,1,.45,1,1h0c0,.55-.45,1-1,1Z",U1="M0,3v10c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V3c0-1.1-.9-2-2-2H2C.9,1,0,1.9,0,3ZM13.5,13H2.5c-.28,0-.5-.22-.5-.5V3.5c0-.28.22-.5.5-.5h11c.28,0,.5.22.5.5v9c0,.28-.22.5-.5.5ZM12,5c0,.55-.45,1-1,1s-1-.45-1-1,.45-1,1-1,1,.45,1,1ZM3.65,11l1.83-3.13c.19-.33.67-.33.86,0l.24.41,1.04-1.79c.19-.33.67-.33.86,0l1.45,2.49.19-.32c.19-.33.67-.33.86,0l1.37,2.34c.19.33-.05.75-.43.75h-7.84c-.39,0-.63-.42-.43-.75Z",R1="M13.66,2.34C10.53-.78,5.47-.78,2.34,2.34-.78,5.47-.78,10.53,2.34,13.66c3.12,3.12,8.19,3.12,11.31,0,3.12-3.12,3.12-8.19,0-11.31ZM12.24,12.24c-2.34,2.34-6.14,2.34-8.49,0-2.34-2.34-2.34-6.14,0-8.49,2.34-2.34,6.14-2.34,8.49,0,2.34,2.34,2.34,6.14,0,8.49ZM8,10.5c.55,0,1,.45,1,1s-.45,1-1,1-1-.45-1-1,.45-1,1-1ZM8,3.5h0c.55,0,1,.45,1,1v4c0,.55-.45,1-1,1h0c-.55,0-1-.45-1-1v-4c0-.55.45-1,1-1Z",q1="M9.41,8l4.95-4.95c.39-.39.39-1.02,0-1.41-.39-.39-1.02-.39-1.41,0l-4.95,4.95L3.05,1.64c-.39-.39-1.02-.39-1.41,0-.39.39-.39,1.02,0,1.41l4.95,4.95L1.64,12.95c-.39.39-.39,1.02,0,1.41.39.39,1.02.39,1.41,0l4.95-4.95,4.95,4.95c.39.39,1.02.39,1.41,0,.39-.39.39-1.02,0-1.41l-4.95-4.95Z",y1="M8,0C3.58,0,0,3.58,0,8s3.58,8,8,8,8-3.58,8-8S12.42,0,8,0ZM8,14c-3.31,0-6-2.69-6-6s2.69-6,6-6,6,2.69,6,6-2.69,6-6,6ZM11.18,9.77c.39.39.39,1.02,0,1.41-.39.39-1.02.39-1.41,0l-1.77-1.77-1.77,1.77c-.39.39-1.02.39-1.41,0-.39-.39-.39-1.02,0-1.41l1.77-1.77-1.77-1.77c-.39-.39-.39-1.02,0-1.41.39-.39,1.02-.39,1.41,0l1.77,1.77,1.77-1.77c.39-.39,1.02-.39,1.41,0,.39.39.39,1.02,0,1.41l-1.77,1.77,1.77,1.77Z";export{c as architect,h as arrowDown,v as arrowLeft,l as arrowRight,M as arrowUp,Z as atom,s as award,r as barGraph,e as bell,o as building,a as calculator,t as calendar,p as car,x as check,H as checkCircle,V as chevronDown,C as chevronLeft,n as chevronRight,i as chevronUp,L as city,u as clipboard,d as clock,S as clone,g as cloud,m as code,w as comment,f as cube,k as database,b as desktop,D as document,U as download,R as edit,q as evergreen,y as external,A as file,G as film,j as flower,z as folder,B as gem,E as globe,F as graphDown,I as graphUp,J as grid,K as heart,N as home,O as infoCircle,P as infoSquare,Q as letter,T as license,W as link,X as list,Y as lock,_ as login,$ as logout,c1 as menu,h1 as minus,v1 as minusCircle,l1 as moon,M1 as more,Z1 as mountains,s1 as newspaper,r1 as notAMoon,e1 as overflow,o1 as person,a1 as plus,t1 as plusCircle,p1 as podium,x1 as search,H1 as select,V1 as settings,C1 as share,n1 as shell,i1 as shuffle,L1 as snowflake,u1 as sparkles,d1 as star,S1 as sun,g1 as tag,m1 as ticket,w1 as trash,f1 as tree,k1 as tv,b1 as unlock,D1 as upload,U1 as vista,R1 as warningCircle,q1 as x,y1 as xCircle};
|
package/index.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { default as Layer } from "./components/Layer";
|
|
|
19
19
|
export { default as Modal } from "./components/Modal";
|
|
20
20
|
export { default as Select } from "./components/Select";
|
|
21
21
|
export { default as Spinner } from "./components/Spinner";
|
|
22
|
+
export { default as Table } from "./components/Table";
|
|
22
23
|
export { default as ui } from "./components/ui";
|
|
23
24
|
export * from "./hooks";
|
|
24
25
|
export * from "./functions";
|
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{default as e}from"./components/Accordion";import{default as a}from"./components/Alert";import{default as m}from"./components/Animated";import{default as u}from"./components/Avatar";import{default as d}from"./components/Badge";import{default as s}from"./components/Banner";import{default as i}from"./components/Box";import{default as B}from"./components/Button";export*from"./components/Button";import{default as
|
|
1
|
+
import{default as e}from"./components/Accordion";import{default as a}from"./components/Alert";import{default as m}from"./components/Animated";import{default as u}from"./components/Avatar";import{default as d}from"./components/Badge";import{default as s}from"./components/Banner";import{default as i}from"./components/Box";import{default as B}from"./components/Button";export*from"./components/Button";import{default as g}from"./components/Carousel";import{default as C}from"./components/ClickOutside";import{default as S}from"./components/ErrorBoundary";import{default as v}from"./components/Hamburger";export*from"./components/Hamburger";import{default as L}from"./components/Icon";import{default as O}from"./components/Input";export*from"./components/Input";import{default as j}from"./components/Layer";import{default as w}from"./components/Modal";import{default as D}from"./components/Select";import{default as G}from"./components/Spinner";import{default as K}from"./components/Table";import{default as P}from"./components/ui";export*from"./hooks";export*from"./functions";export*from"./navigation";export{e as Accordion,a as Alert,m as Animated,u as Avatar,d as Badge,s as Banner,i as Box,B as Button,g as Carousel,C as ClickOutside,S as ErrorBoundary,v as Hamburger,L as Icon,O as Input,j as Layer,w as Modal,D as Select,G as Spinner,K as Table,P as ui};
|
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--aui-xxs: 2px;--aui-xs: 4px;--aui-s: 8px;--aui-m: 16px;--aui-l: 24px;--aui-xl: 32px;--aui-xxl: 64px;--aui-moon-gray: #ccc;--aui-dark-gray: #555;--aui-darkest-gray: #333;--aui-obsidian: #121212;--aui-focus-ring-color: #b2dbfa;--aui-color-default: black;--aui-color-muted: var(--aui-dark-gray);--aui-default-background: white;--aui-default-border: var(--aui-moon-gray);--aui-opacity-disabled: 0.5;--aui-opacity-dim: 0.75;--aui-default-transition: 0.25s ease-in-out;--aui-floating-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);--aui-radius-none: 0;--aui-radius-subtle: 4px;--aui-radius-rounded: 8px;--aui-radius-max: 10000px;--aui-button-primary-background: black;--aui-button-primary-color: white;--aui-button-secondary-border-hover: var(--aui-darkest-gray);--aui-subtle-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);--aui-button-primary-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.36);--aui-success-background: #dff2e1;--aui-success-color: #1b5e20;--aui-success-border: #b2dfb1;--aui-warning-background: #fceeb6;--aui-warning-color: #b23904;--aui-warning-border: #e6d5a2;--aui-error-background: #fdecea;--aui-error-color: #b71c1c;--aui-error-border: #f5b7b7;--aui-info-background: #e3f2fd;--aui-info-color: #0d47a1;--aui-info-border: #90caf9;--aui-avatar-purple: #bc54d6;--aui-avatar-blue: #618bdc;--aui-avatar-red: #ee6060;--aui-avatar-green: #add386;--aui-avatar-yellow: #f5c76d;--aui-static-background: #e8e8e8;--aui-static-color: var(--aui-color-default);--aui-static-border: var(--aui-default-border);--aui-layer-backdrop-background: rgba(200, 200, 200, 0.6);--aui-link-color: #0070ff}[data-theme=dark]{--aui-focus-ring-color: #6699cc;--aui-color-default: white;--aui-color-muted: var(--aui-moon-gray);--aui-default-background: var(--aui-obsidian);--aui-default-border: var(--aui-dark-gray);--aui-floating-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);--aui-button-primary-background: white;--aui-button-primary-color: var(--aui-obsidian);--aui-button-secondary-border-hover: var(--aui-moon-gray);--aui-subtle-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);--aui-button-primary-box-shadow: 0 1px 2px rgba(64, 64, 64, 0.8);--aui-success-background: #2a5733;--aui-success-color: #d9efd8;--aui-success-border: #439e4a;--aui-warning-background: #736230;--aui-warning-color: #fff6d1;--aui-warning-border: #927a3b;--aui-error-background: #663232;--aui-error-color: #f9dadc;--aui-error-border: #8d2a2a;--aui-info-background: #335f72;--aui-info-color: #d4f1f5;--aui-info-border: #1d8ea4;--aui-static-background: var(--aui-darkest-gray);--aui-static-color: var(--aui-color-default);--aui-static-border: var(--aui-default-border);--aui-avatar-purple: #771199;--aui-avatar-blue: #0b4cce;--aui-avatar-red: #bb1111;--aui-avatar-green: #307040;--aui-avatar-yellow: #bb8822;--aui-layer-backdrop-background: rgba(55, 55, 55, 0.7);--aui-link-color: #33bfff}*{box-sizing:border-box}html{font-family:system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-text-size-adjust:100%;line-height:1.15;tab-size:4;-webkit-font-smoothing:antialiased}body{margin:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}.aui-content-success{background-color:var(--aui-success-background);color:var(--aui-success-color);border-color:var(--aui-success-border)}.aui-content-warning{background-color:var(--aui-warning-background);color:var(--aui-warning-color);border-color:var(--aui-warning-border)}.aui-content-error{background-color:var(--aui-error-background);color:var(--aui-error-color);border-color:var(--aui-error-border)}.aui-content-info{background-color:var(--aui-info-background);color:var(--aui-info-color);border-color:var(--aui-info-border)}.aui-content-static{background-color:var(--aui-static-background);color:var(--aui-static-color);border-color:var(--aui-static-border)}.aui-alert,.aui-badge{border-style:solid;border-width:1px}.aui-action{color:inherit;text-decoration:none;cursor:pointer;outline-color:var(--aui-link-color)}.aui-action:focus:not(:focus-visible){outline:none}.aui-button{background:none;border:none;padding:0}.aui-button:disabled{cursor:default !important;opacity:var(--aui-opacity-disabled)}.aui-button-primary{background-color:var(--aui-button-primary-background);border:1px solid var(--aui-button-primary-background);color:var(--aui-button-primary-color);box-shadow:var(--aui-button-primary-box-shadow);transition:opacity var(--aui-default-transition)}.aui-button-secondary{color:var(--aui-color-default);background-color:var(--aui-default-background);border:1px solid var(--aui-default-border);box-shadow:var(--aui-subtle-box-shadow);transition:border var(--aui-default-transition)}.aui-dim,.aui-undim{transition:opacity var(--aui-default-transition)}.aui-dim{opacity:1}.aui-undim{opacity:var(--aui-opacity-dim)}.aui-link{color:var(--aui-link-color);transition:opacity var(--aui-default-transition)}@media(hover: hover){.aui-button-primary:not([disabled]):hover,.aui-dim:not([disabled]):hover,.aui-link:hover{opacity:var(--aui-opacity-dim)}.aui-button-secondary:not([disabled]):hover{border-color:var(--aui-button-secondary-border-hover)}.aui-undim:not([disabled]):hover{opacity:1}}.aui-input-base{outline:none;border:none;background-color:inherit;color:inherit;padding:var(--aui-s);font-weight:400}.aui-input-base::selection{background-color:var(--aui-focus-ring-color)}.aui-input,.aui-select-container{transition:box-shadow var(--aui-default-transition);border:1px solid var(--aui-default-border);box-shadow:var(--aui-subtle-box-shadow);background-color:var(--aui-default-background)}.aui-input:disabled{opacity:var(--aui-opacity-disabled);cursor:default}.aui-input:not([disabled]):focus-within,.aui-select-container:not([disabled]):focus-within{box-shadow:var(--aui-subtle-box-shadow),0 0 0 3px var(--aui-focus-ring-color)}.aui-select{width:100%;color:inherit;border:none;outline:none;box-shadow:none;cursor:pointer;background-color:rgba(0,0,0,0);padding:var(--aui-s) 28px var(--aui-s) var(--aui-s);font-weight:600;appearance:none;-webkit-appearance:none;-moz-appearance:none}.aui-select-disabled *{opacity:var(--aui-opacity-disabled);cursor:default}.aui-layer-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background:var(--aui-layer-backdrop-background)}.aui-icon *{color:currentColor;fill:currentColor}.aui-spinner{animation:aui-spinner-animation 1s linear infinite;transform-origin:center;height:var(--aui-l)}@keyframes aui-spinner-animation{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.aui-carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);width:var(--aui-l);height:var(--aui-l)}.aui-carousel-dots{position:absolute;bottom:var(--aui-s);transform:translateX(-50%);left:50%}.aui-carousel-dot{width:var(--aui-m);height:var(--aui-s)}.aui-pos-static{position:static}.aui-pos-relative{position:relative}.aui-pos-absolute{position:absolute}.aui-pos-fixed{position:fixed}.aui-pos-sticky{position:sticky}.aui-flex-x{display:flex;flex-direction:row}.aui-flex-y{display:flex;flex-direction:column}.aui-flex--x{display:flex;flex-direction:row-reverse}.aui-flex--y{display:flex;flex-direction:column-reverse}.aui-flex-wrap{flex-wrap:wrap}.aui-align-start{align-items:flex-start}.aui-align-center{align-items:center}.aui-align-end{align-items:flex-end}.aui-justify-start{justify-content:flex-start}.aui-justify-center{justify-content:center}.aui-justify-end{justify-content:flex-end}.aui-justify-between{justify-content:space-between}.aui-justify-around{justify-content:space-around}.aui-stretch-even{flex:1 1 0}.aui-stretch-grow{flex-grow:1}.aui-stretch-min{flex-shrink:1}.aui-stretch-max{flex:0 0 100%}.aui-avatar-red{background-color:var(--aui-avatar-red)}.aui-avatar-yellow{background-color:var(--aui-avatar-yellow)}.aui-avatar-green{background-color:var(--aui-avatar-green)}.aui-avatar-blue{background-color:var(--aui-avatar-blue)}.aui-avatar-purple{background-color:var(--aui-avatar-purple)}.aui-avatar-xxs{width:12px;height:12px;line-height:12px;font-size:9.6px}.aui-avatar-xs{width:16px;height:16px;line-height:16px;font-size:12.8px}.aui-avatar-s{width:24px;height:24px;line-height:24px;font-size:19.2px}.aui-avatar-m{width:32px;height:32px;line-height:32px;font-size:25.6px}.aui-avatar-l{width:48px;height:48px;line-height:48px;font-size:38.4px}.aui-avatar-xl{width:64px;height:64px;line-height:64px;font-size:51.2px}.aui-avatar-xxl{width:128px;height:128px;line-height:128px;font-size:102.4px}.aui-icon-xxs{width:8px;height:8px}.aui-icon-xs{width:12px;height:12px}.aui-icon-s{width:16px;height:16px}.aui-icon-m{width:24px;height:24px}.aui-icon-l{width:32px;height:32px}.aui-icon-xl{width:48px;height:48px}.aui-icon-xxl{width:64px;height:64px}.aui-pa-none{padding:0}.aui-pa-xxs{padding:var(--aui-xxs)}.aui-pa-xs{padding:var(--aui-xs)}.aui-pa-s{padding:var(--aui-s)}.aui-pa-m{padding:var(--aui-m)}.aui-pa-l{padding:var(--aui-l)}.aui-pa-xl{padding:var(--aui-xl)}.aui-pa-xxl{padding:var(--aui-xxl)}.aui-pt-none{padding-top:0}.aui-pt-xxs{padding-top:var(--aui-xxs)}.aui-pt-xs{padding-top:var(--aui-xs)}.aui-pt-s{padding-top:var(--aui-s)}.aui-pt-m{padding-top:var(--aui-m)}.aui-pt-l{padding-top:var(--aui-l)}.aui-pt-xl{padding-top:var(--aui-xl)}.aui-pt-xxl{padding-top:var(--aui-xxl)}.aui-pb-none{padding-bottom:0}.aui-pb-xxs{padding-bottom:var(--aui-xxs)}.aui-pb-xs{padding-bottom:var(--aui-xs)}.aui-pb-s{padding-bottom:var(--aui-s)}.aui-pb-m{padding-bottom:var(--aui-m)}.aui-pb-l{padding-bottom:var(--aui-l)}.aui-pb-xl{padding-bottom:var(--aui-xl)}.aui-pb-xxl{padding-bottom:var(--aui-xxl)}.aui-pl-none{padding-left:0}.aui-pl-xxs{padding-left:var(--aui-xxs)}.aui-pl-xs{padding-left:var(--aui-xs)}.aui-pl-s{padding-left:var(--aui-s)}.aui-pl-m{padding-left:var(--aui-m)}.aui-pl-l{padding-left:var(--aui-l)}.aui-pl-xl{padding-left:var(--aui-xl)}.aui-pl-xxl{padding-left:var(--aui-xxl)}.aui-pr-none{padding-right:0}.aui-pr-xxs{padding-right:var(--aui-xxs)}.aui-pr-xs{padding-right:var(--aui-xs)}.aui-pr-s{padding-right:var(--aui-s)}.aui-pr-m{padding-right:var(--aui-m)}.aui-pr-l{padding-right:var(--aui-l)}.aui-pr-xl{padding-right:var(--aui-xl)}.aui-pr-xxl{padding-right:var(--aui-xxl)}.aui-ma-auto{margin:auto}.aui-ma-none{margin:0}.aui-ma-xxs{margin:var(--aui-xxs)}.aui-ma-xs{margin:var(--aui-xs)}.aui-ma-s{margin:var(--aui-s)}.aui-ma-m{margin:var(--aui-m)}.aui-ma-l{margin:var(--aui-l)}.aui-ma-xl{margin:var(--aui-xl)}.aui-ma-xxl{margin:var(--aui-xxl)}.aui-mt-auto{margin-top:auto}.aui-mt-none{margin-top:0}.aui-mt-xxs{margin-top:var(--aui-xxs)}.aui-mt-xs{margin-top:var(--aui-xs)}.aui-mt-s{margin-top:var(--aui-s)}.aui-mt-m{margin-top:var(--aui-m)}.aui-mt-l{margin-top:var(--aui-l)}.aui-mt-xl{margin-top:var(--aui-xl)}.aui-mt-xxl{margin-top:var(--aui-xxl)}.aui-mb-auto{margin-bottom:auto}.aui-mb-none{margin-bottom:0}.aui-mb-xxs{margin-bottom:var(--aui-xxs)}.aui-mb-xs{margin-bottom:var(--aui-xs)}.aui-mb-s{margin-bottom:var(--aui-s)}.aui-mb-m{margin-bottom:var(--aui-m)}.aui-mb-l{margin-bottom:var(--aui-l)}.aui-mb-xl{margin-bottom:var(--aui-xl)}.aui-mb-xxl{margin-bottom:var(--aui-xxl)}.aui-ml-auto{margin-left:auto}.aui-ml-none{margin-left:0}.aui-ml-xxs{margin-left:var(--aui-xxs)}.aui-ml-xs{margin-left:var(--aui-xs)}.aui-ml-s{margin-left:var(--aui-s)}.aui-ml-m{margin-left:var(--aui-m)}.aui-ml-l{margin-left:var(--aui-l)}.aui-ml-xl{margin-left:var(--aui-xl)}.aui-ml-xxl{margin-left:var(--aui-xxl)}.aui-mr-auto{margin-right:auto}.aui-mr-none{margin-right:0}.aui-mr-xxs{margin-right:var(--aui-xxs)}.aui-mr-xs{margin-right:var(--aui-xs)}.aui-mr-s{margin-right:var(--aui-s)}.aui-mr-m{margin-right:var(--aui-m)}.aui-mr-l{margin-right:var(--aui-l)}.aui-mr-xl{margin-right:var(--aui-xl)}.aui-mr-xxl{margin-right:var(--aui-xxl)}.aui-gap-none{gap:0}.aui-gap-xxs{gap:var(--aui-xxs)}.aui-gap-xs{gap:var(--aui-xs)}.aui-gap-s{gap:var(--aui-s)}.aui-gap-m{gap:var(--aui-m)}.aui-gap-l{gap:var(--aui-l)}.aui-gap-xl{gap:var(--aui-xl)}.aui-gap-xxl{gap:var(--aui-xxl)}.aui-w-full{width:100%}.aui-w-fit{width:fit-content}.aui-w-min{width:min-content}.aui-w-max{width:max-content}.aui-mw-full{max-width:100%}.aui-mw-fit{max-width:fit-content}.aui-mw-min{max-width:min-content}.aui-mw-max{max-width:max-content}.aui-h-full{height:100%}.aui-h-fit{height:fit-content}.aui-h-min{height:min-content}.aui-h-max{height:max-content}.aui-mh-full{max-height:100%}.aui-mh-fit{max-height:fit-content}.aui-mh-min{max-height:min-content}.aui-mh-max{max-height:max-content}.aui-radius-none{border-radius:var(--aui-radius-none)}.aui-radius-subtle{border-radius:var(--aui-radius-subtle)}.aui-radius-rounded{border-radius:var(--aui-radius-rounded)}.aui-radius-max{border-radius:var(--aui-radius-max)}.aui-ba{border:1px solid var(--aui-default-border)}.aui-bt{border-top:1px solid var(--aui-default-border)}.aui-br{border-right:1px solid var(--aui-default-border)}.aui-bb{border-bottom:1px solid var(--aui-default-border)}.aui-bl{border-left:1px solid var(--aui-default-border)}.aui-bw-none{border-width:0px}.aui-bw-xs{border-width:1px}.aui-bw-s{border-width:2px}.aui-bw-m{border-width:4px}.aui-bw-l{border-width:8px}.aui-bw-xl{border-width:16px}.aui-bs-solid{border-style:solid}.aui-bs-dotted{border-style:dotted}.aui-bs-dashed{border-style:dashed}.aui-bs-none{border-style:none}.aui-bc-default{border-color:var(--aui-default-border)}.aui-bc-primary{border-color:var(--aui-color-default)}.aui-shadow-subtle{box-shadow:var(--aui-subtle-box-shadow)}.aui-shadow-floating{box-shadow:var(--aui-floating-box-shadow)}.aui-shadow-none{box-shadow:none}.aui-op-none{opacity:0}.aui-op-disabled{opacity:var(--aui-opacity-disabled)}.aui-op-dim{opacity:var(--aui-opacity-dim)}.aui-op-full{opacity:1}.aui-f-xxs{font-size:10px}.aui-f-xs{font-size:12px}.aui-f-s{font-size:14px}.aui-f-default{font-size:16px}.aui-f-m{font-size:20px}.aui-f-l{font-size:24px}.aui-f-xl{font-size:32px}.aui-f-xxl{font-size:48px}.aui-fw-1{font-weight:100}.aui-fw-2{font-weight:200}.aui-fw-3{font-weight:300}.aui-fw-4{font-weight:400}.aui-fw-5{font-weight:500}.aui-fw-6{font-weight:600}.aui-fw-7{font-weight:700}.aui-fw-8{font-weight:800}.aui-fw-9{font-weight:900}.aui-ta-left{text-align:left}.aui-ta-right{text-align:right}.aui-ta-center{text-align:center}.aui-it{font-style:italic}.aui-c-default{color:var(--aui-color-default)}.aui-c-muted{color:var(--aui-color-muted)}.aui-c-inherit{color:inherit}.aui-c-transparent{color:rgba(0,0,0,0)}.aui-bg-default{background-color:var(--aui-default-background)}.aui-bg-muted{background-color:var(--aui-static-background)}.aui-bg-inherit{background-color:inherit}.aui-bg-transparent{background-color:rgba(0,0,0,0)}.aui-ov-scroll{overflow:scroll}.aui-ov-x-scroll{overflow-x:scroll}.aui-ov-y-scroll{overflow-y:scroll}.aui-ov-hidden{overflow:hidden}.aui-ov-x-hidden{overflow-x:hidden}.aui-ov-y-hidden{overflow-y:hidden}.aui-z-auto{z-index:auto}.aui-z-floating{z-index:100}.aui-z-nav{z-index:1000}.aui-z-max{z-index:10000}.aui-cursor-auto{cursor:auto}.aui-cursor-pointer{cursor:pointer}.aui-select-icon{--size: 10px;color:var(--aui-color-muted);width:var(--size);height:var(--size);position:absolute;top:calc(50% + 1px);transform:translateY(-50%);right:var(--size);pointer-events:none}
|
|
1
|
+
:root{--aui-xxs: 2px;--aui-xs: 4px;--aui-s: 8px;--aui-m: 16px;--aui-l: 24px;--aui-xl: 32px;--aui-xxl: 64px;--aui-moon-gray: #ccc;--aui-dark-gray: #555;--aui-darkest-gray: #333;--aui-obsidian: #121212;--aui-focus-ring-color: #b2dbfa;--aui-color-default: black;--aui-color-muted: var(--aui-dark-gray);--aui-default-background: white;--aui-default-border: var(--aui-moon-gray);--aui-opacity-disabled: 0.5;--aui-opacity-dim: 0.75;--aui-default-transition: 0.25s ease-in-out;--aui-floating-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);--aui-radius-none: 0;--aui-radius-subtle: 4px;--aui-radius-rounded: 8px;--aui-radius-max: 10000px;--aui-button-primary-background: black;--aui-button-primary-color: white;--aui-button-secondary-border-hover: var(--aui-darkest-gray);--aui-subtle-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);--aui-button-primary-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.36);--aui-success-background: #dff2e1;--aui-success-color: #1b5e20;--aui-success-border: #b2dfb1;--aui-warning-background: #fceeb6;--aui-warning-color: #b23904;--aui-warning-border: #e6d5a2;--aui-error-background: #fdecea;--aui-error-color: #b71c1c;--aui-error-border: #f5b7b7;--aui-info-background: #e3f2fd;--aui-info-color: #0d47a1;--aui-info-border: #90caf9;--aui-avatar-purple: #bc54d6;--aui-avatar-blue: #618bdc;--aui-avatar-red: #ee6060;--aui-avatar-green: #add386;--aui-avatar-yellow: #f5c76d;--aui-static-background: #e8e8e8;--aui-static-color: var(--aui-color-default);--aui-static-border: var(--aui-default-border);--aui-layer-backdrop-background: rgba(200, 200, 200, 0.6);--aui-link-color: #0070ff}[data-theme=dark]{--aui-focus-ring-color: #6699cc;--aui-color-default: white;--aui-color-muted: var(--aui-moon-gray);--aui-default-background: var(--aui-obsidian);--aui-default-border: var(--aui-dark-gray);--aui-floating-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);--aui-button-primary-background: white;--aui-button-primary-color: var(--aui-obsidian);--aui-button-secondary-border-hover: var(--aui-moon-gray);--aui-subtle-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);--aui-button-primary-box-shadow: 0 1px 2px rgba(64, 64, 64, 0.8);--aui-success-background: #2a5733;--aui-success-color: #d9efd8;--aui-success-border: #439e4a;--aui-warning-background: #736230;--aui-warning-color: #fff6d1;--aui-warning-border: #927a3b;--aui-error-background: #663232;--aui-error-color: #f9dadc;--aui-error-border: #8d2a2a;--aui-info-background: #335f72;--aui-info-color: #d4f1f5;--aui-info-border: #1d8ea4;--aui-static-background: var(--aui-darkest-gray);--aui-static-color: var(--aui-color-default);--aui-static-border: var(--aui-default-border);--aui-avatar-purple: #771199;--aui-avatar-blue: #0b4cce;--aui-avatar-red: #bb1111;--aui-avatar-green: #307040;--aui-avatar-yellow: #bb8822;--aui-layer-backdrop-background: rgba(55, 55, 55, 0.7);--aui-link-color: #33bfff}*{box-sizing:border-box}html{font-family:system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;-webkit-text-size-adjust:100%;line-height:1.15;tab-size:4;-webkit-font-smoothing:antialiased}body{margin:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}.aui-content-success{background-color:var(--aui-success-background);color:var(--aui-success-color);border-color:var(--aui-success-border)}.aui-content-warning{background-color:var(--aui-warning-background);color:var(--aui-warning-color);border-color:var(--aui-warning-border)}.aui-content-error{background-color:var(--aui-error-background);color:var(--aui-error-color);border-color:var(--aui-error-border)}.aui-content-info{background-color:var(--aui-info-background);color:var(--aui-info-color);border-color:var(--aui-info-border)}.aui-content-static{background-color:var(--aui-static-background);color:var(--aui-static-color);border-color:var(--aui-static-border)}.aui-alert,.aui-badge{border-style:solid;border-width:1px}.aui-action{color:inherit;text-decoration:none;cursor:pointer;outline-color:var(--aui-link-color)}.aui-action:focus:not(:focus-visible){outline:none}.aui-button{background:none;border:none;padding:0}.aui-button:disabled{cursor:default !important;opacity:var(--aui-opacity-disabled)}.aui-button-primary{background-color:var(--aui-button-primary-background);border:1px solid var(--aui-button-primary-background);color:var(--aui-button-primary-color);box-shadow:var(--aui-button-primary-box-shadow);transition:opacity var(--aui-default-transition)}.aui-button-secondary{color:var(--aui-color-default);background-color:var(--aui-default-background);border:1px solid var(--aui-default-border);box-shadow:var(--aui-subtle-box-shadow);transition:border var(--aui-default-transition)}.aui-dim,.aui-undim{transition:opacity var(--aui-default-transition)}.aui-dim{opacity:1}.aui-undim{opacity:var(--aui-opacity-dim)}.aui-link{color:var(--aui-link-color);transition:opacity var(--aui-default-transition)}.aui-table{display:table;border-spacing:0}.aui-table-row,.aui-table-row-link{display:table-row}.aui-table-row-link{background-color:rgba(0,0,0,0);transition:background-color var(--aui-default-transition)}.aui-table-cell{display:table-cell;vertical-align:middle}@media(hover: hover){.aui-button-primary:not([disabled]):hover,.aui-dim:not([disabled]):hover,.aui-link:hover{opacity:var(--aui-opacity-dim)}.aui-button-secondary:not([disabled]):hover{border-color:var(--aui-button-secondary-border-hover)}.aui-undim:not([disabled]):hover{opacity:1}.aui-table-row-link:not([disabled]):hover{background-color:var(--aui-static-background)}}.aui-input-base{outline:none;border:none;background-color:inherit;color:inherit;padding:var(--aui-s);font-weight:400}.aui-input-base::selection{background-color:var(--aui-focus-ring-color)}.aui-input,.aui-select-container{transition:box-shadow var(--aui-default-transition);border:1px solid var(--aui-default-border);box-shadow:var(--aui-subtle-box-shadow);background-color:var(--aui-default-background)}.aui-input:disabled{opacity:var(--aui-opacity-disabled);cursor:default}.aui-input:not([disabled]):focus-within,.aui-select-container:not([disabled]):focus-within{box-shadow:var(--aui-subtle-box-shadow),0 0 0 3px var(--aui-focus-ring-color)}.aui-select{width:100%;color:inherit;border:none;outline:none;box-shadow:none;cursor:pointer;background-color:rgba(0,0,0,0);padding:var(--aui-s) 28px var(--aui-s) var(--aui-s);font-weight:600;appearance:none;-webkit-appearance:none;-moz-appearance:none}.aui-select-disabled *{opacity:var(--aui-opacity-disabled);cursor:default}.aui-layer-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background:var(--aui-layer-backdrop-background)}.aui-icon *{color:currentColor;fill:currentColor}.aui-spinner{animation:aui-spinner-animation 1s linear infinite;transform-origin:center;height:var(--aui-l)}@keyframes aui-spinner-animation{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.aui-carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);width:var(--aui-l);height:var(--aui-l)}.aui-carousel-dots{position:absolute;bottom:var(--aui-s);transform:translateX(-50%);left:50%}.aui-carousel-dot{width:var(--aui-m);height:var(--aui-s)}.aui-pos-static{position:static}.aui-pos-relative{position:relative}.aui-pos-absolute{position:absolute}.aui-pos-fixed{position:fixed}.aui-pos-sticky{position:sticky}.aui-flex-x{display:flex;flex-direction:row}.aui-flex-y{display:flex;flex-direction:column}.aui-flex--x{display:flex;flex-direction:row-reverse}.aui-flex--y{display:flex;flex-direction:column-reverse}.aui-flex-wrap{flex-wrap:wrap}.aui-align-start{align-items:flex-start}.aui-align-center{align-items:center}.aui-align-end{align-items:flex-end}.aui-justify-start{justify-content:flex-start}.aui-justify-center{justify-content:center}.aui-justify-end{justify-content:flex-end}.aui-justify-between{justify-content:space-between}.aui-justify-around{justify-content:space-around}.aui-stretch-even{flex:1 1 0}.aui-stretch-grow{flex-grow:1}.aui-stretch-min{flex-shrink:1}.aui-stretch-max{flex:0 0 100%}.aui-avatar-red{background-color:var(--aui-avatar-red)}.aui-avatar-yellow{background-color:var(--aui-avatar-yellow)}.aui-avatar-green{background-color:var(--aui-avatar-green)}.aui-avatar-blue{background-color:var(--aui-avatar-blue)}.aui-avatar-purple{background-color:var(--aui-avatar-purple)}.aui-avatar-xxs{width:12px;height:12px;line-height:12px;font-size:9.6px}.aui-avatar-xs{width:16px;height:16px;line-height:16px;font-size:12.8px}.aui-avatar-s{width:24px;height:24px;line-height:24px;font-size:19.2px}.aui-avatar-m{width:32px;height:32px;line-height:32px;font-size:25.6px}.aui-avatar-l{width:48px;height:48px;line-height:48px;font-size:38.4px}.aui-avatar-xl{width:64px;height:64px;line-height:64px;font-size:51.2px}.aui-avatar-xxl{width:128px;height:128px;line-height:128px;font-size:102.4px}.aui-icon-xxs{width:8px;height:8px}.aui-icon-xs{width:12px;height:12px}.aui-icon-s{width:16px;height:16px}.aui-icon-m{width:24px;height:24px}.aui-icon-l{width:32px;height:32px}.aui-icon-xl{width:48px;height:48px}.aui-icon-xxl{width:64px;height:64px}.aui-pa-none{padding:0}.aui-pa-xxs{padding:var(--aui-xxs)}.aui-pa-xs{padding:var(--aui-xs)}.aui-pa-s{padding:var(--aui-s)}.aui-pa-m{padding:var(--aui-m)}.aui-pa-l{padding:var(--aui-l)}.aui-pa-xl{padding:var(--aui-xl)}.aui-pa-xxl{padding:var(--aui-xxl)}.aui-pt-none{padding-top:0}.aui-pt-xxs{padding-top:var(--aui-xxs)}.aui-pt-xs{padding-top:var(--aui-xs)}.aui-pt-s{padding-top:var(--aui-s)}.aui-pt-m{padding-top:var(--aui-m)}.aui-pt-l{padding-top:var(--aui-l)}.aui-pt-xl{padding-top:var(--aui-xl)}.aui-pt-xxl{padding-top:var(--aui-xxl)}.aui-pb-none{padding-bottom:0}.aui-pb-xxs{padding-bottom:var(--aui-xxs)}.aui-pb-xs{padding-bottom:var(--aui-xs)}.aui-pb-s{padding-bottom:var(--aui-s)}.aui-pb-m{padding-bottom:var(--aui-m)}.aui-pb-l{padding-bottom:var(--aui-l)}.aui-pb-xl{padding-bottom:var(--aui-xl)}.aui-pb-xxl{padding-bottom:var(--aui-xxl)}.aui-pl-none{padding-left:0}.aui-pl-xxs{padding-left:var(--aui-xxs)}.aui-pl-xs{padding-left:var(--aui-xs)}.aui-pl-s{padding-left:var(--aui-s)}.aui-pl-m{padding-left:var(--aui-m)}.aui-pl-l{padding-left:var(--aui-l)}.aui-pl-xl{padding-left:var(--aui-xl)}.aui-pl-xxl{padding-left:var(--aui-xxl)}.aui-pr-none{padding-right:0}.aui-pr-xxs{padding-right:var(--aui-xxs)}.aui-pr-xs{padding-right:var(--aui-xs)}.aui-pr-s{padding-right:var(--aui-s)}.aui-pr-m{padding-right:var(--aui-m)}.aui-pr-l{padding-right:var(--aui-l)}.aui-pr-xl{padding-right:var(--aui-xl)}.aui-pr-xxl{padding-right:var(--aui-xxl)}.aui-ma-auto{margin:auto}.aui-ma-none{margin:0}.aui-ma-xxs{margin:var(--aui-xxs)}.aui-ma-xs{margin:var(--aui-xs)}.aui-ma-s{margin:var(--aui-s)}.aui-ma-m{margin:var(--aui-m)}.aui-ma-l{margin:var(--aui-l)}.aui-ma-xl{margin:var(--aui-xl)}.aui-ma-xxl{margin:var(--aui-xxl)}.aui-mt-auto{margin-top:auto}.aui-mt-none{margin-top:0}.aui-mt-xxs{margin-top:var(--aui-xxs)}.aui-mt-xs{margin-top:var(--aui-xs)}.aui-mt-s{margin-top:var(--aui-s)}.aui-mt-m{margin-top:var(--aui-m)}.aui-mt-l{margin-top:var(--aui-l)}.aui-mt-xl{margin-top:var(--aui-xl)}.aui-mt-xxl{margin-top:var(--aui-xxl)}.aui-mb-auto{margin-bottom:auto}.aui-mb-none{margin-bottom:0}.aui-mb-xxs{margin-bottom:var(--aui-xxs)}.aui-mb-xs{margin-bottom:var(--aui-xs)}.aui-mb-s{margin-bottom:var(--aui-s)}.aui-mb-m{margin-bottom:var(--aui-m)}.aui-mb-l{margin-bottom:var(--aui-l)}.aui-mb-xl{margin-bottom:var(--aui-xl)}.aui-mb-xxl{margin-bottom:var(--aui-xxl)}.aui-ml-auto{margin-left:auto}.aui-ml-none{margin-left:0}.aui-ml-xxs{margin-left:var(--aui-xxs)}.aui-ml-xs{margin-left:var(--aui-xs)}.aui-ml-s{margin-left:var(--aui-s)}.aui-ml-m{margin-left:var(--aui-m)}.aui-ml-l{margin-left:var(--aui-l)}.aui-ml-xl{margin-left:var(--aui-xl)}.aui-ml-xxl{margin-left:var(--aui-xxl)}.aui-mr-auto{margin-right:auto}.aui-mr-none{margin-right:0}.aui-mr-xxs{margin-right:var(--aui-xxs)}.aui-mr-xs{margin-right:var(--aui-xs)}.aui-mr-s{margin-right:var(--aui-s)}.aui-mr-m{margin-right:var(--aui-m)}.aui-mr-l{margin-right:var(--aui-l)}.aui-mr-xl{margin-right:var(--aui-xl)}.aui-mr-xxl{margin-right:var(--aui-xxl)}.aui-gap-none{gap:0}.aui-gap-xxs{gap:var(--aui-xxs)}.aui-gap-xs{gap:var(--aui-xs)}.aui-gap-s{gap:var(--aui-s)}.aui-gap-m{gap:var(--aui-m)}.aui-gap-l{gap:var(--aui-l)}.aui-gap-xl{gap:var(--aui-xl)}.aui-gap-xxl{gap:var(--aui-xxl)}.aui-w-full{width:100%}.aui-w-fit{width:fit-content}.aui-w-min{width:min-content}.aui-w-max{width:max-content}.aui-minw-full{min-width:100%}.aui-minw-fit{min-width:fit-content}.aui-minw-min{min-width:min-content}.aui-minw-max{min-width:max-content}.aui-maxw-full{max-width:100%}.aui-maxw-fit{max-width:fit-content}.aui-maxw-min{max-width:min-content}.aui-maxw-max{max-width:max-content}.aui-h-full{height:100%}.aui-h-fit{height:fit-content}.aui-h-min{height:min-content}.aui-h-max{height:max-content}.aui-minh-full{min-height:100%}.aui-minh-fit{min-height:fit-content}.aui-minh-min{min-height:min-content}.aui-minh-max{min-height:max-content}.aui-maxh-full{max-height:100%}.aui-maxh-fit{max-height:fit-content}.aui-maxh-min{max-height:min-content}.aui-maxh-max{max-height:max-content}.aui-radius-none{border-radius:var(--aui-radius-none)}.aui-radius-subtle{border-radius:var(--aui-radius-subtle)}.aui-radius-rounded{border-radius:var(--aui-radius-rounded)}.aui-radius-max{border-radius:var(--aui-radius-max)}.aui-ba{border:1px solid var(--aui-default-border)}.aui-bt{border-top:1px solid var(--aui-default-border)}.aui-br{border-right:1px solid var(--aui-default-border)}.aui-bb{border-bottom:1px solid var(--aui-default-border)}.aui-bl{border-left:1px solid var(--aui-default-border)}.aui-bw-none{border-width:0px}.aui-bw-xs{border-width:1px}.aui-bw-s{border-width:2px}.aui-bw-m{border-width:4px}.aui-bw-l{border-width:8px}.aui-bw-xl{border-width:16px}.aui-bs-solid{border-style:solid}.aui-bs-dotted{border-style:dotted}.aui-bs-dashed{border-style:dashed}.aui-bs-none{border-style:none}.aui-bc-default{border-color:var(--aui-default-border)}.aui-bc-primary{border-color:var(--aui-color-default)}.aui-shadow-subtle{box-shadow:var(--aui-subtle-box-shadow)}.aui-shadow-floating{box-shadow:var(--aui-floating-box-shadow)}.aui-shadow-none{box-shadow:none}.aui-op-none{opacity:0}.aui-op-disabled{opacity:var(--aui-opacity-disabled)}.aui-op-dim{opacity:var(--aui-opacity-dim)}.aui-op-full{opacity:1}.aui-f-xxs{font-size:10px}.aui-f-xs{font-size:12px}.aui-f-s{font-size:14px}.aui-f-default{font-size:16px}.aui-f-m{font-size:20px}.aui-f-l{font-size:24px}.aui-f-xl{font-size:32px}.aui-f-xxl{font-size:48px}.aui-fw-1{font-weight:100}.aui-fw-2{font-weight:200}.aui-fw-3{font-weight:300}.aui-fw-4{font-weight:400}.aui-fw-5{font-weight:500}.aui-fw-6{font-weight:600}.aui-fw-7{font-weight:700}.aui-fw-8{font-weight:800}.aui-fw-9{font-weight:900}.aui-ta-left{text-align:left}.aui-ta-right{text-align:right}.aui-ta-center{text-align:center}.aui-it{font-style:italic}.aui-c-default{color:var(--aui-color-default)}.aui-c-muted{color:var(--aui-color-muted)}.aui-c-inherit{color:inherit}.aui-c-transparent{color:rgba(0,0,0,0)}.aui-bg-default{background-color:var(--aui-default-background)}.aui-bg-muted{background-color:var(--aui-static-background)}.aui-bg-inherit{background-color:inherit}.aui-bg-transparent{background-color:rgba(0,0,0,0)}.aui-ov-scroll{overflow:scroll}.aui-ov-x-scroll{overflow-x:scroll}.aui-ov-y-scroll{overflow-y:scroll}.aui-ov-hidden{overflow:hidden}.aui-ov-x-hidden{overflow-x:hidden}.aui-ov-y-hidden{overflow-y:hidden}.aui-z-auto{z-index:auto}.aui-z-floating{z-index:100}.aui-z-nav{z-index:1000}.aui-z-max{z-index:10000}.aui-cursor-auto{cursor:auto}.aui-cursor-pointer{cursor:pointer}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import type * as React from "react";
|
|
2
|
+
export type ReadonlyableArray<T> = readonly T[] | T[];
|
|
3
|
+
export type Children = React.ReactNode | ReadonlyableArray<React.ReactNode>;
|
|
4
|
+
export type ContentType = "success" | "warning" | "error" | "info" | "static";
|
|
5
|
+
export type Style = React.CSSProperties;
|
|
6
|
+
export type SizeDimension = "full" | "fit" | "min" | "max";
|
|
7
|
+
export type SizeToken = "xxs" | "xs" | "s" | "m" | "l" | "xl" | "xxl";
|
|
8
|
+
type SpacingSize = SizeToken | "none";
|
|
9
|
+
type AutoSize = SpacingSize | "auto";
|
|
10
|
+
type Color = "default" | "muted" | "inherit" | "transparent";
|
|
11
|
+
type Overflow = "hidden" | "scroll";
|
|
12
|
+
export type Vfx = {
|
|
13
|
+
/** Element's positioning */
|
|
14
|
+
pos?: "static" | "relative" | "absolute" | "fixed" | "sticky";
|
|
15
|
+
/** Direction the content spans; along the x-axis or y-axis (Equivalent to flex-direction) */
|
|
16
|
+
axis?: "x" | "y" | "-x" | "-y";
|
|
17
|
+
/** Spacing between children of the content */
|
|
18
|
+
gap?: SpacingSize;
|
|
19
|
+
/** Alignment orthogonal to the selected axis (Equivalent to align-items) */
|
|
20
|
+
align?: "start" | "center" | "end";
|
|
21
|
+
/** How to space the children (Equivalent to justify-content) */
|
|
22
|
+
justify?: "start" | "center" | "between" | "around" | "end";
|
|
23
|
+
/** Flex presets to determine how a node stretches within its container */
|
|
24
|
+
stretch?: "even" | "grow" | "min" | "max";
|
|
25
|
+
/** Whether to allow wrapping of children */
|
|
26
|
+
wrap?: boolean;
|
|
27
|
+
/** How to handle overflow in the container */
|
|
28
|
+
overflow?: Overflow;
|
|
29
|
+
/** How to handle overflow in the X direction */
|
|
30
|
+
overflowX?: Overflow;
|
|
31
|
+
/** How to handle overflow in the Y direction */
|
|
32
|
+
overflowY?: Overflow;
|
|
33
|
+
/** Z-index to position the element at */
|
|
34
|
+
z?: "auto" | "floating" | "nav" | "max";
|
|
35
|
+
/** Padding inside the content */
|
|
36
|
+
padding?: SpacingSize;
|
|
37
|
+
/** Horizontal padding inside the content */
|
|
38
|
+
paddingX?: SpacingSize;
|
|
39
|
+
/** Vertical padding inside the content */
|
|
40
|
+
paddingY?: SpacingSize;
|
|
41
|
+
/** Top padding inside the content */
|
|
42
|
+
paddingTop?: SpacingSize;
|
|
43
|
+
/** Bottom padding inside the content */
|
|
44
|
+
paddingBottom?: SpacingSize;
|
|
45
|
+
/** Left padding inside the content */
|
|
46
|
+
paddingLeft?: SpacingSize;
|
|
47
|
+
/** Right padding inside the content */
|
|
48
|
+
paddingRight?: SpacingSize;
|
|
49
|
+
/** Margin outside the content */
|
|
50
|
+
margin?: AutoSize;
|
|
51
|
+
/** Horizontal margin outside the content */
|
|
52
|
+
marginX?: AutoSize;
|
|
53
|
+
/** Vertical margin outside the content */
|
|
54
|
+
marginY?: AutoSize;
|
|
55
|
+
/** Top margin outside the content */
|
|
56
|
+
marginTop?: AutoSize;
|
|
57
|
+
/** Bottom margin outside the content */
|
|
58
|
+
marginBottom?: AutoSize;
|
|
59
|
+
/** Left margin outside the content */
|
|
60
|
+
marginLeft?: AutoSize;
|
|
61
|
+
/** Right margin outside the content */
|
|
62
|
+
marginRight?: AutoSize;
|
|
63
|
+
/** Width of the content */
|
|
64
|
+
width?: SizeDimension;
|
|
65
|
+
/** Minimum width of the content */
|
|
66
|
+
minWidth?: SizeDimension;
|
|
67
|
+
/** Maximum width of the content */
|
|
68
|
+
maxWidth?: SizeDimension;
|
|
69
|
+
/** Height of the content */
|
|
70
|
+
height?: SizeDimension;
|
|
71
|
+
/** Minimum height of the content */
|
|
72
|
+
minHeight?: SizeDimension;
|
|
73
|
+
/** Maximum height of the content */
|
|
74
|
+
maxHeight?: SizeDimension;
|
|
75
|
+
/** Border radius of the content */
|
|
76
|
+
radius?: "none" | "subtle" | "rounded" | "max";
|
|
77
|
+
/** Border for all edges */
|
|
78
|
+
border?: boolean;
|
|
79
|
+
/** Border top */
|
|
80
|
+
borderTop?: boolean;
|
|
81
|
+
/** Border bottom */
|
|
82
|
+
borderBottom?: boolean;
|
|
83
|
+
/** Border left */
|
|
84
|
+
borderLeft?: boolean;
|
|
85
|
+
/** Border right */
|
|
86
|
+
borderRight?: boolean;
|
|
87
|
+
/** Border thickness */
|
|
88
|
+
borderWidth?: SpacingSize;
|
|
89
|
+
/** Border type */
|
|
90
|
+
borderStyle?: "none" | "solid" | "dotted" | "dashed";
|
|
91
|
+
/** Border color */
|
|
92
|
+
borderColor?: "default" | "primary";
|
|
93
|
+
/** Box shadow presets */
|
|
94
|
+
shadow?: "subtle" | "floating" | "none";
|
|
95
|
+
/** Opacity presets */
|
|
96
|
+
opacity?: "none" | "disabled" | "dim" | "full";
|
|
97
|
+
/** Font size */
|
|
98
|
+
fontSize?: SizeToken | "default";
|
|
99
|
+
/** Font weight */
|
|
100
|
+
fontWeight?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
101
|
+
/** Text alignment */
|
|
102
|
+
textAlign?: "center" | "left" | "right";
|
|
103
|
+
/** Use italics? */
|
|
104
|
+
italics?: boolean;
|
|
105
|
+
/** Color */
|
|
106
|
+
color?: Color;
|
|
107
|
+
/** Background color */
|
|
108
|
+
backgroundColor?: Color;
|
|
109
|
+
/** Supported cursor values */
|
|
110
|
+
cursor?: "auto" | "pointer";
|
|
111
|
+
};
|
|
112
|
+
export {};
|
package/types/icon.d.ts
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Location object of the current URL.
|
|
3
|
+
*/
|
|
4
|
+
export type Location = {
|
|
5
|
+
/** URL pathname (e.g. "/movies/123") */
|
|
6
|
+
pathname: string;
|
|
7
|
+
/** URL search (e.g. "?q=inception") */
|
|
8
|
+
search: string;
|
|
9
|
+
/** URL hash (e.g. "#home") */
|
|
10
|
+
hash: string;
|
|
11
|
+
};
|
|
12
|
+
export type HistoryMode = "push" | "replace";
|
|
13
|
+
/**
|
|
14
|
+
* Additional params to feed the navigate() function
|
|
15
|
+
*/
|
|
16
|
+
export type NavigateOptions = {
|
|
17
|
+
/**
|
|
18
|
+
* Whether to append a new entry or overwrite the current browser url in history
|
|
19
|
+
* @default "push"
|
|
20
|
+
*/
|
|
21
|
+
historyMode?: HistoryMode;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* A function to handle page navigation
|
|
25
|
+
*/
|
|
26
|
+
export type Navigate = (to: string, options?: NavigateOptions) => void;
|
|
27
|
+
/**
|
|
28
|
+
* Object containing params from the pathname
|
|
29
|
+
* e.g. `{id: "1"}` for `/movie/:id <=> /movie/1`
|
|
30
|
+
*/
|
|
31
|
+
export type PathParams = {
|
|
32
|
+
[key: string]: string | undefined;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Object containing params from the search string
|
|
36
|
+
* e.g. `{id: "1", movies: ["inception", "alien"]}` for `"?id=1&movies=inception&movies=alien"`
|
|
37
|
+
*/
|
|
38
|
+
export type SearchParams = {
|
|
39
|
+
[key: string]: string | string[] | undefined;
|
|
40
|
+
};
|
|
41
|
+
/** Callback or object to update search params */
|
|
42
|
+
export type SetSearchParamsArg = SearchParams | ((prev: SearchParams) => SearchParams);
|
|
43
|
+
/** Callback to update search params and reload relevant hooks */
|
|
44
|
+
export type SetSearchParams = (next: SetSearchParamsArg) => void;
|