@ni/nimble-components 20.1.2 → 20.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all-components-bundle.js +187 -92
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +936 -843
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/anchor-tab/index.js +4 -1
- package/dist/esm/anchor-tab/index.js.map +1 -1
- package/dist/esm/anchor-tab/styles.js +101 -2
- package/dist/esm/anchor-tab/styles.js.map +1 -1
- package/dist/esm/anchor-tab/template.js +0 -1
- package/dist/esm/anchor-tab/template.js.map +1 -1
- package/dist/esm/tab/index.js +1 -1
- package/dist/esm/tab/index.js.map +1 -1
- package/dist/esm/{patterns/tab → tab}/styles.js +4 -8
- package/dist/esm/tab/styles.js.map +1 -0
- package/package.json +1 -1
- package/dist/esm/patterns/tab/styles.js.map +0 -1
- /package/dist/esm/{patterns → src}/tab/styles.d.ts +0 -0
- /package/dist/esm/{src/patterns/tab → tab}/styles.d.ts +0 -0
|
@@ -1792,14 +1792,6 @@ const Sd=we`
|
|
|
1792
1792
|
background-color: ${ca};
|
|
1793
1793
|
}
|
|
1794
1794
|
|
|
1795
|
-
:host(:focus) {
|
|
1796
|
-
outline: none;
|
|
1797
|
-
}
|
|
1798
|
-
|
|
1799
|
-
:host(${Do}) {
|
|
1800
|
-
outline: none;
|
|
1801
|
-
}
|
|
1802
|
-
|
|
1803
1795
|
:host(:active) {
|
|
1804
1796
|
background: none;
|
|
1805
1797
|
}
|
|
@@ -1816,7 +1808,7 @@ const Sd=we`
|
|
|
1816
1808
|
calc(${Da} / 2 - ${Fa});
|
|
1817
1809
|
}
|
|
1818
1810
|
|
|
1819
|
-
|
|
1811
|
+
a::before {
|
|
1820
1812
|
content: '';
|
|
1821
1813
|
position: absolute;
|
|
1822
1814
|
bottom: calc(
|
|
@@ -1831,16 +1823,26 @@ const Sd=we`
|
|
|
1831
1823
|
}
|
|
1832
1824
|
|
|
1833
1825
|
@media (prefers-reduced-motion) {
|
|
1834
|
-
|
|
1835
|
-
transition-duration:
|
|
1826
|
+
a::before {
|
|
1827
|
+
transition-duration: 0s;
|
|
1836
1828
|
}
|
|
1837
1829
|
}
|
|
1838
1830
|
|
|
1839
|
-
|
|
1831
|
+
a${Do}::before {
|
|
1840
1832
|
width: calc(100% - 2 * var(--ni-private-focus-indicator-inset-width));
|
|
1841
1833
|
}
|
|
1842
1834
|
|
|
1843
|
-
|
|
1835
|
+
a {
|
|
1836
|
+
display: inline-flex;
|
|
1837
|
+
text-decoration: none;
|
|
1838
|
+
color: inherit;
|
|
1839
|
+
cursor: inherit;
|
|
1840
|
+
outline: none;
|
|
1841
|
+
align-items: center;
|
|
1842
|
+
justify-content: center;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
a::after {
|
|
1844
1846
|
content: '';
|
|
1845
1847
|
position: absolute;
|
|
1846
1848
|
bottom: 0px;
|
|
@@ -1852,33 +1854,24 @@ const Sd=we`
|
|
|
1852
1854
|
}
|
|
1853
1855
|
|
|
1854
1856
|
@media (prefers-reduced-motion) {
|
|
1855
|
-
|
|
1856
|
-
transition-duration:
|
|
1857
|
+
a::after {
|
|
1858
|
+
transition-duration: 0s;
|
|
1857
1859
|
}
|
|
1858
1860
|
}
|
|
1859
1861
|
|
|
1860
|
-
|
|
1862
|
+
a${Do}::after {
|
|
1861
1863
|
width: 100%;
|
|
1862
1864
|
border-bottom-width: var(--ni-private-focus-indicator-width);
|
|
1863
1865
|
}
|
|
1864
1866
|
|
|
1865
|
-
:host([aria-selected='true'])::after {
|
|
1867
|
+
:host([aria-selected='true']) a::after {
|
|
1866
1868
|
width: 100%;
|
|
1867
1869
|
border-bottom-width: var(--ni-private-active-indicator-width);
|
|
1868
1870
|
}
|
|
1869
1871
|
|
|
1870
|
-
:host([aria-selected='true']
|
|
1872
|
+
:host([disabled][aria-selected='true']) a::after {
|
|
1871
1873
|
border-bottom-color: rgba(${va}, 0.3);
|
|
1872
1874
|
}
|
|
1873
|
-
`,Id=we`
|
|
1874
|
-
${Sd}
|
|
1875
|
-
|
|
1876
|
-
a {
|
|
1877
|
-
text-decoration: none;
|
|
1878
|
-
color: inherit;
|
|
1879
|
-
cursor: inherit;
|
|
1880
|
-
outline: none;
|
|
1881
|
-
}
|
|
1882
1875
|
|
|
1883
1876
|
[part='start'] {
|
|
1884
1877
|
display: none;
|
|
@@ -1888,8 +1881,8 @@ const Sd=we`
|
|
|
1888
1881
|
display: none;
|
|
1889
1882
|
}
|
|
1890
1883
|
`
|
|
1891
|
-
class
|
|
1892
|
-
const
|
|
1884
|
+
class Id extends Eo{constructor(){super(...arguments),this.disabled=!1,this.ariaSelected="false"}}e([se({mode:"boolean"})],Id.prototype,"disabled",void 0),e([se({attribute:"aria-selected"})],Id.prototype,"ariaSelected",void 0)
|
|
1885
|
+
const Md=Id.compose({baseName:"anchor-tab",template:(e,t)=>G`
|
|
1893
1886
|
<template slot="anchortab" role="tab" aria-disabled="${e=>e.disabled}">
|
|
1894
1887
|
<a
|
|
1895
1888
|
download="${e=>e.download}"
|
|
@@ -1900,16 +1893,15 @@ const Ad=Md.compose({baseName:"anchor-tab",template:(e,t)=>G`
|
|
|
1900
1893
|
rel="${e=>e.rel}"
|
|
1901
1894
|
target="${e=>e.target}"
|
|
1902
1895
|
type="${e=>e.type}"
|
|
1903
|
-
tabindex="-1"
|
|
1904
1896
|
>
|
|
1905
1897
|
${Qe(0,t)}
|
|
1906
1898
|
<slot></slot>
|
|
1907
1899
|
${Je(0,t)}
|
|
1908
1900
|
</a>
|
|
1909
1901
|
</template>
|
|
1910
|
-
`,styles:
|
|
1911
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
1912
|
-
const
|
|
1902
|
+
`,styles:Sd,shadowOptions:{delegatesFocus:!0}})
|
|
1903
|
+
mi.getOrCreate().withPrefix("nimble").register(Md()),mi.tagFor(Id)
|
|
1904
|
+
const Ad=we`
|
|
1913
1905
|
${Ao("grid")}
|
|
1914
1906
|
|
|
1915
1907
|
:host {
|
|
@@ -1930,7 +1922,7 @@ const Rd=we`
|
|
|
1930
1922
|
align-self: end;
|
|
1931
1923
|
}
|
|
1932
1924
|
`
|
|
1933
|
-
class
|
|
1925
|
+
class Rd extends Vt{constructor(){super(...arguments),this.tabIds=[],this.isDisabledElement=e=>"true"===e.getAttribute("aria-disabled"),this.isHiddenElement=e=>e.hasAttribute("hidden"),this.isFocusableElement=e=>!this.isDisabledElement(e)&&!this.isHiddenElement(e),this.setTabs=()=>{let e
|
|
1934
1926
|
this.activetab=void 0,this.tabs.forEach(((t,n)=>{const i=this.tabIds[n],o=this.activeid===i
|
|
1935
1927
|
!e&&this.isFocusableElement(t)&&(e=t)
|
|
1936
1928
|
const r=this.activeid===i&&this.isFocusableElement(t)
|
|
@@ -1957,20 +1949,20 @@ const n=e.find((e=>e===document.activeElement))
|
|
|
1957
1949
|
for(t=n?e.indexOf(n)-1:0,t=t<0?e.length-1:t;t>=0&&e.length>1;){if(this.isFocusableElement(e[t])){this.focusTabByIndex(e,t)
|
|
1958
1950
|
break}t-1<0?t=e.length-1:t-=1}},this.focusTabByIndex=(e,t)=>{const n=e[t]
|
|
1959
1951
|
n.focus(),this.tabs.forEach((e=>{e.setAttribute("tabindex",e===n?"0":"-1")}))}}activeidChanged(e,t){this.$fastController.isConnected&&this.setTabs()}tabsChanged(){this.$fastController.isConnected&&(this.tabIds=this.getTabIds(),this.setTabs())}connectedCallback(){super.connectedCallback(),this.tabIds=this.getTabIds()}getTabIds(){return this.tabs.map((e=>e.getAttribute("id")??`tab-${Xs()}`))}focusFirstOrLast(e){const t=this.tabs.filter((e=>this.isFocusableElement(e))),n=e?t.length-1:0,i=this.tabs.indexOf(t[n])
|
|
1960
|
-
i>-1&&this.focusTabByIndex(this.tabs,i)}getTabAnchor(e){return e.shadowRoot.querySelector("a")}}e([se],
|
|
1961
|
-
const
|
|
1952
|
+
i>-1&&this.focusTabByIndex(this.tabs,i)}getTabAnchor(e){return e.shadowRoot.querySelector("a")}}e([se],Rd.prototype,"activeid",void 0),e([m],Rd.prototype,"tabs",void 0),Pt(Rd,Ye)
|
|
1953
|
+
const Ed=Rd.compose({baseName:"anchor-tabs",template:(e,t)=>G`
|
|
1962
1954
|
${Qe(0,t)}
|
|
1963
1955
|
<div ${Oe("tablist")} class="tablist" part="tablist" role="tablist">
|
|
1964
1956
|
<slot name="anchortab" ${We("tabs")}></slot>
|
|
1965
1957
|
</div>
|
|
1966
1958
|
${Je(0,t)}
|
|
1967
|
-
`,styles:
|
|
1968
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
1969
|
-
const
|
|
1959
|
+
`,styles:Ad,shadowOptions:{delegatesFocus:!1}})
|
|
1960
|
+
mi.getOrCreate().withPrefix("nimble").register(Ed()),mi.tagFor(Rd)
|
|
1961
|
+
const Dd=(function(e,...t){const{styles:n,behaviors:i}=be(e,t)
|
|
1970
1962
|
return new xe(n,i)})`
|
|
1971
1963
|
user-select: none;
|
|
1972
1964
|
-webkit-user-select: none;
|
|
1973
|
-
`,
|
|
1965
|
+
`,Fd=we`
|
|
1974
1966
|
${Ao("block")}
|
|
1975
1967
|
|
|
1976
1968
|
:host {
|
|
@@ -2036,7 +2028,7 @@ return new xe(n,i)})`
|
|
|
2036
2028
|
padding-left: 10px;
|
|
2037
2029
|
font: inherit;
|
|
2038
2030
|
font-size: ${ec};
|
|
2039
|
-
${
|
|
2031
|
+
${Dd}
|
|
2040
2032
|
position: relative;
|
|
2041
2033
|
margin-inline-start: ${Oa};
|
|
2042
2034
|
}
|
|
@@ -2068,11 +2060,11 @@ return new xe(n,i)})`
|
|
|
2068
2060
|
display: none;
|
|
2069
2061
|
}
|
|
2070
2062
|
`
|
|
2071
|
-
class
|
|
2063
|
+
class Od extends Eo{constructor(){super(...arguments),this.selected=!1,this.disabled=!1}isNestedItem(){return So(this.parentElement)}handleFocus(e){this.setAttribute("tabindex","0")}handleBlur(e){this.setAttribute("tabindex","-1")}keydownHandler(e){if(e.defaultPrevented)return!1
|
|
2072
2064
|
switch(e.key){case js:e.stopPropagation()
|
|
2073
2065
|
break
|
|
2074
|
-
case Zs:this.parentElement&&this.isNestedItem()&&Io.focusItem(this.parentElement)}return!0}clickHandler(e){return!e.defaultPrevented&&(e.stopPropagation(),!0)}selectedChanged(e,t){this.$fastController.isConnected&&this.$emit("selected-change",this)}}e([se({mode:"boolean"})],
|
|
2075
|
-
const
|
|
2066
|
+
case Zs:this.parentElement&&this.isNestedItem()&&Io.focusItem(this.parentElement)}return!0}clickHandler(e){return!e.defaultPrevented&&(e.stopPropagation(),!0)}selectedChanged(e,t){this.$fastController.isConnected&&this.$emit("selected-change",this)}}e([se({mode:"boolean"})],Od.prototype,"selected",void 0),e([se({mode:"boolean"})],Od.prototype,"disabled",void 0)
|
|
2067
|
+
const Td=Od.compose({baseName:"anchor-tree-item",template:(e,t)=>G`
|
|
2076
2068
|
<template
|
|
2077
2069
|
role="treeitem"
|
|
2078
2070
|
slot="${e=>e.isNestedItem()?"item":null}"
|
|
@@ -2109,27 +2101,27 @@ const zd=Td.compose({baseName:"anchor-tree-item",template:(e,t)=>G`
|
|
|
2109
2101
|
</div>
|
|
2110
2102
|
</a>
|
|
2111
2103
|
</template>
|
|
2112
|
-
`,styles:
|
|
2113
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2114
|
-
const
|
|
2104
|
+
`,styles:Fd,shadowOptions:{delegatesFocus:!0}})
|
|
2105
|
+
mi.getOrCreate().withPrefix("nimble").register(Td()),mi.tagFor(Od)
|
|
2106
|
+
const zd=we`
|
|
2115
2107
|
:host {
|
|
2116
2108
|
contain: layout;
|
|
2117
2109
|
display: block;
|
|
2118
2110
|
z-index: 1000;
|
|
2119
2111
|
}
|
|
2120
2112
|
`
|
|
2121
|
-
class
|
|
2113
|
+
class Vd extends fn{}const Ld=Vd.compose({baseName:"anchored-region",baseClass:fn,template:(e,t)=>G`
|
|
2122
2114
|
<template class="${e=>e.initialLayoutComplete?"loaded":""}">
|
|
2123
2115
|
${Le((e=>e.initialLayoutComplete),G`
|
|
2124
2116
|
<slot></slot>
|
|
2125
2117
|
`)}
|
|
2126
2118
|
</template>
|
|
2127
|
-
`,styles:
|
|
2128
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2129
|
-
const
|
|
2130
|
-
class
|
|
2119
|
+
`,styles:zd})
|
|
2120
|
+
mi.getOrCreate().withPrefix("nimble").register(Ld())
|
|
2121
|
+
const Hd=mi.tagFor(Vd)
|
|
2122
|
+
class Pd{constructor(e,t,n){this.value=e,this.styles=t,this.source=n}handleChange(){const e=ea.getValueFor(this.source);(Array.isArray(this.value)?this.value.includes(e):this.value===e)?this.source.$fastController.addStyles(this.styles):this.source.$fastController.removeStyles(this.styles)}}class Bd{constructor(e,t){this.theme=e,this.styles=t,this.cache=new WeakMap}bind(e){const t=this.cache.get(e)||new Pd(this.theme,this.styles,e)
|
|
2131
2123
|
ea.subscribe(t,e),t.handleChange(),this.cache.set(e,t)}unbind(e){const t=this.cache.get(e)
|
|
2132
|
-
t&&ea.unsubscribe(t)}}const
|
|
2124
|
+
t&&ea.unsubscribe(t)}}const Nd=(e,t)=>new Bd(e,t),qd=we`
|
|
2133
2125
|
${Ao("flex")}
|
|
2134
2126
|
|
|
2135
2127
|
:host {
|
|
@@ -2239,7 +2231,7 @@ t&&ea.unsubscribe(t)}}const qd=(e,t)=>new Nd(e,t),Zd=we`
|
|
|
2239
2231
|
.dismiss nimble-button:hover {
|
|
2240
2232
|
background: ${br(tr,.2)};
|
|
2241
2233
|
}
|
|
2242
|
-
`.withBehaviors(
|
|
2234
|
+
`.withBehaviors(Nd(kr.light,we`
|
|
2243
2235
|
:host {
|
|
2244
2236
|
background: ${Jo};
|
|
2245
2237
|
}
|
|
@@ -2255,7 +2247,7 @@ t&&ea.unsubscribe(t)}}const qd=(e,t)=>new Nd(e,t),Zd=we`
|
|
|
2255
2247
|
:host([severity='information']) {
|
|
2256
2248
|
background: ${Go};
|
|
2257
2249
|
}
|
|
2258
|
-
`),
|
|
2250
|
+
`),Nd(kr.dark,we`
|
|
2259
2251
|
:host {
|
|
2260
2252
|
background: ${Jo};
|
|
2261
2253
|
}
|
|
@@ -2271,7 +2263,7 @@ t&&ea.unsubscribe(t)}}const qd=(e,t)=>new Nd(e,t),Zd=we`
|
|
|
2271
2263
|
:host([severity='information']) {
|
|
2272
2264
|
background: ${jo};
|
|
2273
2265
|
}
|
|
2274
|
-
`),
|
|
2266
|
+
`),Nd(kr.color,we`
|
|
2275
2267
|
:host {
|
|
2276
2268
|
background: ${sa};
|
|
2277
2269
|
}
|
|
@@ -2279,23 +2271,23 @@ t&&ea.unsubscribe(t)}}const qd=(e,t)=>new Nd(e,t),Zd=we`
|
|
|
2279
2271
|
.container {
|
|
2280
2272
|
background: ${br(tr,.3)};
|
|
2281
2273
|
}
|
|
2282
|
-
`)),
|
|
2274
|
+
`)),Zd=we`
|
|
2283
2275
|
${vd}
|
|
2284
2276
|
${bd}
|
|
2285
2277
|
`
|
|
2286
|
-
class
|
|
2287
|
-
const
|
|
2288
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2289
|
-
const Wd=mi.tagFor(jd),Kd={name:"add_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 7H9V3H7v4H3v2h4v4h2V9h4V7z"/></svg>'},Xd={name:"arrow_down_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" xml:space="preserve"><path d="M9 2v6.207l2.5-1.188L8.021 14 4.5 7.019 7 8.207V2h2z"/></svg>'},Yd={name:"arrow_down_right_and_arrow_up_left_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m13.171 13.933-2.276-2.247-.447 2.284-1.732-5.246 5.217 1.753-2.284.456 2.291 2.26ZM2 2.746l2.29 2.261-2.283.456 5.217 1.753L5.492 1.97l-.447 2.284-2.276-2.247Z"/></svg>'},Jd={name:"arrow_expander_down_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m3.5 4.737 1.11-.732 3.357 5.472L11.397 4l1.103.743L7.955 12 3.5 4.737z"/></svg>'},Qd={name:"arrow_expander_left_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m11.263 3.5.732 1.11-5.472 3.357L12 11.397l-.743 1.103L4 7.955 11.263 3.5z"/></svg>'},eh={name:"arrow_expander_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m4.737 12.5-.732-1.11 5.472-3.357L4 4.603 4.743 3.5 12 8.045 4.737 12.5z"/></svg>'},th={name:"arrow_expander_up_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.5 11.263-1.11.732-3.357-5.472L4.603 12 3.5 11.257 8.045 4l4.455 7.263z"/></svg>'},nh={name:"arrow_left_from_line_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 14h2V2h-2ZM2 7.982 7.9 5 6.588 7.004 11 7v2H6.613L7.9 11Z"/></svg>'},ih={name:"arrow_partial_rotate_left_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 11.988a3.086 3.086 0 0 0 3.143-3.025 3.08 3.08 0 0 0-3.085-3.02v.088l.826 2.067-5.598-2.796L8.884 2.5l-.742 1.932a4.619 4.619 0 0 1 4.572 4.53A4.629 4.629 0 0 1 8 13.5Z"/></svg>'},oh={name:"arrow_right_to_line_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 14h2V2h-2Zm-6.9-3 1.287-2H2V7l4.412.004L5.1 5 11 7.982Z"/></svg>'},rh={name:"arrow_rotate_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8.9 2.773v1.715a3.366 3.366 0 0 1 3.3 3.428 3.366 3.366 0 0 1-3.3 3.429 3.36 3.36 0 0 1-3.293-3.366h.095l2.255.901-3.05-6.107L1.85 8.88l2.108-.808A5.039 5.039 0 0 0 8.9 13.059a5.05 5.05 0 0 0 4.95-5.143A5.05 5.05 0 0 0 8.9 2.773Z"/></svg>'},sh={name:"arrow_u_rotate_left_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m8.857 9.453-2.571-1.68v.908a3 3 0 0 0 3 3 3 3 0 0 0 3-3V3.11H14v5.571a4.714 4.714 0 0 1-4.714 4.715A4.714 4.714 0 0 1 4.57 8.68v-.908L2 9.453l3.403-6.849Z"/></svg>'},ah={name:"arrow_up_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" xml:space="preserve"><path d="M7 14V7.793L4.5 8.981 7.979 2 11.5 8.981 9 7.793V14H7z"/></svg>'},lh={name:"arrow_up_left_and_arrow_down_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m4.195 4.977-.451 2.296L2 2l5.256 1.762-2.301.458 6.849 6.803.452-2.296L14 14l-5.256-1.762 2.301-.458-6.85-6.803z"/></svg>'},ch={name:"arrows_maximize_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.26 8.735 14 14l-5.25-1.763 2.295-.457-3.03-3.022L8 8.742l-.015.016.015.014-3.023 3.023 2.296.45L2 13.985l1.762-5.243.458 2.295 3.015-3.015.007-.007L7.258 8l-.016-.015L7.227 8l-3.03-3.03-.457 2.295L2 2l5.25 1.762-2.295.458 3.03 3.022.015.016.015-.016L8 7.227l3.023-3.022-2.296-.45L14 2.015l-1.762 5.243-.458-2.295L8.742 8l.016.015L8.773 8l3.03 3.03.457-2.295z"/></svg>'},dh={name:"arrows_repeat_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8.75 11.75 10 14l-6-3 6-3-1.25 2.25ZM8 11h1a4 4 0 0 0 4-4M7.25 5.75 6 8l6-3-6-3 1.25 2.25ZM8 5H7a4 4 0 0 0-4 4"/></svg>'},hh={name:"bars_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 13v-2h12v2Zm0-4V7h12v2Zm0-4V3h12v2Z"/></svg>'},uh={name:"bell_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 14a2.05 2.05 0 0 1-2-2h4a2.05 2.05 0 0 1-2 2Zm-5.25-3s0-.746.5-.746h.065c.935 0 1.435-4.918 1.435-4.918 0-.504.25-.504.25-.504h.067c.075-.037.183-.143.183-.463v-.484c.105-.842.953-1.331 2.25-1.43v-.262c0-.081.09-.15.219-.193h.562c.129.043.219.112.219.193v.263c1.297.098 2.145.587 2.25 1.43v.483c0 .32.108.426.183.463H11s.25 0 .25.483v.02s.5 4.92 1.5 4.92c.5 0 .5.745.5.745Z"/></svg>'},ph={name:"bell_and_comment_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.836 4.75H9.57a.71.71 0 0 0-.71.71v2.032a.71.71 0 0 0 .71.711h.356L9.57 9.625l2.488-1.422h1.778a.71.71 0 0 0 .71-.71V5.46a.71.71 0 0 0-.71-.711ZM8.196 11H2.75s0-.746.5-.746h.065c.935 0 1.435-4.918 1.435-4.918 0-.504.25-.504.25-.504h.067c.075-.037.183-.143.183-.463v-.484c.105-.842.953-1.331 2.25-1.43v-.262c0-.081.09-.15.219-.193h.562c.129.043.219.112.219.193v.263c1.224.092 2.04.537 2.217 1.294H9.57a1.713 1.713 0 0 0-1.71 1.71v2.032a1.712 1.712 0 0 0 .844 1.475ZM6 12h4a2.05 2.05 0 0 1-2 2 2.05 2.05 0 0 1-2-2Zm7.25-1H9.18l2.868-1.64c.198.527.431.894.702.894.5 0 .5.746.5.746Z"/></svg>'},gh={name:"bell_circle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.042 11h2a1 1 0 0 1-2 0Zm4.5-1h-7s0-.497.333-.497h.043c.624 0 .957-3.28.957-3.28 0-.335.167-.335.167-.335h.044c.05-.025.122-.095.122-.309v-.322c.07-.561.636-.888 1.5-.953v-.175c0-.054.06-.1.146-.129h.375c.086.029.146.075.146.129v.175c.865.065 1.43.392 1.5.953v.322c0 .214.072.284.122.309h.045s.166 0 .166.322v.014s.334 3.279 1 3.279c.334 0 .334.497.334.497Zm-3.5-7.5a5.5 5.5 0 1 1-5.5 5.5 5.506 5.506 0 0 1 5.5-5.5m0-1a6.5 6.5 0 1 0 6.5 6.5 6.5 6.5 0 0 0-6.5-6.5Z"/></svg>'},fh={name:"bell_solid_circle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M1.5 8A6.5 6.5 0 0 0 8 14.5 6.5 6.5 0 0 0 14.5 8 6.5 6.5 0 0 0 8 1.5 6.5 6.5 0 0 0 1.5 8ZM8 12a1.025 1.025 0 0 1-1-1h2a1.025 1.025 0 0 1-1 1Zm-3.5-2s0-.497.333-.497h.043c.624 0 .957-3.28.957-3.28 0-.335.167-.335.167-.335h.045c.05-.025.122-.095.122-.309v-.322c.07-.561.635-.888 1.5-.953v-.175c0-.054.06-.1.145-.129h.376c.085.029.145.075.145.129v.175c.865.065 1.43.392 1.5.953v.322c0 .214.073.284.122.309H10s.167 0 .167.322v.014s.333 3.279 1 3.279c.333 0 .333.497.333.497Z"/></svg>'},mh={name:"block_with_ribbon_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v10h4.762A4.496 4.496 0 0 1 13 5.762V2Zm12 7.5a3.5 3.5 0 1 0-6 2.442V14l2.5-1.667L13 14v-2.058A3.485 3.485 0 0 0 14 9.5ZM10.5 8A1.5 1.5 0 1 1 9 9.5 1.5 1.5 0 0 1 10.5 8Z"/></svg>'},vh={name:"bold_b_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16" xml:space="preserve"><path d="M12.981 10.536c0 .562-.113 1.065-.34 1.508s-.538.81-.934 1.102a4.337 4.337 0 0 1-1.512.734c-.55.146-1.246.219-2.09.219H3.028V2.466h4.516c.938 0 1.624.031 2.059.094a4.2 4.2 0 0 1 1.293.414c.442.224.772.524.988.902.216.378.324.809.324 1.293 0 .562-.148 1.059-.445 1.488s-.716.765-1.258 1.004v.062c.76.151 1.363.464 1.809.938s.667 1.099.667 1.875zM9.137 5.755c0-.192-.048-.386-.145-.578-.097-.192-.267-.336-.512-.43a2.482 2.482 0 0 0-.815-.137 67.472 67.472 0 0 0-1.372-.011h-.281V7.06h.469c.474 0 .877-.008 1.211-.023.333-.016.596-.068.789-.157.271-.12.448-.274.531-.465.083-.19.125-.41.125-.66zm.727 4.734c0-.37-.071-.655-.214-.855s-.387-.351-.73-.449c-.233-.068-.556-.105-.966-.11s-.84-.008-1.287-.008h-.655v2.898h.218c.842 0 1.445-.003 1.809-.008a2.652 2.652 0 0 0 1.006-.203c.312-.13.526-.304.643-.52a1.53 1.53 0 0 0 .176-.745z"/></svg>'},bh={name:"book_magnifying_glass_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6 10c0-.347.058-.678.142-1H5V8h1.556c.22-.378.498-.714.826-1H5V6h5c.732 0 1.41.212 2 .556V2H3v11h4.382A3.975 3.975 0 0 1 6 10ZM5 4h5v1H5V4Z"/><path class="cls-1" d="m9.99 7.01-.076.002a3 3 0 1 0 1.799 5.452l1.593 1.53.69-.725-1.58-1.516a2.973 2.973 0 0 0 .57-1.816A3 3 0 0 0 9.99 7.01ZM10 12c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2Z"/></svg>'},wh={name:"calendar_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 4.023V2.977A.976.976 0 0 1 4.977 2h.046A.976.976 0 0 1 6 2.977v1.046A.977.977 0 0 1 5.023 5h-.046A.977.977 0 0 1 4 4.023ZM13 4v.023A1.98 1.98 0 0 1 11.023 6h-.046A1.98 1.98 0 0 1 9 4.023V4H7v.023A1.98 1.98 0 0 1 5.023 6h-.046A1.98 1.98 0 0 1 3 4.023V4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1Zm-7 8H4v-1h2Zm.001-1.999H4V9h2.001Zm0-2.001H4V7h2.001ZM9 12H7v-1h2Zm0-1.999H7V9h2ZM9 8H7V7h2Zm3 4h-2v-1h2Zm.001-1.999H10V9h2.001Zm0-2.001H10V7h2.001ZM10 4.023V2.977A.976.976 0 0 1 10.977 2h.046a.976.976 0 0 1 .977.977v1.046a.977.977 0 0 1-.977.977h-.046A.977.977 0 0 1 10 4.023Z"/></svg>'},xh={name:"chart_diagram_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 10V7H8V5h1V2H6v3h1v2H4v3H3v3h3v-3H5V8h5v2H9v3h3v-3Z"/></svg>'},yh={name:"chart_diagram_child_focus_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 10V7H8V5h1V2H6v3h1v2H3v3H2v3h3v-3H4V8h3v2H6v3h3v-3H8V8h3v2h-1v3h3v-3Zm-8 2H3v-1h1Zm4 0H7v-1h1Zm4 0h-1v-1h1Z"/></svg>'},Ch={name:"chart_diagram_parent_focus_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 10V7H8V5h1V2H6v3h1v2H3v3H2v3h3v-3H4V8h3v2H6v3h3v-3H8V8h3v2h-1v3h3v-3ZM7 4V3h1v1Z"/></svg>'},kh={name:"chart_diagram_parent_focus_two_child_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 10V7H8V5h1V2H6v3h1v2H4v3H3v3h3v-3H5V8h5v2H9v3h3v-3Zm-6 2H4v-1h1Zm6 0h-1v-1h1Z"/></svg>'},$h={name:"check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 5.287 6.182 12 3 8.867l1.363-1.343L6.24 9.37 11.693 4Z"/></svg>'},_h={name:"check_dot_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><circle class="cls-1" cx="12.5" cy="11.5" r="1.5"/><path class="cls-2" d="m14 4.693-8.182 8.182L2 9.057 3.636 7.42l2.25 2.25 6.546-6.545Z"/></svg>'},Sh={name:"check_large_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m14 4.693-8.182 8.182L2 9.057 3.636 7.42l2.25 2.25 6.546-6.545L14 4.693Z"/></svg>'},Ih={name:"circle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm0 9.429A3.429 3.429 0 1 1 11.429 8 3.429 3.429 0 0 1 8 11.429Z"/></svg>'},Mh={name:"circle_filled_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><circle class="cls-1" cx="8" cy="8" r="4"/></svg>'},Ah={name:"circle_broken_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7 14A6.1 6.1 0 0 1 7 2v2.686a3.475 3.475 0 0 0 0 6.628ZM9 2v2.686a3.475 3.475 0 0 1 0 6.628V14A6.1 6.1 0 0 0 9 2Z"/></svg>'},Rh={name:"circle_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm-1.212 9.2L4 8.388 5.225 7.2l1.553 1.61 4.06-4.01L12 6.013Z"/></svg>'},Eh={name:"circle_partial_broken_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9 2v2.686a3.475 3.475 0 0 1 0 6.628V14A6.1 6.1 0 0 0 9 2Z"/><path class="cls-2" d="M7 11.314a3.475 3.475 0 0 1 0-6.628V2a6.1 6.1 0 0 0 0 12Z"/></svg>'},Dh={name:"circle_slash_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm.075 1.714a4.281 4.281 0 0 1 3.573 6.647L5.714 4.427a4.262 4.262 0 0 1 2.36-.713ZM3.789 8a4.261 4.261 0 0 1 .713-2.36l5.934 5.933A4.281 4.281 0 0 1 3.789 8Z"/></svg>'},Fh={name:"circle_x_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm.075 1.714a4.263 4.263 0 0 1 2.409.743l-2.37 2.37-2.4-2.4a4.262 4.262 0 0 1 2.36-.713ZM4.502 5.64l2.4 2.4-2.37 2.37a4.273 4.273 0 0 1-.03-4.77Zm3.573 6.647a4.256 4.256 0 0 1-2.31-.685l2.349-2.35 2.322 2.322a4.261 4.261 0 0 1-2.361.713Zm3.573-1.925L9.326 8.039l2.35-2.349a4.251 4.251 0 0 1-.028 4.67Z"/></svg>'},Oh={name:"clipboard_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 5H5a2 2 0 0 1 2-2V2a1 1 0 0 1 2 0v1a2 2 0 0 1 2 2Zm1-2v9H4V3H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1Zm-2 4H5v1h5ZM8 9H5v1h3Z"/></svg>'},Th={name:"clock_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6m.576 4.87 1.555-1.557a1.635 1.635 0 0 1 .84-.256 1.979 1.979 0 0 1-.23.791c-.115.163-1.356 1.41-1.571 1.626a1.278 1.278 0 0 1 0 1.085l2.376 2.38a1.597 1.597 0 0 1 .458 1.072 1.621 1.621 0 0 1-1.222-.613c-.456-.456-1.94-1.963-2.207-2.235a1.275 1.275 0 1 1 0-2.293"/></svg>'},zh={name:"clock_cog_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m8.108 7.392.955-.957a1.004 1.004 0 0 1 .516-.157 1.215 1.215 0 0 1-.14.486c-.072.1-.834.866-.966.999a.785.785 0 0 1 0 .666l1.341 1.344a.981.981 0 0 1 .281.658.996.996 0 0 1-.75-.376c-.28-.28-1.073-1.088-1.237-1.255a.783.783 0 1 1 0-1.408m5.69 2.292L14 7.324l-1.327-.113a4.76 4.76 0 0 0-.402-1.26l1.02-.86-1.527-1.811-1.019.86a4.726 4.726 0 0 0-.563-.344 4.61 4.61 0 0 0-.612-.265l.114-1.329L7.324 2l-.113 1.329a4.77 4.77 0 0 0-1.26.401l-.86-1.02L3.28 4.237l.858 1.02A4.771 4.771 0 0 0 3.53 6.43l-1.329-.114L2 8.676l1.329.114a4.69 4.69 0 0 0 .401 1.26l-1.02.86 1.526 1.811 1.02-.859a4.666 4.666 0 0 0 1.175.608l-.113 1.33 2.358.2.114-1.328a4.688 4.688 0 0 0 1.26-.4l.86 1.02 1.81-1.527-.858-1.02a4.687 4.687 0 0 0 .608-1.175ZM8 11.45A3.45 3.45 0 1 1 11.45 8 3.45 3.45 0 0 1 8 11.45Z"/></svg>'},Vh={name:"clock_exclamation_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2.821 5.114h1.357V6H2.82v-.886ZM2.798 1l.155 3.56h1.094L4.202 1H2.798Zm7.481 2.575h.001l-.013-.007a4.92 4.92 0 0 0-.606-.262 5.015 5.015 0 0 0-.523-.163 4.948 4.948 0 0 0-.286-.055A4.654 4.654 0 0 0 8 3c-.016 0-.03.004-.045.005a4.706 4.706 0 0 0-.785.079c-.097.016-.194.03-.29.052a5.078 5.078 0 0 0-.575.179c-.48.174-.907.438-1.305.74V7H3.109l-.017.092a4.903 4.903 0 0 0-.088.87C3.004 7.974 3 7.986 3 8c0 .293.036.575.088.852.016.096.033.19.055.285.045.182.101.359.165.532.074.206.16.403.259.595l.007.016h.001c.83 1.608 2.49 2.72 4.426 2.72C10.762 13 13 10.762 13 8c0-1.935-1.112-3.594-2.72-4.425Zm-.275 7.041c-.38-.38-1.454-1.473-1.675-1.699a1.06 1.06 0 0 1-1.523-.953 1.06 1.06 0 0 1 1.523-.954l1.293-1.296c.117-.117.509-.213.7-.213 0 .128-.085.51-.191.658-.097.136-1.128 1.173-1.308 1.353a1.064 1.064 0 0 1 0 .903l1.816 1.82s.445.466.382.89c-.297 0-.594-.085-1.017-.509Z"/></svg>'},Lh={name:"clock_triangle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 3a4.951 4.951 0 0 0-2.152.505L7.096 6H3.422A4.997 4.997 0 1 0 8 3Zm2.003 7.616a453.75 453.75 0 0 1-1.675-1.7 1.061 1.061 0 1 1 0-1.907l1.294-1.297a1.36 1.36 0 0 1 .699-.212 1.646 1.646 0 0 1-.19.658c-.097.136-1.13 1.173-1.309 1.353a1.063 1.063 0 0 1 0 .903l1.817 1.82a1.33 1.33 0 0 1 .381.891 1.35 1.35 0 0 1-1.017-.51Z"/><path class="cls-2" d="M5.477 5H1.522L3.5 1.045 5.477 5z"/></svg>'},Hh={name:"clone_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5 5h5V2H2v8h3Zm1 1v8h8V6Z"/></svg>'},Ph={name:"cloud_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5.08 11.977a5.123 5.123 0 0 1-1.295-.2C2.754 11.46 1.883 10.2 1.883 9.022a2.963 2.963 0 0 1 2.63-2.937A4.203 4.203 0 0 1 8.432 3.48a4.254 4.254 0 0 1 4.249 4.17 2.251 2.251 0 0 1 1.437 2.09 2.24 2.24 0 0 1-2.238 2.237l-4.947.003c-1.01 0-1.79-.001-1.853-.003Zm-.228-4.573c-.899 0-1.63.725-1.63 1.618 0 .842.702 1.61 1.474 1.61l7.183.007a.9.9 0 0 0 0-1.799.883.883 0 0 0-.337.067l-.493.202.159-.508a2.914 2.914 0 0 0-2.777-3.783 2.897 2.897 0 0 0-2.868 2.436l-.044.268-.264-.067a1.641 1.641 0 0 0-.403-.051Z"/></svg>'},Bh={name:"cloud_upload_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m8.476 7.298-1.927 3.848 1.48-.568v3.407h.948v-3.407l1.42.568ZM15 9.005a2.374 2.374 0 0 1-2.371 2.371h-.998l-.5-1h1.498a1.371 1.371 0 1 0-.516-2.64A3.77 3.77 0 1 0 4.797 5.99 2.238 2.238 0 0 0 2 8.148a2.223 2.223 0 0 0 2.057 2.22l1.758.009-.448.894a10.567 10.567 0 0 1-2.31-.121 3.224 3.224 0 0 1 .993-6.225 4.77 4.77 0 0 1 9.236 1.68c0 .04 0 .081-.002.121A2.375 2.375 0 0 1 15 9.006Z"/></svg>'},Nh={name:"cloud_with_arrow_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.429 10.1.001-.101A3.998 3.998 0 0 0 4.69 8.59a2.715 2.715 0 0 0-2.557 2.7 2.782 2.782 0 0 0 1.725 2.516 4.854 4.854 0 0 0 1.225.19h.004c.19.006 6.792 0 6.792 0a1.987 1.987 0 0 0 .55-3.897Zm-.55 3.06-7.183-.008a1.867 1.867 0 0 1 .156-3.728 1.891 1.891 0 0 1 .464.06 3.16 3.16 0 1 1 6.13 1.462 1.149 1.149 0 1 1 .433 2.213ZM4.5 4.5a1 1 0 1 1 1-1 1 1 0 0 1-1 1Zm5.138.681.496-1.241H7v-.828h3.134l-.496-1.293L13 3.502Z"/></svg>'},qh={name:"cog_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m6.823 2-2.217.914.516 1.25a4.743 4.743 0 0 0-.95.944L2.925 4.59l-.922 2.212 1.247.52a4.82 4.82 0 0 0-.002 1.34L2 9.176l.914 2.218 1.248-.515a4.824 4.824 0 0 0 .945.949l-.518 1.247 2.214.921.519-1.246a4.68 4.68 0 0 0 .674.048 4.74 4.74 0 0 0 .666-.047L9.176 14l2.218-.914-.515-1.248a4.828 4.828 0 0 0 .95-.945l1.245.518.922-2.214-1.247-.519a4.73 4.73 0 0 0 .002-1.34L14 6.824l-.914-2.218-1.25.515a4.739 4.739 0 0 0-.944-.949l.518-1.246-2.212-.922-.52 1.247a4.714 4.714 0 0 0-.676-.049 4.808 4.808 0 0 0-.663.047Zm1.175 9a2.999 2.999 0 1 1 2.77-1.847 2.984 2.984 0 0 1-2.77 1.846M8 6.801a1.2 1.2 0 1 0 .46.093A1.198 1.198 0 0 0 8 6.8"/></svg>'},Zh={name:"cog_database_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.147 11.648c-.01.006-.02.014-.032.02a4.1 4.1 0 0 1-.46.224l-.012.005c-.033.015-.068.028-.103.042-.051.019-.11.036-.162.055-.094.034-.186.068-.285.099-.034.01-.064.024-.1.033-.019.007-.042.012-.062.019q-.279.078-.58.144l-.133.03q-.324.068-.668.12l-.135.02c-.214.03-.431.057-.653.079l-.103.012a17.446 17.446 0 0 1-.903.06c-.254.01-.507.018-.759.018a18.75 18.75 0 0 1-1.66-.078l-.105-.012a15.901 15.901 0 0 1-.65-.08l-.134-.018c-.23-.036-.455-.076-.67-.122l-.132-.029a9.372 9.372 0 0 1-.582-.145l-.059-.017c-.036-.01-.067-.023-.1-.034a7.034 7.034 0 0 1-.285-.1c-.054-.018-.112-.035-.165-.055l-.101-.041-.01-.005a4.076 4.076 0 0 1-.462-.223l-.03-.02a2.343 2.343 0 0 1-.334-.24c-.014-.012-.033-.022-.045-.033v1.013c0 .364.524.749 1.427 1.051a8.098 8.098 0 0 0 .697.197 14.793 14.793 0 0 0 3.4.363 14.818 14.818 0 0 0 3.403-.362 8.38 8.38 0 0 0 .697-.197c.904-.303 1.43-.688 1.43-1.052v-1.013c-.015.012-.034.022-.047.034a2.478 2.478 0 0 1-.333.238m.38-1.883c0-.762-2.27-1.61-5.529-1.61-3.256 0-5.524.848-5.524 1.61 0 .365.525.75 1.427 1.052a9.254 9.254 0 0 0 .698.197 14.8 14.8 0 0 0 3.399.362 14.817 14.817 0 0 0 3.401-.362 8.375 8.375 0 0 0 .7-.197c.902-.302 1.428-.687 1.428-1.052M3.931 7.697 2.802 7.6l.171-1.979 1.129.095a3.984 3.984 0 0 1 .516-.985l-.729-.856 1.537-1.28.73.855a4.085 4.085 0 0 1 1.071-.336L7.323 2l2.004.17-.097 1.114a3.949 3.949 0 0 1 .52.223 4.027 4.027 0 0 1 .478.288l.866-.721 1.296 1.52-.866.72a3.961 3.961 0 0 1 .341 1.058l1.127.095-.133 1.539a10.211 10.211 0 0 0-2.482-.618c.007-.048.021-.094.026-.143a2.48 2.48 0 0 0-1.346-2.416 2.543 2.543 0 0 0-2.938.45 2.408 2.408 0 0 0-.698 2.14 11.88 11.88 0 0 0-1.482.311l-.008-.033Zm4.067-.468c-.331 0-.697.012-1.077.035a.972.972 0 0 1-.026-.314.99.99 0 0 1 .292-.618 1.011 1.011 0 0 1 1.174-.18.992.992 0 0 1 .539.967.923.923 0 0 1-.036.132 17.817 17.817 0 0 0-.866-.022Z"/></svg>'},Uh={name:"cog_database_inset_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.751 7.338 14 6.824l-.914-2.218-1.25.515a4.74 4.74 0 0 0-.944-.949l.518-1.246-2.212-.922-.52 1.247a4.715 4.715 0 0 0-.676-.049 4.803 4.803 0 0 0-.663.047L6.823 2l-2.217.914.516 1.25a4.741 4.741 0 0 0-.95.944L2.925 4.59l-.922 2.212 1.247.52a4.816 4.816 0 0 0-.002 1.34L2 9.176l.914 2.218 1.248-.515a4.823 4.823 0 0 0 .945.949l-.518 1.247 2.214.921.519-1.246a4.673 4.673 0 0 0 .674.048 4.737 4.737 0 0 0 .666-.047L9.176 14l2.218-.914-.515-1.248a4.826 4.826 0 0 0 .95-.945l1.245.518.922-2.214-1.247-.519a4.729 4.729 0 0 0 .002-1.34Zm-1.06 2.418c0 .244-.35.5-.954.703a5.157 5.157 0 0 1-.466.131 9.896 9.896 0 0 1-2.273.243 9.88 9.88 0 0 1-2.271-.243 5.454 5.454 0 0 1-.466-.131c-.603-.202-.953-.46-.953-.703V9.08c.008.008.02.015.03.023a1.567 1.567 0 0 0 .223.16l.02.013a2.725 2.725 0 0 0 .309.15l.006.002.068.028c.035.013.074.025.11.037.062.023.125.046.19.066.023.008.043.016.067.023l.04.011c.123.036.253.069.389.098l.087.02c.144.03.295.057.448.08l.09.012c.142.021.286.038.434.054l.07.008c.162.014.327.027.491.035l.112.005a11.63 11.63 0 0 0 1.013 0l.11-.005c.165-.008.33-.02.493-.035l.069-.008c.148-.015.293-.033.436-.054l.09-.012q.23-.035.447-.08l.088-.02c.135-.03.264-.062.388-.097l.042-.012.066-.023c.066-.02.128-.043.19-.066.036-.012.075-.024.109-.037l.069-.028.007-.003a2.744 2.744 0 0 0 .308-.149l.022-.014a1.651 1.651 0 0 0 .222-.159l.03-.023Zm0-1.76c0 .243-.35.5-.954.703a5.157 5.157 0 0 1-.466.13 9.897 9.897 0 0 1-2.273.243 9.88 9.88 0 0 1-2.271-.242 5.44 5.44 0 0 1-.466-.132c-.603-.202-.953-.459-.953-.703V7.32c.008.008.02.014.03.022a1.566 1.566 0 0 0 .223.16l.02.013a2.716 2.716 0 0 0 .309.15l.006.003c.022.01.046.018.068.027l.11.038c.062.022.125.045.19.066.023.007.043.016.067.023l.04.011c.123.035.253.067.389.097l.087.02c.144.03.295.057.448.08l.09.013c.142.02.286.038.434.053l.07.008a11.715 11.715 0 0 0 1.726.035c.165-.008.33-.02.493-.035l.069-.008c.148-.015.293-.033.436-.053l.09-.012q.23-.036.447-.081l.088-.02q.202-.044.388-.097c.014-.004.029-.007.042-.012.023-.006.043-.015.067-.022.065-.02.127-.044.19-.066l.108-.037.069-.028.008-.003a2.735 2.735 0 0 0 .307-.15l.022-.013a1.657 1.657 0 0 0 .222-.16c.009-.007.021-.014.03-.022Zm-.953-1.05a5.625 5.625 0 0 1-.467.132 9.896 9.896 0 0 1-2.272.24 9.885 9.885 0 0 1-2.271-.24 6.179 6.179 0 0 1-.466-.133c-.603-.201-.954-.459-.954-.702 0-.51 1.515-1.076 3.69-1.076 2.177 0 3.694.567 3.694 1.076 0 .243-.351.5-.954.702Z"/></svg>'},jh={name:"cog_small_cog_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.712 5.956a.76.76 0 0 1-.224.477.787.787 0 0 1-.909.139.762.762 0 0 1-.19-1.224.781.781 0 0 1 .907-.14.767.767 0 0 1 .416.748ZM14 11.61l-.441 1.088-.62-.246a2.276 2.276 0 0 1-.232.268 2.386 2.386 0 0 1-.23.2l.263.606-1.09.46-.263-.606a2.353 2.353 0 0 1-.662.008l-.248.612-1.1-.435.249-.612a2.273 2.273 0 0 1-.256-.215 2.358 2.358 0 0 1-.218-.243l-.614.26-.466-1.077.614-.259a2.287 2.287 0 0 1-.008-.654l-.62-.246.44-1.087.62.246a2.38 2.38 0 0 1 .234-.27 2.463 2.463 0 0 1 .229-.198l-.263-.606 1.09-.46.263.605a2.422 2.422 0 0 1 .662-.008l.248-.612 1.1.436-.248.612a2.351 2.351 0 0 1 .473.458l.614-.26.466 1.076-.613.26a2.339 2.339 0 0 1 .008.654Zm-1.934-1.591a1.495 1.495 0 0 0-2.085.011 1.454 1.454 0 0 0 .01 2.081 1.479 1.479 0 0 0 .486.313 1.495 1.495 0 0 0 1.6-.324 1.454 1.454 0 0 0-.01-2.081ZM9.036 8.33l-1.189.99-.564-.661a3.104 3.104 0 0 1-.827.26l-.075.86-1.547-.13.074-.862a3.075 3.075 0 0 1-.77-.394l-.671.557-1.001-1.174.67-.557a3.015 3.015 0 0 1-.264-.817L2 6.328 2.132 4.8l.872.074a3.08 3.08 0 0 1 .4-.762l-.564-.66 1.188-.99.565.66a3.159 3.159 0 0 1 .827-.26L5.494 2l1.548.131-.074.861a3.046 3.046 0 0 1 .402.172 3.111 3.111 0 0 1 .369.223l.669-.557L9.41 4.004l-.67.557a3.06 3.06 0 0 1 .264.818l.871.073-.132 1.53-.872-.074a3.026 3.026 0 0 1-.4.762ZM7.874 6.054a1.916 1.916 0 0 0-1.04-1.868 1.965 1.965 0 0 0-2.27.348 1.907 1.907 0 0 0 .478 3.06 1.965 1.965 0 0 0 2.27-.347 1.903 1.903 0 0 0 .562-1.193Zm3.376 4.467a.6.6 0 0 0-.64.13.591.591 0 0 0-.131.196.584.584 0 0 0 .33.761.597.597 0 0 0 .64-.13.59.59 0 0 0 .13-.195.583.583 0 0 0-.135-.637.596.596 0 0 0-.194-.125Z"/></svg>'},Gh={name:"cog_zoomed_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m14 3.11-1.178-.632-1.875 2.133a5.424 5.424 0 0 0-.716-.094L8.766 2l-2.138.627.2 2.863a5.226 5.226 0 0 0-.527.47l-2.77-.738-1.056 1.95L4.656 9.04a5.188 5.188 0 0 0-.087.704L2 11.144l.659 2.1 2.914-.197a4.961 4.961 0 0 0 .453.525l-.13.427h7.232a.818.818 0 0 0 .87-.759L14 13.2Zm-1.335 7.876a2.877 2.877 0 0 1-3.741 1.477 2.768 2.768 0 0 1-1.51-3.66 2.876 2.876 0 0 1 3.729-1.482 2.76 2.76 0 0 1 1.535 3.637Z"/></svg>'},Wh={name:"comment_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 3.5v6a1.5 1.5 0 0 1-1.5 1.5H8.75L3.5 14l.75-3H3.5A1.5 1.5 0 0 1 2 9.5v-6A1.5 1.5 0 0 1 3.5 2h9A1.5 1.5 0 0 1 14 3.5Z"/></svg>'},Kh={name:"computer_and_monitor_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 12V6H5v6h4v1H7v1h5v-1h-2v-1Zm-8-1V7h7v4Zm1-6H4V4h3Zm1 0V3H3v7h1v3h2v1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v2Z"/></svg>'},Xh={name:"copy_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5 5h5V2H2v8h3Zm1 1v8h8V6Zm7 7H7V7h6Z"/></svg>'},Yh={name:"copy_text_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5 5h5V2H2v8h3Zm1 1v8h8V6Zm7 7H7V7h6Zm-1-4H8V8h4Zm-1 2H8v-1h3Z"/></svg>'},Jh={name:"dashboard_builder_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4.646 6.646 7 4.293l2 2 1.646-1.646.707.707L9 7.707l-2-2-1.646 1.647ZM14 2v12H2V2ZM8 9H4v3h4Zm4 2H9v1h3Zm0-2H9v1h3Zm0-5H4v4h8V4Zm-5 6H5v1h2Z"/></svg>'},Qh={name:"dashboard_builder_legend_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm10 10H4v-1.293l2.04-2.04 3.804 2.983L12 9.74Zm0-7h-2v1h2v2.405L9.805 10.35 5.96 7.333 4 9.293V6h2V5H4V4h8ZM9 6H7V5h2Z"/></svg>'},eu={name:"dashboard_builder_templates_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm11 11H3V3h10Z"/><path class="cls-1" d="M9 9h3v1H9zM12 4H4v4h8Zm-1 3H5V5h6ZM8 9H4v3h4Zm-1 2H5v-1h2ZM9 11h3v1H9z"/></svg>'},tu={name:"dashboard_builder_tile_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4.646 10.646 7 8.293l2 2 1.646-1.646.707.707L9 11.707l-2-2-1.646 1.647ZM14 2v12H2V2ZM4 7h3V4H4Zm8 1H4v4h8V8Zm0-4H8v3h4Z"/></svg>'},nu={name:"database_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.588 11.46a2.69 2.69 0 0 0 .36-.257c.015-.012.036-.023.051-.036v1.093c0 .395-.57.81-1.551 1.137a9.133 9.133 0 0 1-.757.212A16.17 16.17 0 0 1 7.997 14a16.144 16.144 0 0 1-3.69-.391 8.83 8.83 0 0 1-.757-.213C2.57 13.069 2 12.655 2 12.26v-1.093c.013.013.033.023.049.036a2.61 2.61 0 0 0 .362.26c.012.006.021.013.033.02a4.294 4.294 0 0 0 .502.241l.01.005.11.046c.058.02.121.039.18.06.1.036.202.073.308.106.037.012.07.026.11.037.018.006.042.011.063.017.2.06.412.11.633.159l.142.031c.234.049.478.092.727.13.048.008.098.014.146.02a17.346 17.346 0 0 0 .82.1 24.659 24.659 0 0 0 .98.065c.273.01.55.019.822.019.273 0 .548-.008.824-.02.06-.003.119-.006.179-.007.268-.014.536-.034.801-.057l.112-.014c.24-.023.476-.052.708-.086.048-.006.098-.012.147-.02.25-.038.491-.081.725-.13.05-.012.096-.021.144-.031.219-.049.429-.1.63-.157.022-.008.047-.013.069-.02.037-.01.07-.024.108-.036.107-.034.206-.07.309-.107.057-.02.12-.038.176-.06.037-.014.075-.028.111-.045l.013-.005a4.316 4.316 0 0 0 .5-.241.415.415 0 0 0 .035-.022m0-2.845-.035.022a4.46 4.46 0 0 1-.5.241l-.013.005c-.036.016-.074.03-.111.045l-.176.06c-.103.037-.202.073-.31.107-.037.012-.07.025-.107.036-.022.007-.047.012-.069.02a10.638 10.638 0 0 1-.774.187q-.35.075-.725.13c-.049.009-.099.014-.147.021-.232.034-.468.063-.708.086L9.8 9.59c-.265.024-.533.044-.801.057l-.18.008c-.275.012-.55.02-.823.02a19 19 0 0 1-.823-.02l-.18-.008a20.583 20.583 0 0 1-.8-.057l-.113-.013c-.241-.024-.475-.052-.706-.086-.048-.006-.098-.012-.146-.02a12.62 12.62 0 0 1-1.502-.32c-.021-.006-.045-.01-.063-.017-.04-.012-.073-.025-.11-.037a7.688 7.688 0 0 1-.309-.107c-.058-.02-.121-.039-.179-.06l-.11-.045-.01-.005a4.436 4.436 0 0 1-.502-.241c-.012-.007-.02-.014-.033-.02a2.544 2.544 0 0 1-.362-.26c-.016-.013-.036-.023-.049-.036v1.093c0 .394.57.81 1.55 1.136a8.83 8.83 0 0 0 .757.213 16.145 16.145 0 0 0 3.69.39 16.171 16.171 0 0 0 3.694-.39 9.133 9.133 0 0 0 .757-.213c.98-.327 1.551-.742 1.551-1.136V8.322c-.015.013-.036.024-.05.036a2.69 2.69 0 0 1-.361.258m0-2.845-.035.022a4.463 4.463 0 0 1-.5.241l-.013.005c-.036.016-.074.03-.111.045l-.176.06c-.103.037-.202.073-.31.107-.037.012-.07.026-.107.036-.022.007-.047.012-.069.02q-.302.084-.63.156l-.144.031q-.351.075-.725.132c-.049.006-.099.012-.147.02-.232.032-.468.061-.708.085l-.112.013a19.05 19.05 0 0 1-.98.066c-.276.01-.55.018-.824.018a20.457 20.457 0 0 1-1.802-.084l-.114-.013c-.241-.024-.475-.053-.706-.086l-.146-.02c-.249-.038-.493-.081-.727-.13-.05-.01-.094-.022-.142-.032-.22-.048-.432-.1-.633-.157l-.063-.018c-.04-.011-.073-.025-.11-.037a7.688 7.688 0 0 1-.309-.107l-.179-.06-.11-.045-.01-.005a4.438 4.438 0 0 1-.502-.241c-.012-.007-.02-.014-.033-.02a2.544 2.544 0 0 1-.362-.26C2.033 5.5 2.013 5.488 2 5.476V6.57c0 .394.57.81 1.55 1.136a8.83 8.83 0 0 0 .757.213 16.144 16.144 0 0 0 3.69.39 16.17 16.17 0 0 0 3.694-.39 9.133 9.133 0 0 0 .757-.213c.98-.327 1.551-.742 1.551-1.136V5.477c-.015.013-.036.024-.05.036a2.69 2.69 0 0 1-.361.258M14 3.738C14 2.915 11.535 2 7.998 2 4.463 2 2 2.915 2 3.738c0 .394.57.81 1.55 1.135.113.039.23.074.355.11q.192.053.402.103a16.152 16.152 0 0 0 3.69.39 16.17 16.17 0 0 0 3.692-.39 9.13 9.13 0 0 0 .759-.213C13.429 4.548 14 4.132 14 3.738"/></svg>'},iu={name:"database_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5.919 12.103a11.87 11.87 0 0 1-1.594-.26 7.445 7.445 0 0 1-.644-.182c-.835-.28-1.32-.635-1.32-.973v-.936c.011.01.029.02.042.031a2.226 2.226 0 0 0 .308.222l.028.018a3.65 3.65 0 0 0 .428.206l.009.005.093.038c.049.019.103.034.153.051.086.032.173.063.262.092.032.01.06.022.094.032l.054.014c.17.05.35.095.538.136l.121.027c.2.042.408.078.62.111.041.007.083.012.124.018.197.028.396.052.6.073l.038.005-.613.613Zm-2.238-7.74a8.567 8.567 0 0 0 .645.182 13.68 13.68 0 0 0 3.143.334 13.697 13.697 0 0 0 3.144-.334 7.753 7.753 0 0 0 .646-.182c.835-.28 1.32-.635 1.32-.973 0-.704-2.098-1.488-5.11-1.488-3.01 0-5.107.784-5.107 1.488 0 .338.486.694 1.32.973Zm5.047 6.495.008.007.008-.008Zm-5.047-4.07a7.471 7.471 0 0 0 .644.182 13.675 13.675 0 0 0 3.143.335 13.697 13.697 0 0 0 3.146-.335 7.694 7.694 0 0 0 .644-.181c.835-.28 1.321-.636 1.321-.973v-.937c-.013.012-.03.02-.043.032a2.29 2.29 0 0 1-.307.22.353.353 0 0 1-.03.02 3.788 3.788 0 0 1-.426.206l-.01.004c-.031.014-.064.026-.096.039-.047.017-.101.033-.15.05-.087.032-.172.064-.263.092-.032.01-.06.023-.092.032l-.058.016q-.257.073-.537.134l-.122.027q-.3.063-.618.112l-.124.017c-.198.029-.399.053-.604.074l-.095.01a16.15 16.15 0 0 1-.835.057c-.235.01-.468.016-.701.016a17.43 17.43 0 0 1-1.535-.072l-.097-.011a14.698 14.698 0 0 1-.6-.074l-.125-.017c-.212-.033-.42-.07-.62-.112l-.12-.027a8.673 8.673 0 0 1-.54-.134c-.018-.006-.037-.01-.053-.016-.034-.01-.062-.022-.094-.032a6.551 6.551 0 0 1-.262-.091c-.05-.018-.104-.034-.153-.052l-.093-.038-.01-.004a3.768 3.768 0 0 1-.427-.207l-.028-.017a2.167 2.167 0 0 1-.308-.223c-.013-.011-.031-.02-.042-.03v.936c0 .337.485.692 1.32.972Zm0 2.436a7.471 7.471 0 0 0 .644.182 13.147 13.147 0 0 0 2.644.328l.318-.318.323.324a14.377 14.377 0 0 0 2.473-.222l1.753-1.753-.063.028-.01.004c-.031.014-.063.027-.096.04-.047.017-.101.033-.15.05-.087.032-.171.063-.263.091-.032.01-.06.022-.092.032-.018.006-.04.01-.058.017a9.015 9.015 0 0 1-.66.16q-.298.064-.617.112l-.124.017c-.198.029-.399.054-.604.074l-.095.011c-.225.02-.454.037-.682.049l-.153.007a16.115 16.115 0 0 1-1.402 0l-.154-.007a17.43 17.43 0 0 1-.68-.049l-.097-.011a14.689 14.689 0 0 1-.6-.074c-.042-.006-.084-.01-.125-.017a10.679 10.679 0 0 1-1.28-.274l-.053-.015c-.034-.01-.062-.021-.094-.032a6.551 6.551 0 0 1-.262-.09c-.05-.018-.104-.034-.153-.053-.03-.012-.063-.024-.093-.038l-.01-.004a3.77 3.77 0 0 1-.427-.207l-.028-.017a2.169 2.169 0 0 1-.308-.223c-.014-.01-.031-.02-.042-.03v.936c0 .337.485.693 1.32.972Zm9.269-1.6L8.736 11.84l-1.449-1.45-1.053 1.055 2.458 2.458 5.268-5.268Z"/></svg>'},ou={name:"desktop_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 3H2v8h5v1H5v1h6v-1H9v-1h5V3Zm0 7H3V4h10Z"/></svg>'},ru={name:"donut_chart_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.872 10.956a4.123 4.123 0 0 1-6.997-2.962v-.007H2v.007a5.995 5.995 0 0 0 10.301 4.182ZM8.372 2v1.884a4.13 4.13 0 0 1 2.992 6.501l1.429 1.224A6.008 6.008 0 0 0 8.37 2ZM2.048 7.236h1.897a4.117 4.117 0 0 1 3.675-3.352V2A6.012 6.012 0 0 0 2.05 7.236Z"/></svg>'},su={name:"dot_solid_dot_stroke_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7 8a3 3 0 1 1-3-3 3 3 0 0 1 3 3Zm5-2a2 2 0 1 0 2 2 2.002 2.002 0 0 0-2-2m0-1a3 3 0 1 1-3 3 3 3 0 0 1 3-3Z"/></svg>'},au={name:"dot_solid_dot_stroke_measurement_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5 3h1v3H5zM6 4h4v1H6zM10 3h1v3h-1zM7 10a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm5-2c-1.103 0-2 .897-2 2s.897 2 2 2 2-.897 2-2-.897-2-2-2m0-1a3 3 0 1 1 0 6 3 3 0 0 1 0-6Z"/></svg>'},lu={name:"down_right_from_square_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m5.958 10.03 2.063-6.281.49 2.344 4.117-4.122 1.414 1.414L9.94 7.487l2.324.504-6.306 2.038Z"/><path class="cls-1" d="M8 10.42V12H4V8h1.572l.657-2H2v8h8V9.774l-2 .646z"/></svg>'},cu={name:"download_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 9v5H2V9h1v4h10V9Zm-5.982 2L11 5.1 8.996 6.412 9 2H7v4.387L5 5.1Z"/></svg>'},du={name:"electronic_chip_zoomed_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 14H7.333V9.333a2 2 0 0 1 2-2H14V13a1 1 0 0 1-1 1ZM12 2a.667.667 0 0 0-.667.667v2h1.334v-2A.667.667 0 0 0 12 2ZM8.444 2a.667.667 0 0 0-.666.667v2H9.11v-2A.667.667 0 0 0 8.444 2ZM2 8.444a.667.667 0 0 0 .667.667h2V7.778h-2A.667.667 0 0 0 2 8.444ZM2 12a.667.667 0 0 0 .667.667h2v-1.334h-2A.667.667 0 0 0 2 12Zm11.556-8.222v.889a.444.444 0 0 1-.445.444H10.89a.444.444 0 0 1-.445-.444v-.89H10v.89a.444.444 0 0 1-.444.444H7.333a.444.444 0 0 1-.444-.444v-.89H4.667a.889.889 0 0 0-.89.89v2.222h.89a.444.444 0 0 1 .444.444v2.223a.444.444 0 0 1-.444.444h-.89v.444h.89a.444.444 0 0 1 .444.445v2.222a.444.444 0 0 1-.444.445h-.89V14H6.89V8.222A1.333 1.333 0 0 1 8.222 6.89H14V3.778Z"/></svg>'},hu={name:"exclamation_mark_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.371 11.873h3.256V14H6.37ZM6.316 2l.37 8.542h2.628L9.684 2Z"/></svg>'},uu={name:"eye_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.856 3.657A7.004 7.004 0 0 0 1 8.001a7.588 7.588 0 0 0 7.146 4.342A7.002 7.002 0 0 0 15 8a7.586 7.586 0 0 0-7.144-4.344m-1.199 7.289A5.108 5.108 0 0 1 2.443 8s.665-2.585 4.33-3.037a2.786 2.786 0 0 0-1.414 1.223l2.787 1.22H4.977a3.47 3.47 0 0 0-.053.576 3.348 3.348 0 0 0 1.734 2.962m2.85.02a3.4 3.4 0 0 0 .107-5.908 5.006 5.006 0 0 1 3.942 2.944s-.603 2.44-4.05 2.963"/></svg>'},pu={name:"fancy_a_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.597 9.844H7.865A7.465 7.465 0 0 1 6.19 11.96a3.323 3.323 0 0 1-2.042.667 2.835 2.835 0 0 1-1.964-.753L2 11.706l1.153-1.152.157.251a1.347 1.347 0 0 0 1.2.716 1.976 1.976 0 0 0 1.385-.625 11.546 11.546 0 0 0 1.722-2.403l2.252-3.88a7.585 7.585 0 0 0-.679-.037 2.365 2.365 0 0 0-1.66.54 1.967 1.967 0 0 0-.556 1.51V6.7l-.067.106-1.564.762.045-.423a3.845 3.845 0 0 1 .645-1.874 3.312 3.312 0 0 1 1.34-1.177 6.74 6.74 0 0 1 2.208-.443c.127 0 .277-.013.471-.029l.369-.03 1.387-.257.087 2.154.33 3.886a4.862 4.862 0 0 0 .29 1.701.498.498 0 0 0 .528.31c.057 0 .277 0 .641-.03L14 11.33l-.172.83-3.003.506Zm-.086-.896-.275-3.22-1.855 3.22Z"/></svg>'},gu={name:"file_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 3v10h8V7H8V3Zm5 0v3h3Z"/></svg>'},fu={name:"file_arrow_curved_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m7 2 3 3H7V2ZM6 6V2H2v12h4.282l.03-.187A4.508 4.508 0 0 1 10 10.065V6H6Zm8 5.5L11 9v2c-1.817-.091-3.412 1.137-3.701 2.97.576-.672 2.077-2.065 3.701-1.82V14l3-2.5Z"/></svg>'},mu={name:"file_drawer_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 4v10h12V4Zm8 4H6V6h4Zm4-5H2V2h12Z"/></svg>'},vu={name:"file_search_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 6v6h-3.333a3.662 3.662 0 0 0 .249-1.302A3.701 3.701 0 0 0 7.22 7 3.654 3.654 0 0 0 6 7.223V2h4v4Zm-3-4v3h3Zm-1.126 8.698a2.697 2.697 0 0 1-4.73 1.772L2.521 14l-.48-.823 2.613-1.523a2.698 2.698 0 1 1 5.22-.956Zm-.952 0a1.745 1.745 0 1 0-1.745 1.745 1.747 1.747 0 0 0 1.745-1.745Z"/></svg>'},bu={name:"filter_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 3.045v1.29h.787a2.069 2.069 0 1 0 2.907 2.903l1.32 2.173v4.522l1.973-1.846V9.411l3.878-5.076h1.134v-1.29Zm2.033 4.059a1.154 1.154 0 0 1 0-2.308c.023 0 .045.006.068.007l1.002 1.575a1.154 1.154 0 0 1-1.07.726Z"/></svg>'},wu={name:"floppy_disk_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.455 4H3.583A.585.585 0 0 0 3 4.598V11.5l1.5 1.497 7.858.003c.33 0 .6-.27.6-.6L13 4.545c0-.33-.215-.546-.545-.546ZM11 12H8v-2H6v2H5V9h6v3Zm1-4H4V5h8v3Z"/></svg>'},xu={name:"floppy_disk_checkmark_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.455 5h-1.041l-1.005 1H12v3H4V6h3.782L6.79 5H3.583A.585.585 0 0 0 3 5.598V12.5l1.5 1.497 7.858.003a.602.602 0 0 0 .6-.6L13 5.545A.513.513 0 0 0 12.455 5ZM11 13H8v-2H6v2H5v-3h6Zm2-10.99L9.091 5.9 7 3.79l.919-.89 1.164 1.208L12.128 1.1l.872.91"/></svg>'},yu={name:"floppy_disk_star_arrow_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5.5 2.5a1 1 0 1 0-1 1 1 1 0 0 0 1-1Zm7.5.002L9.638.819l.496 1.293H7v.828h3.134L9.638 4.18ZM12.455 5H3.583A.585.585 0 0 0 3 5.598V12.5l1.5 1.497 7.858.003a.602.602 0 0 0 .6-.6L13 5.545A.513.513 0 0 0 12.455 5ZM11 13H8v-2H6v2H5v-3h6Zm1-4H4V6h8Z"/></svg>'},Cu={name:"floppy_disk_three_dots_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6 3a1 1 0 1 0-1 1 1 1 0 0 0 1-1Zm3 0a1 1 0 1 0-1 1 1 1 0 0 0 1-1Zm3 0a1 1 0 1 0-1 1 1 1 0 0 0 1-1Zm.455 2H3.583A.585.585 0 0 0 3 5.598V12.5l1.5 1.497 7.858.003a.602.602 0 0 0 .6-.6L13 5.545A.513.513 0 0 0 12.455 5ZM11 13H8v-2H6v2H5v-3h6Zm1-4H4V6h8Z"/></svg>'},ku={name:"folder_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7 4V3H2v10h12V4Zm6 2H3V5h10Z"/></svg>'},$u={name:"folder_open_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7 3v1.002h6V6h-1V5H3v1H2V3ZM2 13h11l1-6H2Z"/></svg>'},_u={name:"forward_slash_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m6.027 14 2.5-12h1.5l-2.5 12h-1.5z"/></svg>'},Su={name:"four_dots_square_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.5 11A1.5 1.5 0 1 1 5 9.5 1.5 1.5 0 0 1 6.5 11ZM5 3.5A1.5 1.5 0 1 0 6.5 5 1.5 1.5 0 0 0 5 3.5Zm7.5 7.5A1.5 1.5 0 1 1 11 9.5a1.5 1.5 0 0 1 1.5 1.5ZM11 3.5A1.5 1.5 0 1 0 12.5 5 1.5 1.5 0 0 0 11 3.5Z"/></svg>'},Iu={name:"function_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 12.643h-1.572l-.898-1.283-.923 1.283h-1.54l1.658-2.146-1.632-2.14h1.572l.883 1.258.888-1.258h1.545l-1.635 2.111ZM9.544 4.667H9.31a3.141 3.141 0 0 0-.394-.1 2.455 2.455 0 0 0-.483-.05 1.32 1.32 0 0 0-.832.241 1.334 1.334 0 0 0-.405.895l-.128.937h1.846v1.282H6.812l-.376 2.462a3.578 3.578 0 0 1-.462 1.357 2.583 2.583 0 0 1-.784.808 3.015 3.015 0 0 1-.938.387A4.823 4.823 0 0 1 3.184 13q-.275 0-.629-.03A3.529 3.529 0 0 1 2 12.892v-1.815h.12a.56.56 0 0 0 .424.244 2.538 2.538 0 0 0 .5.052 1.304 1.304 0 0 0 .898-.29 1.584 1.584 0 0 0 .424-.985l.33-2.226H3.256V6.59H5.05l.178-1.162a2.942 2.942 0 0 1 .444-1.244 2.516 2.516 0 0 1 .76-.734 2.643 2.643 0 0 1 .94-.356A5.61 5.61 0 0 1 8.357 3q.294 0 .588.025t.599.076Z"/></svg>'},Mu={name:"gauge_simple_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.969 5.196a1.763 1.763 0 0 1 1.142-.49 1.763 1.763 0 0 1-.49 1.142L9.205 8.263l.008.025.065.184.03.093a1.352 1.352 0 0 1 .032.295 1.385 1.385 0 0 1-2.769 0 1.343 1.343 0 0 1 .033-.294l.034-.11.055-.16.012-.033.014-.014a1.389 1.389 0 0 1 .625-.625l.015-.015.033-.011.16-.055.11-.035a1.32 1.32 0 0 1 .588 0l.11.035.16.055.033.011ZM14 8.86a5.979 5.979 0 0 1-1.799 4.28l-1.309-1.308a4.085 4.085 0 0 0 .83-4.78l.55-.55a2.576 2.576 0 0 0 .64-1.082A5.968 5.968 0 0 1 14 8.86Zm-6-6a5.998 5.998 0 0 0-4.201 10.28l1.308-1.308a4.14 4.14 0 0 1 4.645-6.725l.564-.564a2.57 2.57 0 0 1 1.07-.635A5.97 5.97 0 0 0 8 2.86Z"/></svg>'},Au={name:"grid_three_by_three_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 3v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1Zm4 9H4v-2h2Zm.001-2.999H4V7h2.001Zm0-3.001H4V4h2.001ZM9 12H7v-2h2Zm0-2.999H7V7h2ZM9 6H7V4h2Zm3 6h-2v-2h2Zm.001-2.999H10V7h2.001Zm0-3.001H10V4h2.001Z"/></svg>'},Ru={name:"grid_two_by_two_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 9h3v3H4Zm5 0h3v3H9ZM4 4h3v3H4Zm5 0h3v3H9ZM2 14h12V2H2Z"/></svg>'},Eu={name:"hammer_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9 14H6V8h3ZM8.875 2H6.723A1.991 1.991 0 0 1 5 3a2.486 2.486 0 0 1-2-1H2v4h1a1.797 1.797 0 0 1 1.5-1C5.551 5 5.997 6.99 6 7h3c.333-1.539 1-2.436 1.741-2.436C12.222 4.564 14 6.615 14 6.615S13 2 8.875 2Z"/></svg>'},Du={name:"hashtag_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m7.76 14 .752-2.914H6.045L5.299 14H3.532l.746-2.914H2v-1.72h2.712l.701-2.807H2.947v-1.72h2.91L6.567 2h1.766l-.71 2.838h2.46L10.8 2h1.768l-.717 2.838H14v1.72h-2.599l-.706 2.807h2.374v1.72h-2.807L9.501 14ZM6.447 9.392h2.506l.72-2.85H7.167Z"/></svg>'},Fu={name:"home_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.988 2 2.5 9H4v5h3v-3h2v3h3V9h1.5L7.988 2z"/></svg>'},Ou={name:"hourglass_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.774 13.4h-.047v-.49h-.404a2.491 2.491 0 0 0 .355-1.258c0-1.826-2.083-2.886-2.083-3.652s2.083-1.826 2.083-3.652a2.491 2.491 0 0 0-.355-1.257h.404V2.6h.047a.556.556 0 0 0 .499-.6H4.727a.556.556 0 0 0 .499.6h.047v.49h.404a2.491 2.491 0 0 0-.355 1.258c0 1.826 2.083 2.87 2.083 3.652s-2.083 1.826-2.083 3.652a2.491 2.491 0 0 0 .355 1.257h-.404v.491h-.047a.556.556 0 0 0-.499.6h6.546a.556.556 0 0 0-.499-.6ZM8 12.957c-1.565 0-1.975-.585-1.975-1.305a7.183 7.183 0 0 1 1.723-.656c.268 0 .289-3.513 0-3.779l-.988-1h2.454l-.962 1c-.268.286-.275 3.779 0 3.779a7.651 7.651 0 0 1 1.738.656c0 .72-.409 1.305-1.99 1.305Z"/></svg>'},Tu={name:"indeterminant_checkbox_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 3a1.001 1.001 0 0 1 1 1v8a1.001 1.001 0 0 1-1 1H4a1.001 1.001 0 0 1-1-1V4a1.001 1.001 0 0 1 1-1h8m0-1H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM4 4v8h8V4Zm6 6H6V6h4Z"/></svg>'},zu={name:"info_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.415 7.75v3.69H6.376v1.576h4.24V11.44H9.6V6.175H6.376V7.75Zm.276-2.698a1.19 1.19 0 0 0 2.035-.838 1.164 1.164 0 0 0-.346-.846 1.193 1.193 0 0 0-1.693 0 1.158 1.158 0 0 0-.35.846 1.144 1.144 0 0 0 .354.838Z"/></svg>'},Vu={name:"info_circle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm-.697 2.28a.951.951 0 0 1 1.35 0 .928.928 0 0 1 .276.675.952.952 0 0 1-1.905 0 .924.924 0 0 1 .279-.674ZM9.7 12H6.3v-1.264h.833V7.777H6.3V6.513h2.584v4.223H9.7Z"/></svg>'},Lu={name:"italic_i_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16" xml:space="preserve"><path d="M8.99 13.802H4.38l.258-1.133h1.523l2.17-9.367H6.808l.258-1.133h4.61l-.258 1.133H9.895l-2.17 9.367h1.523l-.258 1.133z"/></svg>'},Hu={name:"key_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.045 7.348-.652-.652 1.444-.14Zm-3.818.698-4.912 4.912-.395-.396 4.12-4.12Zm4.734-2.918-1.697.136-.395-.395L11 3.176l.72-.067 1.304 1.304Zm-3.524-.386-.651-.653.791-.791Zm-1.955-.653v2.607l-5.074 5.075L2 12.946l.791.791 1.432.129.326-.326v-.652l.652-.652h.652l.326-.325v-.652h.651l.978-.978.014-.652.312-.326h.652l.652-.651h2.607l1.676-1.676L14 4.089l-1.955-1.955-2.887.28Z"/></svg>'},Pu={name:"laptop_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 11V3H3v8H2v2h12v-2Zm-2 1H5v-1h6Zm1-1.996H4V4h8Z"/></svg>'},Bu={name:"layer_group_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m3.555 9.546.89-.445 5.333 2.667 1.778-.89.889.449v1.33L9.778 13.99l-6.223-3.11Zm0-6.222L6.222 1.99l6.223 3.112v1.333L9.778 7.768l-6.223-3.11Zm0 3.11.89-.444 5.333 2.667 1.778-.89.889.448v1.33L9.778 10.88 3.555 7.768Z"/></svg>'},Nu={name:"lightning_bolt_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4.732 7.953 6.909 2h3.636L8.364 7.013h2.909L4.727 14l2.21-6.049Z"/></svg>'},qu={name:"link_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.465 5.592A2.908 2.908 0 0 1 9.963 7.02l-1.06 1.065c-.053-.103-.095-.192-.144-.276a1.48 1.48 0 0 0-1.277-.769 1.43 1.43 0 0 0-.977.394c-.75.694-1.469 1.421-2.165 2.168a1.431 1.431 0 0 0 .054 2.038 1.507 1.507 0 0 0 1.039.432 1.28 1.28 0 0 0 .953-.417c.103-.11.435-.44.81-.805a3.458 3.458 0 0 0 1.908.188c-1.006 1.035-2.179 2.187-2.996 2.38a2.982 2.982 0 0 1-.693.082 2.91 2.91 0 0 1-2.182-4.842A46.793 46.793 0 0 1 5.53 6.356a2.826 2.826 0 0 1 1.935-.764M10.583 2.5a3.001 3.001 0 0 0-.69.081 10.376 10.376 0 0 0-2.996 2.377 3.474 3.474 0 0 1 .568-.054 3.58 3.58 0 0 1 1.31.249c.38-.332.701-.646.875-.834a1.221 1.221 0 0 1 .913-.395 1.513 1.513 0 0 1 1.074.469 1.433 1.433 0 0 1 .022 2.005c-.7.743-1.42 1.47-2.165 2.167a1.419 1.419 0 0 1-.975.395 1.483 1.483 0 0 1-1.28-.768c-.048-.085-.089-.175-.151-.298L6.043 8.987a2.882 2.882 0 0 0 2.493 1.42 2.808 2.808 0 0 0 1.93-.76 54.2 54.2 0 0 0 2.266-2.266A2.911 2.911 0 0 0 10.583 2.5"/></svg>'},Zu={name:"link_cancel_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9.202 9.45a2.638 2.638 0 0 1 .687 2.519l-1.364.002c.032-.1.062-.183.085-.269a1.343 1.343 0 0 0-.326-1.312 1.297 1.297 0 0 0-.88-.374 37.657 37.657 0 0 0-2.779.002 1.298 1.298 0 0 0-1.273 1.341 1.367 1.367 0 0 0 .39.944 1.162 1.162 0 0 0 .878.344c.137-.005.562-.002 1.036.004a3.137 3.137 0 0 0 1.104 1.344 8.133 8.133 0 0 1-3.45-.395 2.705 2.705 0 0 1-.496-.392A2.64 2.64 0 0 1 4.52 8.702a42.45 42.45 0 0 1 2.951-.003 2.564 2.564 0 0 1 1.731.751m3.984.017a2.723 2.723 0 0 0-.495-.39 9.414 9.414 0 0 0-3.447-.398 3.151 3.151 0 0 1 .4.33 3.247 3.247 0 0 1 .68 1c.457.031.864.035 1.096.027a1.108 1.108 0 0 1 .839.331 1.373 1.373 0 0 1 .389.99 1.3 1.3 0 0 1-1.272 1.3c-.926.028-1.854.033-2.78.002a1.287 1.287 0 0 1-.878-.372 1.345 1.345 0 0 1-.328-1.313c.023-.086.054-.17.093-.289l-1.371.031a2.614 2.614 0 0 0 .688 2.51 2.547 2.547 0 0 0 1.726.751c.968.033 1.94.025 2.908 0a2.641 2.641 0 0 0 1.752-4.51m-2.701-3.208L8.71 4.485l1.775-1.775-.71-.71L8 3.775 6.225 2l-.71.71L7.29 4.485 5.515 6.259l.71.71L8 5.195l1.775 1.774Z"/></svg>'},Uu={name:"list_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 13H2v-2h2Zm10-2H6v2h8ZM4 7H2v2h2Zm10 0H6v2h8ZM4 3H2v2h2Zm10 0H6v2h8Z"/></svg>'},ju={name:"list_tree_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10 5v2h4v2h-4v2h4v2H8V5H5V3h9v2ZM2 5h2V3H2Zm5 6H5v2h2Zm0-4H5v2h2Z"/></svg>'},Gu={name:"list_tree_database_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.953 11.81c.013-.011.032-.02.046-.031v.917c0 .33-.523.678-1.42.953a8.234 8.234 0 0 1-.694.178 16.116 16.116 0 0 1-3.382.328 16.089 16.089 0 0 1-3.38-.328 8.77 8.77 0 0 1-.693-.179c-.898-.274-1.42-.622-1.42-.952v-.917c.012.01.031.02.045.03a2.34 2.34 0 0 0 .332.218l.03.017a4.235 4.235 0 0 0 .46.202l.01.005.1.037c.053.018.11.034.164.05.093.031.186.062.283.09.033.01.064.022.1.031l.058.015c.184.048.378.092.58.132.043.009.084.018.13.026.214.042.438.078.666.11l.134.017c.21.028.425.051.646.072l.104.01c.242.021.487.037.731.049l.166.007c.251.01.504.016.754.016s.501-.007.754-.016l.164-.007c.246-.012.491-.028.734-.048l.102-.011c.22-.02.436-.044.649-.072.044-.006.09-.01.134-.017q.343-.048.664-.11c.046-.008.088-.017.132-.026q.3-.06.577-.13c.02-.007.043-.012.063-.017.034-.009.064-.021.099-.031.098-.028.189-.059.283-.09.052-.017.11-.032.16-.05.035-.012.07-.024.103-.037l.012-.005a4.252 4.252 0 0 0 .457-.202c.013-.006.022-.013.032-.018a2.468 2.468 0 0 0 .33-.216Zm-5.45-2.946c-3.237 0-5.492.767-5.492 1.457 0 .33.523.679 1.42.952a9.998 9.998 0 0 0 .694.179 16.101 16.101 0 0 0 3.378.327 16.12 16.12 0 0 0 3.382-.327 8.892 8.892 0 0 0 .694-.18C13.477 11 14 10.652 14 10.322c0-.69-2.257-1.457-5.497-1.457ZM14 6V5H5V3h2V2H2v1h2v5.581a9.632 9.632 0 0 1 1-.255V6h3v2h6V7H9V6Z"/></svg>'},Wu={name:"lock_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 8V7a3.888 3.888 0 0 0-4-4 3.822 3.822 0 0 0-2.81 1.078A4.349 4.349 0 0 0 4.062 7v1H3v6h10V8ZM6.062 6.986a2.407 2.407 0 0 1 .566-1.516A1.834 1.834 0 0 1 8 5a1.883 1.883 0 0 1 2 2v1H6.062Z"/></svg>'},Ku={name:"magnifying_glass_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m13.073 12.29-2.926-2.926a3.971 3.971 0 1 0-.783.783l2.927 2.926ZM7.01 9.84a2.83 2.83 0 1 1 2.83-2.83 2.833 2.833 0 0 1-2.83 2.83Z"/></svg>'},Xu={name:"markdown_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14.25 3H1.75a.74.74 0 0 0-.75.73v8.54a.74.74 0 0 0 .75.73h12.5a.74.74 0 0 0 .75-.73V3.73a.74.74 0 0 0-.75-.73Zm-6.285 7.059h-.991V7.773L5.982 9.35l-.99-1.577v2.286H4V5.934h.91L5.982 7.51l1.073-1.576h.91Zm2.459.007L8.848 7.945h1.1V5.934h.99v2.01H12Z"/></svg>'},Yu={name:"minus_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 7h8v2H4z"/></svg>'},Ju={name:"minus_wide_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M3 7h10v2H3z"/></svg>'},Qu={name:"mobile_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.462 2.077H4.538A.54.54 0 0 0 4 2.615v10.77a.54.54 0 0 0 .538.538h5.924a.54.54 0 0 0 .538-.538V2.615a.54.54 0 0 0-.538-.538ZM10 12H5V3h5Z"/></svg>'},ep={name:"notebook_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 2h1v3h-1Zm0 8h1V6h-1Zm0 4h1v-3h-1ZM4 7h6V6H4Zm0-2h6V4H4ZM2 2h10v12H2Z"/></svg>'},tp={name:"number_list_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16" xml:space="preserve"><path d="M14 11H6v2h8v-2zm0-4H6v2h8V7zm0-4H6v2h8V3zM1.999 4.644h.73V2.302h-.585v-.271c.295-.05.505-.13.681-.235h.32v2.848h.656v.346H1.999v-.346zM1.804 9.509c.951-.932 1.501-1.521 1.501-2.037 0-.365-.2-.621-.605-.621-.265 0-.496.17-.676.381l-.235-.226c.265-.3.551-.495.961-.495.591 0 .961.375.961.936 0 .621-.561 1.196-1.336 1.987.174-.016.37-.026.535-.026h.956v.355H1.804v-.254zM1.733 13.884l.21-.271c.19.201.44.376.816.376.385 0 .661-.226.661-.581 0-.38-.26-.635-1.021-.635v-.315c.676 0 .906-.261.906-.596 0-.306-.21-.501-.55-.501-.266 0-.491.136-.681.32l-.221-.26c.246-.23.541-.4.916-.4.556 0 .956.295.956.811 0 .386-.23.631-.576.761v.021c.385.09.691.37.691.811 0 .565-.471.91-1.056.91a1.363 1.363 0 0 1-1.051-.451z"/></svg>'},np={name:"paste_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9 5V3H3v6h2v1H2V2h8v3ZM6 6v8h8V6Z"/></svg>'},ip={name:"pencil_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11.413 2.674c.326-.288 1.04-.013 1.807.857.768.869.952 1.61.626 1.898l-1.378 1.218-2.433-2.757Zm-7.381 9.493 2.97-1.396-1.477.254.064-1.459-.48.25.156-1.013-1.754 2.774Zm3.319-1.002L2 13.435 4.917 8.41l3.15-2.78L10.5 8.383Zm4.293-3.866L9.21 4.544c-.177-.202.222-.543.394-.349l2.434 2.756c.175.2-.224.54-.394.348m-.783.7L8.428 5.244c-.178-.201.22-.542.393-.347l2.433 2.755c.176.199-.223.54-.393.347"/></svg>'},op={name:"pot_with_lid_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 4V2H5v2H2v1h12V4ZM6 4V3h4v1Zm-4 9h1v1h10v-1h1V6H2Z"/></svg>'},rp={name:"question_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11.303 5.594a3.294 3.294 0 0 1-.195 1.176 2.63 2.63 0 0 1-.549.885 3.96 3.96 0 0 1-.852.672 7.46 7.46 0 0 1-1.121.54v1.501H6.27V8.15q.467-.125.845-.256a3.199 3.199 0 0 0 .793-.429 2.098 2.098 0 0 0 .608-.612 1.45 1.45 0 0 0 .22-.791 1.042 1.042 0 0 0-.423-.939 2.163 2.163 0 0 0-1.195-.28 3.338 3.338 0 0 0-1.068.204 4.853 4.853 0 0 0-1.09.526h-.263V3.566a8.148 8.148 0 0 1 1.296-.372A8.205 8.205 0 0 1 7.77 3a4.196 4.196 0 0 1 2.579.718 2.241 2.241 0 0 1 .954 1.876ZM8.77 13H6.112v-1.737H8.77Z"/></svg>'},sp={name:"running_arrow_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m14 7.985-8.002 4.013L8 8 5.998 3.987ZM3.995 2.997 2 2l3 6-3 6 2.002-1.005L6.5 8Z"/></svg>'},ap={name:"server_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 3H3v3h10ZM9 5H4V4h5ZM3 7v3h10V7Zm6 2H4V8h5Zm3 4H3v-2h10v1a1 1 0 0 1-1 1Z"/></svg>'},lp={name:"share_nodes_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 10c-.601 0-1.134.27-1.5.69L5.954 8.419a2 2 0 0 0 0-.836l4.544-2.273c.367.42.9.691 1.501.691a2 2 0 1 0-1.955-1.582L5.501 6.691C5.134 6.27 4.6 6 4 6a2 2 0 1 0 0 4c.601 0 1.134-.27 1.5-.69l4.545 2.272A2 2 0 1 0 12 10Z"/></svg>'},cp={name:"shield_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v5.11C2 10.39 8 14 8 14s6-3.281 6-6.89V2Zm4.788 8.2L4 7.388 5.225 6.2l1.553 1.61 4.06-4.01L12 5.013Z"/></svg>'},dp={name:"shield_xmark_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v5.11C2 10.39 8 14 8 14s6-3.281 6-6.89V2Zm9.5 7.346L10.346 10.5 8 8.154 5.654 10.5 4.5 9.346 6.846 7 4.5 4.654 5.654 3.5 8 5.846 10.346 3.5 11.5 4.654 9.154 7Z"/></svg>'},hp={name:"signal_bars_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 14H2V2h2Zm3-9H5v9h2Zm3 3H8v6h2Zm3 3h-2v3h2Z"/></svg>'},up={name:"sine_graph_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 12H2v-1.63a4.61 4.61 0 0 0 1.766-1.967c.636-1.06 1.082-1.705 1.902-1.705s1.266.644 1.902 1.705c.615 1.026 1.312 2.189 2.766 2.189 1.453 0 2.15-1.163 2.764-2.189a6.459 6.459 0 0 1 .9-1.267Zm0-6.054a4.613 4.613 0 0 0-1.764 1.967c-.635 1.061-1.08 1.705-1.9 1.705-.82 0-1.266-.644-1.902-1.705-.615-1.026-1.312-2.189-2.766-2.189S3.517 6.887 2.902 7.913A6.468 6.468 0 0 1 2 9.18V4h12Z"/></svg>'},pp={name:"skip_arrow_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.002 8.29 2 12.304v-8.01ZM14 2h-2v12h2Z"/></svg>'},gp={name:"spinner",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M3.967 7.143h-.762a4.885 4.885 0 0 1 3.938-3.94v.771a4.123 4.123 0 0 0-3.176 3.169ZM8 2v1.875A4.125 4.125 0 1 1 3.875 8H2a6 6 0 1 0 6-6Z"/></svg>'},fp={name:"square_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm4.788 9.2L4 8.387 5.225 7.2l1.553 1.61 4.06-4.01L12 6.013Z"/></svg>'},mp={name:"square_t_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm9.033 4.199-.016-.076a2.34 2.34 0 0 0-.497-1.18 2.108 2.108 0 0 0-1.281-.26h-.56v5.941c0 .552.11.718.176.768a1.793 1.793 0 0 0 .88.196l.09.006V12H6.193v-.405l.09-.007c.59-.046.8-.144.87-.218.06-.06.158-.255.158-.884V4.683h-.565a2.19 2.19 0 0 0-1.274.262 2.015 2.015 0 0 0-.498 1.174l-.015.08H4.49L4.565 4h6.859l.07 2.199Z"/></svg>'},vp={name:"t_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5.684 13v-.729l.221-.018c.764-.058.947-.19.985-.229.026-.026.157-.202.157-.992V4.078H6.48a2.46 2.46 0 0 0-1.477.291 2.262 2.262 0 0 0-.563 1.36l-.038.196h-.797L3.704 3h8.6l.092 2.925h-.784l-.021-.095a2.817 2.817 0 0 0-.589-1.466c-.147-.131-.523-.286-1.48-.286H8.96V11.2c0 .679.138.819.165.84a2.092 2.092 0 0 0 1.01.213l.223.018V13Z"/></svg>'},bp={name:"tablet_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.5 2h-9a.501.501 0 0 0-.5.5v11a.501.501 0 0 0 .5.5h9a.501.501 0 0 0 .5-.5v-11a.501.501 0 0 0-.5-.5ZM8 13.25a.75.75 0 1 1 .75-.75.752.752 0 0 1-.75.75ZM12 11H4V3h8Z"/></svg>'},wp={name:"tag_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16"><path class="cls-1" d="M8.044 3.588 5.23 3 3 5.229l.588 2.816L8.543 13 13 8.543ZM6.5 6.499a1.082 1.082 0 1 1-.013-1.516A1.072 1.072 0 0 1 6.499 6.5Z"/></svg>'},xp={name:"tags_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16"><path class="cls-1" d="M8.044 2.338 5.23 1.75 3 3.979l.588 2.816 4.955 4.955L13 7.293ZM6.5 5.249a1.082 1.082 0 1 1-.013-1.516 1.072 1.072 0 0 1 .013 1.516Zm6.251 4.794L8.543 14.25 4.257 9.964l-.283-1.369 4.569 4.57L12.207 9.5Z"/></svg>'},yp={name:"target_crosshairs_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 6.01a2 2 0 1 0 2 2 2 2 0 0 0-2-2Zm4.9.99A5.005 5.005 0 0 0 9 3.1V1H7v2.1A5.005 5.005 0 0 0 3.1 7H1v2h2.1A5.005 5.005 0 0 0 7 12.9V15h2v-2.1A5.005 5.005 0 0 0 12.9 9H15V7ZM8 12a4 4 0 1 1 4-4 4.005 4.005 0 0 1-4 4Z"/></svg>'},Cp={name:"target_crosshairs_progress_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M15 7v2h-2.1A5.005 5.005 0 0 1 9 12.9V15H7v-2.108a4.99 4.99 0 0 1-3.898-3.985l-1.52.583 2.003-4 1.998 4L4.11 8.9A3.999 3.999 0 1 0 7 4.13V1h2v2.1A5.005 5.005 0 0 1 12.9 7Zm-5 1.01a2 2 0 1 1-2-2 2 2 0 0 1 2 2Z"/></svg>'},kp={name:"three_dots_line_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 6.5A1.5 1.5 0 1 1 6.5 8 1.5 1.5 0 0 1 8 6.5ZM.5 8A1.5 1.5 0 1 0 2 6.5 1.5 1.5 0 0 0 .5 8Zm12 0A1.5 1.5 0 1 0 14 6.5 1.5 1.5 0 0 0 12.5 8Z"/></svg>'},$p={name:"three_vertical_lines_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 3h2v10h-2zM7 3h2v10H7zM3 3h2v10H3z"/></svg>'},_p={name:"thumbtack_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m10 7-.625-5H10V1H5v1h.625L5 7a2 2 0 0 0-2 2h4v4l.5 2 .5-2V9h4a2 2 0 0 0-2-2Z"/></svg>'},Sp={name:"tile_size_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 8h6v6H2Zm0-6v5h2V4h8v8H9v2h5V2Z"/></svg>'},Ip={name:"times_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 9.103 5.102 12 4 10.897 6.898 8 4 5.103 5.102 4 8 6.897 10.898 4 12 5.103 9.102 8 12 10.897 10.898 12 8 9.103z"/></svg>'},Mp={name:"trash_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10 4V2H6v2H3v2h1v8h8V6h1V4Zm-3 9H6V6h1Zm2-9H7V3h2Zm1 9H9V6h1Z"/></svg>'},Ap={name:"triangle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2 2 14h12Zm0 4.875 2.438 4.875H5.585Z"/></svg>'},Rp={name:"triangle_filled_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2 2 14h12L8 2Z"/></svg>'},Ep={name:"triangle_two_lines_horizontal",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M3.625 8 8 2l4.375 6h-8.75ZM14 12H2v2h12v-2Zm0-3H2v2h12V9Z"/></svg>'},Dp={name:"true_false_rectangle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.4 3.003H2.6a1.6 1.6 0 0 0-1.6 1.6v6.8a1.595 1.595 0 0 0 1.6 1.594h10.8a1.595 1.595 0 0 0 1.6-1.594v-6.8a1.6 1.6 0 0 0-1.6-1.6ZM7.587 6.58H6.141v3.736H4.946V6.58H3.5v-.896h4.087Zm4.913 0h-2.13v.862h1.974v.896H10.37v1.978H9.181V5.684H12.5Z"/></svg>'},Fp={name:"two_squares_in_brackets",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 4h5v5H4V4Zm6 3v3H7v2h5V7h-2ZM5 3V2H2v12h3v-1H3V3h2Zm8-1h-2v1h2v10h-2v1h3V2h-1Z"/></svg>'},Op={name:"two_triangles_between_lines",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M1.11 2.11v12h2v-12h-2Zm12 0v12h2v-12h-2Zm-6 8.974-3-3 3-3v6Zm1.925-5.948 3 3-3 3v-6Z"/></svg>'},Tp={name:"unlink_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.126 8.585c-.581.123-1.117.241-1.362.303a1.547 1.547 0 0 0-1.182 1.51l.01.155.021.193a1.69 1.69 0 0 0 .216.54l.02.038.105.134.127.144.054.047a1.509 1.509 0 0 0 .992.36h.049a1.306 1.306 0 0 0 .224-.034l.03.015.006-.001c.463-.088.925-.186 1.387-.287l.343 1.538c-.488.11-.976.221-1.467.314a3.112 3.112 0 0 1-.571.053 3.148 3.148 0 0 1-2.99-2.258l-.011-.045a3.04 3.04 0 0 1-.076-.35 3.127 3.127 0 0 1-.03-.206l-.004-.089a3.112 3.112 0 0 1-.016-.336A3.164 3.164 0 0 1 4.35 7.356c.272-.068.808-.203.802-.206l.623-.137Zm4.31-1.544-.353 1.575c.737.176 1.38.334 1.413.346a1.514 1.514 0 0 1 .789.768l.029.066.053.185.038.164.002.045a1.667 1.667 0 0 1-.035.58l-.064.185-.056.142a1.546 1.546 0 0 1-1.4.893 1.661 1.661 0 0 1-.313-.03 54.946 54.946 0 0 1-1.15-.24l-.347 1.55.406.097-.013-.017c.276.057.55.118.826.173a3.02 3.02 0 0 0 .578.056 3.188 3.188 0 0 0 2.811-1.74 3.018 3.018 0 0 0 .129-.311l.033-.083.061-.197a3.047 3.047 0 0 0 .082-.351l.008-.044a3.132 3.132 0 0 0-2.281-3.513c-.297-.077-.777-.19-1.245-.299M7.932 2.393 6.875 6.075h.75l.3 3.032 1.2-3.782h-.75Z"/></svg>'},zp={name:"unlock_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.062 8V5.986a2.407 2.407 0 0 1 .566-1.516A1.834 1.834 0 0 1 8 4a1.883 1.883 0 0 1 2 2h2a3.888 3.888 0 0 0-4-4 3.822 3.822 0 0 0-2.81 1.078A4.349 4.349 0 0 0 4.062 6v2H3v6h10V8Z"/></svg>'},Vp={name:"up_right_from_square_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 10.828V12H4V8h1.172l2-2H2v8h8V8.828l-2 2Z"/><path class="cls-1" d="m14.042 1.97-2.063 6.281-.49-2.344-4.117 4.122-1.414-1.414 4.102-4.102-2.324-.504 6.306-2.038z"/></svg>'},Lp={name:"upload_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 9v5H2V9h1v4h10V9ZM7.982 2 5 7.9l2.004-1.312L7 11h2V6.613L11 7.9Z"/></svg>'},Hp={name:"user_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8.004 2a2.18 2.18 0 0 1 2.184 2.182v1.09c.647 0 .378.932 0 1.455a4.275 4.275 0 0 1-.335.364 8.55 8.55 0 0 1-.31.742l.208 1.076h.437l2.75 1.527A2.148 2.148 0 0 1 14 12.291V14H2v-1.673a2.163 2.163 0 0 1 1.063-1.869l2.758-1.55h.437l.21-1.068a8.52 8.52 0 0 1-.312-.749 4.275 4.275 0 0 1-.335-.364c-.378-.523-.647-1.454 0-1.454v-1.09A2.18 2.18 0 0 1 8.004 2"/></svg>'},Pp={name:"watch_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.57 7.28-.06.013a4.556 4.556 0 0 0-1.38-2.609V3.44a.481.481 0 0 0-.48-.48h-.48V2H5.85v.96h-.48a.481.481 0 0 0-.48.48v1.24a4.545 4.545 0 0 0 0 6.64v1.24a.481.481 0 0 0 .48.48h.48V14h4.32v-.96h.48a.481.481 0 0 0 .48-.48v-1.24a4.547 4.547 0 0 0 1.379-2.612l.061.012a.481.481 0 0 0 .48-.48v-.48a.481.481 0 0 0-.48-.48Zm-2.3 2.662a1.59 1.59 0 0 0-.182-.26L8.747 8.338a.785.785 0 0 0 0-.666c.132-.133.894-.899.965-1a1.216 1.216 0 0 0 .14-.485 1.004 1.004 0 0 0-.515.157l-.955.957a.784.784 0 1 0 0 1.408c.163.167.956.974 1.236 1.254a1.477 1.477 0 0 0 .36.276 3.055 3.055 0 1 1 .291-.297Z"/></svg>'},Bp={name:"waveform_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9.77 11.225c-1.582 0-2.076-1.262-2.512-2.376l-.17-.426a26.242 26.242 0 0 1-.218-.595c-.32-.9-.41-1.046-.652-1.046-.24 0-.308.065-.612.88-.088.237-.188.504-.317.801l-.098.238c-.486 1.178-1.037 2.513-2.747 2.513H2V9.221h.444c.318 0 .48-.316.9-1.292l.133-.307c.06-.148.121-.304.181-.457.435-1.116.927-2.382 2.56-2.382 1.59 0 2.063 1.274 2.48 2.398l.168.443c.082.205.155.396.221.572.345.905.427 1.03.684 1.03.259 0 .409-.317.742-1.157.08-.201.167-.42.266-.652l.097-.228c.477-1.127 1.016-2.405 2.668-2.412l.444-.002L14 6.782h-.447c-.367 0-.506.245-.994 1.387 0 0-.179.434-.238.584-.433 1.101-.973 2.472-2.55 2.472Z"/></svg>'},Np={name:"webvi_custom_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm4.089 2.526h-1.868a5.598 5.598 0 0 0-.854-1.712 5.363 5.363 0 0 1 2.722 1.712Zm-2.722 8.66a5.599 5.599 0 0 0 .854-1.712h1.868a5.363 5.363 0 0 1-2.722 1.712Zm3.181-2.344h-2.146a10.644 10.644 0 0 0 .208-1.187L9.923 10c-.05.294-.106.58-.176.843h-1.51l-1.263.632h2.583C9.145 12.647 8.554 13.368 8 13.368c-.517 0-1.065-.633-1.47-1.672l-.56.28a5.018 5.018 0 0 0 .663 1.21 5.363 5.363 0 0 1-2.722-1.712h.317a.955.955 0 0 1-.017-.17v-.462h-.76a5.33 5.33 0 0 1-.804-2.526h1.564v-.632H2.646a5.33 5.33 0 0 1 .805-2.526h.759V4.69a.95.95 0 0 1 .016-.164h-.316a5.363 5.363 0 0 1 2.722-1.712 5.017 5.017 0 0 0-.663 1.207l.56.28c.406-1.037.953-1.67 1.47-1.67.554 0 1.145.722 1.557 1.895H6.98l1.261.632h1.507c.07.263.126.548.176.842l.687.344a10.66 10.66 0 0 0-.208-1.186h2.146a5.33 5.33 0 0 1 .804 2.526h-.67a.92.92 0 0 1-.001.632h.671a5.33 5.33 0 0 1-.804 2.526ZM12.105 8a.326.326 0 0 1-.19.296l-6.598 3.3-.148.036a.327.327 0 0 1-.327-.328V4.69a.327.327 0 0 1 .492-.281l6.595 3.302a.326.326 0 0 1 .176.29Z"/></svg>'},qp={name:"webvi_host_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm4.09 2.526H10.22a5.6 5.6 0 0 0-.854-1.712 5.364 5.364 0 0 1 2.722 1.712Zm-2.723 8.66a5.6 5.6 0 0 0 .854-1.712h1.868a5.363 5.363 0 0 1-2.722 1.712Zm3.181-2.344h-2.146a10.657 10.657 0 0 0 .208-1.187L9.923 10a9.85 9.85 0 0 1-.176.843h-1.51l-1.263.632h2.583C9.145 12.647 8.554 13.368 8 13.368c-.517 0-1.064-.633-1.47-1.672l-.56.28a5.02 5.02 0 0 0 .663 1.21 5.363 5.363 0 0 1-2.722-1.712h.317a.96.96 0 0 1-.017-.17v-.462h-.76a5.33 5.33 0 0 1-.804-2.526H4.21v-.632H2.647a5.33 5.33 0 0 1 .805-2.526h.759V4.69a.95.95 0 0 1 .016-.164h-.316a5.364 5.364 0 0 1 2.722-1.712 5.02 5.02 0 0 0-.663 1.207l.56.28c.406-1.037.953-1.67 1.47-1.67.554 0 1.145.722 1.557 1.895H6.98l1.262.632h1.506c.07.263.126.548.176.842l.687.344a10.646 10.646 0 0 0-.208-1.186h2.146a5.33 5.33 0 0 1 .804 2.526h-.67a.92.92 0 0 1-.001.632h.671a5.33 5.33 0 0 1-.804 2.526Zm-.619-3.131L5.334 4.409a.327.327 0 0 0-.492.281v6.613a.327.327 0 0 0 .327.328l.148-.035 6.598-3.3a.326.326 0 0 0 .014-.585Zm-6.087 2.505V5.78L10.274 8Z"/></svg>'},Zp={name:"window_code_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm11 11H3V5h10ZM4 9.135l2.698-1.118v.75l-1.588.65 1.588.646v.75l-2.694-1.12Zm4.42-1.49h.792l-1.565 3.71h-.783ZM12 9.135v.557l-2.694 1.12v-.75l.062-.024 1.526-.626-1.588-.648v-.747Z"/></svg>'},Up={name:"window_text_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm11 11H3V5h10ZM7 8H4V6h3Zm5 2H4V9h8Zm0 2H4v-1h8Z"/></svg>'},jp={name:"wrench_hammer_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.286 11.714-5.791-5.79a2.504 2.504 0 0 0 .17-.755 2.149 2.149 0 0 0-.095-.814 2.12 2.12 0 0 0-.55-.904 2.328 2.328 0 0 0-1.76-.685h-.045a2.104 2.104 0 0 0-.718.155l1.102 1.104.32.32.244.245a1.864 1.864 0 0 1-.22.854 1.043 1.043 0 0 1-.114.145 1.648 1.648 0 0 1-1.003.335L2.61 4.704l-.449-.449a2.074 2.074 0 0 0-.135.545l-.015.105a2.337 2.337 0 0 0 .384 1.518 2.51 2.51 0 0 0 .295.36 2.205 2.205 0 0 0 1.576.65 2.453 2.453 0 0 0 .898-.175l4.793 4.796 1.203 1.2h.668l.663-.665v-.67ZM5.75 8.908l1.367 1.367-2.988 2.987h-.923l-.45-.45v-.916ZM14 5.906l-1.81 1.809-1.298-1.216-1.38 1.38-1.367-1.365 1.374-1.382-1.622-1.62.683-.774 2.252.45Z"/></svg>'},Gp={name:"xmark_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 4.667 9.667 7.999 13 11.333 11.333 13 8 9.667 4.667 13 3 11.333 6.333 8 3 4.667 4.667 3 8 6.333 11.333 3Z"/></svg>'},Wp={name:"xmark_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8.033 14.026 4.9 10.866 6.277 9.53l1.744 1.81 4.562-4.507 1.307 1.363Zm1.155-10.68-1.321-1.32-2.312 2.311-2.311-2.311-1.321 1.32 2.311 2.312L1.923 7.97l1.32 1.32 2.312-2.31 2.312 2.31 1.32-1.32-2.31-2.312Z"/></svg>'},Kp=G`
|
|
2278
|
+
class Ud extends In{constructor(){super(...arguments),this.appearance=ud,this.contentHidden=!1}}e([se],Ud.prototype,"appearance",void 0),e([se({attribute:"appearance-variant"})],Ud.prototype,"appearanceVariant",void 0),e([se({attribute:"content-hidden",mode:"boolean"})],Ud.prototype,"contentHidden",void 0)
|
|
2279
|
+
const jd=Ud.compose({baseName:"button",baseClass:In,template:bn,styles:Zd,shadowOptions:{delegatesFocus:!0}})
|
|
2280
|
+
mi.getOrCreate().withPrefix("nimble").register(jd())
|
|
2281
|
+
const Gd=mi.tagFor(Ud),Wd={name:"add_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 7H9V3H7v4H3v2h4v4h2V9h4V7z"/></svg>'},Kd={name:"arrow_down_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" xml:space="preserve"><path d="M9 2v6.207l2.5-1.188L8.021 14 4.5 7.019 7 8.207V2h2z"/></svg>'},Xd={name:"arrow_down_right_and_arrow_up_left_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m13.171 13.933-2.276-2.247-.447 2.284-1.732-5.246 5.217 1.753-2.284.456 2.291 2.26ZM2 2.746l2.29 2.261-2.283.456 5.217 1.753L5.492 1.97l-.447 2.284-2.276-2.247Z"/></svg>'},Yd={name:"arrow_expander_down_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m3.5 4.737 1.11-.732 3.357 5.472L11.397 4l1.103.743L7.955 12 3.5 4.737z"/></svg>'},Jd={name:"arrow_expander_left_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m11.263 3.5.732 1.11-5.472 3.357L12 11.397l-.743 1.103L4 7.955 11.263 3.5z"/></svg>'},Qd={name:"arrow_expander_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m4.737 12.5-.732-1.11 5.472-3.357L4 4.603 4.743 3.5 12 8.045 4.737 12.5z"/></svg>'},eh={name:"arrow_expander_up_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.5 11.263-1.11.732-3.357-5.472L4.603 12 3.5 11.257 8.045 4l4.455 7.263z"/></svg>'},th={name:"arrow_left_from_line_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 14h2V2h-2ZM2 7.982 7.9 5 6.588 7.004 11 7v2H6.613L7.9 11Z"/></svg>'},nh={name:"arrow_partial_rotate_left_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 11.988a3.086 3.086 0 0 0 3.143-3.025 3.08 3.08 0 0 0-3.085-3.02v.088l.826 2.067-5.598-2.796L8.884 2.5l-.742 1.932a4.619 4.619 0 0 1 4.572 4.53A4.629 4.629 0 0 1 8 13.5Z"/></svg>'},ih={name:"arrow_right_to_line_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 14h2V2h-2Zm-6.9-3 1.287-2H2V7l4.412.004L5.1 5 11 7.982Z"/></svg>'},oh={name:"arrow_rotate_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8.9 2.773v1.715a3.366 3.366 0 0 1 3.3 3.428 3.366 3.366 0 0 1-3.3 3.429 3.36 3.36 0 0 1-3.293-3.366h.095l2.255.901-3.05-6.107L1.85 8.88l2.108-.808A5.039 5.039 0 0 0 8.9 13.059a5.05 5.05 0 0 0 4.95-5.143A5.05 5.05 0 0 0 8.9 2.773Z"/></svg>'},rh={name:"arrow_u_rotate_left_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m8.857 9.453-2.571-1.68v.908a3 3 0 0 0 3 3 3 3 0 0 0 3-3V3.11H14v5.571a4.714 4.714 0 0 1-4.714 4.715A4.714 4.714 0 0 1 4.57 8.68v-.908L2 9.453l3.403-6.849Z"/></svg>'},sh={name:"arrow_up_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" xml:space="preserve"><path d="M7 14V7.793L4.5 8.981 7.979 2 11.5 8.981 9 7.793V14H7z"/></svg>'},ah={name:"arrow_up_left_and_arrow_down_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m4.195 4.977-.451 2.296L2 2l5.256 1.762-2.301.458 6.849 6.803.452-2.296L14 14l-5.256-1.762 2.301-.458-6.85-6.803z"/></svg>'},lh={name:"arrows_maximize_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.26 8.735 14 14l-5.25-1.763 2.295-.457-3.03-3.022L8 8.742l-.015.016.015.014-3.023 3.023 2.296.45L2 13.985l1.762-5.243.458 2.295 3.015-3.015.007-.007L7.258 8l-.016-.015L7.227 8l-3.03-3.03-.457 2.295L2 2l5.25 1.762-2.295.458 3.03 3.022.015.016.015-.016L8 7.227l3.023-3.022-2.296-.45L14 2.015l-1.762 5.243-.458-2.295L8.742 8l.016.015L8.773 8l3.03 3.03.457-2.295z"/></svg>'},ch={name:"arrows_repeat_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8.75 11.75 10 14l-6-3 6-3-1.25 2.25ZM8 11h1a4 4 0 0 0 4-4M7.25 5.75 6 8l6-3-6-3 1.25 2.25ZM8 5H7a4 4 0 0 0-4 4"/></svg>'},dh={name:"bars_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 13v-2h12v2Zm0-4V7h12v2Zm0-4V3h12v2Z"/></svg>'},hh={name:"bell_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 14a2.05 2.05 0 0 1-2-2h4a2.05 2.05 0 0 1-2 2Zm-5.25-3s0-.746.5-.746h.065c.935 0 1.435-4.918 1.435-4.918 0-.504.25-.504.25-.504h.067c.075-.037.183-.143.183-.463v-.484c.105-.842.953-1.331 2.25-1.43v-.262c0-.081.09-.15.219-.193h.562c.129.043.219.112.219.193v.263c1.297.098 2.145.587 2.25 1.43v.483c0 .32.108.426.183.463H11s.25 0 .25.483v.02s.5 4.92 1.5 4.92c.5 0 .5.745.5.745Z"/></svg>'},uh={name:"bell_and_comment_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.836 4.75H9.57a.71.71 0 0 0-.71.71v2.032a.71.71 0 0 0 .71.711h.356L9.57 9.625l2.488-1.422h1.778a.71.71 0 0 0 .71-.71V5.46a.71.71 0 0 0-.71-.711ZM8.196 11H2.75s0-.746.5-.746h.065c.935 0 1.435-4.918 1.435-4.918 0-.504.25-.504.25-.504h.067c.075-.037.183-.143.183-.463v-.484c.105-.842.953-1.331 2.25-1.43v-.262c0-.081.09-.15.219-.193h.562c.129.043.219.112.219.193v.263c1.224.092 2.04.537 2.217 1.294H9.57a1.713 1.713 0 0 0-1.71 1.71v2.032a1.712 1.712 0 0 0 .844 1.475ZM6 12h4a2.05 2.05 0 0 1-2 2 2.05 2.05 0 0 1-2-2Zm7.25-1H9.18l2.868-1.64c.198.527.431.894.702.894.5 0 .5.746.5.746Z"/></svg>'},ph={name:"bell_circle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.042 11h2a1 1 0 0 1-2 0Zm4.5-1h-7s0-.497.333-.497h.043c.624 0 .957-3.28.957-3.28 0-.335.167-.335.167-.335h.044c.05-.025.122-.095.122-.309v-.322c.07-.561.636-.888 1.5-.953v-.175c0-.054.06-.1.146-.129h.375c.086.029.146.075.146.129v.175c.865.065 1.43.392 1.5.953v.322c0 .214.072.284.122.309h.045s.166 0 .166.322v.014s.334 3.279 1 3.279c.334 0 .334.497.334.497Zm-3.5-7.5a5.5 5.5 0 1 1-5.5 5.5 5.506 5.506 0 0 1 5.5-5.5m0-1a6.5 6.5 0 1 0 6.5 6.5 6.5 6.5 0 0 0-6.5-6.5Z"/></svg>'},gh={name:"bell_solid_circle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M1.5 8A6.5 6.5 0 0 0 8 14.5 6.5 6.5 0 0 0 14.5 8 6.5 6.5 0 0 0 8 1.5 6.5 6.5 0 0 0 1.5 8ZM8 12a1.025 1.025 0 0 1-1-1h2a1.025 1.025 0 0 1-1 1Zm-3.5-2s0-.497.333-.497h.043c.624 0 .957-3.28.957-3.28 0-.335.167-.335.167-.335h.045c.05-.025.122-.095.122-.309v-.322c.07-.561.635-.888 1.5-.953v-.175c0-.054.06-.1.145-.129h.376c.085.029.145.075.145.129v.175c.865.065 1.43.392 1.5.953v.322c0 .214.073.284.122.309H10s.167 0 .167.322v.014s.333 3.279 1 3.279c.333 0 .333.497.333.497Z"/></svg>'},fh={name:"block_with_ribbon_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v10h4.762A4.496 4.496 0 0 1 13 5.762V2Zm12 7.5a3.5 3.5 0 1 0-6 2.442V14l2.5-1.667L13 14v-2.058A3.485 3.485 0 0 0 14 9.5ZM10.5 8A1.5 1.5 0 1 1 9 9.5 1.5 1.5 0 0 1 10.5 8Z"/></svg>'},mh={name:"bold_b_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16" xml:space="preserve"><path d="M12.981 10.536c0 .562-.113 1.065-.34 1.508s-.538.81-.934 1.102a4.337 4.337 0 0 1-1.512.734c-.55.146-1.246.219-2.09.219H3.028V2.466h4.516c.938 0 1.624.031 2.059.094a4.2 4.2 0 0 1 1.293.414c.442.224.772.524.988.902.216.378.324.809.324 1.293 0 .562-.148 1.059-.445 1.488s-.716.765-1.258 1.004v.062c.76.151 1.363.464 1.809.938s.667 1.099.667 1.875zM9.137 5.755c0-.192-.048-.386-.145-.578-.097-.192-.267-.336-.512-.43a2.482 2.482 0 0 0-.815-.137 67.472 67.472 0 0 0-1.372-.011h-.281V7.06h.469c.474 0 .877-.008 1.211-.023.333-.016.596-.068.789-.157.271-.12.448-.274.531-.465.083-.19.125-.41.125-.66zm.727 4.734c0-.37-.071-.655-.214-.855s-.387-.351-.73-.449c-.233-.068-.556-.105-.966-.11s-.84-.008-1.287-.008h-.655v2.898h.218c.842 0 1.445-.003 1.809-.008a2.652 2.652 0 0 0 1.006-.203c.312-.13.526-.304.643-.52a1.53 1.53 0 0 0 .176-.745z"/></svg>'},vh={name:"book_magnifying_glass_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6 10c0-.347.058-.678.142-1H5V8h1.556c.22-.378.498-.714.826-1H5V6h5c.732 0 1.41.212 2 .556V2H3v11h4.382A3.975 3.975 0 0 1 6 10ZM5 4h5v1H5V4Z"/><path class="cls-1" d="m9.99 7.01-.076.002a3 3 0 1 0 1.799 5.452l1.593 1.53.69-.725-1.58-1.516a2.973 2.973 0 0 0 .57-1.816A3 3 0 0 0 9.99 7.01ZM10 12c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2Z"/></svg>'},bh={name:"calendar_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 4.023V2.977A.976.976 0 0 1 4.977 2h.046A.976.976 0 0 1 6 2.977v1.046A.977.977 0 0 1 5.023 5h-.046A.977.977 0 0 1 4 4.023ZM13 4v.023A1.98 1.98 0 0 1 11.023 6h-.046A1.98 1.98 0 0 1 9 4.023V4H7v.023A1.98 1.98 0 0 1 5.023 6h-.046A1.98 1.98 0 0 1 3 4.023V4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1Zm-7 8H4v-1h2Zm.001-1.999H4V9h2.001Zm0-2.001H4V7h2.001ZM9 12H7v-1h2Zm0-1.999H7V9h2ZM9 8H7V7h2Zm3 4h-2v-1h2Zm.001-1.999H10V9h2.001Zm0-2.001H10V7h2.001ZM10 4.023V2.977A.976.976 0 0 1 10.977 2h.046a.976.976 0 0 1 .977.977v1.046a.977.977 0 0 1-.977.977h-.046A.977.977 0 0 1 10 4.023Z"/></svg>'},wh={name:"chart_diagram_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 10V7H8V5h1V2H6v3h1v2H4v3H3v3h3v-3H5V8h5v2H9v3h3v-3Z"/></svg>'},xh={name:"chart_diagram_child_focus_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 10V7H8V5h1V2H6v3h1v2H3v3H2v3h3v-3H4V8h3v2H6v3h3v-3H8V8h3v2h-1v3h3v-3Zm-8 2H3v-1h1Zm4 0H7v-1h1Zm4 0h-1v-1h1Z"/></svg>'},yh={name:"chart_diagram_parent_focus_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 10V7H8V5h1V2H6v3h1v2H3v3H2v3h3v-3H4V8h3v2H6v3h3v-3H8V8h3v2h-1v3h3v-3ZM7 4V3h1v1Z"/></svg>'},Ch={name:"chart_diagram_parent_focus_two_child_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 10V7H8V5h1V2H6v3h1v2H4v3H3v3h3v-3H5V8h5v2H9v3h3v-3Zm-6 2H4v-1h1Zm6 0h-1v-1h1Z"/></svg>'},kh={name:"check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 5.287 6.182 12 3 8.867l1.363-1.343L6.24 9.37 11.693 4Z"/></svg>'},$h={name:"check_dot_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><circle class="cls-1" cx="12.5" cy="11.5" r="1.5"/><path class="cls-2" d="m14 4.693-8.182 8.182L2 9.057 3.636 7.42l2.25 2.25 6.546-6.545Z"/></svg>'},_h={name:"check_large_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m14 4.693-8.182 8.182L2 9.057 3.636 7.42l2.25 2.25 6.546-6.545L14 4.693Z"/></svg>'},Sh={name:"circle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm0 9.429A3.429 3.429 0 1 1 11.429 8 3.429 3.429 0 0 1 8 11.429Z"/></svg>'},Ih={name:"circle_filled_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><circle class="cls-1" cx="8" cy="8" r="4"/></svg>'},Mh={name:"circle_broken_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7 14A6.1 6.1 0 0 1 7 2v2.686a3.475 3.475 0 0 0 0 6.628ZM9 2v2.686a3.475 3.475 0 0 1 0 6.628V14A6.1 6.1 0 0 0 9 2Z"/></svg>'},Ah={name:"circle_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm-1.212 9.2L4 8.388 5.225 7.2l1.553 1.61 4.06-4.01L12 6.013Z"/></svg>'},Rh={name:"circle_partial_broken_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9 2v2.686a3.475 3.475 0 0 1 0 6.628V14A6.1 6.1 0 0 0 9 2Z"/><path class="cls-2" d="M7 11.314a3.475 3.475 0 0 1 0-6.628V2a6.1 6.1 0 0 0 0 12Z"/></svg>'},Eh={name:"circle_slash_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm.075 1.714a4.281 4.281 0 0 1 3.573 6.647L5.714 4.427a4.262 4.262 0 0 1 2.36-.713ZM3.789 8a4.261 4.261 0 0 1 .713-2.36l5.934 5.933A4.281 4.281 0 0 1 3.789 8Z"/></svg>'},Dh={name:"circle_x_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm.075 1.714a4.263 4.263 0 0 1 2.409.743l-2.37 2.37-2.4-2.4a4.262 4.262 0 0 1 2.36-.713ZM4.502 5.64l2.4 2.4-2.37 2.37a4.273 4.273 0 0 1-.03-4.77Zm3.573 6.647a4.256 4.256 0 0 1-2.31-.685l2.349-2.35 2.322 2.322a4.261 4.261 0 0 1-2.361.713Zm3.573-1.925L9.326 8.039l2.35-2.349a4.251 4.251 0 0 1-.028 4.67Z"/></svg>'},Fh={name:"clipboard_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 5H5a2 2 0 0 1 2-2V2a1 1 0 0 1 2 0v1a2 2 0 0 1 2 2Zm1-2v9H4V3H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1Zm-2 4H5v1h5ZM8 9H5v1h3Z"/></svg>'},Oh={name:"clock_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6m.576 4.87 1.555-1.557a1.635 1.635 0 0 1 .84-.256 1.979 1.979 0 0 1-.23.791c-.115.163-1.356 1.41-1.571 1.626a1.278 1.278 0 0 1 0 1.085l2.376 2.38a1.597 1.597 0 0 1 .458 1.072 1.621 1.621 0 0 1-1.222-.613c-.456-.456-1.94-1.963-2.207-2.235a1.275 1.275 0 1 1 0-2.293"/></svg>'},Th={name:"clock_cog_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m8.108 7.392.955-.957a1.004 1.004 0 0 1 .516-.157 1.215 1.215 0 0 1-.14.486c-.072.1-.834.866-.966.999a.785.785 0 0 1 0 .666l1.341 1.344a.981.981 0 0 1 .281.658.996.996 0 0 1-.75-.376c-.28-.28-1.073-1.088-1.237-1.255a.783.783 0 1 1 0-1.408m5.69 2.292L14 7.324l-1.327-.113a4.76 4.76 0 0 0-.402-1.26l1.02-.86-1.527-1.811-1.019.86a4.726 4.726 0 0 0-.563-.344 4.61 4.61 0 0 0-.612-.265l.114-1.329L7.324 2l-.113 1.329a4.77 4.77 0 0 0-1.26.401l-.86-1.02L3.28 4.237l.858 1.02A4.771 4.771 0 0 0 3.53 6.43l-1.329-.114L2 8.676l1.329.114a4.69 4.69 0 0 0 .401 1.26l-1.02.86 1.526 1.811 1.02-.859a4.666 4.666 0 0 0 1.175.608l-.113 1.33 2.358.2.114-1.328a4.688 4.688 0 0 0 1.26-.4l.86 1.02 1.81-1.527-.858-1.02a4.687 4.687 0 0 0 .608-1.175ZM8 11.45A3.45 3.45 0 1 1 11.45 8 3.45 3.45 0 0 1 8 11.45Z"/></svg>'},zh={name:"clock_exclamation_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2.821 5.114h1.357V6H2.82v-.886ZM2.798 1l.155 3.56h1.094L4.202 1H2.798Zm7.481 2.575h.001l-.013-.007a4.92 4.92 0 0 0-.606-.262 5.015 5.015 0 0 0-.523-.163 4.948 4.948 0 0 0-.286-.055A4.654 4.654 0 0 0 8 3c-.016 0-.03.004-.045.005a4.706 4.706 0 0 0-.785.079c-.097.016-.194.03-.29.052a5.078 5.078 0 0 0-.575.179c-.48.174-.907.438-1.305.74V7H3.109l-.017.092a4.903 4.903 0 0 0-.088.87C3.004 7.974 3 7.986 3 8c0 .293.036.575.088.852.016.096.033.19.055.285.045.182.101.359.165.532.074.206.16.403.259.595l.007.016h.001c.83 1.608 2.49 2.72 4.426 2.72C10.762 13 13 10.762 13 8c0-1.935-1.112-3.594-2.72-4.425Zm-.275 7.041c-.38-.38-1.454-1.473-1.675-1.699a1.06 1.06 0 0 1-1.523-.953 1.06 1.06 0 0 1 1.523-.954l1.293-1.296c.117-.117.509-.213.7-.213 0 .128-.085.51-.191.658-.097.136-1.128 1.173-1.308 1.353a1.064 1.064 0 0 1 0 .903l1.816 1.82s.445.466.382.89c-.297 0-.594-.085-1.017-.509Z"/></svg>'},Vh={name:"clock_triangle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 3a4.951 4.951 0 0 0-2.152.505L7.096 6H3.422A4.997 4.997 0 1 0 8 3Zm2.003 7.616a453.75 453.75 0 0 1-1.675-1.7 1.061 1.061 0 1 1 0-1.907l1.294-1.297a1.36 1.36 0 0 1 .699-.212 1.646 1.646 0 0 1-.19.658c-.097.136-1.13 1.173-1.309 1.353a1.063 1.063 0 0 1 0 .903l1.817 1.82a1.33 1.33 0 0 1 .381.891 1.35 1.35 0 0 1-1.017-.51Z"/><path class="cls-2" d="M5.477 5H1.522L3.5 1.045 5.477 5z"/></svg>'},Lh={name:"clone_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5 5h5V2H2v8h3Zm1 1v8h8V6Z"/></svg>'},Hh={name:"cloud_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5.08 11.977a5.123 5.123 0 0 1-1.295-.2C2.754 11.46 1.883 10.2 1.883 9.022a2.963 2.963 0 0 1 2.63-2.937A4.203 4.203 0 0 1 8.432 3.48a4.254 4.254 0 0 1 4.249 4.17 2.251 2.251 0 0 1 1.437 2.09 2.24 2.24 0 0 1-2.238 2.237l-4.947.003c-1.01 0-1.79-.001-1.853-.003Zm-.228-4.573c-.899 0-1.63.725-1.63 1.618 0 .842.702 1.61 1.474 1.61l7.183.007a.9.9 0 0 0 0-1.799.883.883 0 0 0-.337.067l-.493.202.159-.508a2.914 2.914 0 0 0-2.777-3.783 2.897 2.897 0 0 0-2.868 2.436l-.044.268-.264-.067a1.641 1.641 0 0 0-.403-.051Z"/></svg>'},Ph={name:"cloud_upload_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m8.476 7.298-1.927 3.848 1.48-.568v3.407h.948v-3.407l1.42.568ZM15 9.005a2.374 2.374 0 0 1-2.371 2.371h-.998l-.5-1h1.498a1.371 1.371 0 1 0-.516-2.64A3.77 3.77 0 1 0 4.797 5.99 2.238 2.238 0 0 0 2 8.148a2.223 2.223 0 0 0 2.057 2.22l1.758.009-.448.894a10.567 10.567 0 0 1-2.31-.121 3.224 3.224 0 0 1 .993-6.225 4.77 4.77 0 0 1 9.236 1.68c0 .04 0 .081-.002.121A2.375 2.375 0 0 1 15 9.006Z"/></svg>'},Bh={name:"cloud_with_arrow_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.429 10.1.001-.101A3.998 3.998 0 0 0 4.69 8.59a2.715 2.715 0 0 0-2.557 2.7 2.782 2.782 0 0 0 1.725 2.516 4.854 4.854 0 0 0 1.225.19h.004c.19.006 6.792 0 6.792 0a1.987 1.987 0 0 0 .55-3.897Zm-.55 3.06-7.183-.008a1.867 1.867 0 0 1 .156-3.728 1.891 1.891 0 0 1 .464.06 3.16 3.16 0 1 1 6.13 1.462 1.149 1.149 0 1 1 .433 2.213ZM4.5 4.5a1 1 0 1 1 1-1 1 1 0 0 1-1 1Zm5.138.681.496-1.241H7v-.828h3.134l-.496-1.293L13 3.502Z"/></svg>'},Nh={name:"cog_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m6.823 2-2.217.914.516 1.25a4.743 4.743 0 0 0-.95.944L2.925 4.59l-.922 2.212 1.247.52a4.82 4.82 0 0 0-.002 1.34L2 9.176l.914 2.218 1.248-.515a4.824 4.824 0 0 0 .945.949l-.518 1.247 2.214.921.519-1.246a4.68 4.68 0 0 0 .674.048 4.74 4.74 0 0 0 .666-.047L9.176 14l2.218-.914-.515-1.248a4.828 4.828 0 0 0 .95-.945l1.245.518.922-2.214-1.247-.519a4.73 4.73 0 0 0 .002-1.34L14 6.824l-.914-2.218-1.25.515a4.739 4.739 0 0 0-.944-.949l.518-1.246-2.212-.922-.52 1.247a4.714 4.714 0 0 0-.676-.049 4.808 4.808 0 0 0-.663.047Zm1.175 9a2.999 2.999 0 1 1 2.77-1.847 2.984 2.984 0 0 1-2.77 1.846M8 6.801a1.2 1.2 0 1 0 .46.093A1.198 1.198 0 0 0 8 6.8"/></svg>'},qh={name:"cog_database_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.147 11.648c-.01.006-.02.014-.032.02a4.1 4.1 0 0 1-.46.224l-.012.005c-.033.015-.068.028-.103.042-.051.019-.11.036-.162.055-.094.034-.186.068-.285.099-.034.01-.064.024-.1.033-.019.007-.042.012-.062.019q-.279.078-.58.144l-.133.03q-.324.068-.668.12l-.135.02c-.214.03-.431.057-.653.079l-.103.012a17.446 17.446 0 0 1-.903.06c-.254.01-.507.018-.759.018a18.75 18.75 0 0 1-1.66-.078l-.105-.012a15.901 15.901 0 0 1-.65-.08l-.134-.018c-.23-.036-.455-.076-.67-.122l-.132-.029a9.372 9.372 0 0 1-.582-.145l-.059-.017c-.036-.01-.067-.023-.1-.034a7.034 7.034 0 0 1-.285-.1c-.054-.018-.112-.035-.165-.055l-.101-.041-.01-.005a4.076 4.076 0 0 1-.462-.223l-.03-.02a2.343 2.343 0 0 1-.334-.24c-.014-.012-.033-.022-.045-.033v1.013c0 .364.524.749 1.427 1.051a8.098 8.098 0 0 0 .697.197 14.793 14.793 0 0 0 3.4.363 14.818 14.818 0 0 0 3.403-.362 8.38 8.38 0 0 0 .697-.197c.904-.303 1.43-.688 1.43-1.052v-1.013c-.015.012-.034.022-.047.034a2.478 2.478 0 0 1-.333.238m.38-1.883c0-.762-2.27-1.61-5.529-1.61-3.256 0-5.524.848-5.524 1.61 0 .365.525.75 1.427 1.052a9.254 9.254 0 0 0 .698.197 14.8 14.8 0 0 0 3.399.362 14.817 14.817 0 0 0 3.401-.362 8.375 8.375 0 0 0 .7-.197c.902-.302 1.428-.687 1.428-1.052M3.931 7.697 2.802 7.6l.171-1.979 1.129.095a3.984 3.984 0 0 1 .516-.985l-.729-.856 1.537-1.28.73.855a4.085 4.085 0 0 1 1.071-.336L7.323 2l2.004.17-.097 1.114a3.949 3.949 0 0 1 .52.223 4.027 4.027 0 0 1 .478.288l.866-.721 1.296 1.52-.866.72a3.961 3.961 0 0 1 .341 1.058l1.127.095-.133 1.539a10.211 10.211 0 0 0-2.482-.618c.007-.048.021-.094.026-.143a2.48 2.48 0 0 0-1.346-2.416 2.543 2.543 0 0 0-2.938.45 2.408 2.408 0 0 0-.698 2.14 11.88 11.88 0 0 0-1.482.311l-.008-.033Zm4.067-.468c-.331 0-.697.012-1.077.035a.972.972 0 0 1-.026-.314.99.99 0 0 1 .292-.618 1.011 1.011 0 0 1 1.174-.18.992.992 0 0 1 .539.967.923.923 0 0 1-.036.132 17.817 17.817 0 0 0-.866-.022Z"/></svg>'},Zh={name:"cog_database_inset_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.751 7.338 14 6.824l-.914-2.218-1.25.515a4.74 4.74 0 0 0-.944-.949l.518-1.246-2.212-.922-.52 1.247a4.715 4.715 0 0 0-.676-.049 4.803 4.803 0 0 0-.663.047L6.823 2l-2.217.914.516 1.25a4.741 4.741 0 0 0-.95.944L2.925 4.59l-.922 2.212 1.247.52a4.816 4.816 0 0 0-.002 1.34L2 9.176l.914 2.218 1.248-.515a4.823 4.823 0 0 0 .945.949l-.518 1.247 2.214.921.519-1.246a4.673 4.673 0 0 0 .674.048 4.737 4.737 0 0 0 .666-.047L9.176 14l2.218-.914-.515-1.248a4.826 4.826 0 0 0 .95-.945l1.245.518.922-2.214-1.247-.519a4.729 4.729 0 0 0 .002-1.34Zm-1.06 2.418c0 .244-.35.5-.954.703a5.157 5.157 0 0 1-.466.131 9.896 9.896 0 0 1-2.273.243 9.88 9.88 0 0 1-2.271-.243 5.454 5.454 0 0 1-.466-.131c-.603-.202-.953-.46-.953-.703V9.08c.008.008.02.015.03.023a1.567 1.567 0 0 0 .223.16l.02.013a2.725 2.725 0 0 0 .309.15l.006.002.068.028c.035.013.074.025.11.037.062.023.125.046.19.066.023.008.043.016.067.023l.04.011c.123.036.253.069.389.098l.087.02c.144.03.295.057.448.08l.09.012c.142.021.286.038.434.054l.07.008c.162.014.327.027.491.035l.112.005a11.63 11.63 0 0 0 1.013 0l.11-.005c.165-.008.33-.02.493-.035l.069-.008c.148-.015.293-.033.436-.054l.09-.012q.23-.035.447-.08l.088-.02c.135-.03.264-.062.388-.097l.042-.012.066-.023c.066-.02.128-.043.19-.066.036-.012.075-.024.109-.037l.069-.028.007-.003a2.744 2.744 0 0 0 .308-.149l.022-.014a1.651 1.651 0 0 0 .222-.159l.03-.023Zm0-1.76c0 .243-.35.5-.954.703a5.157 5.157 0 0 1-.466.13 9.897 9.897 0 0 1-2.273.243 9.88 9.88 0 0 1-2.271-.242 5.44 5.44 0 0 1-.466-.132c-.603-.202-.953-.459-.953-.703V7.32c.008.008.02.014.03.022a1.566 1.566 0 0 0 .223.16l.02.013a2.716 2.716 0 0 0 .309.15l.006.003c.022.01.046.018.068.027l.11.038c.062.022.125.045.19.066.023.007.043.016.067.023l.04.011c.123.035.253.067.389.097l.087.02c.144.03.295.057.448.08l.09.013c.142.02.286.038.434.053l.07.008a11.715 11.715 0 0 0 1.726.035c.165-.008.33-.02.493-.035l.069-.008c.148-.015.293-.033.436-.053l.09-.012q.23-.036.447-.081l.088-.02q.202-.044.388-.097c.014-.004.029-.007.042-.012.023-.006.043-.015.067-.022.065-.02.127-.044.19-.066l.108-.037.069-.028.008-.003a2.735 2.735 0 0 0 .307-.15l.022-.013a1.657 1.657 0 0 0 .222-.16c.009-.007.021-.014.03-.022Zm-.953-1.05a5.625 5.625 0 0 1-.467.132 9.896 9.896 0 0 1-2.272.24 9.885 9.885 0 0 1-2.271-.24 6.179 6.179 0 0 1-.466-.133c-.603-.201-.954-.459-.954-.702 0-.51 1.515-1.076 3.69-1.076 2.177 0 3.694.567 3.694 1.076 0 .243-.351.5-.954.702Z"/></svg>'},Uh={name:"cog_small_cog_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.712 5.956a.76.76 0 0 1-.224.477.787.787 0 0 1-.909.139.762.762 0 0 1-.19-1.224.781.781 0 0 1 .907-.14.767.767 0 0 1 .416.748ZM14 11.61l-.441 1.088-.62-.246a2.276 2.276 0 0 1-.232.268 2.386 2.386 0 0 1-.23.2l.263.606-1.09.46-.263-.606a2.353 2.353 0 0 1-.662.008l-.248.612-1.1-.435.249-.612a2.273 2.273 0 0 1-.256-.215 2.358 2.358 0 0 1-.218-.243l-.614.26-.466-1.077.614-.259a2.287 2.287 0 0 1-.008-.654l-.62-.246.44-1.087.62.246a2.38 2.38 0 0 1 .234-.27 2.463 2.463 0 0 1 .229-.198l-.263-.606 1.09-.46.263.605a2.422 2.422 0 0 1 .662-.008l.248-.612 1.1.436-.248.612a2.351 2.351 0 0 1 .473.458l.614-.26.466 1.076-.613.26a2.339 2.339 0 0 1 .008.654Zm-1.934-1.591a1.495 1.495 0 0 0-2.085.011 1.454 1.454 0 0 0 .01 2.081 1.479 1.479 0 0 0 .486.313 1.495 1.495 0 0 0 1.6-.324 1.454 1.454 0 0 0-.01-2.081ZM9.036 8.33l-1.189.99-.564-.661a3.104 3.104 0 0 1-.827.26l-.075.86-1.547-.13.074-.862a3.075 3.075 0 0 1-.77-.394l-.671.557-1.001-1.174.67-.557a3.015 3.015 0 0 1-.264-.817L2 6.328 2.132 4.8l.872.074a3.08 3.08 0 0 1 .4-.762l-.564-.66 1.188-.99.565.66a3.159 3.159 0 0 1 .827-.26L5.494 2l1.548.131-.074.861a3.046 3.046 0 0 1 .402.172 3.111 3.111 0 0 1 .369.223l.669-.557L9.41 4.004l-.67.557a3.06 3.06 0 0 1 .264.818l.871.073-.132 1.53-.872-.074a3.026 3.026 0 0 1-.4.762ZM7.874 6.054a1.916 1.916 0 0 0-1.04-1.868 1.965 1.965 0 0 0-2.27.348 1.907 1.907 0 0 0 .478 3.06 1.965 1.965 0 0 0 2.27-.347 1.903 1.903 0 0 0 .562-1.193Zm3.376 4.467a.6.6 0 0 0-.64.13.591.591 0 0 0-.131.196.584.584 0 0 0 .33.761.597.597 0 0 0 .64-.13.59.59 0 0 0 .13-.195.583.583 0 0 0-.135-.637.596.596 0 0 0-.194-.125Z"/></svg>'},jh={name:"cog_zoomed_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m14 3.11-1.178-.632-1.875 2.133a5.424 5.424 0 0 0-.716-.094L8.766 2l-2.138.627.2 2.863a5.226 5.226 0 0 0-.527.47l-2.77-.738-1.056 1.95L4.656 9.04a5.188 5.188 0 0 0-.087.704L2 11.144l.659 2.1 2.914-.197a4.961 4.961 0 0 0 .453.525l-.13.427h7.232a.818.818 0 0 0 .87-.759L14 13.2Zm-1.335 7.876a2.877 2.877 0 0 1-3.741 1.477 2.768 2.768 0 0 1-1.51-3.66 2.876 2.876 0 0 1 3.729-1.482 2.76 2.76 0 0 1 1.535 3.637Z"/></svg>'},Gh={name:"comment_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 3.5v6a1.5 1.5 0 0 1-1.5 1.5H8.75L3.5 14l.75-3H3.5A1.5 1.5 0 0 1 2 9.5v-6A1.5 1.5 0 0 1 3.5 2h9A1.5 1.5 0 0 1 14 3.5Z"/></svg>'},Wh={name:"computer_and_monitor_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 12V6H5v6h4v1H7v1h5v-1h-2v-1Zm-8-1V7h7v4Zm1-6H4V4h3Zm1 0V3H3v7h1v3h2v1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v2Z"/></svg>'},Kh={name:"copy_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5 5h5V2H2v8h3Zm1 1v8h8V6Zm7 7H7V7h6Z"/></svg>'},Xh={name:"copy_text_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5 5h5V2H2v8h3Zm1 1v8h8V6Zm7 7H7V7h6Zm-1-4H8V8h4Zm-1 2H8v-1h3Z"/></svg>'},Yh={name:"dashboard_builder_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4.646 6.646 7 4.293l2 2 1.646-1.646.707.707L9 7.707l-2-2-1.646 1.647ZM14 2v12H2V2ZM8 9H4v3h4Zm4 2H9v1h3Zm0-2H9v1h3Zm0-5H4v4h8V4Zm-5 6H5v1h2Z"/></svg>'},Jh={name:"dashboard_builder_legend_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm10 10H4v-1.293l2.04-2.04 3.804 2.983L12 9.74Zm0-7h-2v1h2v2.405L9.805 10.35 5.96 7.333 4 9.293V6h2V5H4V4h8ZM9 6H7V5h2Z"/></svg>'},Qh={name:"dashboard_builder_templates_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm11 11H3V3h10Z"/><path class="cls-1" d="M9 9h3v1H9zM12 4H4v4h8Zm-1 3H5V5h6ZM8 9H4v3h4Zm-1 2H5v-1h2ZM9 11h3v1H9z"/></svg>'},eu={name:"dashboard_builder_tile_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4.646 10.646 7 8.293l2 2 1.646-1.646.707.707L9 11.707l-2-2-1.646 1.647ZM14 2v12H2V2ZM4 7h3V4H4Zm8 1H4v4h8V8Zm0-4H8v3h4Z"/></svg>'},tu={name:"database_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.588 11.46a2.69 2.69 0 0 0 .36-.257c.015-.012.036-.023.051-.036v1.093c0 .395-.57.81-1.551 1.137a9.133 9.133 0 0 1-.757.212A16.17 16.17 0 0 1 7.997 14a16.144 16.144 0 0 1-3.69-.391 8.83 8.83 0 0 1-.757-.213C2.57 13.069 2 12.655 2 12.26v-1.093c.013.013.033.023.049.036a2.61 2.61 0 0 0 .362.26c.012.006.021.013.033.02a4.294 4.294 0 0 0 .502.241l.01.005.11.046c.058.02.121.039.18.06.1.036.202.073.308.106.037.012.07.026.11.037.018.006.042.011.063.017.2.06.412.11.633.159l.142.031c.234.049.478.092.727.13.048.008.098.014.146.02a17.346 17.346 0 0 0 .82.1 24.659 24.659 0 0 0 .98.065c.273.01.55.019.822.019.273 0 .548-.008.824-.02.06-.003.119-.006.179-.007.268-.014.536-.034.801-.057l.112-.014c.24-.023.476-.052.708-.086.048-.006.098-.012.147-.02.25-.038.491-.081.725-.13.05-.012.096-.021.144-.031.219-.049.429-.1.63-.157.022-.008.047-.013.069-.02.037-.01.07-.024.108-.036.107-.034.206-.07.309-.107.057-.02.12-.038.176-.06.037-.014.075-.028.111-.045l.013-.005a4.316 4.316 0 0 0 .5-.241.415.415 0 0 0 .035-.022m0-2.845-.035.022a4.46 4.46 0 0 1-.5.241l-.013.005c-.036.016-.074.03-.111.045l-.176.06c-.103.037-.202.073-.31.107-.037.012-.07.025-.107.036-.022.007-.047.012-.069.02a10.638 10.638 0 0 1-.774.187q-.35.075-.725.13c-.049.009-.099.014-.147.021-.232.034-.468.063-.708.086L9.8 9.59c-.265.024-.533.044-.801.057l-.18.008c-.275.012-.55.02-.823.02a19 19 0 0 1-.823-.02l-.18-.008a20.583 20.583 0 0 1-.8-.057l-.113-.013c-.241-.024-.475-.052-.706-.086-.048-.006-.098-.012-.146-.02a12.62 12.62 0 0 1-1.502-.32c-.021-.006-.045-.01-.063-.017-.04-.012-.073-.025-.11-.037a7.688 7.688 0 0 1-.309-.107c-.058-.02-.121-.039-.179-.06l-.11-.045-.01-.005a4.436 4.436 0 0 1-.502-.241c-.012-.007-.02-.014-.033-.02a2.544 2.544 0 0 1-.362-.26c-.016-.013-.036-.023-.049-.036v1.093c0 .394.57.81 1.55 1.136a8.83 8.83 0 0 0 .757.213 16.145 16.145 0 0 0 3.69.39 16.171 16.171 0 0 0 3.694-.39 9.133 9.133 0 0 0 .757-.213c.98-.327 1.551-.742 1.551-1.136V8.322c-.015.013-.036.024-.05.036a2.69 2.69 0 0 1-.361.258m0-2.845-.035.022a4.463 4.463 0 0 1-.5.241l-.013.005c-.036.016-.074.03-.111.045l-.176.06c-.103.037-.202.073-.31.107-.037.012-.07.026-.107.036-.022.007-.047.012-.069.02q-.302.084-.63.156l-.144.031q-.351.075-.725.132c-.049.006-.099.012-.147.02-.232.032-.468.061-.708.085l-.112.013a19.05 19.05 0 0 1-.98.066c-.276.01-.55.018-.824.018a20.457 20.457 0 0 1-1.802-.084l-.114-.013c-.241-.024-.475-.053-.706-.086l-.146-.02c-.249-.038-.493-.081-.727-.13-.05-.01-.094-.022-.142-.032-.22-.048-.432-.1-.633-.157l-.063-.018c-.04-.011-.073-.025-.11-.037a7.688 7.688 0 0 1-.309-.107l-.179-.06-.11-.045-.01-.005a4.438 4.438 0 0 1-.502-.241c-.012-.007-.02-.014-.033-.02a2.544 2.544 0 0 1-.362-.26C2.033 5.5 2.013 5.488 2 5.476V6.57c0 .394.57.81 1.55 1.136a8.83 8.83 0 0 0 .757.213 16.144 16.144 0 0 0 3.69.39 16.17 16.17 0 0 0 3.694-.39 9.133 9.133 0 0 0 .757-.213c.98-.327 1.551-.742 1.551-1.136V5.477c-.015.013-.036.024-.05.036a2.69 2.69 0 0 1-.361.258M14 3.738C14 2.915 11.535 2 7.998 2 4.463 2 2 2.915 2 3.738c0 .394.57.81 1.55 1.135.113.039.23.074.355.11q.192.053.402.103a16.152 16.152 0 0 0 3.69.39 16.17 16.17 0 0 0 3.692-.39 9.13 9.13 0 0 0 .759-.213C13.429 4.548 14 4.132 14 3.738"/></svg>'},nu={name:"database_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5.919 12.103a11.87 11.87 0 0 1-1.594-.26 7.445 7.445 0 0 1-.644-.182c-.835-.28-1.32-.635-1.32-.973v-.936c.011.01.029.02.042.031a2.226 2.226 0 0 0 .308.222l.028.018a3.65 3.65 0 0 0 .428.206l.009.005.093.038c.049.019.103.034.153.051.086.032.173.063.262.092.032.01.06.022.094.032l.054.014c.17.05.35.095.538.136l.121.027c.2.042.408.078.62.111.041.007.083.012.124.018.197.028.396.052.6.073l.038.005-.613.613Zm-2.238-7.74a8.567 8.567 0 0 0 .645.182 13.68 13.68 0 0 0 3.143.334 13.697 13.697 0 0 0 3.144-.334 7.753 7.753 0 0 0 .646-.182c.835-.28 1.32-.635 1.32-.973 0-.704-2.098-1.488-5.11-1.488-3.01 0-5.107.784-5.107 1.488 0 .338.486.694 1.32.973Zm5.047 6.495.008.007.008-.008Zm-5.047-4.07a7.471 7.471 0 0 0 .644.182 13.675 13.675 0 0 0 3.143.335 13.697 13.697 0 0 0 3.146-.335 7.694 7.694 0 0 0 .644-.181c.835-.28 1.321-.636 1.321-.973v-.937c-.013.012-.03.02-.043.032a2.29 2.29 0 0 1-.307.22.353.353 0 0 1-.03.02 3.788 3.788 0 0 1-.426.206l-.01.004c-.031.014-.064.026-.096.039-.047.017-.101.033-.15.05-.087.032-.172.064-.263.092-.032.01-.06.023-.092.032l-.058.016q-.257.073-.537.134l-.122.027q-.3.063-.618.112l-.124.017c-.198.029-.399.053-.604.074l-.095.01a16.15 16.15 0 0 1-.835.057c-.235.01-.468.016-.701.016a17.43 17.43 0 0 1-1.535-.072l-.097-.011a14.698 14.698 0 0 1-.6-.074l-.125-.017c-.212-.033-.42-.07-.62-.112l-.12-.027a8.673 8.673 0 0 1-.54-.134c-.018-.006-.037-.01-.053-.016-.034-.01-.062-.022-.094-.032a6.551 6.551 0 0 1-.262-.091c-.05-.018-.104-.034-.153-.052l-.093-.038-.01-.004a3.768 3.768 0 0 1-.427-.207l-.028-.017a2.167 2.167 0 0 1-.308-.223c-.013-.011-.031-.02-.042-.03v.936c0 .337.485.692 1.32.972Zm0 2.436a7.471 7.471 0 0 0 .644.182 13.147 13.147 0 0 0 2.644.328l.318-.318.323.324a14.377 14.377 0 0 0 2.473-.222l1.753-1.753-.063.028-.01.004c-.031.014-.063.027-.096.04-.047.017-.101.033-.15.05-.087.032-.171.063-.263.091-.032.01-.06.022-.092.032-.018.006-.04.01-.058.017a9.015 9.015 0 0 1-.66.16q-.298.064-.617.112l-.124.017c-.198.029-.399.054-.604.074l-.095.011c-.225.02-.454.037-.682.049l-.153.007a16.115 16.115 0 0 1-1.402 0l-.154-.007a17.43 17.43 0 0 1-.68-.049l-.097-.011a14.689 14.689 0 0 1-.6-.074c-.042-.006-.084-.01-.125-.017a10.679 10.679 0 0 1-1.28-.274l-.053-.015c-.034-.01-.062-.021-.094-.032a6.551 6.551 0 0 1-.262-.09c-.05-.018-.104-.034-.153-.053-.03-.012-.063-.024-.093-.038l-.01-.004a3.77 3.77 0 0 1-.427-.207l-.028-.017a2.169 2.169 0 0 1-.308-.223c-.014-.01-.031-.02-.042-.03v.936c0 .337.485.693 1.32.972Zm9.269-1.6L8.736 11.84l-1.449-1.45-1.053 1.055 2.458 2.458 5.268-5.268Z"/></svg>'},iu={name:"desktop_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 3H2v8h5v1H5v1h6v-1H9v-1h5V3Zm0 7H3V4h10Z"/></svg>'},ou={name:"donut_chart_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.872 10.956a4.123 4.123 0 0 1-6.997-2.962v-.007H2v.007a5.995 5.995 0 0 0 10.301 4.182ZM8.372 2v1.884a4.13 4.13 0 0 1 2.992 6.501l1.429 1.224A6.008 6.008 0 0 0 8.37 2ZM2.048 7.236h1.897a4.117 4.117 0 0 1 3.675-3.352V2A6.012 6.012 0 0 0 2.05 7.236Z"/></svg>'},ru={name:"dot_solid_dot_stroke_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7 8a3 3 0 1 1-3-3 3 3 0 0 1 3 3Zm5-2a2 2 0 1 0 2 2 2.002 2.002 0 0 0-2-2m0-1a3 3 0 1 1-3 3 3 3 0 0 1 3-3Z"/></svg>'},su={name:"dot_solid_dot_stroke_measurement_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5 3h1v3H5zM6 4h4v1H6zM10 3h1v3h-1zM7 10a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm5-2c-1.103 0-2 .897-2 2s.897 2 2 2 2-.897 2-2-.897-2-2-2m0-1a3 3 0 1 1 0 6 3 3 0 0 1 0-6Z"/></svg>'},au={name:"down_right_from_square_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m5.958 10.03 2.063-6.281.49 2.344 4.117-4.122 1.414 1.414L9.94 7.487l2.324.504-6.306 2.038Z"/><path class="cls-1" d="M8 10.42V12H4V8h1.572l.657-2H2v8h8V9.774l-2 .646z"/></svg>'},lu={name:"download_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 9v5H2V9h1v4h10V9Zm-5.982 2L11 5.1 8.996 6.412 9 2H7v4.387L5 5.1Z"/></svg>'},cu={name:"electronic_chip_zoomed_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 14H7.333V9.333a2 2 0 0 1 2-2H14V13a1 1 0 0 1-1 1ZM12 2a.667.667 0 0 0-.667.667v2h1.334v-2A.667.667 0 0 0 12 2ZM8.444 2a.667.667 0 0 0-.666.667v2H9.11v-2A.667.667 0 0 0 8.444 2ZM2 8.444a.667.667 0 0 0 .667.667h2V7.778h-2A.667.667 0 0 0 2 8.444ZM2 12a.667.667 0 0 0 .667.667h2v-1.334h-2A.667.667 0 0 0 2 12Zm11.556-8.222v.889a.444.444 0 0 1-.445.444H10.89a.444.444 0 0 1-.445-.444v-.89H10v.89a.444.444 0 0 1-.444.444H7.333a.444.444 0 0 1-.444-.444v-.89H4.667a.889.889 0 0 0-.89.89v2.222h.89a.444.444 0 0 1 .444.444v2.223a.444.444 0 0 1-.444.444h-.89v.444h.89a.444.444 0 0 1 .444.445v2.222a.444.444 0 0 1-.444.445h-.89V14H6.89V8.222A1.333 1.333 0 0 1 8.222 6.89H14V3.778Z"/></svg>'},du={name:"exclamation_mark_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.371 11.873h3.256V14H6.37ZM6.316 2l.37 8.542h2.628L9.684 2Z"/></svg>'},hu={name:"eye_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.856 3.657A7.004 7.004 0 0 0 1 8.001a7.588 7.588 0 0 0 7.146 4.342A7.002 7.002 0 0 0 15 8a7.586 7.586 0 0 0-7.144-4.344m-1.199 7.289A5.108 5.108 0 0 1 2.443 8s.665-2.585 4.33-3.037a2.786 2.786 0 0 0-1.414 1.223l2.787 1.22H4.977a3.47 3.47 0 0 0-.053.576 3.348 3.348 0 0 0 1.734 2.962m2.85.02a3.4 3.4 0 0 0 .107-5.908 5.006 5.006 0 0 1 3.942 2.944s-.603 2.44-4.05 2.963"/></svg>'},uu={name:"fancy_a_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.597 9.844H7.865A7.465 7.465 0 0 1 6.19 11.96a3.323 3.323 0 0 1-2.042.667 2.835 2.835 0 0 1-1.964-.753L2 11.706l1.153-1.152.157.251a1.347 1.347 0 0 0 1.2.716 1.976 1.976 0 0 0 1.385-.625 11.546 11.546 0 0 0 1.722-2.403l2.252-3.88a7.585 7.585 0 0 0-.679-.037 2.365 2.365 0 0 0-1.66.54 1.967 1.967 0 0 0-.556 1.51V6.7l-.067.106-1.564.762.045-.423a3.845 3.845 0 0 1 .645-1.874 3.312 3.312 0 0 1 1.34-1.177 6.74 6.74 0 0 1 2.208-.443c.127 0 .277-.013.471-.029l.369-.03 1.387-.257.087 2.154.33 3.886a4.862 4.862 0 0 0 .29 1.701.498.498 0 0 0 .528.31c.057 0 .277 0 .641-.03L14 11.33l-.172.83-3.003.506Zm-.086-.896-.275-3.22-1.855 3.22Z"/></svg>'},pu={name:"file_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 3v10h8V7H8V3Zm5 0v3h3Z"/></svg>'},gu={name:"file_arrow_curved_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m7 2 3 3H7V2ZM6 6V2H2v12h4.282l.03-.187A4.508 4.508 0 0 1 10 10.065V6H6Zm8 5.5L11 9v2c-1.817-.091-3.412 1.137-3.701 2.97.576-.672 2.077-2.065 3.701-1.82V14l3-2.5Z"/></svg>'},fu={name:"file_drawer_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 4v10h12V4Zm8 4H6V6h4Zm4-5H2V2h12Z"/></svg>'},mu={name:"file_search_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 6v6h-3.333a3.662 3.662 0 0 0 .249-1.302A3.701 3.701 0 0 0 7.22 7 3.654 3.654 0 0 0 6 7.223V2h4v4Zm-3-4v3h3Zm-1.126 8.698a2.697 2.697 0 0 1-4.73 1.772L2.521 14l-.48-.823 2.613-1.523a2.698 2.698 0 1 1 5.22-.956Zm-.952 0a1.745 1.745 0 1 0-1.745 1.745 1.747 1.747 0 0 0 1.745-1.745Z"/></svg>'},vu={name:"filter_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 3.045v1.29h.787a2.069 2.069 0 1 0 2.907 2.903l1.32 2.173v4.522l1.973-1.846V9.411l3.878-5.076h1.134v-1.29Zm2.033 4.059a1.154 1.154 0 0 1 0-2.308c.023 0 .045.006.068.007l1.002 1.575a1.154 1.154 0 0 1-1.07.726Z"/></svg>'},bu={name:"floppy_disk_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.455 4H3.583A.585.585 0 0 0 3 4.598V11.5l1.5 1.497 7.858.003c.33 0 .6-.27.6-.6L13 4.545c0-.33-.215-.546-.545-.546ZM11 12H8v-2H6v2H5V9h6v3Zm1-4H4V5h8v3Z"/></svg>'},wu={name:"floppy_disk_checkmark_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.455 5h-1.041l-1.005 1H12v3H4V6h3.782L6.79 5H3.583A.585.585 0 0 0 3 5.598V12.5l1.5 1.497 7.858.003a.602.602 0 0 0 .6-.6L13 5.545A.513.513 0 0 0 12.455 5ZM11 13H8v-2H6v2H5v-3h6Zm2-10.99L9.091 5.9 7 3.79l.919-.89 1.164 1.208L12.128 1.1l.872.91"/></svg>'},xu={name:"floppy_disk_star_arrow_right_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5.5 2.5a1 1 0 1 0-1 1 1 1 0 0 0 1-1Zm7.5.002L9.638.819l.496 1.293H7v.828h3.134L9.638 4.18ZM12.455 5H3.583A.585.585 0 0 0 3 5.598V12.5l1.5 1.497 7.858.003a.602.602 0 0 0 .6-.6L13 5.545A.513.513 0 0 0 12.455 5ZM11 13H8v-2H6v2H5v-3h6Zm1-4H4V6h8Z"/></svg>'},yu={name:"floppy_disk_three_dots_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6 3a1 1 0 1 0-1 1 1 1 0 0 0 1-1Zm3 0a1 1 0 1 0-1 1 1 1 0 0 0 1-1Zm3 0a1 1 0 1 0-1 1 1 1 0 0 0 1-1Zm.455 2H3.583A.585.585 0 0 0 3 5.598V12.5l1.5 1.497 7.858.003a.602.602 0 0 0 .6-.6L13 5.545A.513.513 0 0 0 12.455 5ZM11 13H8v-2H6v2H5v-3h6Zm1-4H4V6h8Z"/></svg>'},Cu={name:"folder_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7 4V3H2v10h12V4Zm6 2H3V5h10Z"/></svg>'},ku={name:"folder_open_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7 3v1.002h6V6h-1V5H3v1H2V3ZM2 13h11l1-6H2Z"/></svg>'},$u={name:"forward_slash_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m6.027 14 2.5-12h1.5l-2.5 12h-1.5z"/></svg>'},_u={name:"four_dots_square_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.5 11A1.5 1.5 0 1 1 5 9.5 1.5 1.5 0 0 1 6.5 11ZM5 3.5A1.5 1.5 0 1 0 6.5 5 1.5 1.5 0 0 0 5 3.5Zm7.5 7.5A1.5 1.5 0 1 1 11 9.5a1.5 1.5 0 0 1 1.5 1.5ZM11 3.5A1.5 1.5 0 1 0 12.5 5 1.5 1.5 0 0 0 11 3.5Z"/></svg>'},Su={name:"function_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 12.643h-1.572l-.898-1.283-.923 1.283h-1.54l1.658-2.146-1.632-2.14h1.572l.883 1.258.888-1.258h1.545l-1.635 2.111ZM9.544 4.667H9.31a3.141 3.141 0 0 0-.394-.1 2.455 2.455 0 0 0-.483-.05 1.32 1.32 0 0 0-.832.241 1.334 1.334 0 0 0-.405.895l-.128.937h1.846v1.282H6.812l-.376 2.462a3.578 3.578 0 0 1-.462 1.357 2.583 2.583 0 0 1-.784.808 3.015 3.015 0 0 1-.938.387A4.823 4.823 0 0 1 3.184 13q-.275 0-.629-.03A3.529 3.529 0 0 1 2 12.892v-1.815h.12a.56.56 0 0 0 .424.244 2.538 2.538 0 0 0 .5.052 1.304 1.304 0 0 0 .898-.29 1.584 1.584 0 0 0 .424-.985l.33-2.226H3.256V6.59H5.05l.178-1.162a2.942 2.942 0 0 1 .444-1.244 2.516 2.516 0 0 1 .76-.734 2.643 2.643 0 0 1 .94-.356A5.61 5.61 0 0 1 8.357 3q.294 0 .588.025t.599.076Z"/></svg>'},Iu={name:"gauge_simple_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.969 5.196a1.763 1.763 0 0 1 1.142-.49 1.763 1.763 0 0 1-.49 1.142L9.205 8.263l.008.025.065.184.03.093a1.352 1.352 0 0 1 .032.295 1.385 1.385 0 0 1-2.769 0 1.343 1.343 0 0 1 .033-.294l.034-.11.055-.16.012-.033.014-.014a1.389 1.389 0 0 1 .625-.625l.015-.015.033-.011.16-.055.11-.035a1.32 1.32 0 0 1 .588 0l.11.035.16.055.033.011ZM14 8.86a5.979 5.979 0 0 1-1.799 4.28l-1.309-1.308a4.085 4.085 0 0 0 .83-4.78l.55-.55a2.576 2.576 0 0 0 .64-1.082A5.968 5.968 0 0 1 14 8.86Zm-6-6a5.998 5.998 0 0 0-4.201 10.28l1.308-1.308a4.14 4.14 0 0 1 4.645-6.725l.564-.564a2.57 2.57 0 0 1 1.07-.635A5.97 5.97 0 0 0 8 2.86Z"/></svg>'},Mu={name:"grid_three_by_three_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 3v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1Zm4 9H4v-2h2Zm.001-2.999H4V7h2.001Zm0-3.001H4V4h2.001ZM9 12H7v-2h2Zm0-2.999H7V7h2ZM9 6H7V4h2Zm3 6h-2v-2h2Zm.001-2.999H10V7h2.001Zm0-3.001H10V4h2.001Z"/></svg>'},Au={name:"grid_two_by_two_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 9h3v3H4Zm5 0h3v3H9ZM4 4h3v3H4Zm5 0h3v3H9ZM2 14h12V2H2Z"/></svg>'},Ru={name:"hammer_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9 14H6V8h3ZM8.875 2H6.723A1.991 1.991 0 0 1 5 3a2.486 2.486 0 0 1-2-1H2v4h1a1.797 1.797 0 0 1 1.5-1C5.551 5 5.997 6.99 6 7h3c.333-1.539 1-2.436 1.741-2.436C12.222 4.564 14 6.615 14 6.615S13 2 8.875 2Z"/></svg>'},Eu={name:"hashtag_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m7.76 14 .752-2.914H6.045L5.299 14H3.532l.746-2.914H2v-1.72h2.712l.701-2.807H2.947v-1.72h2.91L6.567 2h1.766l-.71 2.838h2.46L10.8 2h1.768l-.717 2.838H14v1.72h-2.599l-.706 2.807h2.374v1.72h-2.807L9.501 14ZM6.447 9.392h2.506l.72-2.85H7.167Z"/></svg>'},Du={name:"home_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.988 2 2.5 9H4v5h3v-3h2v3h3V9h1.5L7.988 2z"/></svg>'},Fu={name:"hourglass_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.774 13.4h-.047v-.49h-.404a2.491 2.491 0 0 0 .355-1.258c0-1.826-2.083-2.886-2.083-3.652s2.083-1.826 2.083-3.652a2.491 2.491 0 0 0-.355-1.257h.404V2.6h.047a.556.556 0 0 0 .499-.6H4.727a.556.556 0 0 0 .499.6h.047v.49h.404a2.491 2.491 0 0 0-.355 1.258c0 1.826 2.083 2.87 2.083 3.652s-2.083 1.826-2.083 3.652a2.491 2.491 0 0 0 .355 1.257h-.404v.491h-.047a.556.556 0 0 0-.499.6h6.546a.556.556 0 0 0-.499-.6ZM8 12.957c-1.565 0-1.975-.585-1.975-1.305a7.183 7.183 0 0 1 1.723-.656c.268 0 .289-3.513 0-3.779l-.988-1h2.454l-.962 1c-.268.286-.275 3.779 0 3.779a7.651 7.651 0 0 1 1.738.656c0 .72-.409 1.305-1.99 1.305Z"/></svg>'},Ou={name:"indeterminant_checkbox_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 3a1.001 1.001 0 0 1 1 1v8a1.001 1.001 0 0 1-1 1H4a1.001 1.001 0 0 1-1-1V4a1.001 1.001 0 0 1 1-1h8m0-1H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM4 4v8h8V4Zm6 6H6V6h4Z"/></svg>'},Tu={name:"info_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.415 7.75v3.69H6.376v1.576h4.24V11.44H9.6V6.175H6.376V7.75Zm.276-2.698a1.19 1.19 0 0 0 2.035-.838 1.164 1.164 0 0 0-.346-.846 1.193 1.193 0 0 0-1.693 0 1.158 1.158 0 0 0-.35.846 1.144 1.144 0 0 0 .354.838Z"/></svg>'},zu={name:"info_circle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm-.697 2.28a.951.951 0 0 1 1.35 0 .928.928 0 0 1 .276.675.952.952 0 0 1-1.905 0 .924.924 0 0 1 .279-.674ZM9.7 12H6.3v-1.264h.833V7.777H6.3V6.513h2.584v4.223H9.7Z"/></svg>'},Vu={name:"italic_i_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16" xml:space="preserve"><path d="M8.99 13.802H4.38l.258-1.133h1.523l2.17-9.367H6.808l.258-1.133h4.61l-.258 1.133H9.895l-2.17 9.367h1.523l-.258 1.133z"/></svg>'},Lu={name:"key_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.045 7.348-.652-.652 1.444-.14Zm-3.818.698-4.912 4.912-.395-.396 4.12-4.12Zm4.734-2.918-1.697.136-.395-.395L11 3.176l.72-.067 1.304 1.304Zm-3.524-.386-.651-.653.791-.791Zm-1.955-.653v2.607l-5.074 5.075L2 12.946l.791.791 1.432.129.326-.326v-.652l.652-.652h.652l.326-.325v-.652h.651l.978-.978.014-.652.312-.326h.652l.652-.651h2.607l1.676-1.676L14 4.089l-1.955-1.955-2.887.28Z"/></svg>'},Hu={name:"laptop_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 11V3H3v8H2v2h12v-2Zm-2 1H5v-1h6Zm1-1.996H4V4h8Z"/></svg>'},Pu={name:"layer_group_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m3.555 9.546.89-.445 5.333 2.667 1.778-.89.889.449v1.33L9.778 13.99l-6.223-3.11Zm0-6.222L6.222 1.99l6.223 3.112v1.333L9.778 7.768l-6.223-3.11Zm0 3.11.89-.444 5.333 2.667 1.778-.89.889.448v1.33L9.778 10.88 3.555 7.768Z"/></svg>'},Bu={name:"lightning_bolt_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4.732 7.953 6.909 2h3.636L8.364 7.013h2.909L4.727 14l2.21-6.049Z"/></svg>'},Nu={name:"link_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M7.465 5.592A2.908 2.908 0 0 1 9.963 7.02l-1.06 1.065c-.053-.103-.095-.192-.144-.276a1.48 1.48 0 0 0-1.277-.769 1.43 1.43 0 0 0-.977.394c-.75.694-1.469 1.421-2.165 2.168a1.431 1.431 0 0 0 .054 2.038 1.507 1.507 0 0 0 1.039.432 1.28 1.28 0 0 0 .953-.417c.103-.11.435-.44.81-.805a3.458 3.458 0 0 0 1.908.188c-1.006 1.035-2.179 2.187-2.996 2.38a2.982 2.982 0 0 1-.693.082 2.91 2.91 0 0 1-2.182-4.842A46.793 46.793 0 0 1 5.53 6.356a2.826 2.826 0 0 1 1.935-.764M10.583 2.5a3.001 3.001 0 0 0-.69.081 10.376 10.376 0 0 0-2.996 2.377 3.474 3.474 0 0 1 .568-.054 3.58 3.58 0 0 1 1.31.249c.38-.332.701-.646.875-.834a1.221 1.221 0 0 1 .913-.395 1.513 1.513 0 0 1 1.074.469 1.433 1.433 0 0 1 .022 2.005c-.7.743-1.42 1.47-2.165 2.167a1.419 1.419 0 0 1-.975.395 1.483 1.483 0 0 1-1.28-.768c-.048-.085-.089-.175-.151-.298L6.043 8.987a2.882 2.882 0 0 0 2.493 1.42 2.808 2.808 0 0 0 1.93-.76 54.2 54.2 0 0 0 2.266-2.266A2.911 2.911 0 0 0 10.583 2.5"/></svg>'},qu={name:"link_cancel_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9.202 9.45a2.638 2.638 0 0 1 .687 2.519l-1.364.002c.032-.1.062-.183.085-.269a1.343 1.343 0 0 0-.326-1.312 1.297 1.297 0 0 0-.88-.374 37.657 37.657 0 0 0-2.779.002 1.298 1.298 0 0 0-1.273 1.341 1.367 1.367 0 0 0 .39.944 1.162 1.162 0 0 0 .878.344c.137-.005.562-.002 1.036.004a3.137 3.137 0 0 0 1.104 1.344 8.133 8.133 0 0 1-3.45-.395 2.705 2.705 0 0 1-.496-.392A2.64 2.64 0 0 1 4.52 8.702a42.45 42.45 0 0 1 2.951-.003 2.564 2.564 0 0 1 1.731.751m3.984.017a2.723 2.723 0 0 0-.495-.39 9.414 9.414 0 0 0-3.447-.398 3.151 3.151 0 0 1 .4.33 3.247 3.247 0 0 1 .68 1c.457.031.864.035 1.096.027a1.108 1.108 0 0 1 .839.331 1.373 1.373 0 0 1 .389.99 1.3 1.3 0 0 1-1.272 1.3c-.926.028-1.854.033-2.78.002a1.287 1.287 0 0 1-.878-.372 1.345 1.345 0 0 1-.328-1.313c.023-.086.054-.17.093-.289l-1.371.031a2.614 2.614 0 0 0 .688 2.51 2.547 2.547 0 0 0 1.726.751c.968.033 1.94.025 2.908 0a2.641 2.641 0 0 0 1.752-4.51m-2.701-3.208L8.71 4.485l1.775-1.775-.71-.71L8 3.775 6.225 2l-.71.71L7.29 4.485 5.515 6.259l.71.71L8 5.195l1.775 1.774Z"/></svg>'},Zu={name:"list_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 13H2v-2h2Zm10-2H6v2h8ZM4 7H2v2h2Zm10 0H6v2h8ZM4 3H2v2h2Zm10 0H6v2h8Z"/></svg>'},Uu={name:"list_tree_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10 5v2h4v2h-4v2h4v2H8V5H5V3h9v2ZM2 5h2V3H2Zm5 6H5v2h2Zm0-4H5v2h2Z"/></svg>'},ju={name:"list_tree_database_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.953 11.81c.013-.011.032-.02.046-.031v.917c0 .33-.523.678-1.42.953a8.234 8.234 0 0 1-.694.178 16.116 16.116 0 0 1-3.382.328 16.089 16.089 0 0 1-3.38-.328 8.77 8.77 0 0 1-.693-.179c-.898-.274-1.42-.622-1.42-.952v-.917c.012.01.031.02.045.03a2.34 2.34 0 0 0 .332.218l.03.017a4.235 4.235 0 0 0 .46.202l.01.005.1.037c.053.018.11.034.164.05.093.031.186.062.283.09.033.01.064.022.1.031l.058.015c.184.048.378.092.58.132.043.009.084.018.13.026.214.042.438.078.666.11l.134.017c.21.028.425.051.646.072l.104.01c.242.021.487.037.731.049l.166.007c.251.01.504.016.754.016s.501-.007.754-.016l.164-.007c.246-.012.491-.028.734-.048l.102-.011c.22-.02.436-.044.649-.072.044-.006.09-.01.134-.017q.343-.048.664-.11c.046-.008.088-.017.132-.026q.3-.06.577-.13c.02-.007.043-.012.063-.017.034-.009.064-.021.099-.031.098-.028.189-.059.283-.09.052-.017.11-.032.16-.05.035-.012.07-.024.103-.037l.012-.005a4.252 4.252 0 0 0 .457-.202c.013-.006.022-.013.032-.018a2.468 2.468 0 0 0 .33-.216Zm-5.45-2.946c-3.237 0-5.492.767-5.492 1.457 0 .33.523.679 1.42.952a9.998 9.998 0 0 0 .694.179 16.101 16.101 0 0 0 3.378.327 16.12 16.12 0 0 0 3.382-.327 8.892 8.892 0 0 0 .694-.18C13.477 11 14 10.652 14 10.322c0-.69-2.257-1.457-5.497-1.457ZM14 6V5H5V3h2V2H2v1h2v5.581a9.632 9.632 0 0 1 1-.255V6h3v2h6V7H9V6Z"/></svg>'},Gu={name:"lock_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12 8V7a3.888 3.888 0 0 0-4-4 3.822 3.822 0 0 0-2.81 1.078A4.349 4.349 0 0 0 4.062 7v1H3v6h10V8ZM6.062 6.986a2.407 2.407 0 0 1 .566-1.516A1.834 1.834 0 0 1 8 5a1.883 1.883 0 0 1 2 2v1H6.062Z"/></svg>'},Wu={name:"magnifying_glass_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m13.073 12.29-2.926-2.926a3.971 3.971 0 1 0-.783.783l2.927 2.926ZM7.01 9.84a2.83 2.83 0 1 1 2.83-2.83 2.833 2.833 0 0 1-2.83 2.83Z"/></svg>'},Ku={name:"markdown_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14.25 3H1.75a.74.74 0 0 0-.75.73v8.54a.74.74 0 0 0 .75.73h12.5a.74.74 0 0 0 .75-.73V3.73a.74.74 0 0 0-.75-.73Zm-6.285 7.059h-.991V7.773L5.982 9.35l-.99-1.577v2.286H4V5.934h.91L5.982 7.51l1.073-1.576h.91Zm2.459.007L8.848 7.945h1.1V5.934h.99v2.01H12Z"/></svg>'},Xu={name:"minus_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 7h8v2H4z"/></svg>'},Yu={name:"minus_wide_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M3 7h10v2H3z"/></svg>'},Ju={name:"mobile_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.462 2.077H4.538A.54.54 0 0 0 4 2.615v10.77a.54.54 0 0 0 .538.538h5.924a.54.54 0 0 0 .538-.538V2.615a.54.54 0 0 0-.538-.538ZM10 12H5V3h5Z"/></svg>'},Qu={name:"notebook_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 2h1v3h-1Zm0 8h1V6h-1Zm0 4h1v-3h-1ZM4 7h6V6H4Zm0-2h6V4H4ZM2 2h10v12H2Z"/></svg>'},ep={name:"number_list_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16" xml:space="preserve"><path d="M14 11H6v2h8v-2zm0-4H6v2h8V7zm0-4H6v2h8V3zM1.999 4.644h.73V2.302h-.585v-.271c.295-.05.505-.13.681-.235h.32v2.848h.656v.346H1.999v-.346zM1.804 9.509c.951-.932 1.501-1.521 1.501-2.037 0-.365-.2-.621-.605-.621-.265 0-.496.17-.676.381l-.235-.226c.265-.3.551-.495.961-.495.591 0 .961.375.961.936 0 .621-.561 1.196-1.336 1.987.174-.016.37-.026.535-.026h.956v.355H1.804v-.254zM1.733 13.884l.21-.271c.19.201.44.376.816.376.385 0 .661-.226.661-.581 0-.38-.26-.635-1.021-.635v-.315c.676 0 .906-.261.906-.596 0-.306-.21-.501-.55-.501-.266 0-.491.136-.681.32l-.221-.26c.246-.23.541-.4.916-.4.556 0 .956.295.956.811 0 .386-.23.631-.576.761v.021c.385.09.691.37.691.811 0 .565-.471.91-1.056.91a1.363 1.363 0 0 1-1.051-.451z"/></svg>'},tp={name:"paste_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9 5V3H3v6h2v1H2V2h8v3ZM6 6v8h8V6Z"/></svg>'},np={name:"pencil_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11.413 2.674c.326-.288 1.04-.013 1.807.857.768.869.952 1.61.626 1.898l-1.378 1.218-2.433-2.757Zm-7.381 9.493 2.97-1.396-1.477.254.064-1.459-.48.25.156-1.013-1.754 2.774Zm3.319-1.002L2 13.435 4.917 8.41l3.15-2.78L10.5 8.383Zm4.293-3.866L9.21 4.544c-.177-.202.222-.543.394-.349l2.434 2.756c.175.2-.224.54-.394.348m-.783.7L8.428 5.244c-.178-.201.22-.542.393-.347l2.433 2.755c.176.199-.223.54-.393.347"/></svg>'},ip={name:"pot_with_lid_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 4V2H5v2H2v1h12V4ZM6 4V3h4v1Zm-4 9h1v1h10v-1h1V6H2Z"/></svg>'},op={name:"question_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11.303 5.594a3.294 3.294 0 0 1-.195 1.176 2.63 2.63 0 0 1-.549.885 3.96 3.96 0 0 1-.852.672 7.46 7.46 0 0 1-1.121.54v1.501H6.27V8.15q.467-.125.845-.256a3.199 3.199 0 0 0 .793-.429 2.098 2.098 0 0 0 .608-.612 1.45 1.45 0 0 0 .22-.791 1.042 1.042 0 0 0-.423-.939 2.163 2.163 0 0 0-1.195-.28 3.338 3.338 0 0 0-1.068.204 4.853 4.853 0 0 0-1.09.526h-.263V3.566a8.148 8.148 0 0 1 1.296-.372A8.205 8.205 0 0 1 7.77 3a4.196 4.196 0 0 1 2.579.718 2.241 2.241 0 0 1 .954 1.876ZM8.77 13H6.112v-1.737H8.77Z"/></svg>'},rp={name:"running_arrow_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m14 7.985-8.002 4.013L8 8 5.998 3.987ZM3.995 2.997 2 2l3 6-3 6 2.002-1.005L6.5 8Z"/></svg>'},sp={name:"server_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 3H3v3h10ZM9 5H4V4h5ZM3 7v3h10V7Zm6 2H4V8h5Zm3 4H3v-2h10v1a1 1 0 0 1-1 1Z"/></svg>'},ap={name:"share_nodes_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12 10c-.601 0-1.134.27-1.5.69L5.954 8.419a2 2 0 0 0 0-.836l4.544-2.273c.367.42.9.691 1.501.691a2 2 0 1 0-1.955-1.582L5.501 6.691C5.134 6.27 4.6 6 4 6a2 2 0 1 0 0 4c.601 0 1.134-.27 1.5-.69l4.545 2.272A2 2 0 1 0 12 10Z"/></svg>'},lp={name:"shield_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v5.11C2 10.39 8 14 8 14s6-3.281 6-6.89V2Zm4.788 8.2L4 7.388 5.225 6.2l1.553 1.61 4.06-4.01L12 5.013Z"/></svg>'},cp={name:"shield_xmark_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v5.11C2 10.39 8 14 8 14s6-3.281 6-6.89V2Zm9.5 7.346L10.346 10.5 8 8.154 5.654 10.5 4.5 9.346 6.846 7 4.5 4.654 5.654 3.5 8 5.846 10.346 3.5 11.5 4.654 9.154 7Z"/></svg>'},dp={name:"signal_bars_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 14H2V2h2Zm3-9H5v9h2Zm3 3H8v6h2Zm3 3h-2v3h2Z"/></svg>'},hp={name:"sine_graph_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 12H2v-1.63a4.61 4.61 0 0 0 1.766-1.967c.636-1.06 1.082-1.705 1.902-1.705s1.266.644 1.902 1.705c.615 1.026 1.312 2.189 2.766 2.189 1.453 0 2.15-1.163 2.764-2.189a6.459 6.459 0 0 1 .9-1.267Zm0-6.054a4.613 4.613 0 0 0-1.764 1.967c-.635 1.061-1.08 1.705-1.9 1.705-.82 0-1.266-.644-1.902-1.705-.615-1.026-1.312-2.189-2.766-2.189S3.517 6.887 2.902 7.913A6.468 6.468 0 0 1 2 9.18V4h12Z"/></svg>'},up={name:"skip_arrow_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10.002 8.29 2 12.304v-8.01ZM14 2h-2v12h2Z"/></svg>'},pp={name:"spinner",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M3.967 7.143h-.762a4.885 4.885 0 0 1 3.938-3.94v.771a4.123 4.123 0 0 0-3.176 3.169ZM8 2v1.875A4.125 4.125 0 1 1 3.875 8H2a6 6 0 1 0 6-6Z"/></svg>'},gp={name:"square_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm4.788 9.2L4 8.387 5.225 7.2l1.553 1.61 4.06-4.01L12 6.013Z"/></svg>'},fp={name:"square_t_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm9.033 4.199-.016-.076a2.34 2.34 0 0 0-.497-1.18 2.108 2.108 0 0 0-1.281-.26h-.56v5.941c0 .552.11.718.176.768a1.793 1.793 0 0 0 .88.196l.09.006V12H6.193v-.405l.09-.007c.59-.046.8-.144.87-.218.06-.06.158-.255.158-.884V4.683h-.565a2.19 2.19 0 0 0-1.274.262 2.015 2.015 0 0 0-.498 1.174l-.015.08H4.49L4.565 4h6.859l.07 2.199Z"/></svg>'},mp={name:"t_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M5.684 13v-.729l.221-.018c.764-.058.947-.19.985-.229.026-.026.157-.202.157-.992V4.078H6.48a2.46 2.46 0 0 0-1.477.291 2.262 2.262 0 0 0-.563 1.36l-.038.196h-.797L3.704 3h8.6l.092 2.925h-.784l-.021-.095a2.817 2.817 0 0 0-.589-1.466c-.147-.131-.523-.286-1.48-.286H8.96V11.2c0 .679.138.819.165.84a2.092 2.092 0 0 0 1.01.213l.223.018V13Z"/></svg>'},vp={name:"tablet_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M12.5 2h-9a.501.501 0 0 0-.5.5v11a.501.501 0 0 0 .5.5h9a.501.501 0 0 0 .5-.5v-11a.501.501 0 0 0-.5-.5ZM8 13.25a.75.75 0 1 1 .75-.75.752.752 0 0 1-.75.75ZM12 11H4V3h8Z"/></svg>'},bp={name:"tag_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16"><path class="cls-1" d="M8.044 3.588 5.23 3 3 5.229l.588 2.816L8.543 13 13 8.543ZM6.5 6.499a1.082 1.082 0 1 1-.013-1.516A1.072 1.072 0 0 1 6.499 6.5Z"/></svg>'},wp={name:"tags_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16"><path class="cls-1" d="M8.044 2.338 5.23 1.75 3 3.979l.588 2.816 4.955 4.955L13 7.293ZM6.5 5.249a1.082 1.082 0 1 1-.013-1.516 1.072 1.072 0 0 1 .013 1.516Zm6.251 4.794L8.543 14.25 4.257 9.964l-.283-1.369 4.569 4.57L12.207 9.5Z"/></svg>'},xp={name:"target_crosshairs_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 6.01a2 2 0 1 0 2 2 2 2 0 0 0-2-2Zm4.9.99A5.005 5.005 0 0 0 9 3.1V1H7v2.1A5.005 5.005 0 0 0 3.1 7H1v2h2.1A5.005 5.005 0 0 0 7 12.9V15h2v-2.1A5.005 5.005 0 0 0 12.9 9H15V7ZM8 12a4 4 0 1 1 4-4 4.005 4.005 0 0 1-4 4Z"/></svg>'},yp={name:"target_crosshairs_progress_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M15 7v2h-2.1A5.005 5.005 0 0 1 9 12.9V15H7v-2.108a4.99 4.99 0 0 1-3.898-3.985l-1.52.583 2.003-4 1.998 4L4.11 8.9A3.999 3.999 0 1 0 7 4.13V1h2v2.1A5.005 5.005 0 0 1 12.9 7Zm-5 1.01a2 2 0 1 1-2-2 2 2 0 0 1 2 2Z"/></svg>'},Cp={name:"three_dots_line_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 6.5A1.5 1.5 0 1 1 6.5 8 1.5 1.5 0 0 1 8 6.5ZM.5 8A1.5 1.5 0 1 0 2 6.5 1.5 1.5 0 0 0 .5 8Zm12 0A1.5 1.5 0 1 0 14 6.5 1.5 1.5 0 0 0 12.5 8Z"/></svg>'},kp={name:"three_vertical_lines_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M11 3h2v10h-2zM7 3h2v10H7zM3 3h2v10H3z"/></svg>'},$p={name:"thumbtack_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m10 7-.625-5H10V1H5v1h.625L5 7a2 2 0 0 0-2 2h4v4l.5 2 .5-2V9h4a2 2 0 0 0-2-2Z"/></svg>'},_p={name:"tile_size_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 8h6v6H2Zm0-6v5h2V4h8v8H9v2h5V2Z"/></svg>'},Sp={name:"times_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 9.103 5.102 12 4 10.897 6.898 8 4 5.103 5.102 4 8 6.897 10.898 4 12 5.103 9.102 8 12 10.897 10.898 12 8 9.103z"/></svg>'},Ip={name:"trash_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M10 4V2H6v2H3v2h1v8h8V6h1V4Zm-3 9H6V6h1Zm2-9H7V3h2Zm1 9H9V6h1Z"/></svg>'},Mp={name:"triangle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2 2 14h12Zm0 4.875 2.438 4.875H5.585Z"/></svg>'},Ap={name:"triangle_filled_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2 2 14h12L8 2Z"/></svg>'},Rp={name:"triangle_two_lines_horizontal",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M3.625 8 8 2l4.375 6h-8.75ZM14 12H2v2h12v-2Zm0-3H2v2h12V9Z"/></svg>'},Ep={name:"true_false_rectangle_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13.4 3.003H2.6a1.6 1.6 0 0 0-1.6 1.6v6.8a1.595 1.595 0 0 0 1.6 1.594h10.8a1.595 1.595 0 0 0 1.6-1.594v-6.8a1.6 1.6 0 0 0-1.6-1.6ZM7.587 6.58H6.141v3.736H4.946V6.58H3.5v-.896h4.087Zm4.913 0h-2.13v.862h1.974v.896H10.37v1.978H9.181V5.684H12.5Z"/></svg>'},Dp={name:"two_squares_in_brackets",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M4 4h5v5H4V4Zm6 3v3H7v2h5V7h-2ZM5 3V2H2v12h3v-1H3V3h2Zm8-1h-2v1h2v10h-2v1h3V2h-1Z"/></svg>'},Fp={name:"two_triangles_between_lines",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M1.11 2.11v12h2v-12h-2Zm12 0v12h2v-12h-2Zm-6 8.974-3-3 3-3v6Zm1.925-5.948 3 3-3 3v-6Z"/></svg>'},Op={name:"unlink_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.126 8.585c-.581.123-1.117.241-1.362.303a1.547 1.547 0 0 0-1.182 1.51l.01.155.021.193a1.69 1.69 0 0 0 .216.54l.02.038.105.134.127.144.054.047a1.509 1.509 0 0 0 .992.36h.049a1.306 1.306 0 0 0 .224-.034l.03.015.006-.001c.463-.088.925-.186 1.387-.287l.343 1.538c-.488.11-.976.221-1.467.314a3.112 3.112 0 0 1-.571.053 3.148 3.148 0 0 1-2.99-2.258l-.011-.045a3.04 3.04 0 0 1-.076-.35 3.127 3.127 0 0 1-.03-.206l-.004-.089a3.112 3.112 0 0 1-.016-.336A3.164 3.164 0 0 1 4.35 7.356c.272-.068.808-.203.802-.206l.623-.137Zm4.31-1.544-.353 1.575c.737.176 1.38.334 1.413.346a1.514 1.514 0 0 1 .789.768l.029.066.053.185.038.164.002.045a1.667 1.667 0 0 1-.035.58l-.064.185-.056.142a1.546 1.546 0 0 1-1.4.893 1.661 1.661 0 0 1-.313-.03 54.946 54.946 0 0 1-1.15-.24l-.347 1.55.406.097-.013-.017c.276.057.55.118.826.173a3.02 3.02 0 0 0 .578.056 3.188 3.188 0 0 0 2.811-1.74 3.018 3.018 0 0 0 .129-.311l.033-.083.061-.197a3.047 3.047 0 0 0 .082-.351l.008-.044a3.132 3.132 0 0 0-2.281-3.513c-.297-.077-.777-.19-1.245-.299M7.932 2.393 6.875 6.075h.75l.3 3.032 1.2-3.782h-.75Z"/></svg>'},Tp={name:"unlock_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M6.062 8V5.986a2.407 2.407 0 0 1 .566-1.516A1.834 1.834 0 0 1 8 4a1.883 1.883 0 0 1 2 2h2a3.888 3.888 0 0 0-4-4 3.822 3.822 0 0 0-2.81 1.078A4.349 4.349 0 0 0 4.062 6v2H3v6h10V8Z"/></svg>'},zp={name:"up_right_from_square_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 10.828V12H4V8h1.172l2-2H2v8h8V8.828l-2 2Z"/><path class="cls-1" d="m14.042 1.97-2.063 6.281-.49-2.344-4.117 4.122-1.414-1.414 4.102-4.102-2.324-.504 6.306-2.038z"/></svg>'},Vp={name:"upload_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M14 9v5H2V9h1v4h10V9ZM7.982 2 5 7.9l2.004-1.312L7 11h2V6.613L11 7.9Z"/></svg>'},Lp={name:"user_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8.004 2a2.18 2.18 0 0 1 2.184 2.182v1.09c.647 0 .378.932 0 1.455a4.275 4.275 0 0 1-.335.364 8.55 8.55 0 0 1-.31.742l.208 1.076h.437l2.75 1.527A2.148 2.148 0 0 1 14 12.291V14H2v-1.673a2.163 2.163 0 0 1 1.063-1.869l2.758-1.55h.437l.21-1.068a8.52 8.52 0 0 1-.312-.749 4.275 4.275 0 0 1-.335-.364c-.378-.523-.647-1.454 0-1.454v-1.09A2.18 2.18 0 0 1 8.004 2"/></svg>'},Hp={name:"watch_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.57 7.28-.06.013a4.556 4.556 0 0 0-1.38-2.609V3.44a.481.481 0 0 0-.48-.48h-.48V2H5.85v.96h-.48a.481.481 0 0 0-.48.48v1.24a4.545 4.545 0 0 0 0 6.64v1.24a.481.481 0 0 0 .48.48h.48V14h4.32v-.96h.48a.481.481 0 0 0 .48-.48v-1.24a4.547 4.547 0 0 0 1.379-2.612l.061.012a.481.481 0 0 0 .48-.48v-.48a.481.481 0 0 0-.48-.48Zm-2.3 2.662a1.59 1.59 0 0 0-.182-.26L8.747 8.338a.785.785 0 0 0 0-.666c.132-.133.894-.899.965-1a1.216 1.216 0 0 0 .14-.485 1.004 1.004 0 0 0-.515.157l-.955.957a.784.784 0 1 0 0 1.408c.163.167.956.974 1.236 1.254a1.477 1.477 0 0 0 .36.276 3.055 3.055 0 1 1 .291-.297Z"/></svg>'},Pp={name:"waveform_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M9.77 11.225c-1.582 0-2.076-1.262-2.512-2.376l-.17-.426a26.242 26.242 0 0 1-.218-.595c-.32-.9-.41-1.046-.652-1.046-.24 0-.308.065-.612.88-.088.237-.188.504-.317.801l-.098.238c-.486 1.178-1.037 2.513-2.747 2.513H2V9.221h.444c.318 0 .48-.316.9-1.292l.133-.307c.06-.148.121-.304.181-.457.435-1.116.927-2.382 2.56-2.382 1.59 0 2.063 1.274 2.48 2.398l.168.443c.082.205.155.396.221.572.345.905.427 1.03.684 1.03.259 0 .409-.317.742-1.157.08-.201.167-.42.266-.652l.097-.228c.477-1.127 1.016-2.405 2.668-2.412l.444-.002L14 6.782h-.447c-.367 0-.506.245-.994 1.387 0 0-.179.434-.238.584-.433 1.101-.973 2.472-2.55 2.472Z"/></svg>'},Bp={name:"webvi_custom_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm4.089 2.526h-1.868a5.598 5.598 0 0 0-.854-1.712 5.363 5.363 0 0 1 2.722 1.712Zm-2.722 8.66a5.599 5.599 0 0 0 .854-1.712h1.868a5.363 5.363 0 0 1-2.722 1.712Zm3.181-2.344h-2.146a10.644 10.644 0 0 0 .208-1.187L9.923 10c-.05.294-.106.58-.176.843h-1.51l-1.263.632h2.583C9.145 12.647 8.554 13.368 8 13.368c-.517 0-1.065-.633-1.47-1.672l-.56.28a5.018 5.018 0 0 0 .663 1.21 5.363 5.363 0 0 1-2.722-1.712h.317a.955.955 0 0 1-.017-.17v-.462h-.76a5.33 5.33 0 0 1-.804-2.526h1.564v-.632H2.646a5.33 5.33 0 0 1 .805-2.526h.759V4.69a.95.95 0 0 1 .016-.164h-.316a5.363 5.363 0 0 1 2.722-1.712 5.017 5.017 0 0 0-.663 1.207l.56.28c.406-1.037.953-1.67 1.47-1.67.554 0 1.145.722 1.557 1.895H6.98l1.261.632h1.507c.07.263.126.548.176.842l.687.344a10.66 10.66 0 0 0-.208-1.186h2.146a5.33 5.33 0 0 1 .804 2.526h-.67a.92.92 0 0 1-.001.632h.671a5.33 5.33 0 0 1-.804 2.526ZM12.105 8a.326.326 0 0 1-.19.296l-6.598 3.3-.148.036a.327.327 0 0 1-.327-.328V4.69a.327.327 0 0 1 .492-.281l6.595 3.302a.326.326 0 0 1 .176.29Z"/></svg>'},Np={name:"webvi_host_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8 2a6 6 0 1 0 6 6 6 6 0 0 0-6-6Zm4.09 2.526H10.22a5.6 5.6 0 0 0-.854-1.712 5.364 5.364 0 0 1 2.722 1.712Zm-2.723 8.66a5.6 5.6 0 0 0 .854-1.712h1.868a5.363 5.363 0 0 1-2.722 1.712Zm3.181-2.344h-2.146a10.657 10.657 0 0 0 .208-1.187L9.923 10a9.85 9.85 0 0 1-.176.843h-1.51l-1.263.632h2.583C9.145 12.647 8.554 13.368 8 13.368c-.517 0-1.064-.633-1.47-1.672l-.56.28a5.02 5.02 0 0 0 .663 1.21 5.363 5.363 0 0 1-2.722-1.712h.317a.96.96 0 0 1-.017-.17v-.462h-.76a5.33 5.33 0 0 1-.804-2.526H4.21v-.632H2.647a5.33 5.33 0 0 1 .805-2.526h.759V4.69a.95.95 0 0 1 .016-.164h-.316a5.364 5.364 0 0 1 2.722-1.712 5.02 5.02 0 0 0-.663 1.207l.56.28c.406-1.037.953-1.67 1.47-1.67.554 0 1.145.722 1.557 1.895H6.98l1.262.632h1.506c.07.263.126.548.176.842l.687.344a10.646 10.646 0 0 0-.208-1.186h2.146a5.33 5.33 0 0 1 .804 2.526h-.67a.92.92 0 0 1-.001.632h.671a5.33 5.33 0 0 1-.804 2.526Zm-.619-3.131L5.334 4.409a.327.327 0 0 0-.492.281v6.613a.327.327 0 0 0 .327.328l.148-.035 6.598-3.3a.326.326 0 0 0 .014-.585Zm-6.087 2.505V5.78L10.274 8Z"/></svg>'},qp={name:"window_code_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm11 11H3V5h10ZM4 9.135l2.698-1.118v.75l-1.588.65 1.588.646v.75l-2.694-1.12Zm4.42-1.49h.792l-1.565 3.71h-.783ZM12 9.135v.557l-2.694 1.12v-.75l.062-.024 1.526-.626-1.588-.648v-.747Z"/></svg>'},Zp={name:"window_text_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M2 2v12h12V2Zm11 11H3V5h10ZM7 8H4V6h3Zm5 2H4V9h8Zm0 2H4v-1h8Z"/></svg>'},Up={name:"wrench_hammer_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="m12.286 11.714-5.791-5.79a2.504 2.504 0 0 0 .17-.755 2.149 2.149 0 0 0-.095-.814 2.12 2.12 0 0 0-.55-.904 2.328 2.328 0 0 0-1.76-.685h-.045a2.104 2.104 0 0 0-.718.155l1.102 1.104.32.32.244.245a1.864 1.864 0 0 1-.22.854 1.043 1.043 0 0 1-.114.145 1.648 1.648 0 0 1-1.003.335L2.61 4.704l-.449-.449a2.074 2.074 0 0 0-.135.545l-.015.105a2.337 2.337 0 0 0 .384 1.518 2.51 2.51 0 0 0 .295.36 2.205 2.205 0 0 0 1.576.65 2.453 2.453 0 0 0 .898-.175l4.793 4.796 1.203 1.2h.668l.663-.665v-.67ZM5.75 8.908l1.367 1.367-2.988 2.987h-.923l-.45-.45v-.916ZM14 5.906l-1.81 1.809-1.298-1.216-1.38 1.38-1.367-1.365 1.374-1.382-1.622-1.62.683-.774 2.252.45Z"/></svg>'},jp={name:"xmark_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M13 4.667 9.667 7.999 13 11.333 11.333 13 8 9.667 4.667 13 3 11.333 6.333 8 3 4.667 4.667 3 8 6.333 11.333 3Z"/></svg>'},Gp={name:"xmark_check_16_x_16",data:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path class="cls-1" d="M8.033 14.026 4.9 10.866 6.277 9.53l1.744 1.81 4.562-4.507 1.307 1.363Zm1.155-10.68-1.321-1.32-2.312 2.311-2.311-2.311-1.321 1.32 2.311 2.312L1.923 7.97l1.32 1.32 2.312-2.31 2.312 2.31 1.32-1.32-2.31-2.312Z"/></svg>'},Wp=G`
|
|
2290
2282
|
<template>
|
|
2291
2283
|
<div class="icon" :innerHTML=${e=>e.icon.data}></div>
|
|
2292
2284
|
</template
|
|
2293
|
-
`,
|
|
2285
|
+
`,Kp=we`
|
|
2294
2286
|
${Ao("inline-flex")}
|
|
2295
2287
|
|
|
2296
2288
|
:host {
|
|
2297
2289
|
align-items: center;
|
|
2298
|
-
${
|
|
2290
|
+
${Dd}
|
|
2299
2291
|
width: ${Oa};
|
|
2300
2292
|
height: ${Oa};
|
|
2301
2293
|
}
|
|
@@ -2327,18 +2319,18 @@ const Wd=mi.tagFor(jd),Kd={name:"add_16_x_16",data:'<svg xmlns="http://www.w3.or
|
|
|
2327
2319
|
height: 100%;
|
|
2328
2320
|
}
|
|
2329
2321
|
`
|
|
2330
|
-
class
|
|
2331
|
-
e&&(null!==this.ariaLabel&&void 0!==this.ariaLabel?e.setAttribute("aria-label",this.ariaLabel):e.removeAttribute("aria-label"))}}e([se],
|
|
2332
|
-
const
|
|
2322
|
+
class Xp extends Vt{constructor(e){super(),this.icon=e}connectedCallback(){super.connectedCallback(),this.forwardAriaLabelToSvg()}ariaLabelChanged(){this.forwardAriaLabelToSvg()}forwardAriaLabelToSvg(){const e=this.shadowRoot?.querySelector("svg")
|
|
2323
|
+
e&&(null!==this.ariaLabel&&void 0!==this.ariaLabel?e.setAttribute("aria-label",this.ariaLabel):e.removeAttribute("aria-label"))}}e([se],Xp.prototype,"severity",void 0),Pt(Xp,hn)
|
|
2324
|
+
const Yp=(e,t)=>{const n=t.compose({baseName:e,template:Wp,styles:Kp,baseClass:t})
|
|
2333
2325
|
mi.getOrCreate().withPrefix("nimble").register(n())}
|
|
2334
|
-
class
|
|
2335
|
-
const
|
|
2336
|
-
class
|
|
2337
|
-
const
|
|
2338
|
-
class
|
|
2339
|
-
const
|
|
2340
|
-
class
|
|
2341
|
-
const
|
|
2326
|
+
class Jp extends Xp{constructor(){super(du)}}Yp("icon-exclamation-mark",Jp)
|
|
2327
|
+
const Qp=mi.tagFor(Jp)
|
|
2328
|
+
class eg extends Xp{constructor(){super(Tu)}}Yp("icon-info",eg)
|
|
2329
|
+
const tg=mi.tagFor(eg)
|
|
2330
|
+
class ng extends Xp{constructor(){super(Ap)}}Yp("icon-triangle-filled",ng)
|
|
2331
|
+
const ig=mi.tagFor(ng)
|
|
2332
|
+
class og extends Xp{constructor(){super(jp)}}Yp("icon-xmark",og)
|
|
2333
|
+
const rg=mi.tagFor(og),sg={default:void 0,error:"error",warning:"warning",information:"information"},ag="Close",lg="Increment",cg="Decrement",dg=di.create({name:"popup-dismiss-label",cssCustomPropertyName:null}).withDefault(ag),hg=di.create({name:"numeric-decrement-label",cssCustomPropertyName:null}).withDefault(cg),ug=di.create({name:"numeric-increment-label",cssCustomPropertyName:null}).withDefault(lg),pg=G`
|
|
2342
2334
|
<div class="container"
|
|
2343
2335
|
role="status"
|
|
2344
2336
|
aria-atomic="${e=>e.ariaAtomic}"
|
|
@@ -2363,14 +2355,14 @@ const sg=mi.tagFor(rg),ag={default:void 0,error:"error",warning:"warning",inform
|
|
|
2363
2355
|
aria-roledescription="${e=>e.ariaRoledescription}"
|
|
2364
2356
|
>
|
|
2365
2357
|
<div class="icon">
|
|
2366
|
-
${Le((e=>e.severity===
|
|
2367
|
-
<${
|
|
2358
|
+
${Le((e=>e.severity===sg.error),G`
|
|
2359
|
+
<${Qp}></${Qp}>
|
|
2368
2360
|
`)}
|
|
2369
|
-
${Le((e=>e.severity===
|
|
2370
|
-
<${
|
|
2361
|
+
${Le((e=>e.severity===sg.warning),G`
|
|
2362
|
+
<${ig}></${ig}>
|
|
2371
2363
|
`)}
|
|
2372
|
-
${Le((e=>e.severity===
|
|
2373
|
-
<${
|
|
2364
|
+
${Le((e=>e.severity===sg.information),G`
|
|
2365
|
+
<${tg}></${tg}>
|
|
2374
2366
|
`)}
|
|
2375
2367
|
</div>
|
|
2376
2368
|
<div class="text">
|
|
@@ -2381,20 +2373,20 @@ const sg=mi.tagFor(rg),ag={default:void 0,error:"error",warning:"warning",inform
|
|
|
2381
2373
|
<slot name="action"></slot>
|
|
2382
2374
|
<div class="dismiss">
|
|
2383
2375
|
${Le((e=>!e.preventDismiss),G`
|
|
2384
|
-
<${
|
|
2385
|
-
<${
|
|
2386
|
-
${e=>
|
|
2387
|
-
</${
|
|
2376
|
+
<${Gd} appearance="ghost" content-hidden @click="${e=>e.dismissBanner()}">
|
|
2377
|
+
<${rg} slot="start"></${rg}>
|
|
2378
|
+
${e=>dg.getValueFor(e)}
|
|
2379
|
+
</${Gd}>
|
|
2388
2380
|
`)}
|
|
2389
2381
|
</div>
|
|
2390
2382
|
</div>
|
|
2391
2383
|
</div>
|
|
2392
2384
|
`
|
|
2393
|
-
class
|
|
2394
|
-
this.$emit("toggle",e)}dismissBanner(){this.open=!1}}e([se({mode:"boolean"})],
|
|
2395
|
-
const
|
|
2396
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2397
|
-
const
|
|
2385
|
+
class gg extends Vt{constructor(){super(...arguments),this.open=!1,this.severity=sg.default,this.titleHidden=!1,this.preventDismiss=!1}openChanged(){const e={newState:this.open,oldState:!this.open}
|
|
2386
|
+
this.$emit("toggle",e)}dismissBanner(){this.open=!1}}e([se({mode:"boolean"})],gg.prototype,"open",void 0),e([se()],gg.prototype,"severity",void 0),e([se({attribute:"title-hidden",mode:"boolean"})],gg.prototype,"titleHidden",void 0),e([se({attribute:"prevent-dismiss",mode:"boolean"})],gg.prototype,"preventDismiss",void 0),Pt(gg,hn)
|
|
2387
|
+
const fg=gg.compose({baseName:"banner",template:pg,styles:qd})
|
|
2388
|
+
mi.getOrCreate().withPrefix("nimble").register(fg()),mi.tagFor(gg)
|
|
2389
|
+
const mg=we`
|
|
2398
2390
|
${Ao("inline-block")}
|
|
2399
2391
|
|
|
2400
2392
|
:host {
|
|
@@ -2422,8 +2414,8 @@ const vg=we`
|
|
|
2422
2414
|
font: ${Bl};
|
|
2423
2415
|
}
|
|
2424
2416
|
`
|
|
2425
|
-
class
|
|
2426
|
-
const
|
|
2417
|
+
class vg extends vn{}e([se],vg.prototype,"appearance",void 0)
|
|
2418
|
+
const bg=vg.compose({baseName:"breadcrumb",baseClass:vn,template:(e,t)=>G`
|
|
2427
2419
|
<template role="navigation">
|
|
2428
2420
|
<div role="list" class="list" part="list">
|
|
2429
2421
|
<slot
|
|
@@ -2431,9 +2423,9 @@ const wg=bg.compose({baseName:"breadcrumb",baseClass:vn,template:(e,t)=>G`
|
|
|
2431
2423
|
></slot>
|
|
2432
2424
|
</div>
|
|
2433
2425
|
</template>
|
|
2434
|
-
`,styles:
|
|
2435
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2436
|
-
const
|
|
2426
|
+
`,styles:mg})
|
|
2427
|
+
mi.getOrCreate().withPrefix("nimble").register(bg()),mi.tagFor(vg)
|
|
2428
|
+
const wg=we`
|
|
2437
2429
|
${Ao("inline-flex")}
|
|
2438
2430
|
|
|
2439
2431
|
:host {
|
|
@@ -2495,7 +2487,7 @@ const xg=we`
|
|
|
2495
2487
|
fill: ${Ol};
|
|
2496
2488
|
}
|
|
2497
2489
|
`
|
|
2498
|
-
class
|
|
2490
|
+
class xg extends mn{}const yg=xg.compose({baseName:"breadcrumb-item",baseClass:mn,template:(e,t)=>G`
|
|
2499
2491
|
<div role="listitem" class="listitem" part="listitem">
|
|
2500
2492
|
${Le((e=>e.href&&e.href.length>0),G`
|
|
2501
2493
|
${((e,t)=>G`
|
|
@@ -2551,9 +2543,9 @@ class yg extends mn{}const Cg=yg.compose({baseName:"breadcrumb-item",baseClass:m
|
|
|
2551
2543
|
</span>
|
|
2552
2544
|
`)}
|
|
2553
2545
|
</div>
|
|
2554
|
-
`,styles:
|
|
2555
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2556
|
-
const
|
|
2546
|
+
`,styles:wg,separator:$u.data})
|
|
2547
|
+
mi.getOrCreate().withPrefix("nimble").register(yg()),mi.tagFor(xg)
|
|
2548
|
+
const Cg=we`
|
|
2557
2549
|
${Ao("inline-flex")}
|
|
2558
2550
|
|
|
2559
2551
|
:host {
|
|
@@ -2660,21 +2652,21 @@ const kg=we`
|
|
|
2660
2652
|
[part='end'] {
|
|
2661
2653
|
display: none;
|
|
2662
2654
|
}
|
|
2663
|
-
`.withBehaviors(
|
|
2655
|
+
`.withBehaviors(Nd(kr.light,we`
|
|
2664
2656
|
:host {
|
|
2665
2657
|
--ni-private-card-button-background-hover-color: ${br(tr,.3)};
|
|
2666
2658
|
--ni-private-card-button-background-active-color: ${tr};
|
|
2667
2659
|
--ni-private-card-button-border-active-color: ${br(rr,.2)};
|
|
2668
2660
|
--ni-private-card-button-border-selected-color: ${br(rr,.6)};
|
|
2669
2661
|
}
|
|
2670
|
-
`),
|
|
2662
|
+
`),Nd(kr.dark,we`
|
|
2671
2663
|
:host {
|
|
2672
2664
|
--ni-private-card-button-background-hover-color: ${br(Qo,.07)};
|
|
2673
2665
|
--ni-private-card-button-background-active-color: ${br(Qo,.15)};
|
|
2674
2666
|
--ni-private-card-button-border-active-color: ${br(Qo,.2)};
|
|
2675
2667
|
--ni-private-card-button-border-selected-color: ${Qo};
|
|
2676
2668
|
}
|
|
2677
|
-
`),
|
|
2669
|
+
`),Nd(kr.color,we`
|
|
2678
2670
|
:host {
|
|
2679
2671
|
--ni-private-card-button-background-hover-color: ${br(tr,.07)};
|
|
2680
2672
|
--ni-private-card-button-background-active-color: ${br(tr,.15)};
|
|
@@ -2682,10 +2674,10 @@ const kg=we`
|
|
|
2682
2674
|
--ni-private-card-button-border-selected-color: ${br(tr,.6)};
|
|
2683
2675
|
}
|
|
2684
2676
|
`))
|
|
2685
|
-
class
|
|
2686
|
-
const
|
|
2687
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2688
|
-
const
|
|
2677
|
+
class kg extends In{constructor(){super(...arguments),this.selected=!1}}e([se({mode:"boolean"})],kg.prototype,"selected",void 0)
|
|
2678
|
+
const $g=kg.compose({baseName:"card-button",template:bn,styles:Cg,shadowOptions:{delegatesFocus:!0}})
|
|
2679
|
+
mi.getOrCreate().withPrefix("nimble").register($g()),mi.tagFor(kg)
|
|
2680
|
+
const _g=we`
|
|
2689
2681
|
${Ao("inline-flex")}
|
|
2690
2682
|
|
|
2691
2683
|
:host {
|
|
@@ -2693,7 +2685,7 @@ const Sg=we`
|
|
|
2693
2685
|
align-items: center;
|
|
2694
2686
|
cursor: pointer;
|
|
2695
2687
|
outline: none;
|
|
2696
|
-
${
|
|
2688
|
+
${Dd}
|
|
2697
2689
|
}
|
|
2698
2690
|
|
|
2699
2691
|
:host([disabled]) {
|
|
@@ -2789,7 +2781,7 @@ const Sg=we`
|
|
|
2789
2781
|
fill: rgba(${ua}, 0.3);
|
|
2790
2782
|
}
|
|
2791
2783
|
`
|
|
2792
|
-
class
|
|
2784
|
+
class Sg extends En{}const Ig=Sg.compose({baseName:"checkbox",baseClass:En,template:(e,t)=>G`
|
|
2793
2785
|
<template
|
|
2794
2786
|
role="checkbox"
|
|
2795
2787
|
aria-checked="${e=>e.checked}"
|
|
@@ -2816,9 +2808,9 @@ class Ig extends En{}const Mg=Ig.compose({baseName:"checkbox",baseClass:En,templ
|
|
|
2816
2808
|
<slot ${We("defaultSlottedNodes")}></slot>
|
|
2817
2809
|
</label>
|
|
2818
2810
|
</template>
|
|
2819
|
-
`,styles:
|
|
2820
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2821
|
-
const
|
|
2811
|
+
`,styles:_g,checkedIndicator:kh.data,indeterminateIndicator:Xu.data})
|
|
2812
|
+
mi.getOrCreate().withPrefix("nimble").register(Ig())
|
|
2813
|
+
const Mg=mi.tagFor(Sg),Ag=we`
|
|
2822
2814
|
${vd}
|
|
2823
2815
|
|
|
2824
2816
|
@layer base {
|
|
@@ -2897,8 +2889,8 @@ const Ag=mi.tagFor(Ig),Rg=we`
|
|
|
2897
2889
|
}
|
|
2898
2890
|
}
|
|
2899
2891
|
`
|
|
2900
|
-
class
|
|
2901
|
-
const
|
|
2892
|
+
class Rg extends Ji{constructor(){super(...arguments),this.appearance=ud,this.contentHidden=!1}}e([se],Rg.prototype,"appearance",void 0),e([se({attribute:"content-hidden",mode:"boolean"})],Rg.prototype,"contentHidden",void 0),Pt(Rg,Ye,Mn)
|
|
2893
|
+
const Eg=Rg.compose({baseName:"toggle-button",template:(e,t)=>G`
|
|
2902
2894
|
<div
|
|
2903
2895
|
role="button"
|
|
2904
2896
|
part="control"
|
|
@@ -2939,15 +2931,15 @@ const Dg=Eg.compose({baseName:"toggle-button",template:(e,t)=>G`
|
|
|
2939
2931
|
</span>
|
|
2940
2932
|
${Je(0,t)}
|
|
2941
2933
|
</div>
|
|
2942
|
-
`,styles:
|
|
2943
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
2944
|
-
const
|
|
2934
|
+
`,styles:Ag,shadowOptions:{delegatesFocus:!0}})
|
|
2935
|
+
mi.getOrCreate().withPrefix("nimble").register(Eg())
|
|
2936
|
+
const Dg=mi.tagFor(Rg),Fg=G`
|
|
2945
2937
|
<div class="error-text" title="${e=>e.errorText}" aria-live="polite">
|
|
2946
2938
|
${e=>e.errorText}
|
|
2947
2939
|
</div>
|
|
2948
2940
|
`
|
|
2949
|
-
class
|
|
2950
|
-
const
|
|
2941
|
+
class Og extends Xp{constructor(){super(Yd)}}Yp("icon-arrow-expander-down",Og)
|
|
2942
|
+
const Tg=mi.tagFor(Og),zg="above",Vg="underline",Lg="outline",Hg="block",Pg=we`
|
|
2951
2943
|
${Ao("inline-flex")}
|
|
2952
2944
|
|
|
2953
2945
|
:host {
|
|
@@ -2957,7 +2949,7 @@ const zg=mi.tagFor(Tg),Vg="above",Lg="underline",Hg="outline",Pg="block",Bg=we`
|
|
|
2957
2949
|
height: ${Aa};
|
|
2958
2950
|
position: relative;
|
|
2959
2951
|
justify-content: center;
|
|
2960
|
-
${
|
|
2952
|
+
${Dd}
|
|
2961
2953
|
min-width: 250px;
|
|
2962
2954
|
outline: none;
|
|
2963
2955
|
vertical-align: top;
|
|
@@ -3140,7 +3132,7 @@ const zg=mi.tagFor(Tg),Vg="above",Lg="underline",Hg="outline",Pg="block",Bg=we`
|
|
|
3140
3132
|
::slotted(option) {
|
|
3141
3133
|
flex: none;
|
|
3142
3134
|
}
|
|
3143
|
-
`.withBehaviors(md(
|
|
3135
|
+
`.withBehaviors(md(Vg,we`
|
|
3144
3136
|
.control {
|
|
3145
3137
|
border-bottom-width: ${Fa};
|
|
3146
3138
|
padding-bottom: 0;
|
|
@@ -3149,12 +3141,12 @@ const zg=mi.tagFor(Tg),Vg="above",Lg="underline",Hg="outline",Pg="block",Bg=we`
|
|
|
3149
3141
|
:host([disabled]) .control {
|
|
3150
3142
|
border-color: rgba(${ua}, 0.1);
|
|
3151
3143
|
}
|
|
3152
|
-
`),md(
|
|
3144
|
+
`),md(Lg,we`
|
|
3153
3145
|
.control {
|
|
3154
3146
|
border-width: ${Fa};
|
|
3155
3147
|
padding: 0;
|
|
3156
3148
|
}
|
|
3157
|
-
`),md(
|
|
3149
|
+
`),md(Hg,we`
|
|
3158
3150
|
.control {
|
|
3159
3151
|
background-color: rgba(${ua}, 0.1);
|
|
3160
3152
|
}
|
|
@@ -3167,11 +3159,11 @@ const zg=mi.tagFor(Tg),Vg="above",Lg="underline",Hg="outline",Pg="block",Bg=we`
|
|
|
3167
3159
|
:host([disabled]) .control {
|
|
3168
3160
|
background-color: rgba(${ua}, 0.07);
|
|
3169
3161
|
}
|
|
3170
|
-
`),
|
|
3162
|
+
`),Nd(kr.color,we`
|
|
3171
3163
|
.listbox slot {
|
|
3172
3164
|
background: ${br(tr,.15)};
|
|
3173
3165
|
}
|
|
3174
|
-
`)),
|
|
3166
|
+
`)),Bg=we`
|
|
3175
3167
|
.error-icon {
|
|
3176
3168
|
display: none;
|
|
3177
3169
|
}
|
|
@@ -3203,9 +3195,9 @@ const zg=mi.tagFor(Tg),Vg="above",Lg="underline",Hg="outline",Pg="block",Bg=we`
|
|
|
3203
3195
|
:host([error-visible]) .error-text:empty {
|
|
3204
3196
|
display: none;
|
|
3205
3197
|
}
|
|
3206
|
-
`,
|
|
3198
|
+
`,Ng=we`
|
|
3199
|
+
${Pg}
|
|
3207
3200
|
${Bg}
|
|
3208
|
-
${Ng}
|
|
3209
3201
|
|
|
3210
3202
|
:host {
|
|
3211
3203
|
--ni-private-hover-bottom-border-width: 2px;
|
|
@@ -3217,7 +3209,7 @@ const zg=mi.tagFor(Tg),Vg="above",Lg="underline",Hg="outline",Pg="block",Bg=we`
|
|
|
3217
3209
|
|
|
3218
3210
|
:host([disabled]) *,
|
|
3219
3211
|
:host([disabled]) {
|
|
3220
|
-
${
|
|
3212
|
+
${Dd}
|
|
3221
3213
|
color: ${Yl};
|
|
3222
3214
|
}
|
|
3223
3215
|
|
|
@@ -3278,13 +3270,13 @@ const zg=mi.tagFor(Tg),Vg="above",Lg="underline",Hg="outline",Pg="block",Bg=we`
|
|
|
3278
3270
|
:host(:empty) .listbox {
|
|
3279
3271
|
display: none;
|
|
3280
3272
|
}
|
|
3281
|
-
`.withBehaviors(md(
|
|
3273
|
+
`.withBehaviors(md(Hg,we`
|
|
3282
3274
|
:host([error-visible]) .control {
|
|
3283
3275
|
border-bottom-width: ${Fa};
|
|
3284
3276
|
padding-bottom: 0;
|
|
3285
3277
|
}
|
|
3286
3278
|
`))
|
|
3287
|
-
class
|
|
3279
|
+
class qg extends Un{constructor(){super(...arguments),this.appearance=Vg,this.errorVisible=!1,this.valueUpdatedByInput=!1}get value(){return super.value}set value(e){super.value=e,this.filter=e,this.filterOptions(),this.selectedIndex=this.options.map((e=>e.text)).indexOf(this.value)}setPositioning(){this.$fastController.isConnected&&super.setPositioning()}slottedOptionsChanged(e,t){const n=this.value
|
|
3288
3280
|
super.slottedOptionsChanged(e,t),n&&(this.value=n)}connectedCallback(){super.connectedCallback(),this.setPositioning(),this.updateInputAriaLabel()}toggleButtonClickHandler(e){e.stopImmediatePropagation()}toggleButtonChangeHandler(e){this.open=this.dropdownButton.checked,e.stopImmediatePropagation()}toggleButtonKeyDownHandler(e){switch(e.key){case Us:case qs:case" ":case js:return this.open=!0,this.stopPropagation(e),!1
|
|
3289
3281
|
default:return!0}}filterOptions(){super.filterOptions()
|
|
3290
3282
|
const e=this.filteredOptions.filter((e=>!e.disabled))
|
|
@@ -3297,8 +3289,8 @@ case qs:case Us:this.open&&this.valueUpdatedByInput&&(this.valueUpdatedByInput=!
|
|
|
3297
3289
|
break
|
|
3298
3290
|
default:return t}return t}focusoutHandler(e){const t=super.focusoutHandler(e)
|
|
3299
3291
|
return this.open=!1,this.emitChangeIfValueUpdated(),t}openChanged(){super.openChanged(),this.dropdownButton&&(this.dropdownButton.checked=this.open)}regionChanged(e,t){this.region&&this.controlWrapper&&(this.region.anchorElement=this.controlWrapper)}controlWrapperChanged(e,t){this.region&&this.controlWrapper&&(this.region.anchorElement=this.controlWrapper)}ariaLabelChanged(e,t){this.updateInputAriaLabel()}maxHeightChanged(){this.updateListboxMaxHeightCssVariable()}updateListboxMaxHeightCssVariable(){this.listbox&&this.listbox.style.setProperty("--ni-private-select-max-height",`${this.maxHeight}px`)}updateInputAriaLabel(){const e=this.shadowRoot?.querySelector(".selected-value")
|
|
3300
|
-
this.ariaLabel?e?.setAttribute("aria-label",this.ariaLabel):e?.removeAttribute("aria-label")}emitChangeIfValueUpdated(){this.valueUpdatedByInput&&(this.value!==this.valueBeforeTextUpdate&&this.$emit("change"),this.valueUpdatedByInput=!1)}}e([se],
|
|
3301
|
-
const
|
|
3292
|
+
this.ariaLabel?e?.setAttribute("aria-label",this.ariaLabel):e?.removeAttribute("aria-label")}emitChangeIfValueUpdated(){this.valueUpdatedByInput&&(this.value!==this.valueBeforeTextUpdate&&this.$emit("change"),this.valueUpdatedByInput=!1)}}e([se],qg.prototype,"appearance",void 0),e([m],qg.prototype,"dropdownButton",void 0),e([se({attribute:"error-text"})],qg.prototype,"errorText",void 0),e([se({attribute:"error-visible",mode:"boolean"})],qg.prototype,"errorVisible",void 0),e([m],qg.prototype,"region",void 0),e([m],qg.prototype,"controlWrapper",void 0)
|
|
3293
|
+
const Zg=qg.compose({baseName:"combobox",baseClass:Un,template:(e,t)=>G`
|
|
3302
3294
|
<template
|
|
3303
3295
|
aria-disabled="${e=>e.ariaDisabled}"
|
|
3304
3296
|
autocomplete="${e=>e.autocomplete}"
|
|
@@ -3338,12 +3330,12 @@ const Ug=Zg.compose({baseName:"combobox",baseClass:Un,template:(e,t)=>G`
|
|
|
3338
3330
|
</slot>
|
|
3339
3331
|
${Je(0,t)}
|
|
3340
3332
|
</div>
|
|
3341
|
-
<${
|
|
3333
|
+
<${Hd}
|
|
3342
3334
|
${Oe("region")}
|
|
3343
3335
|
class="anchored-region"
|
|
3344
3336
|
fixed-placement
|
|
3345
3337
|
auto-update-mode="auto"
|
|
3346
|
-
vertical-default-position="${e=>e.positionAttribute===
|
|
3338
|
+
vertical-default-position="${e=>e.positionAttribute===zg?"top":"bottom"}"
|
|
3347
3339
|
vertical-positioning-mode="${e=>e.positionAttribute?"locktodefault":"dynamic"}"
|
|
3348
3340
|
horizontal-default-position="center"
|
|
3349
3341
|
horizontal-positioning-mode="locktodefault"
|
|
@@ -3361,16 +3353,16 @@ const Ug=Zg.compose({baseName:"combobox",baseClass:Un,template:(e,t)=>G`
|
|
|
3361
3353
|
${We({filter:e=>e instanceof HTMLElement&&Tn.slottedOptionFilter(e),flatten:!0,property:"slottedOptions"})}
|
|
3362
3354
|
></slot>
|
|
3363
3355
|
</div>
|
|
3364
|
-
</${
|
|
3356
|
+
</${Hd}>
|
|
3365
3357
|
</template>
|
|
3366
|
-
`,styles:
|
|
3358
|
+
`,styles:Ng,shadowOptions:{delegatesFocus:!0},end:G`
|
|
3367
3359
|
<div class="end-slot-container">
|
|
3368
|
-
<${
|
|
3360
|
+
<${Qp}
|
|
3369
3361
|
severity="error"
|
|
3370
3362
|
class="error-icon"
|
|
3371
|
-
></${
|
|
3363
|
+
></${Qp}>
|
|
3372
3364
|
<div class="separator"></div>
|
|
3373
|
-
<${
|
|
3365
|
+
<${Dg}
|
|
3374
3366
|
${Oe("dropdownButton")}
|
|
3375
3367
|
appearance="ghost"
|
|
3376
3368
|
?checked="${e=>e.open}"
|
|
@@ -3385,17 +3377,17 @@ const Ug=Zg.compose({baseName:"combobox",baseClass:Un,template:(e,t)=>G`
|
|
|
3385
3377
|
aria-expanded="${e=>e.open}"
|
|
3386
3378
|
tabindex="-1"
|
|
3387
3379
|
>
|
|
3388
|
-
<${
|
|
3380
|
+
<${Tg}
|
|
3389
3381
|
slot="start"
|
|
3390
3382
|
class="dropdown-icon"
|
|
3391
3383
|
>
|
|
3392
|
-
</${
|
|
3393
|
-
</${
|
|
3384
|
+
</${Tg}>
|
|
3385
|
+
</${Dg}>
|
|
3394
3386
|
</div>
|
|
3395
|
-
${
|
|
3387
|
+
${Fg}
|
|
3396
3388
|
`})
|
|
3397
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
3398
|
-
const
|
|
3389
|
+
mi.getOrCreate().withPrefix("nimble").register(Zg()),mi.tagFor(qg)
|
|
3390
|
+
const Ug=Symbol("user dismissed"),jg=we`
|
|
3399
3391
|
${Ao("grid")}
|
|
3400
3392
|
|
|
3401
3393
|
dialog {
|
|
@@ -3479,19 +3471,19 @@ const jg=Symbol("user dismissed"),Gg=we`
|
|
|
3479
3471
|
:host([footer-hidden]) footer {
|
|
3480
3472
|
display: none;
|
|
3481
3473
|
}
|
|
3482
|
-
`.withBehaviors(
|
|
3474
|
+
`.withBehaviors(Nd(kr.light,we`
|
|
3483
3475
|
dialog::backdrop {
|
|
3484
3476
|
background: ${wr};
|
|
3485
3477
|
}
|
|
3486
|
-
`),
|
|
3478
|
+
`),Nd(kr.dark,we`
|
|
3487
3479
|
dialog::backdrop {
|
|
3488
3480
|
background: ${xr};
|
|
3489
3481
|
}
|
|
3490
|
-
`),
|
|
3482
|
+
`),Nd(kr.color,we`
|
|
3491
3483
|
dialog::backdrop {
|
|
3492
3484
|
background: ${yr};
|
|
3493
3485
|
}
|
|
3494
|
-
`)),
|
|
3486
|
+
`)),Gg=G`
|
|
3495
3487
|
<template>
|
|
3496
3488
|
<dialog
|
|
3497
3489
|
${Oe("dialogElement")}
|
|
@@ -3519,12 +3511,12 @@ const jg=Symbol("user dismissed"),Gg=we`
|
|
|
3519
3511
|
</dialog>
|
|
3520
3512
|
</template>
|
|
3521
3513
|
`
|
|
3522
|
-
class
|
|
3514
|
+
class Wg extends Vt{constructor(){super(...arguments),this.preventDismiss=!1,this.headerHidden=!1,this.footerHidden=!1,this.footerIsEmpty=!0}get open(){return void 0!==this.resolveShow}async show(){if(this.open)throw new Error("Dialog is already open")
|
|
3523
3515
|
return this.dialogElement.showModal(),new Promise(((e,t)=>{this.resolveShow=e}))}close(e){if(!this.open)throw new Error("Dialog is not open")
|
|
3524
|
-
this.dialogElement.close(),this.resolveShow(e),this.resolveShow=void 0}slottedFooterElementsChanged(e,t){this.footerIsEmpty=!t?.length}cancelHandler(e){return this.preventDismiss?e.preventDefault():(this.resolveShow(
|
|
3525
|
-
const
|
|
3526
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
3527
|
-
const
|
|
3516
|
+
this.dialogElement.close(),this.resolveShow(e),this.resolveShow=void 0}slottedFooterElementsChanged(e,t){this.footerIsEmpty=!t?.length}cancelHandler(e){return this.preventDismiss?e.preventDefault():(this.resolveShow(Ug),this.resolveShow=void 0),!0}}Wg.UserDismissed=Ug,e([se({attribute:"prevent-dismiss",mode:"boolean"})],Wg.prototype,"preventDismiss",void 0),e([se({attribute:"header-hidden",mode:"boolean"})],Wg.prototype,"headerHidden",void 0),e([se({attribute:"footer-hidden",mode:"boolean"})],Wg.prototype,"footerHidden",void 0),e([m],Wg.prototype,"footerIsEmpty",void 0),e([m],Wg.prototype,"slottedFooterElements",void 0),Pt(Wg,hn)
|
|
3517
|
+
const Kg=Wg.compose({baseName:"dialog",template:Gg,styles:jg,baseClass:Wg})
|
|
3518
|
+
mi.getOrCreate().withPrefix("nimble").register(Kg()),mi.tagFor(Wg)
|
|
3519
|
+
const Xg=we`
|
|
3528
3520
|
${Ao("block")}
|
|
3529
3521
|
|
|
3530
3522
|
:host {
|
|
@@ -3654,19 +3646,19 @@ const Yg=we`
|
|
|
3654
3646
|
justify-content: flex-end;
|
|
3655
3647
|
border-top: ${Fa} solid ${wa};
|
|
3656
3648
|
}
|
|
3657
|
-
`.withBehaviors(
|
|
3649
|
+
`.withBehaviors(Nd(kr.light,we`
|
|
3658
3650
|
dialog::backdrop {
|
|
3659
3651
|
background: ${wr};
|
|
3660
3652
|
}
|
|
3661
|
-
`),
|
|
3653
|
+
`),Nd(kr.dark,we`
|
|
3662
3654
|
dialog::backdrop {
|
|
3663
3655
|
background: ${xr};
|
|
3664
3656
|
}
|
|
3665
|
-
`),
|
|
3657
|
+
`),Nd(kr.color,we`
|
|
3666
3658
|
dialog::backdrop {
|
|
3667
3659
|
background: ${yr};
|
|
3668
3660
|
}
|
|
3669
|
-
`)),
|
|
3661
|
+
`)),Yg=G`
|
|
3670
3662
|
<dialog
|
|
3671
3663
|
${Oe("dialog")}
|
|
3672
3664
|
aria-label="${e=>e.ariaLabel}"
|
|
@@ -3676,189 +3668,189 @@ const Yg=we`
|
|
|
3676
3668
|
<slot></slot>
|
|
3677
3669
|
</div>
|
|
3678
3670
|
</dialog>
|
|
3679
|
-
`,
|
|
3680
|
-
class
|
|
3671
|
+
`,Jg="right"
|
|
3672
|
+
class Qg extends Vt{constructor(){super(...arguments),this.location=Jg,this.preventDismiss=!1,this.closing=!1,this.animationEndHandlerFunction=()=>this.animationEndHandler()}get open(){return void 0!==this.resolveShow}async show(){if(this.open)throw new Error("Drawer is already open")
|
|
3681
3673
|
return this.openDialog(),new Promise(((e,t)=>{this.resolveShow=e}))}close(e){if(!this.open||this.closing)throw new Error("Drawer is not open or already closing")
|
|
3682
|
-
this.closeReason=e,this.closeDialog()}cancelHandler(e){return e.preventDefault(),this.preventDismiss||(this.closeReason=
|
|
3683
|
-
const
|
|
3684
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
3685
|
-
class
|
|
3686
|
-
const
|
|
3687
|
-
class
|
|
3688
|
-
const
|
|
3689
|
-
class
|
|
3690
|
-
class
|
|
3691
|
-
class
|
|
3692
|
-
const
|
|
3693
|
-
class
|
|
3694
|
-
class
|
|
3695
|
-
class
|
|
3696
|
-
class
|
|
3697
|
-
class
|
|
3698
|
-
class
|
|
3699
|
-
class
|
|
3700
|
-
const
|
|
3701
|
-
class
|
|
3702
|
-
class
|
|
3703
|
-
class
|
|
3704
|
-
class
|
|
3705
|
-
class
|
|
3706
|
-
class
|
|
3707
|
-
class
|
|
3708
|
-
class
|
|
3709
|
-
class
|
|
3710
|
-
class
|
|
3711
|
-
class
|
|
3712
|
-
class
|
|
3713
|
-
class
|
|
3714
|
-
class
|
|
3715
|
-
class
|
|
3716
|
-
class
|
|
3717
|
-
class
|
|
3718
|
-
class
|
|
3719
|
-
class
|
|
3720
|
-
class
|
|
3721
|
-
class
|
|
3722
|
-
class
|
|
3723
|
-
class
|
|
3724
|
-
class
|
|
3725
|
-
class
|
|
3726
|
-
class
|
|
3727
|
-
class
|
|
3728
|
-
class
|
|
3729
|
-
class
|
|
3730
|
-
class
|
|
3731
|
-
class
|
|
3732
|
-
class
|
|
3733
|
-
class
|
|
3734
|
-
class
|
|
3735
|
-
class
|
|
3736
|
-
class
|
|
3737
|
-
class
|
|
3738
|
-
class
|
|
3739
|
-
class
|
|
3740
|
-
class
|
|
3741
|
-
class
|
|
3742
|
-
class
|
|
3743
|
-
class
|
|
3744
|
-
class
|
|
3745
|
-
class
|
|
3746
|
-
class
|
|
3747
|
-
class
|
|
3748
|
-
class
|
|
3749
|
-
class
|
|
3750
|
-
class
|
|
3751
|
-
class
|
|
3752
|
-
class
|
|
3753
|
-
class
|
|
3754
|
-
class
|
|
3755
|
-
class
|
|
3756
|
-
class
|
|
3757
|
-
class
|
|
3758
|
-
class
|
|
3759
|
-
class
|
|
3760
|
-
class
|
|
3761
|
-
class
|
|
3762
|
-
class
|
|
3763
|
-
class
|
|
3764
|
-
class
|
|
3765
|
-
class
|
|
3766
|
-
class
|
|
3767
|
-
class
|
|
3768
|
-
class
|
|
3769
|
-
class
|
|
3770
|
-
class
|
|
3771
|
-
class
|
|
3772
|
-
class
|
|
3773
|
-
class
|
|
3774
|
-
class
|
|
3775
|
-
class
|
|
3776
|
-
class
|
|
3777
|
-
class
|
|
3778
|
-
class
|
|
3779
|
-
class
|
|
3780
|
-
class
|
|
3781
|
-
class
|
|
3782
|
-
class
|
|
3783
|
-
class
|
|
3784
|
-
class
|
|
3785
|
-
class
|
|
3786
|
-
class
|
|
3787
|
-
class
|
|
3788
|
-
class
|
|
3789
|
-
class
|
|
3790
|
-
class
|
|
3791
|
-
class
|
|
3792
|
-
class
|
|
3793
|
-
class
|
|
3794
|
-
class
|
|
3795
|
-
class
|
|
3796
|
-
class
|
|
3797
|
-
class
|
|
3798
|
-
const
|
|
3799
|
-
class
|
|
3800
|
-
class
|
|
3801
|
-
class
|
|
3802
|
-
class
|
|
3803
|
-
class
|
|
3804
|
-
class
|
|
3805
|
-
class
|
|
3806
|
-
class
|
|
3807
|
-
class
|
|
3808
|
-
class
|
|
3809
|
-
class
|
|
3810
|
-
class
|
|
3811
|
-
class
|
|
3812
|
-
class
|
|
3813
|
-
class
|
|
3814
|
-
class
|
|
3815
|
-
class
|
|
3816
|
-
class
|
|
3817
|
-
class
|
|
3818
|
-
class
|
|
3819
|
-
class
|
|
3820
|
-
class
|
|
3821
|
-
class
|
|
3822
|
-
class
|
|
3823
|
-
class
|
|
3824
|
-
const
|
|
3825
|
-
class
|
|
3826
|
-
class
|
|
3827
|
-
class
|
|
3828
|
-
class
|
|
3829
|
-
class
|
|
3830
|
-
class
|
|
3831
|
-
class
|
|
3832
|
-
const
|
|
3833
|
-
class
|
|
3834
|
-
class
|
|
3835
|
-
const
|
|
3836
|
-
class
|
|
3837
|
-
class
|
|
3838
|
-
class
|
|
3839
|
-
class
|
|
3840
|
-
class
|
|
3841
|
-
class
|
|
3842
|
-
class
|
|
3843
|
-
class
|
|
3844
|
-
class
|
|
3845
|
-
class
|
|
3846
|
-
class
|
|
3847
|
-
class
|
|
3848
|
-
class
|
|
3849
|
-
class
|
|
3850
|
-
class
|
|
3674
|
+
this.closeReason=e,this.closeDialog()}cancelHandler(e){return e.preventDefault(),this.preventDismiss||(this.closeReason=Ug,this.closeDialog()),!0}openDialog(){this.dialog.showModal(),this.triggerAnimation()}closeDialog(){this.closing=!0,this.triggerAnimation()}triggerAnimation(){this.dialog.classList.add("animating"),this.closing&&this.dialog.classList.add("closing"),this.dialog.addEventListener(Bs,this.animationEndHandlerFunction)}animationEndHandler(){this.dialog.removeEventListener(Bs,this.animationEndHandlerFunction),this.dialog.classList.remove("animating"),this.closing&&(this.dialog.classList.remove("closing"),this.dialog.close(),this.closing=!1,this.resolveShow(this.closeReason),this.resolveShow=void 0)}}Qg.UserDismissed=Ug,e([se],Qg.prototype,"location",void 0),e([se({attribute:"prevent-dismiss",mode:"boolean"})],Qg.prototype,"preventDismiss",void 0),Pt(Qg,hn)
|
|
3675
|
+
const ef=Qg.compose({baseName:"drawer",template:Yg,styles:Xg})
|
|
3676
|
+
mi.getOrCreate().withPrefix("nimble").register(ef()),mi.tagFor(Qg)
|
|
3677
|
+
class tf extends Xp{constructor(){super(Wd)}}Yp("icon-add",tf)
|
|
3678
|
+
const nf=mi.tagFor(tf)
|
|
3679
|
+
class of extends Xp{constructor(){super(Kd)}}Yp("icon-arrow-down",of)
|
|
3680
|
+
const rf=mi.tagFor(of)
|
|
3681
|
+
class sf extends Xp{constructor(){super(Xd)}}Yp("icon-arrow-down-right-and-arrow-up-left",sf),mi.tagFor(sf)
|
|
3682
|
+
class af extends Xp{constructor(){super(Jd)}}Yp("icon-arrow-expander-left",af),mi.tagFor(af)
|
|
3683
|
+
class lf extends Xp{constructor(){super(Qd)}}Yp("icon-arrow-expander-right",lf)
|
|
3684
|
+
const cf=mi.tagFor(lf)
|
|
3685
|
+
class df extends Xp{constructor(){super(eh)}}Yp("icon-arrow-expander-up",df),mi.tagFor(df)
|
|
3686
|
+
class hf extends Xp{constructor(){super(th)}}Yp("icon-arrow-left-from-line",hf),mi.tagFor(hf)
|
|
3687
|
+
class uf extends Xp{constructor(){super(nh)}}Yp("icon-arrow-partial-rotate-left",uf),mi.tagFor(uf)
|
|
3688
|
+
class pf extends Xp{constructor(){super(ih)}}Yp("icon-arrow-right-to-line",pf),mi.tagFor(pf)
|
|
3689
|
+
class gf extends Xp{constructor(){super(oh)}}Yp("icon-arrow-rotate-right",gf),mi.tagFor(gf)
|
|
3690
|
+
class ff extends Xp{constructor(){super(rh)}}Yp("icon-arrow-u-rotate-left",ff),mi.tagFor(ff)
|
|
3691
|
+
class mf extends Xp{constructor(){super(sh)}}Yp("icon-arrow-up",mf)
|
|
3692
|
+
const vf=mi.tagFor(mf)
|
|
3693
|
+
class bf extends Xp{constructor(){super(ah)}}Yp("icon-arrow-up-left-and-arrow-down-right",bf),mi.tagFor(bf)
|
|
3694
|
+
class wf extends Xp{constructor(){super(lh)}}Yp("icon-arrows-maximize",wf),mi.tagFor(wf)
|
|
3695
|
+
class xf extends Xp{constructor(){super(ch)}}Yp("icon-arrows-repeat",xf),mi.tagFor(xf)
|
|
3696
|
+
class yf extends Xp{constructor(){super(dh)}}Yp("icon-bars",yf),mi.tagFor(yf)
|
|
3697
|
+
class Cf extends Xp{constructor(){super(hh)}}Yp("icon-bell",Cf),mi.tagFor(Cf)
|
|
3698
|
+
class kf extends Xp{constructor(){super(uh)}}Yp("icon-bell-and-comment",kf),mi.tagFor(kf)
|
|
3699
|
+
class $f extends Xp{constructor(){super(ph)}}Yp("icon-bell-circle",$f),mi.tagFor($f)
|
|
3700
|
+
class _f extends Xp{constructor(){super(gh)}}Yp("icon-bell-solid-circle",_f),mi.tagFor(_f)
|
|
3701
|
+
class Sf extends Xp{constructor(){super(fh)}}Yp("icon-block-with-ribbon",Sf),mi.tagFor(Sf)
|
|
3702
|
+
class If extends Xp{constructor(){super(mh)}}Yp("icon-bold-b",If),mi.tagFor(If)
|
|
3703
|
+
class Mf extends Xp{constructor(){super(vh)}}Yp("icon-book-magnifying-glass",Mf),mi.tagFor(Mf)
|
|
3704
|
+
class Af extends Xp{constructor(){super(bh)}}Yp("icon-calendar",Af),mi.tagFor(Af)
|
|
3705
|
+
class Rf extends Xp{constructor(){super(wh)}}Yp("icon-chart-diagram",Rf),mi.tagFor(Rf)
|
|
3706
|
+
class Ef extends Xp{constructor(){super(xh)}}Yp("icon-chart-diagram-child-focus",Ef),mi.tagFor(Ef)
|
|
3707
|
+
class Df extends Xp{constructor(){super(yh)}}Yp("icon-chart-diagram-parent-focus",Df),mi.tagFor(Df)
|
|
3708
|
+
class Ff extends Xp{constructor(){super(Ch)}}Yp("icon-chart-diagram-parent-focus-two-child",Ff),mi.tagFor(Ff)
|
|
3709
|
+
class Of extends Xp{constructor(){super(kh)}}Yp("icon-check",Of),mi.tagFor(Of)
|
|
3710
|
+
class Tf extends Xp{constructor(){super($h)}}Yp("icon-check-dot",Tf),mi.tagFor(Tf)
|
|
3711
|
+
class zf extends Xp{constructor(){super(_h)}}Yp("icon-check-large",zf),mi.tagFor(zf)
|
|
3712
|
+
class Vf extends Xp{constructor(){super(Sh)}}Yp("icon-circle",Vf),mi.tagFor(Vf)
|
|
3713
|
+
class Lf extends Xp{constructor(){super(Mh)}}Yp("icon-circle-broken",Lf),mi.tagFor(Lf)
|
|
3714
|
+
class Hf extends Xp{constructor(){super(Ah)}}Yp("icon-circle-check",Hf),mi.tagFor(Hf)
|
|
3715
|
+
class Pf extends Xp{constructor(){super(Ih)}}Yp("icon-circle-filled",Pf),mi.tagFor(Pf)
|
|
3716
|
+
class Bf extends Xp{constructor(){super(Rh)}}Yp("icon-circle-partial-broken",Bf),mi.tagFor(Bf)
|
|
3717
|
+
class Nf extends Xp{constructor(){super(Eh)}}Yp("icon-circle-slash",Nf),mi.tagFor(Nf)
|
|
3718
|
+
class qf extends Xp{constructor(){super(Dh)}}Yp("icon-circle-x",qf),mi.tagFor(qf)
|
|
3719
|
+
class Zf extends Xp{constructor(){super(Fh)}}Yp("icon-clipboard",Zf),mi.tagFor(Zf)
|
|
3720
|
+
class Uf extends Xp{constructor(){super(Oh)}}Yp("icon-clock",Uf),mi.tagFor(Uf)
|
|
3721
|
+
class jf extends Xp{constructor(){super(Th)}}Yp("icon-clock-cog",jf),mi.tagFor(jf)
|
|
3722
|
+
class Gf extends Xp{constructor(){super(zh)}}Yp("icon-clock-exclamation",Gf),mi.tagFor(Gf)
|
|
3723
|
+
class Wf extends Xp{constructor(){super(Vh)}}Yp("icon-clock-triangle",Wf),mi.tagFor(Wf)
|
|
3724
|
+
class Kf extends Xp{constructor(){super(Lh)}}Yp("icon-clone",Kf),mi.tagFor(Kf)
|
|
3725
|
+
class Xf extends Xp{constructor(){super(Hh)}}Yp("icon-cloud",Xf),mi.tagFor(Xf)
|
|
3726
|
+
class Yf extends Xp{constructor(){super(Ph)}}Yp("icon-cloud-upload",Yf),mi.tagFor(Yf)
|
|
3727
|
+
class Jf extends Xp{constructor(){super(Bh)}}Yp("icon-cloud-with-arrow",Jf),mi.tagFor(Jf)
|
|
3728
|
+
class Qf extends Xp{constructor(){super(Nh)}}Yp("icon-cog",Qf),mi.tagFor(Qf)
|
|
3729
|
+
class em extends Xp{constructor(){super(qh)}}Yp("icon-cog-database",em),mi.tagFor(em)
|
|
3730
|
+
class tm extends Xp{constructor(){super(Zh)}}Yp("icon-cog-database-inset",tm),mi.tagFor(tm)
|
|
3731
|
+
class nm extends Xp{constructor(){super(Uh)}}Yp("icon-cog-small-cog",nm),mi.tagFor(nm)
|
|
3732
|
+
class im extends Xp{constructor(){super(jh)}}Yp("icon-cog-zoomed",im),mi.tagFor(im)
|
|
3733
|
+
class om extends Xp{constructor(){super(Gh)}}Yp("icon-comment",om),mi.tagFor(om)
|
|
3734
|
+
class rm extends Xp{constructor(){super(Wh)}}Yp("icon-computer-and-monitor",rm),mi.tagFor(rm)
|
|
3735
|
+
class sm extends Xp{constructor(){super(Kh)}}Yp("icon-copy",sm),mi.tagFor(sm)
|
|
3736
|
+
class am extends Xp{constructor(){super(Xh)}}Yp("icon-copy-text",am),mi.tagFor(am)
|
|
3737
|
+
class lm extends Xp{constructor(){super(Yh)}}Yp("icon-dashboard-builder",lm),mi.tagFor(lm)
|
|
3738
|
+
class cm extends Xp{constructor(){super(Jh)}}Yp("icon-dashboard-builder-legend",cm),mi.tagFor(cm)
|
|
3739
|
+
class dm extends Xp{constructor(){super(Qh)}}Yp("icon-dashboard-builder-templates",dm),mi.tagFor(dm)
|
|
3740
|
+
class hm extends Xp{constructor(){super(eu)}}Yp("icon-dashboard-builder-tile",hm),mi.tagFor(hm)
|
|
3741
|
+
class um extends Xp{constructor(){super(tu)}}Yp("icon-database",um),mi.tagFor(um)
|
|
3742
|
+
class pm extends Xp{constructor(){super(nu)}}Yp("icon-database-check",pm),mi.tagFor(pm)
|
|
3743
|
+
class gm extends Xp{constructor(){super(iu)}}Yp("icon-desktop",gm),mi.tagFor(gm)
|
|
3744
|
+
class fm extends Xp{constructor(){super(ou)}}Yp("icon-donut-chart",fm),mi.tagFor(fm)
|
|
3745
|
+
class mm extends Xp{constructor(){super(ru)}}Yp("icon-dot-solid-dot-stroke",mm),mi.tagFor(mm)
|
|
3746
|
+
class vm extends Xp{constructor(){super(su)}}Yp("icon-dot-solid-dot-stroke-measurement",vm),mi.tagFor(vm)
|
|
3747
|
+
class bm extends Xp{constructor(){super(au)}}Yp("icon-down-right-from-square",bm),mi.tagFor(bm)
|
|
3748
|
+
class wm extends Xp{constructor(){super(lu)}}Yp("icon-download",wm),mi.tagFor(wm)
|
|
3749
|
+
class xm extends Xp{constructor(){super(cu)}}Yp("icon-electronic-chip-zoomed",xm),mi.tagFor(xm)
|
|
3750
|
+
class ym extends Xp{constructor(){super(hu)}}Yp("icon-eye",ym),mi.tagFor(ym)
|
|
3751
|
+
class Cm extends Xp{constructor(){super(uu)}}Yp("icon-fancy-a",Cm),mi.tagFor(Cm)
|
|
3752
|
+
class km extends Xp{constructor(){super(pu)}}Yp("icon-file",km),mi.tagFor(km)
|
|
3753
|
+
class $m extends Xp{constructor(){super(gu)}}Yp("icon-file-arrow-curved-right",$m),mi.tagFor($m)
|
|
3754
|
+
class _m extends Xp{constructor(){super(fu)}}Yp("icon-file-drawer",_m),mi.tagFor(_m)
|
|
3755
|
+
class Sm extends Xp{constructor(){super(mu)}}Yp("icon-file-search",Sm),mi.tagFor(Sm)
|
|
3756
|
+
class Im extends Xp{constructor(){super(vu)}}Yp("icon-filter",Im),mi.tagFor(Im)
|
|
3757
|
+
class Mm extends Xp{constructor(){super(bu)}}Yp("icon-floppy-disk",Mm),mi.tagFor(Mm)
|
|
3758
|
+
class Am extends Xp{constructor(){super(wu)}}Yp("icon-floppy-disk-checkmark",Am),mi.tagFor(Am)
|
|
3759
|
+
class Rm extends Xp{constructor(){super(xu)}}Yp("icon-floppy-disk-star-arrow-right",Rm),mi.tagFor(Rm)
|
|
3760
|
+
class Em extends Xp{constructor(){super(yu)}}Yp("icon-floppy-disk-three-dots",Em),mi.tagFor(Em)
|
|
3761
|
+
class Dm extends Xp{constructor(){super(Cu)}}Yp("icon-folder",Dm),mi.tagFor(Dm)
|
|
3762
|
+
class Fm extends Xp{constructor(){super(ku)}}Yp("icon-folder-open",Fm),mi.tagFor(Fm)
|
|
3763
|
+
class Om extends Xp{constructor(){super($u)}}Yp("icon-forward-slash",Om),mi.tagFor(Om)
|
|
3764
|
+
class Tm extends Xp{constructor(){super(_u)}}Yp("icon-four-dots-square",Tm),mi.tagFor(Tm)
|
|
3765
|
+
class zm extends Xp{constructor(){super(Su)}}Yp("icon-function",zm),mi.tagFor(zm)
|
|
3766
|
+
class Vm extends Xp{constructor(){super(Iu)}}Yp("icon-gauge-simple",Vm),mi.tagFor(Vm)
|
|
3767
|
+
class Lm extends Xp{constructor(){super(Mu)}}Yp("icon-grid-three-by-three",Lm),mi.tagFor(Lm)
|
|
3768
|
+
class Hm extends Xp{constructor(){super(Au)}}Yp("icon-grid-two-by-two",Hm),mi.tagFor(Hm)
|
|
3769
|
+
class Pm extends Xp{constructor(){super(Ru)}}Yp("icon-hammer",Pm),mi.tagFor(Pm)
|
|
3770
|
+
class Bm extends Xp{constructor(){super(Eu)}}Yp("icon-hashtag",Bm),mi.tagFor(Bm)
|
|
3771
|
+
class Nm extends Xp{constructor(){super(Du)}}Yp("icon-home",Nm),mi.tagFor(Nm)
|
|
3772
|
+
class qm extends Xp{constructor(){super(Fu)}}Yp("icon-hourglass",qm),mi.tagFor(qm)
|
|
3773
|
+
class Zm extends Xp{constructor(){super(Ou)}}Yp("icon-indeterminant-checkbox",Zm),mi.tagFor(Zm)
|
|
3774
|
+
class Um extends Xp{constructor(){super(zu)}}Yp("icon-info-circle",Um),mi.tagFor(Um)
|
|
3775
|
+
class jm extends Xp{constructor(){super(Vu)}}Yp("icon-italic-i",jm),mi.tagFor(jm)
|
|
3776
|
+
class Gm extends Xp{constructor(){super(Lu)}}Yp("icon-key",Gm),mi.tagFor(Gm)
|
|
3777
|
+
class Wm extends Xp{constructor(){super(Hu)}}Yp("icon-laptop",Wm),mi.tagFor(Wm)
|
|
3778
|
+
class Km extends Xp{constructor(){super(Pu)}}Yp("icon-layer-group",Km),mi.tagFor(Km)
|
|
3779
|
+
class Xm extends Xp{constructor(){super(Bu)}}Yp("icon-lightning-bolt",Xm),mi.tagFor(Xm)
|
|
3780
|
+
class Ym extends Xp{constructor(){super(Nu)}}Yp("icon-link",Ym),mi.tagFor(Ym)
|
|
3781
|
+
class Jm extends Xp{constructor(){super(qu)}}Yp("icon-link-cancel",Jm),mi.tagFor(Jm)
|
|
3782
|
+
class Qm extends Xp{constructor(){super(Zu)}}Yp("icon-list",Qm),mi.tagFor(Qm)
|
|
3783
|
+
class ev extends Xp{constructor(){super(Uu)}}Yp("icon-list-tree",ev),mi.tagFor(ev)
|
|
3784
|
+
class tv extends Xp{constructor(){super(ju)}}Yp("icon-list-tree-database",tv),mi.tagFor(tv)
|
|
3785
|
+
class nv extends Xp{constructor(){super(Gu)}}Yp("icon-lock",nv),mi.tagFor(nv)
|
|
3786
|
+
class iv extends Xp{constructor(){super(Wu)}}Yp("icon-magnifying-glass",iv),mi.tagFor(iv)
|
|
3787
|
+
class ov extends Xp{constructor(){super(Ku)}}Yp("icon-markdown",ov),mi.tagFor(ov)
|
|
3788
|
+
class rv extends Xp{constructor(){super(Xu)}}Yp("icon-minus",rv),mi.tagFor(rv)
|
|
3789
|
+
class sv extends Xp{constructor(){super(Yu)}}Yp("icon-minus-wide",sv)
|
|
3790
|
+
const av=mi.tagFor(sv)
|
|
3791
|
+
class lv extends Xp{constructor(){super(Ju)}}Yp("icon-mobile",lv),mi.tagFor(lv)
|
|
3792
|
+
class cv extends Xp{constructor(){super(Qu)}}Yp("icon-notebook",cv),mi.tagFor(cv)
|
|
3793
|
+
class dv extends Xp{constructor(){super(ep)}}Yp("icon-number-list",dv),mi.tagFor(dv)
|
|
3794
|
+
class hv extends Xp{constructor(){super(tp)}}Yp("icon-paste",hv),mi.tagFor(hv)
|
|
3795
|
+
class uv extends Xp{constructor(){super(np)}}Yp("icon-pencil",uv),mi.tagFor(uv)
|
|
3796
|
+
class pv extends Xp{constructor(){super(ip)}}Yp("icon-pot-with-lid",pv),mi.tagFor(pv)
|
|
3797
|
+
class gv extends Xp{constructor(){super(op)}}Yp("icon-question",gv),mi.tagFor(gv)
|
|
3798
|
+
class fv extends Xp{constructor(){super(rp)}}Yp("icon-running-arrow",fv),mi.tagFor(fv)
|
|
3799
|
+
class mv extends Xp{constructor(){super(sp)}}Yp("icon-server",mv),mi.tagFor(mv)
|
|
3800
|
+
class vv extends Xp{constructor(){super(ap)}}Yp("icon-share-nodes",vv),mi.tagFor(vv)
|
|
3801
|
+
class bv extends Xp{constructor(){super(lp)}}Yp("icon-shield-check",bv),mi.tagFor(bv)
|
|
3802
|
+
class wv extends Xp{constructor(){super(cp)}}Yp("icon-shield-xmark",wv),mi.tagFor(wv)
|
|
3803
|
+
class xv extends Xp{constructor(){super(dp)}}Yp("icon-signal-bars",xv),mi.tagFor(xv)
|
|
3804
|
+
class yv extends Xp{constructor(){super(hp)}}Yp("icon-sine-graph",yv),mi.tagFor(yv)
|
|
3805
|
+
class Cv extends Xp{constructor(){super(up)}}Yp("icon-skip-arrow",Cv),mi.tagFor(Cv)
|
|
3806
|
+
class kv extends Xp{constructor(){super(pp)}}Yp("icon-spinner",kv),mi.tagFor(kv)
|
|
3807
|
+
class $v extends Xp{constructor(){super(gp)}}Yp("icon-square-check",$v),mi.tagFor($v)
|
|
3808
|
+
class _v extends Xp{constructor(){super(fp)}}Yp("icon-square-t",_v),mi.tagFor(_v)
|
|
3809
|
+
class Sv extends Xp{constructor(){super(mp)}}Yp("icon-t",Sv),mi.tagFor(Sv)
|
|
3810
|
+
class Iv extends Xp{constructor(){super(vp)}}Yp("icon-tablet",Iv),mi.tagFor(Iv)
|
|
3811
|
+
class Mv extends Xp{constructor(){super(bp)}}Yp("icon-tag",Mv),mi.tagFor(Mv)
|
|
3812
|
+
class Av extends Xp{constructor(){super(wp)}}Yp("icon-tags",Av),mi.tagFor(Av)
|
|
3813
|
+
class Rv extends Xp{constructor(){super(xp)}}Yp("icon-target-crosshairs",Rv),mi.tagFor(Rv)
|
|
3814
|
+
class Ev extends Xp{constructor(){super(yp)}}Yp("icon-target-crosshairs-progress",Ev),mi.tagFor(Ev)
|
|
3815
|
+
class Dv extends Xp{constructor(){super(Cp)}}Yp("icon-three-dots-line",Dv)
|
|
3816
|
+
const Fv=mi.tagFor(Dv)
|
|
3817
|
+
class Ov extends Xp{constructor(){super(kp)}}Yp("icon-three-vertical-lines",Ov),mi.tagFor(Ov)
|
|
3818
|
+
class Tv extends Xp{constructor(){super($p)}}Yp("icon-thumbtack",Tv),mi.tagFor(Tv)
|
|
3819
|
+
class zv extends Xp{constructor(){super(_p)}}Yp("icon-tile-size",zv),mi.tagFor(zv)
|
|
3820
|
+
class Vv extends Xp{constructor(){super(Sp)}}Yp("icon-times",Vv),mi.tagFor(Vv)
|
|
3821
|
+
class Lv extends Xp{constructor(){super(Ip)}}Yp("icon-trash",Lv),mi.tagFor(Lv)
|
|
3822
|
+
class Hv extends Xp{constructor(){super(Mp)}}Yp("icon-triangle",Hv),mi.tagFor(Hv)
|
|
3823
|
+
class Pv extends Xp{constructor(){super(Rp)}}Yp("icon-triangle-two-lines-horizontal",Pv)
|
|
3824
|
+
const Bv=mi.tagFor(Pv)
|
|
3825
|
+
class Nv extends Xp{constructor(){super(Ep)}}Yp("icon-true-false-rectangle",Nv),mi.tagFor(Nv)
|
|
3826
|
+
class qv extends Xp{constructor(){super(Dp)}}Yp("icon-two-squares-in-brackets",qv)
|
|
3827
|
+
const Zv=mi.tagFor(qv)
|
|
3828
|
+
class Uv extends Xp{constructor(){super(Fp)}}Yp("icon-two-triangles-between-lines",Uv),mi.tagFor(Uv)
|
|
3829
|
+
class jv extends Xp{constructor(){super(Op)}}Yp("icon-unlink",jv),mi.tagFor(jv)
|
|
3830
|
+
class Gv extends Xp{constructor(){super(Tp)}}Yp("icon-unlock",Gv),mi.tagFor(Gv)
|
|
3831
|
+
class Wv extends Xp{constructor(){super(zp)}}Yp("icon-up-right-from-square",Wv),mi.tagFor(Wv)
|
|
3832
|
+
class Kv extends Xp{constructor(){super(Vp)}}Yp("icon-upload",Kv),mi.tagFor(Kv)
|
|
3833
|
+
class Xv extends Xp{constructor(){super(Lp)}}Yp("icon-user",Xv),mi.tagFor(Xv)
|
|
3834
|
+
class Yv extends Xp{constructor(){super(Hp)}}Yp("icon-watch",Yv),mi.tagFor(Yv)
|
|
3835
|
+
class Jv extends Xp{constructor(){super(Pp)}}Yp("icon-waveform",Jv),mi.tagFor(Jv)
|
|
3836
|
+
class Qv extends Xp{constructor(){super(Bp)}}Yp("icon-webvi-custom",Qv),mi.tagFor(Qv)
|
|
3837
|
+
class eb extends Xp{constructor(){super(Np)}}Yp("icon-webvi-host",eb),mi.tagFor(eb)
|
|
3838
|
+
class tb extends Xp{constructor(){super(qp)}}Yp("icon-window-code",tb),mi.tagFor(tb)
|
|
3839
|
+
class nb extends Xp{constructor(){super(Zp)}}Yp("icon-window-text",nb),mi.tagFor(nb)
|
|
3840
|
+
class ib extends Xp{constructor(){super(Up)}}Yp("icon-wrench-hammer",ib),mi.tagFor(ib)
|
|
3841
|
+
class ob extends Xp{constructor(){super(Gp)}}Yp("icon-xmark-check",ob),mi.tagFor(ob)
|
|
3842
|
+
class rb extends Vt{constructor(){super(...arguments),this.propertyNotifier=f.getNotifier(this)}connectedCallback(){super.connectedCallback(),this.initializeThemeProvider(),this.propertyNotifier.subscribe(this)}disconnectedCallback(){if(this.propertyNotifier.unsubscribe(this),this.themeProvider){for(const e of Object.values(this.supportedLabels))e.deleteValueFor(this.themeProvider)
|
|
3851
3843
|
this.themeProvider=void 0}}handleChange(e,t){if(this.supportedLabels[t]){const e=this.supportedLabels[t],n=this[t]
|
|
3852
3844
|
this.themeProvider&&(null==n?e.deleteValueFor(this.themeProvider):e.setValueFor(this.themeProvider,n))}}initializeThemeProvider(){if(this.themeProvider=this.closest(ia)??void 0,this.themeProvider)for(const[e,t]of Object.entries(this.supportedLabels)){const n=this[e]
|
|
3853
|
-
null==n?t.deleteValueFor(this.themeProvider):t.setValueFor(this.themeProvider,n)}}}const
|
|
3854
|
-
class
|
|
3855
|
-
const
|
|
3856
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
3857
|
-
const
|
|
3858
|
-
class
|
|
3859
|
-
const
|
|
3860
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
3861
|
-
const
|
|
3845
|
+
null==n?t.deleteValueFor(this.themeProvider):t.setValueFor(this.themeProvider,n)}}}const sb={popupDismiss:dg,numericDecrement:hg,numericIncrement:ug}
|
|
3846
|
+
class ab extends rb{constructor(){super(...arguments),this.supportedLabels=sb}}e([se({attribute:"popup-dismiss"})],ab.prototype,"popupDismiss",void 0),e([se({attribute:"numeric-decrement"})],ab.prototype,"numericDecrement",void 0),e([se({attribute:"numeric-increment"})],ab.prototype,"numericIncrement",void 0)
|
|
3847
|
+
const lb=ab.compose({baseName:"label-provider-core"})
|
|
3848
|
+
mi.getOrCreate().withPrefix("nimble").register(lb()),mi.tagFor(ab)
|
|
3849
|
+
const cb="Collapse group",db="Expand group",hb="Collapse all groups",ub="Options",pb="Grouped",gb=di.create({name:"table-group-collapse-label",cssCustomPropertyName:null}).withDefault(cb),fb=di.create({name:"table-group-expand-label",cssCustomPropertyName:null}).withDefault(db),mb=di.create({name:"table-groups-collapse-all-label",cssCustomPropertyName:null}).withDefault(hb),vb=di.create({name:"table-cell-action-menu-label",cssCustomPropertyName:null}).withDefault(ub),bb=di.create({name:"table-column-header-grouped-indicator-label",cssCustomPropertyName:null}).withDefault(pb),wb={groupCollapse:gb,groupExpand:fb,groupsCollapseAll:mb,cellActionMenu:vb,columnHeaderGroupedIndicator:bb}
|
|
3850
|
+
class xb extends rb{constructor(){super(...arguments),this.supportedLabels=wb}}e([se({attribute:"group-collapse"})],xb.prototype,"groupCollapse",void 0),e([se({attribute:"group-expand"})],xb.prototype,"groupExpand",void 0),e([se({attribute:"groups-collapse-all"})],xb.prototype,"groupsCollapseAll",void 0),e([se({attribute:"cell-action-menu"})],xb.prototype,"cellActionMenu",void 0),e([se({attribute:"column-header-grouped-indicator"})],xb.prototype,"columnHeaderGroupedIndicator",void 0)
|
|
3851
|
+
const yb=xb.compose({baseName:"label-provider-table"})
|
|
3852
|
+
mi.getOrCreate().withPrefix("nimble").register(yb()),mi.tagFor(xb)
|
|
3853
|
+
const Cb=we`
|
|
3862
3854
|
${Ao("flex")}
|
|
3863
3855
|
|
|
3864
3856
|
:host {
|
|
@@ -3921,7 +3913,7 @@ const kb=we`
|
|
|
3921
3913
|
display: none;
|
|
3922
3914
|
}
|
|
3923
3915
|
`
|
|
3924
|
-
class
|
|
3916
|
+
class kb extends Fn{get value(){return super.value}set value(e){super.value=`${e}`,this.$fastController.isConnected&&this.setAttribute("value",this.value)}connectedCallback(){super.connectedCallback(),this.setAttribute("value",this.value)}}const $b=kb.compose({baseName:"list-option",baseClass:Fn,template:(e,t)=>G`
|
|
3925
3917
|
<template
|
|
3926
3918
|
aria-checked="${e=>e.ariaChecked}"
|
|
3927
3919
|
aria-disabled="${e=>e.ariaDisabled}"
|
|
@@ -3937,13 +3929,13 @@ class $b extends Fn{get value(){return super.value}set value(e){super.value=`${e
|
|
|
3937
3929
|
</span>
|
|
3938
3930
|
${Je(0,t)}
|
|
3939
3931
|
</template>
|
|
3940
|
-
`,styles:
|
|
3941
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
3942
|
-
class
|
|
3943
|
-
const
|
|
3944
|
-
class
|
|
3945
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
3946
|
-
const
|
|
3932
|
+
`,styles:Cb})
|
|
3933
|
+
mi.getOrCreate().withPrefix("nimble").register($b()),mi.tagFor(kb)
|
|
3934
|
+
class _b extends Vt{}e([se()],_b.prototype,"key",void 0),e([se()],_b.prototype,"text",void 0)
|
|
3935
|
+
const Sb=G`<template slot="mapping"></template>`
|
|
3936
|
+
class Ib extends _b{}const Mb=Ib.compose({baseName:"mapping-text",template:Sb})
|
|
3937
|
+
mi.getOrCreate().withPrefix("nimble").register(Mb()),mi.tagFor(Ib)
|
|
3938
|
+
const Ab=we`
|
|
3947
3939
|
${Ao("grid")}
|
|
3948
3940
|
|
|
3949
3941
|
:host {
|
|
@@ -3986,12 +3978,12 @@ const Rb=we`
|
|
|
3986
3978
|
padding-top: ${Ea};
|
|
3987
3979
|
padding-bottom: ${Ea};
|
|
3988
3980
|
}
|
|
3989
|
-
`.withBehaviors(
|
|
3981
|
+
`.withBehaviors(Nd(kr.color,we`
|
|
3990
3982
|
slot {
|
|
3991
3983
|
background: ${br(tr,.15)};
|
|
3992
3984
|
}
|
|
3993
3985
|
`))
|
|
3994
|
-
class
|
|
3986
|
+
class Rb extends Di{}const Eb=Rb.compose({baseName:"menu",baseClass:Di,template:(e,t)=>G`
|
|
3995
3987
|
<template
|
|
3996
3988
|
slot="${e=>e.slot?e.slot:e.isNestedMenu()?"submenu":void 0}"
|
|
3997
3989
|
role="menu"
|
|
@@ -4000,9 +3992,9 @@ class Eb extends Di{}const Db=Eb.compose({baseName:"menu",baseClass:Di,template:
|
|
|
4000
3992
|
>
|
|
4001
3993
|
<slot ${We("items")}></slot>
|
|
4002
3994
|
</template>
|
|
4003
|
-
`,styles:
|
|
4004
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
4005
|
-
const
|
|
3995
|
+
`,styles:Ab})
|
|
3996
|
+
mi.getOrCreate().withPrefix("nimble").register(Eb()),mi.tagFor(Rb)
|
|
3997
|
+
const Db=we`
|
|
4006
3998
|
${Ao("inline-block")}
|
|
4007
3999
|
|
|
4008
4000
|
:host {
|
|
@@ -4018,12 +4010,12 @@ const Fb=we`
|
|
|
4018
4010
|
margin-top: ${Ea};
|
|
4019
4011
|
margin-bottom: ${Ea};
|
|
4020
4012
|
}
|
|
4021
|
-
`,
|
|
4013
|
+
`,Fb=G`
|
|
4022
4014
|
<template
|
|
4023
4015
|
?open="${e=>e.open}"
|
|
4024
4016
|
@focusout="${(e,t)=>e.focusoutHandler(t.event)}"
|
|
4025
4017
|
>
|
|
4026
|
-
<${
|
|
4018
|
+
<${Dg}
|
|
4027
4019
|
part="button"
|
|
4028
4020
|
appearance="${e=>e.appearance}"
|
|
4029
4021
|
?content-hidden="${e=>e.contentHidden}"
|
|
@@ -4040,9 +4032,9 @@ const Fb=we`
|
|
|
4040
4032
|
<slot slot="start" name="start"></slot>
|
|
4041
4033
|
<slot></slot>
|
|
4042
4034
|
<slot slot="end" name="end"></slot>
|
|
4043
|
-
</${
|
|
4035
|
+
</${Dg}>
|
|
4044
4036
|
${Le((e=>e.open),G`
|
|
4045
|
-
<${
|
|
4037
|
+
<${Hd}
|
|
4046
4038
|
fixed-placement="true"
|
|
4047
4039
|
auto-update-mode="auto"
|
|
4048
4040
|
horizontal-inset="true"
|
|
@@ -4056,11 +4048,11 @@ const Fb=we`
|
|
|
4056
4048
|
<span part="menu">
|
|
4057
4049
|
<slot name="menu" ${We({property:"slottedMenus"})}></slot>
|
|
4058
4050
|
</span>
|
|
4059
|
-
</${
|
|
4051
|
+
</${Hd}>
|
|
4060
4052
|
`)}
|
|
4061
4053
|
</template>
|
|
4062
|
-
`,
|
|
4063
|
-
class
|
|
4054
|
+
`,Ob="auto"
|
|
4055
|
+
class Tb extends Vt{constructor(){super(...arguments),this.appearance=ud,this.disabled=!1,this.contentHidden=!1,this.open=!1,this.position=Ob,this.focusLastItemWhenOpened=!1,this.menuChangeHandler=()=>{this.setOpen(!1),this.toggleButton.focus()}}disconnectedCallback(){super.disconnectedCallback(),this.region&&this.region.removeEventListener(Ns,this.menuChangeHandler)}toggleButtonChanged(e,t){this.region&&this.toggleButton&&(this.region.anchorElement=this.toggleButton)}regionChanged(e,t){e&&e.removeEventListener(Ns,this.menuChangeHandler),this.region&&(this.toggleButton&&(this.region.anchorElement=this.toggleButton),this.region.addEventListener(Ns,this.menuChangeHandler,{capture:!0}))}openChanged(e,t){if(this.toggleButton&&(this.toggleButton.checked=this.open),!this.open){const e={oldState:!0,newState:!1}
|
|
4064
4056
|
this.$emit("toggle",e)}}regionLoadedHandler(){this.focusLastItemWhenOpened?(this.focusLastMenuItem(),this.focusLastItemWhenOpened=!1):this.focusMenu()
|
|
4065
4057
|
this.$emit("toggle",{oldState:!1,newState:!0})}focusoutHandler(e){if(!this.open)return!0
|
|
4066
4058
|
const t=e.relatedTarget
|
|
@@ -4074,10 +4066,10 @@ for(;e;){if("menu"===e.getAttribute("role"))return e
|
|
|
4074
4066
|
if(!this.isSlotElement(e))return
|
|
4075
4067
|
{const t=e.assignedNodes()[0]
|
|
4076
4068
|
e=t instanceof HTMLElement?t:void 0}}}isSlotElement(e){return"SLOT"===e?.nodeName}focusMenu(){this.getMenu()?.focus()}focusLastMenuItem(){const e=this.getMenu()?.querySelectorAll("[role=menuitem]")
|
|
4077
|
-
if(e?.length){e[e.length-1].focus()}}}e([se],
|
|
4078
|
-
const
|
|
4079
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
4080
|
-
const
|
|
4069
|
+
if(e?.length){e[e.length-1].focus()}}}e([se],Tb.prototype,"appearance",void 0),e([se({mode:"boolean"})],Tb.prototype,"disabled",void 0),e([se({attribute:"content-hidden",mode:"boolean"})],Tb.prototype,"contentHidden",void 0),e([se({mode:"boolean"})],Tb.prototype,"open",void 0),e([se({attribute:"position"})],Tb.prototype,"position",void 0),e([m],Tb.prototype,"toggleButton",void 0),e([m],Tb.prototype,"region",void 0),e([m],Tb.prototype,"slottedMenus",void 0)
|
|
4070
|
+
const zb=Tb.compose({baseName:"menu-button",template:Fb,styles:Db,shadowOptions:{delegatesFocus:!0}})
|
|
4071
|
+
mi.getOrCreate().withPrefix("nimble").register(zb())
|
|
4072
|
+
const Vb=mi.tagFor(Tb),Lb=we`
|
|
4081
4073
|
${Ao("grid")}
|
|
4082
4074
|
|
|
4083
4075
|
:host {
|
|
@@ -4156,7 +4148,7 @@ const Lb=mi.tagFor(zb),Hb=we`
|
|
|
4156
4148
|
grid-column: 3;
|
|
4157
4149
|
}
|
|
4158
4150
|
`
|
|
4159
|
-
class
|
|
4151
|
+
class Hb extends Ei{}const Pb=Hb.compose({baseName:"menu-item",baseClass:Ei,template:(e,t)=>G`
|
|
4160
4152
|
<template
|
|
4161
4153
|
role="${e=>e.role}"
|
|
4162
4154
|
aria-haspopup="${e=>e.hasSubmenu?"menu":void 0}"
|
|
@@ -4223,16 +4215,16 @@ class Pb extends Ei{}const Bb=Pb.compose({baseName:"menu-item",baseClass:Ei,temp
|
|
|
4223
4215
|
</${e.tagFor(fn)}>
|
|
4224
4216
|
`)}
|
|
4225
4217
|
</template>
|
|
4226
|
-
`,styles:
|
|
4227
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
4228
|
-
const
|
|
4218
|
+
`,styles:Lb,expandCollapseGlyph:Qd.data})
|
|
4219
|
+
mi.getOrCreate().withPrefix("nimble").register(Pb()),mi.tagFor(Hb)
|
|
4220
|
+
const Bb="underline",Nb="outline",qb="block",Zb=we`
|
|
4229
4221
|
${Ao("inline-block")}
|
|
4230
|
-
${
|
|
4222
|
+
${Bg}
|
|
4231
4223
|
|
|
4232
4224
|
:host {
|
|
4233
4225
|
font: ${Kl};
|
|
4234
4226
|
outline: none;
|
|
4235
|
-
${
|
|
4227
|
+
${Dd}
|
|
4236
4228
|
color: ${Xl};
|
|
4237
4229
|
--ni-private-hover-indicator-width: calc(${Fa} + 1px);
|
|
4238
4230
|
--ni-private-height-within-border: calc(
|
|
@@ -4284,7 +4276,7 @@ const Nb="underline",qb="outline",Zb="block",Ub=we`
|
|
|
4284
4276
|
content: ' ';
|
|
4285
4277
|
color: transparent;
|
|
4286
4278
|
width: 0px;
|
|
4287
|
-
${
|
|
4279
|
+
${Dd}
|
|
4288
4280
|
}
|
|
4289
4281
|
|
|
4290
4282
|
.root::after {
|
|
@@ -4373,12 +4365,12 @@ const Nb="underline",qb="outline",Zb="block",Ub=we`
|
|
|
4373
4365
|
order: 1;
|
|
4374
4366
|
padding-right: calc(${Da} / 4);
|
|
4375
4367
|
}
|
|
4376
|
-
`.withBehaviors(md(
|
|
4368
|
+
`.withBehaviors(md(Bb,we`
|
|
4377
4369
|
.root {
|
|
4378
4370
|
border-bottom-width: ${Fa};
|
|
4379
4371
|
padding-bottom: 0;
|
|
4380
4372
|
}
|
|
4381
|
-
`),md(
|
|
4373
|
+
`),md(qb,we`
|
|
4382
4374
|
.root {
|
|
4383
4375
|
background-color: rgba(${ua}, 0.1);
|
|
4384
4376
|
}
|
|
@@ -4396,14 +4388,14 @@ const Nb="underline",qb="outline",Zb="block",Ub=we`
|
|
|
4396
4388
|
:host([disabled]) .root {
|
|
4397
4389
|
background-color: rgba(${ua}, 0.07);
|
|
4398
4390
|
}
|
|
4399
|
-
`),md(
|
|
4391
|
+
`),md(Nb,we`
|
|
4400
4392
|
.root {
|
|
4401
4393
|
border-width: ${Fa};
|
|
4402
4394
|
padding: 0;
|
|
4403
4395
|
}
|
|
4404
4396
|
`))
|
|
4405
|
-
class
|
|
4406
|
-
const
|
|
4397
|
+
class Ub extends Pi{constructor(){super(...arguments),this.appearance=Bb,this.errorVisible=!1}connectedCallback(){super.connectedCallback(),this.control.setAttribute("role","spinbutton")}}e([se],Ub.prototype,"appearance",void 0),e([se({attribute:"error-text"})],Ub.prototype,"errorText",void 0),e([se({attribute:"error-visible",mode:"boolean"})],Ub.prototype,"errorVisible",void 0)
|
|
4398
|
+
const jb=Ub.compose({baseName:"number-field",baseClass:Pi,template:(e,t)=>G`
|
|
4407
4399
|
<template class="${e=>e.readOnly?"readonly":""}">
|
|
4408
4400
|
<label
|
|
4409
4401
|
part="label"
|
|
@@ -4478,40 +4470,40 @@ const Gb=jb.compose({baseName:"number-field",baseClass:Pi,template:(e,t)=>G`
|
|
|
4478
4470
|
${Je(0,t)}
|
|
4479
4471
|
</div>
|
|
4480
4472
|
</template>
|
|
4481
|
-
`,styles:
|
|
4482
|
-
<${
|
|
4473
|
+
`,styles:Zb,shadowOptions:{delegatesFocus:!0},stepDownGlyph:G`
|
|
4474
|
+
<${Gd}
|
|
4483
4475
|
class="step-up-down-button"
|
|
4484
4476
|
appearance="ghost"
|
|
4485
4477
|
content-hidden
|
|
4486
4478
|
tabindex="-1"
|
|
4487
4479
|
>
|
|
4488
|
-
${e=>
|
|
4489
|
-
<${
|
|
4480
|
+
${e=>hg.getValueFor(e)}
|
|
4481
|
+
<${av}
|
|
4490
4482
|
slot="start"
|
|
4491
4483
|
>
|
|
4492
|
-
</${
|
|
4493
|
-
</${
|
|
4484
|
+
</${av}>
|
|
4485
|
+
</${Gd}>
|
|
4494
4486
|
`,stepUpGlyph:G`
|
|
4495
|
-
<${
|
|
4487
|
+
<${Gd}
|
|
4496
4488
|
class="step-up-down-button"
|
|
4497
4489
|
appearance="ghost"
|
|
4498
4490
|
content-hidden
|
|
4499
4491
|
tabindex="-1"
|
|
4500
4492
|
>
|
|
4501
|
-
${e=>
|
|
4502
|
-
<${
|
|
4493
|
+
${e=>ug.getValueFor(e)}
|
|
4494
|
+
<${nf}
|
|
4503
4495
|
slot="start">
|
|
4504
|
-
</${
|
|
4505
|
-
</${
|
|
4496
|
+
</${nf}>
|
|
4497
|
+
</${Gd}>
|
|
4506
4498
|
`,end:G`
|
|
4507
|
-
<${
|
|
4499
|
+
<${Qp}
|
|
4508
4500
|
severity="error"
|
|
4509
4501
|
class="error-icon"
|
|
4510
|
-
></${
|
|
4511
|
-
${
|
|
4502
|
+
></${Qp}>
|
|
4503
|
+
${Fg}
|
|
4512
4504
|
`})
|
|
4513
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
4514
|
-
const
|
|
4505
|
+
mi.getOrCreate().withPrefix("nimble").register(jb()),mi.tagFor(Ub)
|
|
4506
|
+
const Gb=we`
|
|
4515
4507
|
${Ao("inline-flex")}
|
|
4516
4508
|
|
|
4517
4509
|
:host {
|
|
@@ -4598,7 +4590,7 @@ const Wb=we`
|
|
|
4598
4590
|
fill: rgba(${ua}, 0.3);
|
|
4599
4591
|
}
|
|
4600
4592
|
`
|
|
4601
|
-
class
|
|
4593
|
+
class Wb extends Zi{}const Kb=Wb.compose({baseName:"radio",baseClass:Zi,template:(e,t)=>G`
|
|
4602
4594
|
<template
|
|
4603
4595
|
role="radio"
|
|
4604
4596
|
class="${e=>e.checked?"checked":""} ${e=>e.readOnly?"readonly":""}"
|
|
@@ -4621,9 +4613,9 @@ class Kb extends Zi{}const Xb=Kb.compose({baseName:"radio",baseClass:Zi,template
|
|
|
4621
4613
|
<slot ${We("defaultSlottedNodes")}></slot>
|
|
4622
4614
|
</label>
|
|
4623
4615
|
</template>
|
|
4624
|
-
`,styles:
|
|
4625
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
4626
|
-
const
|
|
4616
|
+
`,styles:Gb,checkedIndicator:Ih.data})
|
|
4617
|
+
mi.getOrCreate().withPrefix("nimble").register(Kb()),mi.tagFor(Wb)
|
|
4618
|
+
const Xb=we`
|
|
4627
4619
|
${Ao("inline-block")}
|
|
4628
4620
|
|
|
4629
4621
|
.positioning-region {
|
|
@@ -4648,7 +4640,7 @@ const Yb=we`
|
|
|
4648
4640
|
color: ${pc};
|
|
4649
4641
|
}
|
|
4650
4642
|
`
|
|
4651
|
-
class
|
|
4643
|
+
class Yb extends Bi{}const Jb=Yb.compose({baseName:"radio-group",baseClass:Bi,template:(e,t)=>G`
|
|
4652
4644
|
<template
|
|
4653
4645
|
role="radiogroup"
|
|
4654
4646
|
aria-disabled="${e=>e.disabled}"
|
|
@@ -4667,11 +4659,11 @@ class Jb extends Bi{}const Qb=Jb.compose({baseName:"radio-group",baseClass:Bi,te
|
|
|
4667
4659
|
></slot>
|
|
4668
4660
|
</div>
|
|
4669
4661
|
</template>
|
|
4670
|
-
`,styles:
|
|
4671
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
4672
|
-
const
|
|
4662
|
+
`,styles:Xb,shadowOptions:{delegatesFocus:!0}})
|
|
4663
|
+
mi.getOrCreate().withPrefix("nimble").register(Jb()),mi.tagFor(Yb)
|
|
4664
|
+
const Qb=G`
|
|
4673
4665
|
<template> Rich Text Editor here. </template>
|
|
4674
|
-
`,
|
|
4666
|
+
`,ew=we`
|
|
4675
4667
|
${Ao("flex")}
|
|
4676
4668
|
|
|
4677
4669
|
:host {
|
|
@@ -4679,82 +4671,82 @@ const ew=G`
|
|
|
4679
4671
|
color: ${Xl};
|
|
4680
4672
|
}
|
|
4681
4673
|
`
|
|
4682
|
-
class
|
|
4683
|
-
function
|
|
4674
|
+
class tw extends Vt{}const nw=tw.compose({baseName:"rich-text-editor",template:Qb,styles:ew})
|
|
4675
|
+
function iw(e){this.content=e}function ow(e,t,n){for(let i=0;;i++){if(i==e.childCount||i==t.childCount)return e.childCount==t.childCount?null:n
|
|
4684
4676
|
let o=e.child(i),r=t.child(i)
|
|
4685
4677
|
if(o!=r){if(!o.sameMarkup(r))return n
|
|
4686
4678
|
if(o.isText&&o.text!=r.text){for(let e=0;o.text[e]==r.text[e];e++)n++
|
|
4687
|
-
return n}if(o.content.size||r.content.size){let e=
|
|
4688
|
-
if(null!=e)return e}n+=o.nodeSize}else n+=o.nodeSize}}function
|
|
4679
|
+
return n}if(o.content.size||r.content.size){let e=ow(o.content,r.content,n+1)
|
|
4680
|
+
if(null!=e)return e}n+=o.nodeSize}else n+=o.nodeSize}}function rw(e,t,n,i){for(let o=e.childCount,r=t.childCount;;){if(0==o||0==r)return o==r?null:{a:n,b:i}
|
|
4689
4681
|
let s=e.child(--o),a=t.child(--r),l=s.nodeSize
|
|
4690
4682
|
if(s!=a){if(!s.sameMarkup(a))return{a:n,b:i}
|
|
4691
4683
|
if(s.isText&&s.text!=a.text){let e=0,t=Math.min(s.text.length,a.text.length)
|
|
4692
4684
|
for(;e<t&&s.text[s.text.length-e-1]==a.text[a.text.length-e-1];)e++,n--,i--
|
|
4693
|
-
return{a:n,b:i}}if(s.content.size||a.content.size){let e=
|
|
4694
|
-
if(e)return e}n-=l,i-=l}else n-=l,i-=l}}mi.getOrCreate().withPrefix("nimble").register(
|
|
4685
|
+
return{a:n,b:i}}if(s.content.size||a.content.size){let e=rw(s.content,a.content,n-1,i-1)
|
|
4686
|
+
if(e)return e}n-=l,i-=l}else n-=l,i-=l}}mi.getOrCreate().withPrefix("nimble").register(nw()),mi.tagFor(tw),iw.prototype={constructor:iw,find:function(e){for(var t=0;t<this.content.length;t+=2)if(this.content[t]===e)return t
|
|
4695
4687
|
return-1},get:function(e){var t=this.find(e)
|
|
4696
4688
|
return-1==t?void 0:this.content[t+1]},update:function(e,t,n){var i=n&&n!=e?this.remove(n):this,o=i.find(e),r=i.content.slice()
|
|
4697
|
-
return-1==o?r.push(n||e,t):(r[o+1]=t,n&&(r[o]=n)),new
|
|
4689
|
+
return-1==o?r.push(n||e,t):(r[o+1]=t,n&&(r[o]=n)),new iw(r)},remove:function(e){var t=this.find(e)
|
|
4698
4690
|
if(-1==t)return this
|
|
4699
4691
|
var n=this.content.slice()
|
|
4700
|
-
return n.splice(t,2),new
|
|
4701
|
-
return n.push(e,t),new
|
|
4702
|
-
return o.splice(-1==r?o.length:r,0,t,n),new
|
|
4703
|
-
e=
|
|
4692
|
+
return n.splice(t,2),new iw(n)},addToStart:function(e,t){return new iw([e,t].concat(this.remove(e).content))},addToEnd:function(e,t){var n=this.remove(e).content.slice()
|
|
4693
|
+
return n.push(e,t),new iw(n)},addBefore:function(e,t,n){var i=this.remove(t),o=i.content.slice(),r=i.find(e)
|
|
4694
|
+
return o.splice(-1==r?o.length:r,0,t,n),new iw(o)},forEach:function(e){for(var t=0;t<this.content.length;t+=2)e(this.content[t],this.content[t+1])},prepend:function(e){return(e=iw.from(e)).size?new iw(e.content.concat(this.subtract(e).content)):this},append:function(e){return(e=iw.from(e)).size?new iw(this.subtract(e).content.concat(e.content)):this},subtract:function(e){var t=this
|
|
4695
|
+
e=iw.from(e)
|
|
4704
4696
|
for(var n=0;n<e.content.length;n+=2)t=t.remove(e.content[n])
|
|
4705
4697
|
return t},toObject:function(){var e={}
|
|
4706
|
-
return this.forEach((function(t,n){e[t]=n})),e},get size(){return this.content.length>>1}},
|
|
4698
|
+
return this.forEach((function(t,n){e[t]=n})),e},get size(){return this.content.length>>1}},iw.from=function(e){if(e instanceof iw)return e
|
|
4707
4699
|
var t=[]
|
|
4708
4700
|
if(e)for(var n in e)t.push(n,e[n])
|
|
4709
|
-
return new
|
|
4710
|
-
class
|
|
4701
|
+
return new iw(t)}
|
|
4702
|
+
class sw{constructor(e,t){if(this.content=e,this.size=t||0,null==t)for(let t=0;t<e.length;t++)this.size+=e[t].nodeSize}nodesBetween(e,t,n,i=0,o){for(let r=0,s=0;s<t;r++){let a=this.content[r],l=s+a.nodeSize
|
|
4711
4703
|
if(l>e&&!1!==n(a,i+s,o||null,r)&&a.content.size){let o=s+1
|
|
4712
4704
|
a.nodesBetween(Math.max(0,e-o),Math.min(a.content.size,t-o),n,i+o)}s=l}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,t,n,i){let o="",r=!0
|
|
4713
4705
|
return this.nodesBetween(e,t,((s,a)=>{s.isText?(o+=s.text.slice(Math.max(e,a)-a,t-a),r=!n):s.isLeaf?(i?o+="function"==typeof i?i(s):i:s.type.spec.leafText&&(o+=s.type.spec.leafText(s)),r=!n):!r&&s.isBlock&&(o+=n,r=!0)}),0),o}append(e){if(!e.size)return this
|
|
4714
4706
|
if(!this.size)return e
|
|
4715
4707
|
let t=this.lastChild,n=e.firstChild,i=this.content.slice(),o=0
|
|
4716
4708
|
for(t.isText&&t.sameMarkup(n)&&(i[i.length-1]=t.withText(t.text+n.text),o=1);o<e.content.length;o++)i.push(e.content[o])
|
|
4717
|
-
return new
|
|
4709
|
+
return new sw(i,this.size+e.size)}cut(e,t=this.size){if(0==e&&t==this.size)return this
|
|
4718
4710
|
let n=[],i=0
|
|
4719
4711
|
if(t>e)for(let o=0,r=0;r<t;o++){let s=this.content[o],a=r+s.nodeSize
|
|
4720
|
-
a>e&&((r<e||a>t)&&(s=s.isText?s.cut(Math.max(0,e-r),Math.min(s.text.length,t-r)):s.cut(Math.max(0,e-r-1),Math.min(s.content.size,t-r-1))),n.push(s),i+=s.nodeSize),r=a}return new
|
|
4712
|
+
a>e&&((r<e||a>t)&&(s=s.isText?s.cut(Math.max(0,e-r),Math.min(s.text.length,t-r)):s.cut(Math.max(0,e-r-1),Math.min(s.content.size,t-r-1))),n.push(s),i+=s.nodeSize),r=a}return new sw(n,i)}cutByIndex(e,t){return e==t?sw.empty:0==e&&t==this.content.length?this:new sw(this.content.slice(e,t))}replaceChild(e,t){let n=this.content[e]
|
|
4721
4713
|
if(n==t)return this
|
|
4722
4714
|
let i=this.content.slice(),o=this.size+t.nodeSize-n.nodeSize
|
|
4723
|
-
return i[e]=t,new
|
|
4715
|
+
return i[e]=t,new sw(i,o)}addToStart(e){return new sw([e].concat(this.content),this.size+e.nodeSize)}addToEnd(e){return new sw(this.content.concat(e),this.size+e.nodeSize)}eq(e){if(this.content.length!=e.content.length)return!1
|
|
4724
4716
|
for(let t=0;t<this.content.length;t++)if(!this.content[t].eq(e.content[t]))return!1
|
|
4725
4717
|
return!0}get firstChild(){return this.content.length?this.content[0]:null}get lastChild(){return this.content.length?this.content[this.content.length-1]:null}get childCount(){return this.content.length}child(e){let t=this.content[e]
|
|
4726
4718
|
if(!t)throw new RangeError("Index "+e+" out of range for "+this)
|
|
4727
4719
|
return t}maybeChild(e){return this.content[e]||null}forEach(e){for(let t=0,n=0;t<this.content.length;t++){let i=this.content[t]
|
|
4728
|
-
e(i,n,t),n+=i.nodeSize}}findDiffStart(e,t=0){return
|
|
4729
|
-
if(e==this.size)return
|
|
4720
|
+
e(i,n,t),n+=i.nodeSize}}findDiffStart(e,t=0){return ow(this,e,t)}findDiffEnd(e,t=this.size,n=e.size){return rw(this,e,t,n)}findIndex(e,t=-1){if(0==e)return lw(0,e)
|
|
4721
|
+
if(e==this.size)return lw(this.content.length,e)
|
|
4730
4722
|
if(e>this.size||e<0)throw new RangeError(`Position ${e} outside of fragment (${this})`)
|
|
4731
4723
|
for(let n=0,i=0;;n++){let o=i+this.child(n).nodeSize
|
|
4732
|
-
if(o>=e)return o==e||t>0?
|
|
4733
|
-
i=o}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map((e=>e.toJSON())):null}static fromJSON(e,t){if(!t)return
|
|
4724
|
+
if(o>=e)return o==e||t>0?lw(n+1,o):lw(n,i)
|
|
4725
|
+
i=o}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map((e=>e.toJSON())):null}static fromJSON(e,t){if(!t)return sw.empty
|
|
4734
4726
|
if(!Array.isArray(t))throw new RangeError("Invalid input for Fragment.fromJSON")
|
|
4735
|
-
return new
|
|
4727
|
+
return new sw(t.map(e.nodeFromJSON))}static fromArray(e){if(!e.length)return sw.empty
|
|
4736
4728
|
let t,n=0
|
|
4737
4729
|
for(let i=0;i<e.length;i++){let o=e[i]
|
|
4738
|
-
n+=o.nodeSize,i&&o.isText&&e[i-1].sameMarkup(o)?(t||(t=e.slice(0,i)),t[t.length-1]=o.withText(t[t.length-1].text+o.text)):t&&t.push(o)}return new
|
|
4739
|
-
if(e instanceof
|
|
4730
|
+
n+=o.nodeSize,i&&o.isText&&e[i-1].sameMarkup(o)?(t||(t=e.slice(0,i)),t[t.length-1]=o.withText(t[t.length-1].text+o.text)):t&&t.push(o)}return new sw(t||e,n)}static from(e){if(!e)return sw.empty
|
|
4731
|
+
if(e instanceof sw)return e
|
|
4740
4732
|
if(Array.isArray(e))return this.fromArray(e)
|
|
4741
|
-
if(e.attrs)return new
|
|
4742
|
-
throw new RangeError("Can not convert "+e+" to a Fragment"+(e.nodesBetween?" (looks like multiple versions of prosemirror-model were loaded)":""))}}
|
|
4743
|
-
const
|
|
4744
|
-
function
|
|
4733
|
+
if(e.attrs)return new sw([e],e.nodeSize)
|
|
4734
|
+
throw new RangeError("Can not convert "+e+" to a Fragment"+(e.nodesBetween?" (looks like multiple versions of prosemirror-model were loaded)":""))}}sw.empty=new sw([],0)
|
|
4735
|
+
const aw={index:0,offset:0}
|
|
4736
|
+
function lw(e,t){return aw.index=e,aw.offset=t,aw}function cw(e,t){if(e===t)return!0
|
|
4745
4737
|
if(!e||"object"!=typeof e||!t||"object"!=typeof t)return!1
|
|
4746
4738
|
let n=Array.isArray(e)
|
|
4747
4739
|
if(Array.isArray(t)!=n)return!1
|
|
4748
4740
|
if(n){if(e.length!=t.length)return!1
|
|
4749
|
-
for(let n=0;n<e.length;n++)if(!
|
|
4750
|
-
for(let n in t)if(!(n in e))return!1}return!0}class
|
|
4741
|
+
for(let n=0;n<e.length;n++)if(!cw(e[n],t[n]))return!1}else{for(let n in e)if(!(n in t)||!cw(e[n],t[n]))return!1
|
|
4742
|
+
for(let n in t)if(!(n in e))return!1}return!0}class dw{constructor(e,t){this.type=e,this.attrs=t}addToSet(e){let t,n=!1
|
|
4751
4743
|
for(let i=0;i<e.length;i++){let o=e[i]
|
|
4752
4744
|
if(this.eq(o))return e
|
|
4753
4745
|
if(this.type.excludes(o.type))t||(t=e.slice(0,i))
|
|
4754
4746
|
else{if(o.type.excludes(this.type))return e
|
|
4755
4747
|
!n&&o.type.rank>this.type.rank&&(t||(t=e.slice(0,i)),t.push(this),n=!0),t&&t.push(o)}}return t||(t=e.slice()),n||t.push(this),t}removeFromSet(e){for(let t=0;t<e.length;t++)if(this.eq(e[t]))return e.slice(0,t).concat(e.slice(t+1))
|
|
4756
4748
|
return e}isInSet(e){for(let t=0;t<e.length;t++)if(this.eq(e[t]))return!0
|
|
4757
|
-
return!1}eq(e){return this==e||this.type==e.type&&
|
|
4749
|
+
return!1}eq(e){return this==e||this.type==e.type&&cw(this.attrs,e.attrs)}toJSON(){let e={type:this.type.name}
|
|
4758
4750
|
for(let t in this.attrs){e.attrs=this.attrs
|
|
4759
4751
|
break}return e}static fromJSON(e,t){if(!t)throw new RangeError("Invalid input for Mark.fromJSON")
|
|
4760
4752
|
let n=e.marks[t.type]
|
|
@@ -4762,42 +4754,42 @@ if(!n)throw new RangeError(`There is no mark type ${t.type} in this schema`)
|
|
|
4762
4754
|
return n.create(t.attrs)}static sameSet(e,t){if(e==t)return!0
|
|
4763
4755
|
if(e.length!=t.length)return!1
|
|
4764
4756
|
for(let n=0;n<e.length;n++)if(!e[n].eq(t[n]))return!1
|
|
4765
|
-
return!0}static setFrom(e){if(!e||Array.isArray(e)&&0==e.length)return
|
|
4766
|
-
if(e instanceof
|
|
4757
|
+
return!0}static setFrom(e){if(!e||Array.isArray(e)&&0==e.length)return dw.none
|
|
4758
|
+
if(e instanceof dw)return[e]
|
|
4767
4759
|
let t=e.slice()
|
|
4768
|
-
return t.sort(((e,t)=>e.type.rank-t.type.rank)),t}}
|
|
4769
|
-
class
|
|
4770
|
-
return n&&new
|
|
4760
|
+
return t.sort(((e,t)=>e.type.rank-t.type.rank)),t}}dw.none=[]
|
|
4761
|
+
class hw extends Error{}class uw{constructor(e,t,n){this.content=e,this.openStart=t,this.openEnd=n}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,t){let n=gw(this.content,e+this.openStart,t)
|
|
4762
|
+
return n&&new uw(n,this.openStart,this.openEnd)}removeBetween(e,t){return new uw(pw(this.content,e+this.openStart,t+this.openStart),this.openStart,this.openEnd)}eq(e){return this.content.eq(e.content)&&this.openStart==e.openStart&&this.openEnd==e.openEnd}toString(){return this.content+"("+this.openStart+","+this.openEnd+")"}toJSON(){if(!this.content.size)return null
|
|
4771
4763
|
let e={content:this.content.toJSON()}
|
|
4772
|
-
return this.openStart>0&&(e.openStart=this.openStart),this.openEnd>0&&(e.openEnd=this.openEnd),e}static fromJSON(e,t){if(!t)return
|
|
4764
|
+
return this.openStart>0&&(e.openStart=this.openStart),this.openEnd>0&&(e.openEnd=this.openEnd),e}static fromJSON(e,t){if(!t)return uw.empty
|
|
4773
4765
|
let n=t.openStart||0,i=t.openEnd||0
|
|
4774
4766
|
if("number"!=typeof n||"number"!=typeof i)throw new RangeError("Invalid input for Slice.fromJSON")
|
|
4775
|
-
return new
|
|
4767
|
+
return new uw(sw.fromJSON(e,t.content),n,i)}static maxOpen(e,t=!0){let n=0,i=0
|
|
4776
4768
|
for(let i=e.firstChild;i&&!i.isLeaf&&(t||!i.type.spec.isolating);i=i.firstChild)n++
|
|
4777
4769
|
for(let n=e.lastChild;n&&!n.isLeaf&&(t||!n.type.spec.isolating);n=n.lastChild)i++
|
|
4778
|
-
return new
|
|
4770
|
+
return new uw(e,n,i)}}function pw(e,t,n){let{index:i,offset:o}=e.findIndex(t),r=e.maybeChild(i),{index:s,offset:a}=e.findIndex(n)
|
|
4779
4771
|
if(o==t||r.isText){if(a!=n&&!e.child(s).isText)throw new RangeError("Removing non-flat range")
|
|
4780
4772
|
return e.cut(0,t).append(e.cut(n))}if(i!=s)throw new RangeError("Removing non-flat range")
|
|
4781
|
-
return e.replaceChild(i,r.copy(
|
|
4773
|
+
return e.replaceChild(i,r.copy(pw(r.content,t-o-1,n-o-1)))}function gw(e,t,n,i){let{index:o,offset:r}=e.findIndex(t),s=e.maybeChild(o)
|
|
4782
4774
|
if(r==t||s.isText)return i&&!i.canReplace(o,o,n)?null:e.cut(0,t).append(n).append(e.cut(t))
|
|
4783
|
-
let a=
|
|
4784
|
-
return a&&e.replaceChild(o,s.copy(a))}function
|
|
4785
|
-
if(e.depth-n.openStart!=t.depth-n.openEnd)throw new
|
|
4786
|
-
return
|
|
4787
|
-
if(o==t.index(i)&&i<e.depth-n.openStart){let s=
|
|
4775
|
+
let a=gw(s.content,t-r-1,n)
|
|
4776
|
+
return a&&e.replaceChild(o,s.copy(a))}function fw(e,t,n){if(n.openStart>e.depth)throw new hw("Inserted content deeper than insertion position")
|
|
4777
|
+
if(e.depth-n.openStart!=t.depth-n.openEnd)throw new hw("Inconsistent open depths")
|
|
4778
|
+
return mw(e,t,n,0)}function mw(e,t,n,i){let o=e.index(i),r=e.node(i)
|
|
4779
|
+
if(o==t.index(i)&&i<e.depth-n.openStart){let s=mw(e,t,n,i+1)
|
|
4788
4780
|
return r.copy(r.content.replaceChild(o,s))}if(n.content.size){if(n.openStart||n.openEnd||e.depth!=i||t.depth!=i){let{start:o,end:s}=function(e,t){let n=t.depth-e.openStart,i=t.node(n).copy(e.content)
|
|
4789
|
-
for(let e=n-1;e>=0;e--)i=t.node(e).copy(
|
|
4781
|
+
for(let e=n-1;e>=0;e--)i=t.node(e).copy(sw.from(i))
|
|
4790
4782
|
return{start:i.resolveNoCache(e.openStart+n),end:i.resolveNoCache(i.content.size-e.openEnd-n)}}(n,e)
|
|
4791
|
-
return
|
|
4792
|
-
return
|
|
4793
|
-
return
|
|
4794
|
-
n>=0&&e.isText&&e.sameMarkup(t[n])?t[n]=e.withText(t[n].text+e.text):t.push(e)}function
|
|
4795
|
-
e&&(r=e.index(n),e.depth>n?r++:e.textOffset&&(
|
|
4796
|
-
for(let e=r;e<s;e++)
|
|
4797
|
-
t&&t.depth==n&&t.textOffset&&
|
|
4798
|
-
return
|
|
4799
|
-
if(
|
|
4800
|
-
class
|
|
4783
|
+
return yw(r,Cw(e,o,s,t,i))}{let i=e.parent,o=i.content
|
|
4784
|
+
return yw(i,o.cut(0,e.parentOffset).append(n.content).append(o.cut(t.parentOffset)))}}return yw(r,kw(e,t,i))}function vw(e,t){if(!t.type.compatibleContent(e.type))throw new hw("Cannot join "+t.type.name+" onto "+e.type.name)}function bw(e,t,n){let i=e.node(n)
|
|
4785
|
+
return vw(i,t.node(n)),i}function ww(e,t){let n=t.length-1
|
|
4786
|
+
n>=0&&e.isText&&e.sameMarkup(t[n])?t[n]=e.withText(t[n].text+e.text):t.push(e)}function xw(e,t,n,i){let o=(t||e).node(n),r=0,s=t?t.index(n):o.childCount
|
|
4787
|
+
e&&(r=e.index(n),e.depth>n?r++:e.textOffset&&(ww(e.nodeAfter,i),r++))
|
|
4788
|
+
for(let e=r;e<s;e++)ww(o.child(e),i)
|
|
4789
|
+
t&&t.depth==n&&t.textOffset&&ww(t.nodeBefore,i)}function yw(e,t){return e.type.checkContent(t),e.copy(t)}function Cw(e,t,n,i,o){let r=e.depth>o&&bw(e,t,o+1),s=i.depth>o&&bw(n,i,o+1),a=[]
|
|
4790
|
+
return xw(null,e,o,a),r&&s&&t.index(o)==n.index(o)?(vw(r,s),ww(yw(r,Cw(e,t,n,i,o+1)),a)):(r&&ww(yw(r,kw(e,t,o+1)),a),xw(t,n,o,a),s&&ww(yw(s,kw(n,i,o+1)),a)),xw(i,null,o,a),new sw(a)}function kw(e,t,n){let i=[]
|
|
4791
|
+
if(xw(null,e,n,i),e.depth>n){ww(yw(bw(e,t,n+1),kw(e,t,n+1)),i)}return xw(t,null,n,i),new sw(i)}uw.empty=new uw(sw.empty,0,0)
|
|
4792
|
+
class $w{constructor(e,t,n){this.pos=e,this.path=t,this.parentOffset=n,this.depth=t.length/3-1}resolveDepth(e){return null==e?this.depth:e<0?this.depth+e:e}get parent(){return this.node(this.depth)}get doc(){return this.node(0)}node(e){return this.path[3*this.resolveDepth(e)]}index(e){return this.path[3*this.resolveDepth(e)+1]}indexAfter(e){return e=this.resolveDepth(e),this.index(e)+(e!=this.depth||this.textOffset?1:0)}start(e){return 0==(e=this.resolveDepth(e))?0:this.path[3*e-1]+1}end(e){return e=this.resolveDepth(e),this.start(e)+this.node(e).content.size}before(e){if(!(e=this.resolveDepth(e)))throw new RangeError("There is no position before the top-level node")
|
|
4801
4793
|
return e==this.depth+1?this.pos:this.path[3*e-1]}after(e){if(!(e=this.resolveDepth(e)))throw new RangeError("There is no position after the top-level node")
|
|
4802
4794
|
return e==this.depth+1?this.pos:this.path[3*e-1]+this.path[3*e].nodeSize}get textOffset(){return this.pos-this.path[this.path.length-1]}get nodeAfter(){let e=this.parent,t=this.index(this.depth)
|
|
4803
4795
|
if(t==e.childCount)return null
|
|
@@ -4807,7 +4799,7 @@ return t?this.parent.child(e).cut(0,t):0==e?null:this.parent.child(e-1)}posAtInd
|
|
|
4807
4799
|
let n=this.path[3*t],i=0==t?0:this.path[3*t-1]+1
|
|
4808
4800
|
for(let t=0;t<e;t++)i+=n.child(t).nodeSize
|
|
4809
4801
|
return i}marks(){let e=this.parent,t=this.index()
|
|
4810
|
-
if(0==e.content.size)return
|
|
4802
|
+
if(0==e.content.size)return dw.none
|
|
4811
4803
|
if(this.textOffset)return e.child(t).marks
|
|
4812
4804
|
let n=e.maybeChild(t-1),i=e.maybeChild(t)
|
|
4813
4805
|
if(!n){let e=n
|
|
@@ -4819,7 +4811,7 @@ let n=t.marks,i=e.parent.maybeChild(e.index())
|
|
|
4819
4811
|
for(var o=0;o<n.length;o++)!1!==n[o].type.spec.inclusive||i&&n[o].isInSet(i.marks)||(n=n[o--].removeFromSet(n))
|
|
4820
4812
|
return n}sharedDepth(e){for(let t=this.depth;t>0;t--)if(this.start(t)<=e&&this.end(t)>=e)return t
|
|
4821
4813
|
return 0}blockRange(e=this,t){if(e.pos<this.pos)return e.blockRange(this)
|
|
4822
|
-
for(let n=this.depth-(this.parent.inlineContent||this.pos==e.pos?1:0);n>=0;n--)if(e.pos<=this.end(n)&&(!t||t(this.node(n))))return new
|
|
4814
|
+
for(let n=this.depth-(this.parent.inlineContent||this.pos==e.pos?1:0);n>=0;n--)if(e.pos<=this.end(n)&&(!t||t(this.node(n))))return new Mw(this,e,n)
|
|
4823
4815
|
return null}sameParent(e){return this.pos-this.parentOffset==e.pos-e.parentOffset}max(e){return e.pos>this.pos?e:this}min(e){return e.pos<this.pos?e:this}toString(){let e=""
|
|
4824
4816
|
for(let t=1;t<=this.depth;t++)e+=(e?"/":"")+this.node(t).type.name+"_"+this.index(t-1)
|
|
4825
4817
|
return e+":"+this.parentOffset}static resolve(e,t){if(!(t>=0&&t<=e.content.size))throw new RangeError("Position "+t+" out of range")
|
|
@@ -4827,13 +4819,13 @@ let n=[],i=0,o=t
|
|
|
4827
4819
|
for(let t=e;;){let{index:e,offset:r}=t.content.findIndex(o),s=o-r
|
|
4828
4820
|
if(n.push(t,e,i+r),!s)break
|
|
4829
4821
|
if(t=t.child(e),t.isText)break
|
|
4830
|
-
o=s-1,i+=r+1}return new
|
|
4831
|
-
if(i.pos==t&&i.doc==e)return i}let n=Sw
|
|
4832
|
-
return
|
|
4833
|
-
class
|
|
4834
|
-
let
|
|
4822
|
+
o=s-1,i+=r+1}return new $w(t,n,o)}static resolveCached(e,t){for(let n=0;n<_w.length;n++){let i=_w[n]
|
|
4823
|
+
if(i.pos==t&&i.doc==e)return i}let n=_w[Sw]=$w.resolve(e,t)
|
|
4824
|
+
return Sw=(Sw+1)%Iw,n}}let _w=[],Sw=0,Iw=12
|
|
4825
|
+
class Mw{constructor(e,t,n){this.$from=e,this.$to=t,this.depth=n}get start(){return this.$from.before(this.depth+1)}get end(){return this.$to.after(this.depth+1)}get parent(){return this.$from.node(this.depth)}get startIndex(){return this.$from.index(this.depth)}get endIndex(){return this.$to.indexAfter(this.depth)}}const Aw=Object.create(null)
|
|
4826
|
+
let Rw=class e{constructor(e,t,n,i=dw.none){this.type=e,this.attrs=t,this.marks=i,this.content=n||sw.empty}get nodeSize(){return this.isLeaf?1:2+this.content.size}get childCount(){return this.content.childCount}child(e){return this.content.child(e)}maybeChild(e){return this.content.maybeChild(e)}forEach(e){this.content.forEach(e)}nodesBetween(e,t,n,i=0){this.content.nodesBetween(e,t,n,i,this)}descendants(e){this.nodesBetween(0,this.content.size,e)}get textContent(){return this.isLeaf&&this.type.spec.leafText?this.type.spec.leafText(this):this.textBetween(0,this.content.size,"")}textBetween(e,t,n,i){return this.content.textBetween(e,t,n,i)}get firstChild(){return this.content.firstChild}get lastChild(){return this.content.lastChild}eq(e){return this==e||this.sameMarkup(e)&&this.content.eq(e.content)}sameMarkup(e){return this.hasMarkup(e.type,e.attrs,e.marks)}hasMarkup(e,t,n){return this.type==e&&cw(this.attrs,t||e.defaultAttrs||Aw)&&dw.sameSet(this.marks,n||dw.none)}copy(t=null){return t==this.content?this:new e(this.type,this.attrs,t,this.marks)}mark(t){return t==this.marks?this:new e(this.type,this.attrs,this.content,t)}cut(e,t=this.content.size){return 0==e&&t==this.content.size?this:this.copy(this.content.cut(e,t))}slice(e,t=this.content.size,n=!1){if(e==t)return uw.empty
|
|
4835
4827
|
let i=this.resolve(e),o=this.resolve(t),r=n?0:i.sharedDepth(t),s=i.start(r),a=i.node(r).content.cut(i.pos-s,o.pos-s)
|
|
4836
|
-
return new
|
|
4828
|
+
return new uw(a,i.depth-r,o.depth-r)}replace(e,t,n){return fw(this.resolve(e),this.resolve(t),n)}nodeAt(e){for(let t=this;;){let{index:n,offset:i}=t.content.findIndex(e)
|
|
4837
4829
|
if(t=t.maybeChild(n),!t)return null
|
|
4838
4830
|
if(i==e||t.isText)return t
|
|
4839
4831
|
e-=i+1}}childAfter(e){let{index:t,offset:n}=this.content.findIndex(e)
|
|
@@ -4841,45 +4833,45 @@ return{node:this.content.maybeChild(t),index:t,offset:n}}childBefore(e){if(0==e)
|
|
|
4841
4833
|
let{index:t,offset:n}=this.content.findIndex(e)
|
|
4842
4834
|
if(n<e)return{node:this.content.child(t),index:t,offset:n}
|
|
4843
4835
|
let i=this.content.child(t-1)
|
|
4844
|
-
return{node:i,index:t-1,offset:n-i.nodeSize}}resolve(e){return
|
|
4836
|
+
return{node:i,index:t-1,offset:n-i.nodeSize}}resolve(e){return $w.resolveCached(this,e)}resolveNoCache(e){return $w.resolve(this,e)}rangeHasMark(e,t,n){let i=!1
|
|
4845
4837
|
return t>e&&this.nodesBetween(e,t,(e=>(n.isInSet(e.marks)&&(i=!0),!i))),i}get isBlock(){return this.type.isBlock}get isTextblock(){return this.type.isTextblock}get inlineContent(){return this.type.inlineContent}get isInline(){return this.type.isInline}get isText(){return this.type.isText}get isLeaf(){return this.type.isLeaf}get isAtom(){return this.type.isAtom}toString(){if(this.type.spec.toDebugString)return this.type.spec.toDebugString(this)
|
|
4846
4838
|
let e=this.type.name
|
|
4847
|
-
return this.content.size&&(e+="("+this.content.toStringInner()+")"),
|
|
4839
|
+
return this.content.size&&(e+="("+this.content.toStringInner()+")"),Dw(this.marks,e)}contentMatchAt(e){let t=this.type.contentMatch.matchFragment(this.content,0,e)
|
|
4848
4840
|
if(!t)throw new Error("Called contentMatchAt on a node with invalid content")
|
|
4849
|
-
return t}canReplace(e,t,n=
|
|
4841
|
+
return t}canReplace(e,t,n=sw.empty,i=0,o=n.childCount){let r=this.contentMatchAt(e).matchFragment(n,i,o),s=r&&r.matchFragment(this.content,t)
|
|
4850
4842
|
if(!s||!s.validEnd)return!1
|
|
4851
4843
|
for(let e=i;e<o;e++)if(!this.type.allowsMarks(n.child(e).marks))return!1
|
|
4852
4844
|
return!0}canReplaceWith(e,t,n,i){if(i&&!this.type.allowsMarks(i))return!1
|
|
4853
4845
|
let o=this.contentMatchAt(e).matchType(n),r=o&&o.matchFragment(this.content,t)
|
|
4854
4846
|
return!!r&&r.validEnd}canAppend(e){return e.content.size?this.canReplace(this.childCount,this.childCount,e.content):this.type.compatibleContent(e.type)}check(){this.type.checkContent(this.content)
|
|
4855
|
-
let e=
|
|
4847
|
+
let e=dw.none
|
|
4856
4848
|
for(let t=0;t<this.marks.length;t++)e=this.marks[t].addToSet(e)
|
|
4857
|
-
if(!
|
|
4849
|
+
if(!dw.sameSet(e,this.marks))throw new RangeError(`Invalid collection of marks for node ${this.type.name}: ${this.marks.map((e=>e.type.name))}`)
|
|
4858
4850
|
this.content.forEach((e=>e.check()))}toJSON(){let e={type:this.type.name}
|
|
4859
4851
|
for(let t in this.attrs){e.attrs=this.attrs
|
|
4860
4852
|
break}return this.content.size&&(e.content=this.content.toJSON()),this.marks.length&&(e.marks=this.marks.map((e=>e.toJSON()))),e}static fromJSON(e,t){if(!t)throw new RangeError("Invalid input for Node.fromJSON")
|
|
4861
4853
|
let n=null
|
|
4862
4854
|
if(t.marks){if(!Array.isArray(t.marks))throw new RangeError("Invalid mark data for Node.fromJSON")
|
|
4863
4855
|
n=t.marks.map(e.markFromJSON)}if("text"==t.type){if("string"!=typeof t.text)throw new RangeError("Invalid text node in JSON")
|
|
4864
|
-
return e.text(t.text,n)}let i=
|
|
4856
|
+
return e.text(t.text,n)}let i=sw.fromJSON(e,t.content)
|
|
4865
4857
|
return e.nodeType(t.type).create(t.attrs,i,n)}}
|
|
4866
|
-
|
|
4867
|
-
class
|
|
4868
|
-
this.text=n}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):
|
|
4869
|
-
return e.text=this.text,e}}function
|
|
4870
|
-
return t}class
|
|
4871
|
-
if(null==n.next)return
|
|
4872
|
-
let i=
|
|
4858
|
+
Rw.prototype.text=void 0
|
|
4859
|
+
class Ew extends Rw{constructor(e,t,n,i){if(super(e,t,null,i),!n)throw new RangeError("Empty text nodes are not allowed")
|
|
4860
|
+
this.text=n}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):Dw(this.marks,JSON.stringify(this.text))}get textContent(){return this.text}textBetween(e,t){return this.text.slice(e,t)}get nodeSize(){return this.text.length}mark(e){return e==this.marks?this:new Ew(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new Ew(this.type,this.attrs,e,this.marks)}cut(e=0,t=this.text.length){return 0==e&&t==this.text.length?this:this.withText(this.text.slice(e,t))}eq(e){return this.sameMarkup(e)&&this.text==e.text}toJSON(){let e=super.toJSON()
|
|
4861
|
+
return e.text=this.text,e}}function Dw(e,t){for(let n=e.length-1;n>=0;n--)t=e[n].type.name+"("+t+")"
|
|
4862
|
+
return t}class Fw{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,t){let n=new Ow(e,t)
|
|
4863
|
+
if(null==n.next)return Fw.empty
|
|
4864
|
+
let i=Tw(n)
|
|
4873
4865
|
n.next&&n.err("Unexpected trailing text")
|
|
4874
4866
|
let o=function(e){let t=Object.create(null)
|
|
4875
|
-
return n(
|
|
4867
|
+
return n(Bw(e,0))
|
|
4876
4868
|
function n(i){let o=[]
|
|
4877
4869
|
i.forEach((t=>{e[t].forEach((({term:t,to:n})=>{if(!t)return
|
|
4878
4870
|
let i
|
|
4879
4871
|
for(let e=0;e<o.length;e++)o[e][0]==t&&(i=o[e][1])
|
|
4880
|
-
|
|
4881
|
-
let r=t[i.join(",")]=new
|
|
4882
|
-
for(let e=0;e<o.length;e++){let i=o[e][1].sort(
|
|
4872
|
+
Bw(e,n).forEach((e=>{i||o.push([t,i=[]]),-1==i.indexOf(e)&&i.push(e)}))}))}))
|
|
4873
|
+
let r=t[i.join(",")]=new Fw(i.indexOf(e.length-1)>-1)
|
|
4874
|
+
for(let e=0;e<o.length;e++){let i=o[e][1].sort(Pw)
|
|
4883
4875
|
r.next.push({type:o[e][0],next:t[i.join(",")]||n(i)})}return r}}(function(e){let t=[[]]
|
|
4884
4876
|
return o(r(e,0),n()),t
|
|
4885
4877
|
function n(){return t.push([])-1}function i(e,n,i){let o={term:i,to:n}
|
|
@@ -4904,7 +4896,7 @@ return i}get inlineContent(){return 0!=this.next.length&&this.next[0].type.isInl
|
|
|
4904
4896
|
if(!t.isText&&!t.hasRequiredAttrs())return t}return null}compatible(e){for(let t=0;t<this.next.length;t++)for(let n=0;n<e.next.length;n++)if(this.next[t].type==e.next[n].type)return!0
|
|
4905
4897
|
return!1}fillBefore(e,t=!1,n=0){let i=[this]
|
|
4906
4898
|
return function o(r,s){let a=r.matchFragment(e,n)
|
|
4907
|
-
if(a&&(!t||a.validEnd))return
|
|
4899
|
+
if(a&&(!t||a.validEnd))return sw.from(s.map((e=>e.createAndFill())))
|
|
4908
4900
|
for(let e=0;e<r.next.length;e++){let{type:t,next:n}=r.next[e]
|
|
4909
4901
|
if(!t.isText&&!t.hasRequiredAttrs()&&-1==i.indexOf(n)){i.push(n)
|
|
4910
4902
|
let e=o(n,s.concat(t))
|
|
@@ -4920,12 +4912,12 @@ return this.next[e]}toString(){let e=[]
|
|
|
4920
4912
|
return function t(n){e.push(n)
|
|
4921
4913
|
for(let i=0;i<n.next.length;i++)-1==e.indexOf(n.next[i].next)&&t(n.next[i].next)}(this),e.map(((t,n)=>{let i=n+(t.validEnd?"*":" ")+" "
|
|
4922
4914
|
for(let n=0;n<t.next.length;n++)i+=(n?", ":"")+t.next[n].type.name+"->"+e.indexOf(t.next[n].next)
|
|
4923
|
-
return i})).join("\n")}}
|
|
4924
|
-
class
|
|
4925
|
-
do{t.push(
|
|
4926
|
-
return 1==t.length?t[0]:{type:"choice",exprs:t}}function
|
|
4927
|
-
do{t.push(
|
|
4928
|
-
return 1==t.length?t[0]:{type:"seq",exprs:t}}function
|
|
4915
|
+
return i})).join("\n")}}Fw.empty=new Fw(!0)
|
|
4916
|
+
class Ow{constructor(e,t){this.string=e,this.nodeTypes=t,this.inline=null,this.pos=0,this.tokens=e.split(/\s*(?=\b|\W|$)/),""==this.tokens[this.tokens.length-1]&&this.tokens.pop(),""==this.tokens[0]&&this.tokens.shift()}get next(){return this.tokens[this.pos]}eat(e){return this.next==e&&(this.pos++||!0)}err(e){throw new SyntaxError(e+" (in content expression '"+this.string+"')")}}function Tw(e){let t=[]
|
|
4917
|
+
do{t.push(zw(e))}while(e.eat("|"))
|
|
4918
|
+
return 1==t.length?t[0]:{type:"choice",exprs:t}}function zw(e){let t=[]
|
|
4919
|
+
do{t.push(Vw(e))}while(e.next&&")"!=e.next&&"|"!=e.next)
|
|
4920
|
+
return 1==t.length?t[0]:{type:"seq",exprs:t}}function Vw(e){let t=function(e){if(e.eat("(")){let t=Tw(e)
|
|
4929
4921
|
return e.eat(")")||e.err("Missing closing paren"),t}if(!/\W/.test(e.next)){let t=function(e,t){let n=e.nodeTypes,i=n[t]
|
|
4930
4922
|
if(i)return[i]
|
|
4931
4923
|
let o=[]
|
|
@@ -4937,29 +4929,29 @@ for(;;)if(e.eat("+"))t={type:"plus",expr:t}
|
|
|
4937
4929
|
else if(e.eat("*"))t={type:"star",expr:t}
|
|
4938
4930
|
else if(e.eat("?"))t={type:"opt",expr:t}
|
|
4939
4931
|
else{if(!e.eat("{"))break
|
|
4940
|
-
t=
|
|
4932
|
+
t=Hw(e,t)}return t}function Lw(e){/\D/.test(e.next)&&e.err("Expected number, got '"+e.next+"'")
|
|
4941
4933
|
let t=Number(e.next)
|
|
4942
|
-
return e.pos++,t}function
|
|
4943
|
-
return e.eat(",")&&(i="}"!=e.next?
|
|
4934
|
+
return e.pos++,t}function Hw(e,t){let n=Lw(e),i=n
|
|
4935
|
+
return e.eat(",")&&(i="}"!=e.next?Lw(e):-1),e.eat("}")||e.err("Unclosed braced range"),{type:"range",min:n,max:i,expr:t}}function Pw(e,t){return t-e}function Bw(e,t){let n=[]
|
|
4944
4936
|
return function t(i){let o=e[i]
|
|
4945
4937
|
if(1==o.length&&!o[0].term)return t(o[0].to)
|
|
4946
4938
|
n.push(i)
|
|
4947
4939
|
for(let e=0;e<o.length;e++){let{term:i,to:r}=o[e]
|
|
4948
|
-
i||-1!=n.indexOf(r)||t(r)}}(t),n.sort(
|
|
4940
|
+
i||-1!=n.indexOf(r)||t(r)}}(t),n.sort(Pw)}function Nw(e){let t=Object.create(null)
|
|
4949
4941
|
for(let n in e){let i=e[n]
|
|
4950
4942
|
if(!i.hasDefault)return null
|
|
4951
|
-
t[n]=i.default}return t}function
|
|
4943
|
+
t[n]=i.default}return t}function qw(e,t){let n=Object.create(null)
|
|
4952
4944
|
for(let i in e){let o=t&&t[i]
|
|
4953
4945
|
if(void 0===o){let t=e[i]
|
|
4954
4946
|
if(!t.hasDefault)throw new RangeError("No value supplied for attribute "+i)
|
|
4955
|
-
o=t.default}n[i]=o}return n}function
|
|
4956
|
-
if(e)for(let n in e)t[n]=new
|
|
4957
|
-
return t}class
|
|
4958
|
-
return!1}compatibleContent(e){return this==e||this.contentMatch.compatible(e.contentMatch)}computeAttrs(e){return!e&&this.defaultAttrs?this.defaultAttrs:
|
|
4959
|
-
return new
|
|
4947
|
+
o=t.default}n[i]=o}return n}function Zw(e){let t=Object.create(null)
|
|
4948
|
+
if(e)for(let n in e)t[n]=new jw(e[n])
|
|
4949
|
+
return t}class Uw{constructor(e,t,n){this.name=e,this.schema=t,this.spec=n,this.markSet=null,this.groups=n.group?n.group.split(" "):[],this.attrs=Zw(n.attrs),this.defaultAttrs=Nw(this.attrs),this.contentMatch=null,this.inlineContent=null,this.isBlock=!(n.inline||"text"==e),this.isText="text"==e}get isInline(){return!this.isBlock}get isTextblock(){return this.isBlock&&this.inlineContent}get isLeaf(){return this.contentMatch==Fw.empty}get isAtom(){return this.isLeaf||!!this.spec.atom}get whitespace(){return this.spec.whitespace||(this.spec.code?"pre":"normal")}hasRequiredAttrs(){for(let e in this.attrs)if(this.attrs[e].isRequired)return!0
|
|
4950
|
+
return!1}compatibleContent(e){return this==e||this.contentMatch.compatible(e.contentMatch)}computeAttrs(e){return!e&&this.defaultAttrs?this.defaultAttrs:qw(this.attrs,e)}create(e=null,t,n){if(this.isText)throw new Error("NodeType.create can't construct text nodes")
|
|
4951
|
+
return new Rw(this,this.computeAttrs(e),sw.from(t),dw.setFrom(n))}createChecked(e=null,t,n){return t=sw.from(t),this.checkContent(t),new Rw(this,this.computeAttrs(e),t,dw.setFrom(n))}createAndFill(e=null,t,n){if(e=this.computeAttrs(e),(t=sw.from(t)).size){let e=this.contentMatch.fillBefore(t)
|
|
4960
4952
|
if(!e)return null
|
|
4961
|
-
t=e.append(t)}let i=this.contentMatch.matchFragment(t),o=i&&i.fillBefore(
|
|
4962
|
-
return o?new
|
|
4953
|
+
t=e.append(t)}let i=this.contentMatch.matchFragment(t),o=i&&i.fillBefore(sw.empty,!0)
|
|
4954
|
+
return o?new Rw(this,e,t.append(o),dw.setFrom(n)):null}validContent(e){let t=this.contentMatch.matchFragment(e)
|
|
4963
4955
|
if(!t||!t.validEnd)return!1
|
|
4964
4956
|
for(let t=0;t<e.childCount;t++)if(!this.allowsMarks(e.child(t).marks))return!1
|
|
4965
4957
|
return!0}checkContent(e){if(!this.validContent(e))throw new RangeError(`Invalid content for node ${this.name}: ${e.toString().slice(0,50)}`)}allowsMarkType(e){return null==this.markSet||this.markSet.indexOf(e)>-1}allowsMarks(e){if(null==this.markSet)return!0
|
|
@@ -4967,32 +4959,32 @@ for(let t=0;t<e.length;t++)if(!this.allowsMarkType(e[t].type))return!1
|
|
|
4967
4959
|
return!0}allowedMarks(e){if(null==this.markSet)return e
|
|
4968
4960
|
let t
|
|
4969
4961
|
for(let n=0;n<e.length;n++)this.allowsMarkType(e[n].type)?t&&t.push(e[n]):t||(t=e.slice(0,n))
|
|
4970
|
-
return t?t.length?t:
|
|
4971
|
-
e.forEach(((e,i)=>n[e]=new
|
|
4962
|
+
return t?t.length?t:dw.none:e}static compile(e,t){let n=Object.create(null)
|
|
4963
|
+
e.forEach(((e,i)=>n[e]=new Uw(e,t,i)))
|
|
4972
4964
|
let i=t.spec.topNode||"doc"
|
|
4973
4965
|
if(!n[i])throw new RangeError("Schema is missing its top node type ('"+i+"')")
|
|
4974
4966
|
if(!n.text)throw new RangeError("Every schema needs a 'text' type")
|
|
4975
4967
|
for(let e in n.text.attrs)throw new RangeError("The text node type should not have attributes")
|
|
4976
|
-
return n}}class
|
|
4977
|
-
let o=
|
|
4978
|
-
this.instance=o?new
|
|
4979
|
-
return e.forEach(((e,o)=>n[e]=new
|
|
4980
|
-
return e}isInSet(e){for(let t=0;t<e.length;t++)if(e[t].type==this)return e[t]}excludes(e){return this.excluded.indexOf(e)>-1}}function
|
|
4968
|
+
return n}}class jw{constructor(e){this.hasDefault=Object.prototype.hasOwnProperty.call(e,"default"),this.default=e.default}get isRequired(){return!this.hasDefault}}class Gw{constructor(e,t,n,i){this.name=e,this.rank=t,this.schema=n,this.spec=i,this.attrs=Zw(i.attrs),this.excluded=null
|
|
4969
|
+
let o=Nw(this.attrs)
|
|
4970
|
+
this.instance=o?new dw(this,o):null}create(e=null){return!e&&this.instance?this.instance:new dw(this,qw(this.attrs,e))}static compile(e,t){let n=Object.create(null),i=0
|
|
4971
|
+
return e.forEach(((e,o)=>n[e]=new Gw(e,i++,t,o))),n}removeFromSet(e){for(var t=0;t<e.length;t++)e[t].type==this&&(e=e.slice(0,t).concat(e.slice(t+1)),t--)
|
|
4972
|
+
return e}isInSet(e){for(let t=0;t<e.length;t++)if(e[t].type==this)return e[t]}excludes(e){return this.excluded.indexOf(e)>-1}}function Ww(e,t){let n=[]
|
|
4981
4973
|
for(let i=0;i<t.length;i++){let o=t[i],r=e.marks[o],s=r
|
|
4982
4974
|
if(r)n.push(r)
|
|
4983
|
-
else for(let t in e.marks){let i=e.marks[t];("_"==o||i.spec.group&&i.spec.group.split(" ").indexOf(o)>-1)&&n.push(s=i)}if(!s)throw new SyntaxError("Unknown mark type: '"+t[i]+"'")}return n}class
|
|
4975
|
+
else for(let t in e.marks){let i=e.marks[t];("_"==o||i.spec.group&&i.spec.group.split(" ").indexOf(o)>-1)&&n.push(s=i)}if(!s)throw new SyntaxError("Unknown mark type: '"+t[i]+"'")}return n}class Kw{constructor(e,t){this.nodes=e,this.marks=t}serializeFragment(e,t={},n){n||(n=Yw(t).createDocumentFragment())
|
|
4984
4976
|
let i=n,o=[]
|
|
4985
4977
|
return e.forEach((e=>{if(o.length||e.marks.length){let n=0,r=0
|
|
4986
4978
|
for(;n<o.length&&r<e.marks.length;){let t=e.marks[r]
|
|
4987
4979
|
if(this.marks[t.type.name]){if(!t.eq(o[n][0])||!1===t.type.spec.spanning)break
|
|
4988
4980
|
n++,r++}else r++}for(;n<o.length;)i=o.pop()[1]
|
|
4989
4981
|
for(;r<e.marks.length;){let n=e.marks[r++],s=this.serializeMark(n,e.isInline,t)
|
|
4990
|
-
s&&(o.push([n,i]),i.appendChild(s.dom),i=s.contentDOM||s.dom)}}i.appendChild(this.serializeNodeInner(e,t))})),n}serializeNodeInner(e,t){let{dom:n,contentDOM:i}=
|
|
4982
|
+
s&&(o.push([n,i]),i.appendChild(s.dom),i=s.contentDOM||s.dom)}}i.appendChild(this.serializeNodeInner(e,t))})),n}serializeNodeInner(e,t){let{dom:n,contentDOM:i}=Kw.renderSpec(Yw(t),this.nodes[e.type.name](e))
|
|
4991
4983
|
if(i){if(e.isLeaf)throw new RangeError("Content hole not allowed in a leaf node spec")
|
|
4992
4984
|
this.serializeFragment(e.content,t,i)}return n}serializeNode(e,t={}){let n=this.serializeNodeInner(e,t)
|
|
4993
4985
|
for(let i=e.marks.length-1;i>=0;i--){let o=this.serializeMark(e.marks[i],e.isInline,t)
|
|
4994
4986
|
o&&((o.contentDOM||o.dom).appendChild(n),n=o.dom)}return n}serializeMark(e,t,n={}){let i=this.marks[e.type.name]
|
|
4995
|
-
return i&&
|
|
4987
|
+
return i&&Kw.renderSpec(Yw(n),i(e,t))}static renderSpec(e,t,n=null){if("string"==typeof t)return{dom:e.createTextNode(t)}
|
|
4996
4988
|
if(null!=t.nodeType)return{dom:t}
|
|
4997
4989
|
if(t.dom&&null!=t.dom.nodeType)return t
|
|
4998
4990
|
let i,o=t[0],r=o.indexOf(" ")
|
|
@@ -5002,207 +4994,207 @@ if(a&&"object"==typeof a&&null==a.nodeType&&!Array.isArray(a)){l=2
|
|
|
5002
4994
|
for(let e in a)if(null!=a[e]){let t=e.indexOf(" ")
|
|
5003
4995
|
t>0?s.setAttributeNS(e.slice(0,t),e.slice(t+1),a[e]):s.setAttribute(e,a[e])}}for(let o=l;o<t.length;o++){let r=t[o]
|
|
5004
4996
|
if(0===r){if(o<t.length-1||o>l)throw new RangeError("Content hole must be the only child of its parent node")
|
|
5005
|
-
return{dom:s,contentDOM:s}}{let{dom:t,contentDOM:o}=
|
|
4997
|
+
return{dom:s,contentDOM:s}}{let{dom:t,contentDOM:o}=Kw.renderSpec(e,r,n)
|
|
5006
4998
|
if(s.appendChild(t),o){if(i)throw new RangeError("Multiple content holes")
|
|
5007
|
-
i=o}}}return{dom:s,contentDOM:i}}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new
|
|
5008
|
-
return t.text||(t.text=e=>e.text),t}static marksFromSchema(e){return
|
|
4999
|
+
i=o}}}return{dom:s,contentDOM:i}}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new Kw(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let t=Xw(e.nodes)
|
|
5000
|
+
return t.text||(t.text=e=>e.text),t}static marksFromSchema(e){return Xw(e.marks)}}function Xw(e){let t={}
|
|
5009
5001
|
for(let n in e){let i=e[n].spec.toDOM
|
|
5010
|
-
i&&(t[n]=i)}return t}function
|
|
5002
|
+
i&&(t[n]=i)}return t}function Yw(e){return e.document||window.document}function Jw(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Qw(e){if(e.__esModule)return e
|
|
5011
5003
|
var t=e.default
|
|
5012
5004
|
if("function"==typeof t){var n=function e(){if(this instanceof e){var n=[null]
|
|
5013
5005
|
return n.push.apply(n,arguments),new(Function.bind.apply(t,n))}return t.apply(this,arguments)}
|
|
5014
5006
|
n.prototype=t.prototype}else n={}
|
|
5015
5007
|
return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach((function(t){var i=Object.getOwnPropertyDescriptor(e,t)
|
|
5016
|
-
Object.defineProperty(n,t,i.get?i:{enumerable:!0,get:function(){return e[t]}})})),n}var tx={},nx={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"",InvisibleTimes:"",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"",NegativeThickSpace:"",NegativeThinSpace:"",NegativeVeryThinSpace:"",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:" ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"",zwnj:""},ix=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/,ox={},rx={}
|
|
5017
|
-
function
|
|
5018
|
-
for("string"!=typeof t&&(n=t,t=
|
|
5008
|
+
Object.defineProperty(n,t,i.get?i:{enumerable:!0,get:function(){return e[t]}})})),n}var ex={},tx={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"",InvisibleTimes:"",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"",NegativeThickSpace:"",NegativeThinSpace:"",NegativeVeryThinSpace:"",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:" ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"",zwnj:""},nx=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/,ix={},ox={}
|
|
5009
|
+
function rx(e,t,n){var i,o,r,s,a,l=""
|
|
5010
|
+
for("string"!=typeof t&&(n=t,t=rx.defaultChars),void 0===n&&(n=!0),a=function(e){var t,n,i=ox[e]
|
|
5019
5011
|
if(i)return i
|
|
5020
|
-
for(i=
|
|
5012
|
+
for(i=ox[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),/^[0-9a-z]$/i.test(n)?i.push(n):i.push("%"+("0"+t.toString(16).toUpperCase()).slice(-2))
|
|
5021
5013
|
for(t=0;t<e.length;t++)i[e.charCodeAt(t)]=e[t]
|
|
5022
5014
|
return i}(t),i=0,o=e.length;i<o;i++)if(r=e.charCodeAt(i),n&&37===r&&i+2<o&&/^[0-9a-f]{2}$/i.test(e.slice(i+1,i+3)))l+=e.slice(i,i+3),i+=2
|
|
5023
5015
|
else if(r<128)l+=a[r]
|
|
5024
5016
|
else if(r>=55296&&r<=57343){if(r>=55296&&r<=56319&&i+1<o&&(s=e.charCodeAt(i+1))>=56320&&s<=57343){l+=encodeURIComponent(e[i]+e[i+1]),i++
|
|
5025
5017
|
continue}l+="%EF%BF%BD"}else l+=encodeURIComponent(e[i])
|
|
5026
|
-
return l}
|
|
5027
|
-
var
|
|
5028
|
-
function
|
|
5029
|
-
return"string"!=typeof t&&(t=
|
|
5018
|
+
return l}rx.defaultChars=";/?:@&=+$,-_.!~*'()#",rx.componentChars="-_.!~*'()"
|
|
5019
|
+
var sx=rx,ax={}
|
|
5020
|
+
function lx(e,t){var n
|
|
5021
|
+
return"string"!=typeof t&&(t=lx.defaultChars),n=function(e){var t,n,i=ax[e]
|
|
5030
5022
|
if(i)return i
|
|
5031
|
-
for(i=
|
|
5023
|
+
for(i=ax[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),i.push(n)
|
|
5032
5024
|
for(t=0;t<e.length;t++)i[n=e.charCodeAt(t)]="%"+("0"+n.toString(16).toUpperCase()).slice(-2)
|
|
5033
5025
|
return i}(t),e.replace(/(%[a-f0-9]{2})+/gi,(function(e){var t,i,o,r,s,a,l,c=""
|
|
5034
5026
|
for(t=0,i=e.length;t<i;t+=3)(o=parseInt(e.slice(t+1,t+3),16))<128?c+=n[o]:192==(224&o)&&t+3<i&&128==(192&(r=parseInt(e.slice(t+4,t+6),16)))?(c+=(l=o<<6&1984|63&r)<128?"��":String.fromCharCode(l),t+=3):224==(240&o)&&t+6<i&&(r=parseInt(e.slice(t+4,t+6),16),s=parseInt(e.slice(t+7,t+9),16),128==(192&r)&&128==(192&s))?(c+=(l=o<<12&61440|r<<6&4032|63&s)<2048||l>=55296&&l<=57343?"���":String.fromCharCode(l),t+=6):240==(248&o)&&t+9<i&&(r=parseInt(e.slice(t+4,t+6),16),s=parseInt(e.slice(t+7,t+9),16),a=parseInt(e.slice(t+10,t+12),16),128==(192&r)&&128==(192&s)&&128==(192&a))?((l=o<<18&1835008|r<<12&258048|s<<6&4032|63&a)<65536||l>1114111?c+="����":(l-=65536,c+=String.fromCharCode(55296+(l>>10),56320+(1023&l))),t+=9):c+="�"
|
|
5035
|
-
return c}))}
|
|
5036
|
-
var
|
|
5037
|
-
function
|
|
5038
|
-
|
|
5039
|
-
if(a=a.trim(),!t&&1===e.split("#").length){var l=
|
|
5040
|
-
if(l)return this.pathname=l[1],l[2]&&(this.search=l[2]),this}var c=
|
|
5041
|
-
if(c&&(o=(c=c[0]).toLowerCase(),this.protocol=c,a=a.substr(c.length)),(t||c||a.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(s="//"===a.substr(0,2))||c&&
|
|
5042
|
-
for(n=0;n<
|
|
5043
|
-
for(-1!==(h=-1===u?a.lastIndexOf("@"):a.lastIndexOf("@",u))&&(d=a.slice(0,h),a=a.slice(h+1),this.auth=d),u=-1,n=0;n<
|
|
5027
|
+
return c}))}lx.defaultChars=";/?:@&=+$,#",lx.componentChars=""
|
|
5028
|
+
var cx=lx
|
|
5029
|
+
function dx(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var hx=/^([a-z0-9.+-]+:)/i,ux=/:[0-9]*$/,px=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,gx=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),fx=["'"].concat(gx),mx=["%","/","?",";","#"].concat(fx),vx=["/","?","#"],bx=/^[+a-z0-9A-Z_-]{0,63}$/,wx=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,xx={javascript:!0,"javascript:":!0},yx={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0}
|
|
5030
|
+
dx.prototype.parse=function(e,t){var n,i,o,r,s,a=e
|
|
5031
|
+
if(a=a.trim(),!t&&1===e.split("#").length){var l=px.exec(a)
|
|
5032
|
+
if(l)return this.pathname=l[1],l[2]&&(this.search=l[2]),this}var c=hx.exec(a)
|
|
5033
|
+
if(c&&(o=(c=c[0]).toLowerCase(),this.protocol=c,a=a.substr(c.length)),(t||c||a.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(s="//"===a.substr(0,2))||c&&xx[c]||(a=a.substr(2),this.slashes=!0)),!xx[c]&&(s||c&&!yx[c])){var d,h,u=-1
|
|
5034
|
+
for(n=0;n<vx.length;n++)-1!==(r=a.indexOf(vx[n]))&&(-1===u||r<u)&&(u=r)
|
|
5035
|
+
for(-1!==(h=-1===u?a.lastIndexOf("@"):a.lastIndexOf("@",u))&&(d=a.slice(0,h),a=a.slice(h+1),this.auth=d),u=-1,n=0;n<mx.length;n++)-1!==(r=a.indexOf(mx[n]))&&(-1===u||r<u)&&(u=r);-1===u&&(u=a.length),":"===a[u-1]&&u--
|
|
5044
5036
|
var p=a.slice(0,u)
|
|
5045
5037
|
a=a.slice(u),this.parseHost(p),this.hostname=this.hostname||""
|
|
5046
5038
|
var g="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1]
|
|
5047
5039
|
if(!g){var f=this.hostname.split(/\./)
|
|
5048
5040
|
for(n=0,i=f.length;n<i;n++){var m=f[n]
|
|
5049
|
-
if(m&&!m.match(
|
|
5050
|
-
if(!v.match(
|
|
5041
|
+
if(m&&!m.match(bx)){for(var v="",b=0,w=m.length;b<w;b++)m.charCodeAt(b)>127?v+="x":v+=m[b]
|
|
5042
|
+
if(!v.match(bx)){var x=f.slice(0,n),y=f.slice(n+1),C=m.match(wx)
|
|
5051
5043
|
C&&(x.push(C[1]),y.unshift(C[2])),y.length&&(a=y.join(".")+a),this.hostname=x.join(".")
|
|
5052
5044
|
break}}}}this.hostname.length>255&&(this.hostname=""),g&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var k=a.indexOf("#");-1!==k&&(this.hash=a.substr(k),a=a.slice(0,k))
|
|
5053
5045
|
var $=a.indexOf("?")
|
|
5054
|
-
return-1!==$&&(this.search=a.substr($),a=a.slice(0,$)),a&&(this.pathname=a),
|
|
5046
|
+
return-1!==$&&(this.search=a.substr($),a=a.slice(0,$)),a&&(this.pathname=a),yx[o]&&this.hostname&&!this.pathname&&(this.pathname=""),this},dx.prototype.parseHost=function(e){var t=ux.exec(e)
|
|
5055
5047
|
t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}
|
|
5056
|
-
var
|
|
5057
|
-
var n=new
|
|
5048
|
+
var Cx=function(e,t){if(e&&e instanceof dx)return e
|
|
5049
|
+
var n=new dx
|
|
5058
5050
|
return n.parse(e,t),n}
|
|
5059
|
-
|
|
5060
|
-
return t+=e.protocol||"",t+=e.slashes?"//":"",t+=e.auth?e.auth+"@":"",e.hostname&&-1!==e.hostname.indexOf(":")?t+="["+e.hostname+"]":t+=e.hostname||"",t+=e.port?":"+e.port:"",t+=e.pathname||"",t+=e.search||"",t+=e.hash||""},
|
|
5061
|
-
var
|
|
5062
|
-
function
|
|
5051
|
+
ix.encode=sx,ix.decode=cx,ix.format=function(e){var t=""
|
|
5052
|
+
return t+=e.protocol||"",t+=e.slashes?"//":"",t+=e.auth?e.auth+"@":"",e.hostname&&-1!==e.hostname.indexOf(":")?t+="["+e.hostname+"]":t+=e.hostname||"",t+=e.port?":"+e.port:"",t+=e.pathname||"",t+=e.search||"",t+=e.hash||""},ix.parse=Cx
|
|
5053
|
+
var kx,$x,_x,Sx,Ix,Mx,Ax,Rx,Ex,Dx={}
|
|
5054
|
+
function Fx(){return $x?kx:($x=1,kx=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/)}function Ox(){return Sx?_x:(Sx=1,_x=/[\0-\x1F\x7F-\x9F]/)}function Tx(){return Rx?Ax:(Rx=1,Ax=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/)}function zx(){return Ex||(Ex=1,Dx.Any=Fx(),Dx.Cc=Ox(),Dx.Cf=Mx?Ix:(Mx=1,Ix=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/),Dx.P=nx,Dx.Z=Tx()),Dx}!function(e){var t=Object.prototype.hasOwnProperty
|
|
5063
5055
|
function n(e,n){return t.call(e,n)}function i(e){return!(e>=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!=(65535&e)&&65534!=(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function o(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e)
|
|
5064
|
-
return String.fromCharCode(t,n)}return String.fromCharCode(e)}var r=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,s=new RegExp(r.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),a=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,l=
|
|
5056
|
+
return String.fromCharCode(t,n)}return String.fromCharCode(e)}var r=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,s=new RegExp(r.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),a=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,l=tx
|
|
5065
5057
|
var c=/[&<>"]/,d=/[&<>"]/g,h={"&":"&","<":"<",">":">",'"':"""}
|
|
5066
5058
|
function u(e){return h[e]}var p=/[.?*+^$[\]\\(){}|-]/g
|
|
5067
|
-
var g=
|
|
5068
|
-
e.lib={},e.lib.mdurl=
|
|
5059
|
+
var g=nx
|
|
5060
|
+
e.lib={},e.lib.mdurl=ix,e.lib.ucmicro=zx(),e.assign=function(e){return Array.prototype.slice.call(arguments,1).forEach((function(t){if(t){if("object"!=typeof t)throw new TypeError(t+"must be object")
|
|
5069
5061
|
Object.keys(t).forEach((function(n){e[n]=t[n]}))}})),e},e.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},e.has=n,e.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(r,"$1")},e.unescapeAll=function(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(s,(function(e,t,r){return t||function(e,t){var r=0
|
|
5070
5062
|
return n(l,t)?l[t]:35===t.charCodeAt(0)&&a.test(t)&&i(r="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?o(r):e}(e,r)}))},e.isValidEntityCode=i,e.fromCodePoint=o,e.escapeHtml=function(e){return c.test(e)?e.replace(d,u):e},e.arrayReplaceAt=function(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))},e.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},e.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0
|
|
5071
5063
|
switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},e.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0
|
|
5072
|
-
default:return!1}},e.isPunctChar=function(e){return g.test(e)},e.escapeRE=function(e){return e.replace(p,"\\$&")},e.normalizeReference=function(e){return e=e.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}}(
|
|
5073
|
-
var
|
|
5074
|
-
|
|
5064
|
+
default:return!1}},e.isPunctChar=function(e){return g.test(e)},e.escapeRE=function(e){return e.replace(p,"\\$&")},e.normalizeReference=function(e){return e=e.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}}(ex)
|
|
5065
|
+
var Vx={},Lx=ex.unescapeAll,Hx=ex.unescapeAll
|
|
5066
|
+
Vx.parseLinkLabel=function(e,t,n){var i,o,r,s,a=-1,l=e.posMax,c=e.pos
|
|
5075
5067
|
for(e.pos=t+1,i=1;e.pos<l;){if(93===(r=e.src.charCodeAt(e.pos))&&0===--i){o=!0
|
|
5076
5068
|
break}if(s=e.pos,e.md.inline.skipToken(e),91===r)if(s===e.pos-1)i++
|
|
5077
|
-
else if(n)return e.pos=c,-1}return o&&(a=e.pos),e.pos=c,a},
|
|
5069
|
+
else if(n)return e.pos=c,-1}return o&&(a=e.pos),e.pos=c,a},Vx.parseLinkDestination=function(e,t,n){var i,o,r=t,s={ok:!1,pos:0,lines:0,str:""}
|
|
5078
5070
|
if(60===e.charCodeAt(t)){for(t++;t<n;){if(10===(i=e.charCodeAt(t)))return s
|
|
5079
5071
|
if(60===i)return s
|
|
5080
|
-
if(62===i)return s.pos=t+1,s.str=
|
|
5072
|
+
if(62===i)return s.pos=t+1,s.str=Lx(e.slice(r+1,t)),s.ok=!0,s
|
|
5081
5073
|
92===i&&t+1<n?t+=2:t++}return s}for(o=0;t<n&&32!==(i=e.charCodeAt(t))&&!(i<32||127===i);)if(92===i&&t+1<n){if(32===e.charCodeAt(t+1))break
|
|
5082
5074
|
t+=2}else{if(40===i&&++o>32)return s
|
|
5083
5075
|
if(41===i){if(0===o)break
|
|
5084
|
-
o--}t++}return r===t||0!==o||(s.str=
|
|
5076
|
+
o--}t++}return r===t||0!==o||(s.str=Lx(e.slice(r,t)),s.lines=0,s.pos=t,s.ok=!0),s},Vx.parseLinkTitle=function(e,t,n){var i,o,r=0,s=t,a={ok:!1,pos:0,lines:0,str:""}
|
|
5085
5077
|
if(t>=n)return a
|
|
5086
5078
|
if(34!==(o=e.charCodeAt(t))&&39!==o&&40!==o)return a
|
|
5087
|
-
for(t++,40===o&&(o=41);t<n;){if((i=e.charCodeAt(t))===o)return a.pos=t+1,a.lines=r,a.str=
|
|
5079
|
+
for(t++,40===o&&(o=41);t<n;){if((i=e.charCodeAt(t))===o)return a.pos=t+1,a.lines=r,a.str=Hx(e.slice(s+1,t)),a.ok=!0,a
|
|
5088
5080
|
if(40===i&&41===o)return a
|
|
5089
5081
|
10===i?r++:92===i&&t+1<n&&(t++,10===e.charCodeAt(t)&&r++),t++}return a}
|
|
5090
|
-
var
|
|
5091
|
-
function
|
|
5092
|
-
return"<code"+o.renderAttrs(r)+">"+
|
|
5093
|
-
return"<pre"+o.renderAttrs(r)+"><code>"+
|
|
5094
|
-
return h&&(u=(a=h.split(/(\s+)/g))[0],p=a.slice(2).join("")),0===(r=n.highlight&&n.highlight(d.content,u,p)||
|
|
5095
|
-
return r.attrs[r.attrIndex("alt")][1]=o.renderInlineAsText(r.children,n,i),o.renderToken(e,t,n)},
|
|
5082
|
+
var Px=ex.assign,Bx=ex.unescapeAll,Nx=ex.escapeHtml,qx={}
|
|
5083
|
+
function Zx(){this.rules=Px({},qx)}qx.code_inline=function(e,t,n,i,o){var r=e[t]
|
|
5084
|
+
return"<code"+o.renderAttrs(r)+">"+Nx(e[t].content)+"</code>"},qx.code_block=function(e,t,n,i,o){var r=e[t]
|
|
5085
|
+
return"<pre"+o.renderAttrs(r)+"><code>"+Nx(e[t].content)+"</code></pre>\n"},qx.fence=function(e,t,n,i,o){var r,s,a,l,c,d=e[t],h=d.info?Bx(d.info).trim():"",u="",p=""
|
|
5086
|
+
return h&&(u=(a=h.split(/(\s+)/g))[0],p=a.slice(2).join("")),0===(r=n.highlight&&n.highlight(d.content,u,p)||Nx(d.content)).indexOf("<pre")?r+"\n":h?(s=d.attrIndex("class"),l=d.attrs?d.attrs.slice():[],s<0?l.push(["class",n.langPrefix+u]):(l[s]=l[s].slice(),l[s][1]+=" "+n.langPrefix+u),c={attrs:l},"<pre><code"+o.renderAttrs(c)+">"+r+"</code></pre>\n"):"<pre><code"+o.renderAttrs(d)+">"+r+"</code></pre>\n"},qx.image=function(e,t,n,i,o){var r=e[t]
|
|
5087
|
+
return r.attrs[r.attrIndex("alt")][1]=o.renderInlineAsText(r.children,n,i),o.renderToken(e,t,n)},qx.hardbreak=function(e,t,n){return n.xhtmlOut?"<br />\n":"<br>\n"},qx.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?"<br />\n":"<br>\n":"\n"},qx.text=function(e,t){return Nx(e[t].content)},qx.html_block=function(e,t){return e[t].content},qx.html_inline=function(e,t){return e[t].content},Zx.prototype.renderAttrs=function(e){var t,n,i
|
|
5096
5088
|
if(!e.attrs)return""
|
|
5097
|
-
for(i="",t=0,n=e.attrs.length;t<n;t++)i+=" "+
|
|
5098
|
-
return i},
|
|
5099
|
-
return s.hidden?"":(s.block&&-1!==s.nesting&&t&&e[t-1].hidden&&(o+="\n"),o+=(-1===s.nesting?"</":"<")+s.tag,o+=this.renderAttrs(s),0===s.nesting&&n.xhtmlOut&&(o+=" /"),s.block&&(r=!0,1===s.nesting&&t+1<e.length&&("inline"===(i=e[t+1]).type||i.hidden||-1===i.nesting&&i.tag===s.tag)&&(r=!1)),o+=r?">\n":">")},
|
|
5100
|
-
return o},
|
|
5101
|
-
return i},
|
|
5089
|
+
for(i="",t=0,n=e.attrs.length;t<n;t++)i+=" "+Nx(e.attrs[t][0])+'="'+Nx(e.attrs[t][1])+'"'
|
|
5090
|
+
return i},Zx.prototype.renderToken=function(e,t,n){var i,o="",r=!1,s=e[t]
|
|
5091
|
+
return s.hidden?"":(s.block&&-1!==s.nesting&&t&&e[t-1].hidden&&(o+="\n"),o+=(-1===s.nesting?"</":"<")+s.tag,o+=this.renderAttrs(s),0===s.nesting&&n.xhtmlOut&&(o+=" /"),s.block&&(r=!0,1===s.nesting&&t+1<e.length&&("inline"===(i=e[t+1]).type||i.hidden||-1===i.nesting&&i.tag===s.tag)&&(r=!1)),o+=r?">\n":">")},Zx.prototype.renderInline=function(e,t,n){for(var i,o="",r=this.rules,s=0,a=e.length;s<a;s++)void 0!==r[i=e[s].type]?o+=r[i](e,s,t,n,this):o+=this.renderToken(e,s,t)
|
|
5092
|
+
return o},Zx.prototype.renderInlineAsText=function(e,t,n){for(var i="",o=0,r=e.length;o<r;o++)"text"===e[o].type?i+=e[o].content:"image"===e[o].type?i+=this.renderInlineAsText(e[o].children,t,n):"softbreak"===e[o].type&&(i+="\n")
|
|
5093
|
+
return i},Zx.prototype.render=function(e,t,n){var i,o,r,s="",a=this.rules
|
|
5102
5094
|
for(i=0,o=e.length;i<o;i++)"inline"===(r=e[i].type)?s+=this.renderInline(e[i].children,t,n):void 0!==a[r]?s+=a[e[i].type](e,i,t,n,this):s+=this.renderToken(e,i,t,n)
|
|
5103
5095
|
return s}
|
|
5104
|
-
var
|
|
5105
|
-
function
|
|
5106
|
-
return-1},
|
|
5107
|
-
e.__rules__.forEach((function(e){e.enabled&&e.alt.forEach((function(e){t.indexOf(e)<0&&t.push(e)}))})),e.__cache__={},t.forEach((function(t){e.__cache__[t]=[],e.__rules__.forEach((function(n){n.enabled&&(t&&n.alt.indexOf(t)<0||e.__cache__[t].push(n.fn))}))}))},
|
|
5096
|
+
var Ux=Zx
|
|
5097
|
+
function jx(){this.__rules__=[],this.__cache__=null}jx.prototype.__find__=function(e){for(var t=0;t<this.__rules__.length;t++)if(this.__rules__[t].name===e)return t
|
|
5098
|
+
return-1},jx.prototype.__compile__=function(){var e=this,t=[""]
|
|
5099
|
+
e.__rules__.forEach((function(e){e.enabled&&e.alt.forEach((function(e){t.indexOf(e)<0&&t.push(e)}))})),e.__cache__={},t.forEach((function(t){e.__cache__[t]=[],e.__rules__.forEach((function(n){n.enabled&&(t&&n.alt.indexOf(t)<0||e.__cache__[t].push(n.fn))}))}))},jx.prototype.at=function(e,t,n){var i=this.__find__(e),o=n||{}
|
|
5108
5100
|
if(-1===i)throw new Error("Parser rule not found: "+e)
|
|
5109
|
-
this.__rules__[i].fn=t,this.__rules__[i].alt=o.alt||[],this.__cache__=null},
|
|
5101
|
+
this.__rules__[i].fn=t,this.__rules__[i].alt=o.alt||[],this.__cache__=null},jx.prototype.before=function(e,t,n,i){var o=this.__find__(e),r=i||{}
|
|
5110
5102
|
if(-1===o)throw new Error("Parser rule not found: "+e)
|
|
5111
|
-
this.__rules__.splice(o,0,{name:t,enabled:!0,fn:n,alt:r.alt||[]}),this.__cache__=null},
|
|
5103
|
+
this.__rules__.splice(o,0,{name:t,enabled:!0,fn:n,alt:r.alt||[]}),this.__cache__=null},jx.prototype.after=function(e,t,n,i){var o=this.__find__(e),r=i||{}
|
|
5112
5104
|
if(-1===o)throw new Error("Parser rule not found: "+e)
|
|
5113
|
-
this.__rules__.splice(o+1,0,{name:t,enabled:!0,fn:n,alt:r.alt||[]}),this.__cache__=null},
|
|
5114
|
-
this.__rules__.push({name:e,enabled:!0,fn:t,alt:i.alt||[]}),this.__cache__=null},
|
|
5105
|
+
this.__rules__.splice(o+1,0,{name:t,enabled:!0,fn:n,alt:r.alt||[]}),this.__cache__=null},jx.prototype.push=function(e,t,n){var i=n||{}
|
|
5106
|
+
this.__rules__.push({name:e,enabled:!0,fn:t,alt:i.alt||[]}),this.__cache__=null},jx.prototype.enable=function(e,t){Array.isArray(e)||(e=[e])
|
|
5115
5107
|
var n=[]
|
|
5116
5108
|
return e.forEach((function(e){var i=this.__find__(e)
|
|
5117
5109
|
if(i<0){if(t)return
|
|
5118
|
-
throw new Error("Rules manager: invalid rule name "+e)}this.__rules__[i].enabled=!0,n.push(e)}),this),this.__cache__=null,n},
|
|
5110
|
+
throw new Error("Rules manager: invalid rule name "+e)}this.__rules__[i].enabled=!0,n.push(e)}),this),this.__cache__=null,n},jx.prototype.enableOnly=function(e,t){Array.isArray(e)||(e=[e]),this.__rules__.forEach((function(e){e.enabled=!1})),this.enable(e,t)},jx.prototype.disable=function(e,t){Array.isArray(e)||(e=[e])
|
|
5119
5111
|
var n=[]
|
|
5120
5112
|
return e.forEach((function(e){var i=this.__find__(e)
|
|
5121
5113
|
if(i<0){if(t)return
|
|
5122
|
-
throw new Error("Rules manager: invalid rule name "+e)}this.__rules__[i].enabled=!1,n.push(e)}),this),this.__cache__=null,n},
|
|
5123
|
-
var
|
|
5124
|
-
function
|
|
5125
|
-
function
|
|
5126
|
-
for(t=e.length-1;t>=0;t--)"text"!==(n=e[t]).type||i||(n.content=n.content.replace(
|
|
5127
|
-
for(t=e.length-1;t>=0;t--)"text"!==(n=e[t]).type||i||
|
|
5128
|
-
function
|
|
5114
|
+
throw new Error("Rules manager: invalid rule name "+e)}this.__rules__[i].enabled=!1,n.push(e)}),this),this.__cache__=null,n},jx.prototype.getRules=function(e){return null===this.__cache__&&this.__compile__(),this.__cache__[e]||[]}
|
|
5115
|
+
var Gx=jx,Wx=/\r\n?|\n/g,Kx=/\0/g,Xx=ex.arrayReplaceAt
|
|
5116
|
+
function Yx(e){return/^<\/a\s*>/i.test(e)}var Jx=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,Qx=/\((c|tm|r)\)/i,ey=/\((c|tm|r)\)/gi,ty={c:"©",r:"®",tm:"™"}
|
|
5117
|
+
function ny(e,t){return ty[t.toLowerCase()]}function iy(e){var t,n,i=0
|
|
5118
|
+
for(t=e.length-1;t>=0;t--)"text"!==(n=e[t]).type||i||(n.content=n.content.replace(ey,ny)),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}function oy(e){var t,n,i=0
|
|
5119
|
+
for(t=e.length-1;t>=0;t--)"text"!==(n=e[t]).type||i||Jx.test(n.content)&&(n.content=n.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1—").replace(/(^|\s)--(?=\s|$)/gm,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1–")),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}var ry=ex.isWhiteSpace,sy=ex.isPunctChar,ay=ex.isMdAsciiPunct,ly=/['"]/,cy=/['"]/g
|
|
5120
|
+
function dy(e,t,n){return e.slice(0,t)+n+e.slice(t+1)}function hy(e,t){var n,i,o,r,s,a,l,c,d,h,u,p,g,f,m,v,b,w,x,y,C
|
|
5129
5121
|
for(x=[],n=0;n<e.length;n++){for(i=e[n],l=e[n].level,b=x.length-1;b>=0&&!(x[b].level<=l);b--);if(x.length=b+1,"text"===i.type){s=0,a=(o=i.content).length
|
|
5130
|
-
e:for(;s<a&&(
|
|
5122
|
+
e:for(;s<a&&(cy.lastIndex=s,r=cy.exec(o));){if(m=v=!0,s=r.index+1,w="'"===r[0],d=32,r.index-1>=0)d=o.charCodeAt(r.index-1)
|
|
5131
5123
|
else for(b=n-1;b>=0&&("softbreak"!==e[b].type&&"hardbreak"!==e[b].type);b--)if(e[b].content){d=e[b].content.charCodeAt(e[b].content.length-1)
|
|
5132
5124
|
break}if(h=32,s<a)h=o.charCodeAt(s)
|
|
5133
5125
|
else for(b=n+1;b<e.length&&("softbreak"!==e[b].type&&"hardbreak"!==e[b].type);b++)if(e[b].content){h=e[b].content.charCodeAt(0)
|
|
5134
|
-
break}if(u=
|
|
5135
|
-
continue e}m?x.push({token:n,pos:r.index,single:w,level:l}):v&&w&&(i.content=
|
|
5126
|
+
break}if(u=ay(d)||sy(String.fromCharCode(d)),p=ay(h)||sy(String.fromCharCode(h)),g=ry(d),(f=ry(h))?m=!1:p&&(g||u||(m=!1)),g?v=!1:u&&(f||p||(v=!1)),34===h&&'"'===r[0]&&d>=48&&d<=57&&(v=m=!1),m&&v&&(m=u,v=p),m||v){if(v)for(b=x.length-1;b>=0&&(c=x[b],!(x[b].level<l));b--)if(c.single===w&&x[b].level===l){c=x[b],w?(y=t.md.options.quotes[2],C=t.md.options.quotes[3]):(y=t.md.options.quotes[0],C=t.md.options.quotes[1]),i.content=dy(i.content,r.index,C),e[c.token].content=dy(e[c.token].content,c.pos,y),s+=C.length-1,c.token===n&&(s+=y.length-1),a=(o=i.content).length,x.length=b
|
|
5127
|
+
continue e}m?x.push({token:n,pos:r.index,single:w,level:l}):v&&w&&(i.content=dy(i.content,r.index,"’"))}else w&&(i.content=dy(i.content,r.index,"’"))}}}}function uy(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}uy.prototype.attrIndex=function(e){var t,n,i
|
|
5136
5128
|
if(!this.attrs)return-1
|
|
5137
5129
|
for(n=0,i=(t=this.attrs).length;n<i;n++)if(t[n][0]===e)return n
|
|
5138
|
-
return-1},
|
|
5139
|
-
n<0?this.attrPush(i):this.attrs[n]=i},
|
|
5140
|
-
return t>=0&&(n=this.attrs[t][1]),n},
|
|
5130
|
+
return-1},uy.prototype.attrPush=function(e){this.attrs?this.attrs.push(e):this.attrs=[e]},uy.prototype.attrSet=function(e,t){var n=this.attrIndex(e),i=[e,t]
|
|
5131
|
+
n<0?this.attrPush(i):this.attrs[n]=i},uy.prototype.attrGet=function(e){var t=this.attrIndex(e),n=null
|
|
5132
|
+
return t>=0&&(n=this.attrs[t][1]),n},uy.prototype.attrJoin=function(e,t){var n=this.attrIndex(e)
|
|
5141
5133
|
n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+" "+t}
|
|
5142
|
-
var gy=py
|
|
5143
|
-
function
|
|
5144
|
-
var vy=
|
|
5145
|
-
t=(t=e.src.replace(
|
|
5134
|
+
var py=uy,gy=py
|
|
5135
|
+
function fy(e,t,n){this.src=e,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=t}fy.prototype.Token=gy
|
|
5136
|
+
var my=fy,vy=Gx,by=[["normalize",function(e){var t
|
|
5137
|
+
t=(t=e.src.replace(Wx,"\n")).replace(Kx,"�"),e.src=t}],["block",function(e){var t
|
|
5146
5138
|
e.inlineMode?((t=new e.Token("inline","",0)).content=e.src,t.map=[0,1],t.children=[],e.tokens.push(t)):e.md.block.parse(e.src,e.md,e.env,e.tokens)}],["inline",function(e){var t,n,i,o=e.tokens
|
|
5147
5139
|
for(n=0,i=o.length;n<i;n++)"inline"===(t=o[n]).type&&e.md.inline.parse(t.content,e.md,e.env,t.children)}],["linkify",function(e){var t,n,i,o,r,s,a,l,c,d,h,u,p,g,f,m,v,b,w=e.tokens
|
|
5148
|
-
if(e.md.options.linkify)for(n=0,i=w.length;n<i;n++)if("inline"===w[n].type&&e.md.linkify.pretest(w[n].content))for(p=0,t=(o=w[n].children).length-1;t>=0;t--)if("link_close"!==(s=o[t]).type){if("html_inline"===s.type&&(b=s.content,/^<a[>\s]/i.test(b)&&p>0&&p--,
|
|
5149
|
-
h<c.length&&((r=new e.Token("text","",0)).content=c.slice(h),r.level=u,a.push(r)),w[n].children=o=
|
|
5150
|
-
if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&(
|
|
5151
|
-
if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&
|
|
5140
|
+
if(e.md.options.linkify)for(n=0,i=w.length;n<i;n++)if("inline"===w[n].type&&e.md.linkify.pretest(w[n].content))for(p=0,t=(o=w[n].children).length-1;t>=0;t--)if("link_close"!==(s=o[t]).type){if("html_inline"===s.type&&(b=s.content,/^<a[>\s]/i.test(b)&&p>0&&p--,Yx(s.content)&&p++),!(p>0)&&"text"===s.type&&e.md.linkify.test(s.content)){for(c=s.content,v=e.md.linkify.match(c),a=[],u=s.level,h=0,v.length>0&&0===v[0].index&&t>0&&"text_special"===o[t-1].type&&(v=v.slice(1)),l=0;l<v.length;l++)g=v[l].url,f=e.md.normalizeLink(g),e.md.validateLink(f)&&(m=v[l].text,m=v[l].schema?"mailto:"!==v[l].schema||/^mailto:/i.test(m)?e.md.normalizeLinkText(m):e.md.normalizeLinkText("mailto:"+m).replace(/^mailto:/,""):e.md.normalizeLinkText("http://"+m).replace(/^http:\/\//,""),(d=v[l].index)>h&&((r=new e.Token("text","",0)).content=c.slice(h,d),r.level=u,a.push(r)),(r=new e.Token("link_open","a",1)).attrs=[["href",f]],r.level=u++,r.markup="linkify",r.info="auto",a.push(r),(r=new e.Token("text","",0)).content=m,r.level=u,a.push(r),(r=new e.Token("link_close","a",-1)).level=--u,r.markup="linkify",r.info="auto",a.push(r),h=v[l].lastIndex)
|
|
5141
|
+
h<c.length&&((r=new e.Token("text","",0)).content=c.slice(h),r.level=u,a.push(r)),w[n].children=o=Xx(o,t,a)}}else for(t--;o[t].level!==s.level&&"link_open"!==o[t].type;)t--}],["replacements",function(e){var t
|
|
5142
|
+
if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&(Qx.test(e.tokens[t].content)&&iy(e.tokens[t].children),Jx.test(e.tokens[t].content)&&oy(e.tokens[t].children))}],["smartquotes",function(e){var t
|
|
5143
|
+
if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&ly.test(e.tokens[t].content)&&hy(e.tokens[t].children,e)}],["text_join",function(e){var t,n,i,o,r,s,a=e.tokens
|
|
5152
5144
|
for(t=0,n=a.length;t<n;t++)if("inline"===a[t].type){for(r=(i=a[t].children).length,o=0;o<r;o++)"text_special"===i[o].type&&(i[o].type="text")
|
|
5153
5145
|
for(o=s=0;o<r;o++)"text"===i[o].type&&o+1<r&&"text"===i[o+1].type?i[o+1].content=i[o].content+i[o+1].content:(o!==s&&(i[s]=i[o]),s++)
|
|
5154
5146
|
o!==s&&(i.length=s)}}]]
|
|
5155
|
-
function
|
|
5156
|
-
for(var e=0;e<
|
|
5157
|
-
for(t=0,n=(i=this.ruler.getRules("")).length;t<n;t++)i[t](e)},
|
|
5158
|
-
var
|
|
5159
|
-
function
|
|
5160
|
-
return e.src.slice(n,i)}function
|
|
5147
|
+
function wy(){this.ruler=new vy
|
|
5148
|
+
for(var e=0;e<by.length;e++)this.ruler.push(by[e][0],by[e][1])}wy.prototype.process=function(e){var t,n,i
|
|
5149
|
+
for(t=0,n=(i=this.ruler.getRules("")).length;t<n;t++)i[t](e)},wy.prototype.State=my
|
|
5150
|
+
var xy=wy,yy=ex.isSpace
|
|
5151
|
+
function Cy(e,t){var n=e.bMarks[t]+e.tShift[t],i=e.eMarks[t]
|
|
5152
|
+
return e.src.slice(n,i)}function ky(e){var t,n=[],i=0,o=e.length,r=!1,s=0,a=""
|
|
5161
5153
|
for(t=e.charCodeAt(i);i<o;)124===t&&(r?(a+=e.substring(s,i-1),s=i):(n.push(a+e.substring(s,i)),a="",s=i+1)),r=92===t,i++,t=e.charCodeAt(i)
|
|
5162
|
-
return n.push(a+e.substring(s)),n}var
|
|
5163
|
-
function
|
|
5164
|
-
return i=e.bMarks[t]+e.tShift[t],o=e.eMarks[t],42!==(n=e.src.charCodeAt(i++))&&45!==n&&43!==n||i<o&&(r=e.src.charCodeAt(i),!
|
|
5154
|
+
return n.push(a+e.substring(s)),n}var $y=ex.isSpace,_y=ex.isSpace,Sy=ex.isSpace
|
|
5155
|
+
function Iy(e,t){var n,i,o,r
|
|
5156
|
+
return i=e.bMarks[t]+e.tShift[t],o=e.eMarks[t],42!==(n=e.src.charCodeAt(i++))&&45!==n&&43!==n||i<o&&(r=e.src.charCodeAt(i),!Sy(r))?-1:i}function My(e,t){var n,i=e.bMarks[t]+e.tShift[t],o=i,r=e.eMarks[t]
|
|
5165
5157
|
if(o+1>=r)return-1
|
|
5166
5158
|
if((n=e.src.charCodeAt(o++))<48||n>57)return-1
|
|
5167
5159
|
for(;;){if(o>=r)return-1
|
|
5168
5160
|
if(!((n=e.src.charCodeAt(o++))>=48&&n<=57)){if(41===n||46===n)break
|
|
5169
|
-
return-1}if(o-i>=10)return-1}return o<r&&(n=e.src.charCodeAt(o),!
|
|
5170
|
-
|
|
5171
|
-
var
|
|
5172
|
-
function
|
|
5173
|
-
for(this.src=e,this.md=t,this.env=n,this.tokens=i,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0,this.result="",h=!1,s=a=c=d=0,l=(r=this.src).length;a<l;a++){if(o=r.charCodeAt(a),!h){if(
|
|
5174
|
-
continue}h=!0}10!==o&&a!==l-1||(10!==o&&a++,this.bMarks.push(s),this.eMarks.push(a),this.tShift.push(c),this.sCount.push(d),this.bsCount.push(0),h=!1,c=0,d=0,s=a+1)}this.bMarks.push(r.length),this.eMarks.push(r.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}
|
|
5175
|
-
return i.block=!0,n<0&&this.level--,i.level=this.level,n>0&&this.level++,this.tokens.push(i),i},
|
|
5176
|
-
for(;e>t;)if(!
|
|
5177
|
-
return e},
|
|
5161
|
+
return-1}if(o-i>=10)return-1}return o<r&&(n=e.src.charCodeAt(o),!Sy(n))?-1:o}var Ay=ex.normalizeReference,Ry=ex.isSpace,Ey={},Dy="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",Fy="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",Oy=new RegExp("^(?:"+Dy+"|"+Fy+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?][\\s\\S]*?[?]>|<![A-Z]+\\s+[^>]*>|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>)"),Ty=new RegExp("^(?:"+Dy+"|"+Fy+")")
|
|
5162
|
+
Ey.HTML_TAG_RE=Oy,Ey.HTML_OPEN_CLOSE_TAG_RE=Ty
|
|
5163
|
+
var zy=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","section","source","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],Vy=Ey.HTML_OPEN_CLOSE_TAG_RE,Ly=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^<!--/,/-->/,!0],[/^<\?/,/\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\[CDATA\[/,/\]\]>/,!0],[new RegExp("^</?("+zy.join("|")+")(?=(\\s|/?>|$))","i"),/^$/,!0],[new RegExp(Vy.source+"\\s*$"),/^$/,!1]],Hy=ex.isSpace,Py=py,By=ex.isSpace
|
|
5164
|
+
function Ny(e,t,n,i){var o,r,s,a,l,c,d,h
|
|
5165
|
+
for(this.src=e,this.md=t,this.env=n,this.tokens=i,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0,this.result="",h=!1,s=a=c=d=0,l=(r=this.src).length;a<l;a++){if(o=r.charCodeAt(a),!h){if(By(o)){c++,9===o?d+=4-d%4:d++
|
|
5166
|
+
continue}h=!0}10!==o&&a!==l-1||(10!==o&&a++,this.bMarks.push(s),this.eMarks.push(a),this.tShift.push(c),this.sCount.push(d),this.bsCount.push(0),h=!1,c=0,d=0,s=a+1)}this.bMarks.push(r.length),this.eMarks.push(r.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}Ny.prototype.push=function(e,t,n){var i=new Py(e,t,n)
|
|
5167
|
+
return i.block=!0,n<0&&this.level--,i.level=this.level,n>0&&this.level++,this.tokens.push(i),i},Ny.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},Ny.prototype.skipEmptyLines=function(e){for(var t=this.lineMax;e<t&&!(this.bMarks[e]+this.tShift[e]<this.eMarks[e]);e++);return e},Ny.prototype.skipSpaces=function(e){for(var t,n=this.src.length;e<n&&(t=this.src.charCodeAt(e),By(t));e++);return e},Ny.prototype.skipSpacesBack=function(e,t){if(e<=t)return e
|
|
5168
|
+
for(;e>t;)if(!By(this.src.charCodeAt(--e)))return e+1
|
|
5169
|
+
return e},Ny.prototype.skipChars=function(e,t){for(var n=this.src.length;e<n&&this.src.charCodeAt(e)===t;e++);return e},Ny.prototype.skipCharsBack=function(e,t,n){if(e<=n)return e
|
|
5178
5170
|
for(;e>n;)if(t!==this.src.charCodeAt(--e))return e+1
|
|
5179
|
-
return e},
|
|
5171
|
+
return e},Ny.prototype.getLines=function(e,t,n,i){var o,r,s,a,l,c,d,h=e
|
|
5180
5172
|
if(e>=t)return""
|
|
5181
|
-
for(c=new Array(t-e),o=0;h<t;h++,o++){for(r=0,d=a=this.bMarks[h],l=h+1<t||i?this.eMarks[h]+1:this.eMarks[h];a<l&&r<n;){if(s=this.src.charCodeAt(a),
|
|
5173
|
+
for(c=new Array(t-e),o=0;h<t;h++,o++){for(r=0,d=a=this.bMarks[h],l=h+1<t||i?this.eMarks[h]+1:this.eMarks[h];a<l&&r<n;){if(s=this.src.charCodeAt(a),By(s))9===s?r+=4-(r+this.bsCount[h])%4:r++
|
|
5182
5174
|
else{if(!(a-d<this.tShift[h]))break
|
|
5183
|
-
r++}a++}c[o]=r>n?new Array(r-n+1).join(" ")+this.src.slice(a,l):this.src.slice(a,l)}return c.join("")},
|
|
5184
|
-
var Zy=
|
|
5175
|
+
r++}a++}c[o]=r>n?new Array(r-n+1).join(" ")+this.src.slice(a,l):this.src.slice(a,l)}return c.join("")},Ny.prototype.Token=Py
|
|
5176
|
+
var qy=Ny,Zy=Gx,Uy=[["table",function(e,t,n,i){var o,r,s,a,l,c,d,h,u,p,g,f,m,v,b,w,x,y
|
|
5185
5177
|
if(t+2>n)return!1
|
|
5186
5178
|
if(c=t+1,e.sCount[c]<e.blkIndent)return!1
|
|
5187
5179
|
if(e.sCount[c]-e.blkIndent>=4)return!1
|
|
5188
5180
|
if((s=e.bMarks[c]+e.tShift[c])>=e.eMarks[c])return!1
|
|
5189
5181
|
if(124!==(x=e.src.charCodeAt(s++))&&45!==x&&58!==x)return!1
|
|
5190
5182
|
if(s>=e.eMarks[c])return!1
|
|
5191
|
-
if(124!==(y=e.src.charCodeAt(s++))&&45!==y&&58!==y&&!
|
|
5192
|
-
if(45===x&&
|
|
5193
|
-
for(;s<e.eMarks[c];){if(124!==(o=e.src.charCodeAt(s))&&45!==o&&58!==o&&!
|
|
5194
|
-
s++}for(d=(r=
|
|
5183
|
+
if(124!==(y=e.src.charCodeAt(s++))&&45!==y&&58!==y&&!yy(y))return!1
|
|
5184
|
+
if(45===x&&yy(y))return!1
|
|
5185
|
+
for(;s<e.eMarks[c];){if(124!==(o=e.src.charCodeAt(s))&&45!==o&&58!==o&&!yy(o))return!1
|
|
5186
|
+
s++}for(d=(r=Cy(e,t+1)).split("|"),p=[],a=0;a<d.length;a++){if(!(g=d[a].trim())){if(0===a||a===d.length-1)continue
|
|
5195
5187
|
return!1}if(!/^:?-+:?$/.test(g))return!1
|
|
5196
|
-
58===g.charCodeAt(g.length-1)?p.push(58===g.charCodeAt(0)?"center":"right"):58===g.charCodeAt(0)?p.push("left"):p.push("")}if(-1===(r=
|
|
5188
|
+
58===g.charCodeAt(g.length-1)?p.push(58===g.charCodeAt(0)?"center":"right"):58===g.charCodeAt(0)?p.push("left"):p.push("")}if(-1===(r=Cy(e,t).trim()).indexOf("|"))return!1
|
|
5197
5189
|
if(e.sCount[t]-e.blkIndent>=4)return!1
|
|
5198
|
-
if((d
|
|
5190
|
+
if((d=ky(r)).length&&""===d[0]&&d.shift(),d.length&&""===d[d.length-1]&&d.pop(),0===(h=d.length)||h!==p.length)return!1
|
|
5199
5191
|
if(i)return!0
|
|
5200
5192
|
for(v=e.parentType,e.parentType="table",w=e.md.block.ruler.getRules("blockquote"),(u=e.push("table_open","table",1)).map=f=[t,0],(u=e.push("thead_open","thead",1)).map=[t,t+1],(u=e.push("tr_open","tr",1)).map=[t,t+1],a=0;a<d.length;a++)u=e.push("th_open","th",1),p[a]&&(u.attrs=[["style","text-align:"+p[a]]]),(u=e.push("inline","",0)).content=d[a].trim(),u.children=[],u=e.push("th_close","th",-1)
|
|
5201
5193
|
for(u=e.push("tr_close","tr",-1),u=e.push("thead_close","thead",-1),c=t+2;c<n&&!(e.sCount[c]<e.blkIndent);c++){for(b=!1,a=0,l=w.length;a<l;a++)if(w[a](e,c,n,!0)){b=!0
|
|
5202
5194
|
break}if(b)break
|
|
5203
|
-
if(!(r=
|
|
5195
|
+
if(!(r=Cy(e,c).trim()))break
|
|
5204
5196
|
if(e.sCount[c]-e.blkIndent>=4)break
|
|
5205
|
-
for((d
|
|
5197
|
+
for((d=ky(r)).length&&""===d[0]&&d.shift(),d.length&&""===d[d.length-1]&&d.pop(),c===t+2&&((u=e.push("tbody_open","tbody",1)).map=m=[t+2,0]),(u=e.push("tr_open","tr",1)).map=[c,c+1],a=0;a<h;a++)u=e.push("td_open","td",1),p[a]&&(u.attrs=[["style","text-align:"+p[a]]]),(u=e.push("inline","",0)).content=d[a]?d[a].trim():"",u.children=[],u=e.push("td_close","td",-1)
|
|
5206
5198
|
u=e.push("tr_close","tr",-1)}return m&&(u=e.push("tbody_close","tbody",-1),m[1]=c),u=e.push("table_close","table",-1),f[1]=c,e.parentType=v,e.line=c,!0},["paragraph","reference"]],["code",function(e,t,n){var i,o,r
|
|
5207
5199
|
if(e.sCount[t]-e.blkIndent<4)return!1
|
|
5208
5200
|
for(o=i=t+1;i<n;)if(e.isEmpty(i))i++
|
|
@@ -5219,20 +5211,20 @@ break}return r=e.sCount[t],e.line=a+(h?1:0),(c=e.push("fence","code",0)).info=s,
|
|
|
5219
5211
|
if(e.sCount[t]-e.blkIndent>=4)return!1
|
|
5220
5212
|
if(62!==e.src.charCodeAt(_++))return!1
|
|
5221
5213
|
if(i)return!0
|
|
5222
|
-
for(a=u=e.sCount[t]+1,32===e.src.charCodeAt(_)?(_++,a++,u++,o=!1,w=!0):9===e.src.charCodeAt(_)?(w=!0,(e.bsCount[t]+u)%4==3?(_++,a++,u++,o=!1):o=!0):w=!1,p=[e.bMarks[t]],e.bMarks[t]=_;_<S&&(r=e.src.charCodeAt(_)
|
|
5214
|
+
for(a=u=e.sCount[t]+1,32===e.src.charCodeAt(_)?(_++,a++,u++,o=!1,w=!0):9===e.src.charCodeAt(_)?(w=!0,(e.bsCount[t]+u)%4==3?(_++,a++,u++,o=!1):o=!0):w=!1,p=[e.bMarks[t]],e.bMarks[t]=_;_<S&&(r=e.src.charCodeAt(_),$y(r));)9===r?u+=4-(u+e.bsCount[t]+(o?1:0))%4:u++,_++
|
|
5223
5215
|
for(g=[e.bsCount[t]],e.bsCount[t]=e.sCount[t]+1+(w?1:0),c=_>=S,v=[e.sCount[t]],e.sCount[t]=u-a,b=[e.tShift[t]],e.tShift[t]=_-e.bMarks[t],y=e.md.block.ruler.getRules("blockquote"),m=e.parentType,e.parentType="blockquote",h=t+1;h<n&&(k=e.sCount[h]<e.blkIndent,!((_=e.bMarks[h]+e.tShift[h])>=(S=e.eMarks[h])));h++)if(62!==e.src.charCodeAt(_++)||k){if(c)break
|
|
5224
5216
|
for(x=!1,s=0,l=y.length;s<l;s++)if(y[s](e,h,n,!0)){x=!0
|
|
5225
5217
|
break}if(x){e.lineMax=h,0!==e.blkIndent&&(p.push(e.bMarks[h]),g.push(e.bsCount[h]),b.push(e.tShift[h]),v.push(e.sCount[h]),e.sCount[h]-=e.blkIndent)
|
|
5226
|
-
break}p.push(e.bMarks[h]),g.push(e.bsCount[h]),b.push(e.tShift[h]),v.push(e.sCount[h]),e.sCount[h]=-1}else{for(a=u=e.sCount[h]+1,32===e.src.charCodeAt(_)?(_++,a++,u++,o=!1,w=!0):9===e.src.charCodeAt(_)?(w=!0,(e.bsCount[h]+u)%4==3?(_++,a++,u++,o=!1):o=!0):w=!1,p.push(e.bMarks[h]),e.bMarks[h]=_;_<S&&(r=e.src.charCodeAt(_)
|
|
5218
|
+
break}p.push(e.bMarks[h]),g.push(e.bsCount[h]),b.push(e.tShift[h]),v.push(e.sCount[h]),e.sCount[h]=-1}else{for(a=u=e.sCount[h]+1,32===e.src.charCodeAt(_)?(_++,a++,u++,o=!1,w=!0):9===e.src.charCodeAt(_)?(w=!0,(e.bsCount[h]+u)%4==3?(_++,a++,u++,o=!1):o=!0):w=!1,p.push(e.bMarks[h]),e.bMarks[h]=_;_<S&&(r=e.src.charCodeAt(_),$y(r));)9===r?u+=4-(u+e.bsCount[h]+(o?1:0))%4:u++,_++
|
|
5227
5219
|
c=_>=S,g.push(e.bsCount[h]),e.bsCount[h]=e.sCount[h]+1+(w?1:0),v.push(e.sCount[h]),e.sCount[h]=u-a,b.push(e.tShift[h]),e.tShift[h]=_-e.bMarks[h]}for(f=e.blkIndent,e.blkIndent=0,(C=e.push("blockquote_open","blockquote",1)).markup=">",C.map=d=[t,0],e.md.block.tokenize(e,t,h),(C=e.push("blockquote_close","blockquote",-1)).markup=">",e.lineMax=$,e.parentType=m,d[1]=e.line,s=0;s<b.length;s++)e.bMarks[s+t]=p[s],e.tShift[s+t]=b[s],e.sCount[s+t]=v[s],e.bsCount[s+t]=g[s]
|
|
5228
5220
|
return e.blkIndent=f,!0},["paragraph","reference","blockquote","list"]],["hr",function(e,t,n,i){var o,r,s,a,l=e.bMarks[t]+e.tShift[t],c=e.eMarks[t]
|
|
5229
5221
|
if(e.sCount[t]-e.blkIndent>=4)return!1
|
|
5230
5222
|
if(42!==(o=e.src.charCodeAt(l++))&&45!==o&&95!==o)return!1
|
|
5231
|
-
for(r=1;l<c;){if((s=e.src.charCodeAt(l++))!==o&&!
|
|
5223
|
+
for(r=1;l<c;){if((s=e.src.charCodeAt(l++))!==o&&!_y(s))return!1
|
|
5232
5224
|
s===o&&r++}return!(r<3)&&(i||(e.line=t+1,(a=e.push("hr","hr",0)).map=[t,e.line],a.markup=Array(r+1).join(String.fromCharCode(o))),!0)},["paragraph","reference","blockquote","list"]],["list",function(e,t,n,i){var o,r,s,a,l,c,d,h,u,p,g,f,m,v,b,w,x,y,C,k,$,_,S,I,M,A,R,E,D=!1,F=!0
|
|
5233
5225
|
if(e.sCount[t]-e.blkIndent>=4)return!1
|
|
5234
5226
|
if(e.listIndent>=0&&e.sCount[t]-e.listIndent>=4&&e.sCount[t]<e.blkIndent)return!1
|
|
5235
|
-
if(i&&"paragraph"===e.parentType&&e.sCount[t]>=e.blkIndent&&(D=!0),(S=
|
|
5227
|
+
if(i&&"paragraph"===e.parentType&&e.sCount[t]>=e.blkIndent&&(D=!0),(S=My(e,t))>=0){if(d=!0,M=e.bMarks[t]+e.tShift[t],m=Number(e.src.slice(M,S-1)),D&&1!==m)return!1}else{if(!((S=Iy(e,t))>=0))return!1
|
|
5236
5228
|
d=!1}if(D&&e.skipSpaces(S)>=e.eMarks[t])return!1
|
|
5237
5229
|
if(f=e.src.charCodeAt(S-1),i)return!0
|
|
5238
5230
|
for(g=e.tokens.length,d?(E=e.push("ordered_list_open","ol",1),1!==m&&(E.attrs=[["start",m]])):E=e.push("bullet_list_open","ul",1),E.map=p=[t,0],E.markup=String.fromCharCode(f),b=t,I=!1,R=e.md.block.ruler.getRules("list"),y=e.parentType,e.parentType="list";b<n;){for(_=S,v=e.eMarks[b],c=w=e.sCount[b]+S-(e.bMarks[t]+e.tShift[t]);_<v;){if(9===(o=e.src.charCodeAt(_)))w+=4-(w+e.bsCount[b])%4
|
|
@@ -5242,8 +5234,8 @@ if(e.sCount[b]<e.blkIndent)break
|
|
|
5242
5234
|
if(e.sCount[t]-e.blkIndent>=4)break
|
|
5243
5235
|
for(A=!1,s=0,u=R.length;s<u;s++)if(R[s](e,b,n,!0)){A=!0
|
|
5244
5236
|
break}if(A)break
|
|
5245
|
-
if(d){if((S=
|
|
5246
|
-
M=e.bMarks[b]+e.tShift[b]}else if((S=
|
|
5237
|
+
if(d){if((S=My(e,b))<0)break
|
|
5238
|
+
M=e.bMarks[b]+e.tShift[b]}else if((S=Iy(e,b))<0)break
|
|
5247
5239
|
if(f!==e.src.charCodeAt(S-1))break}return(E=d?e.push("ordered_list_close","ol",-1):e.push("bullet_list_close","ul",-1)).markup=String.fromCharCode(f),p[1]=b,e.line=b,e.parentType=y,F&&function(e,t){var n,i,o=e.level+2
|
|
5248
5240
|
for(n=t+2,i=e.tokens.length-2;n<i;n++)e.tokens[n].level===o&&"paragraph_open"===e.tokens[n].type&&(e.tokens[n+2].hidden=!0,e.tokens[n].hidden=!0,n+=2)}(e,g),!0},["paragraph","reference","blockquote"]],["reference",function(e,t,n,i){var o,r,s,a,l,c,d,h,u,p,g,f,m,v,b,w,x=0,y=e.bMarks[t]+e.tShift[t],C=e.eMarks[t],k=t+1
|
|
5249
5241
|
if(e.sCount[t]-e.blkIndent>=4)return!1
|
|
@@ -5255,229 +5247,229 @@ break}if(v)break}for(C=(m=e.getLines(t,k,e.blkIndent,!1).trim()).length,y=1;y<C;
|
|
|
5255
5247
|
if(93===o){u=y
|
|
5256
5248
|
break}(10===o||92===o&&++y<C&&10===m.charCodeAt(y))&&x++}if(u<0||58!==m.charCodeAt(u+1))return!1
|
|
5257
5249
|
for(y=u+2;y<C;y++)if(10===(o=m.charCodeAt(y)))x++
|
|
5258
|
-
else if(!
|
|
5250
|
+
else if(!Ry(o))break
|
|
5259
5251
|
if(!(g=e.md.helpers.parseLinkDestination(m,y,C)).ok)return!1
|
|
5260
5252
|
if(l=e.md.normalizeLink(g.str),!e.md.validateLink(l))return!1
|
|
5261
5253
|
for(r=y=g.pos,s=x+=g.lines,f=y;y<C;y++)if(10===(o=m.charCodeAt(y)))x++
|
|
5262
|
-
else if(!
|
|
5263
|
-
for(g=e.md.helpers.parseLinkTitle(m,y,C),y<C&&f!==y&&g.ok?(w=g.str,y=g.pos,x+=g.lines):(w="",y=r,x=s);y<C&&(o=m.charCodeAt(y),
|
|
5264
|
-
if(y<C&&10!==m.charCodeAt(y)&&w)for(w="",y=r,x=s;y<C&&(o=m.charCodeAt(y),
|
|
5265
|
-
return!(y<C&&10!==m.charCodeAt(y))&&(!!(h=
|
|
5254
|
+
else if(!Ry(o))break
|
|
5255
|
+
for(g=e.md.helpers.parseLinkTitle(m,y,C),y<C&&f!==y&&g.ok?(w=g.str,y=g.pos,x+=g.lines):(w="",y=r,x=s);y<C&&(o=m.charCodeAt(y),Ry(o));)y++
|
|
5256
|
+
if(y<C&&10!==m.charCodeAt(y)&&w)for(w="",y=r,x=s;y<C&&(o=m.charCodeAt(y),Ry(o));)y++
|
|
5257
|
+
return!(y<C&&10!==m.charCodeAt(y))&&(!!(h=Ay(m.slice(1,u)))&&(i||(void 0===e.env.references&&(e.env.references={}),void 0===e.env.references[h]&&(e.env.references[h]={title:w,href:l}),e.parentType=p,e.line=t+x+1),!0))}],["html_block",function(e,t,n,i){var o,r,s,a,l=e.bMarks[t]+e.tShift[t],c=e.eMarks[t]
|
|
5266
5258
|
if(e.sCount[t]-e.blkIndent>=4)return!1
|
|
5267
5259
|
if(!e.md.options.html)return!1
|
|
5268
5260
|
if(60!==e.src.charCodeAt(l))return!1
|
|
5269
|
-
for(a=e.src.slice(l,c),o=0;o<
|
|
5270
|
-
if(i)return
|
|
5271
|
-
if(r=t+1,!
|
|
5261
|
+
for(a=e.src.slice(l,c),o=0;o<Ly.length&&!Ly[o][0].test(a);o++);if(o===Ly.length)return!1
|
|
5262
|
+
if(i)return Ly[o][2]
|
|
5263
|
+
if(r=t+1,!Ly[o][1].test(a))for(;r<n&&!(e.sCount[r]<e.blkIndent);r++)if(l=e.bMarks[r]+e.tShift[r],c=e.eMarks[r],a=e.src.slice(l,c),Ly[o][1].test(a)){0!==a.length&&r++
|
|
5272
5264
|
break}return e.line=r,(s=e.push("html_block","",0)).map=[t,r],s.content=e.getLines(t,r,e.blkIndent,!0),!0},["paragraph","reference","blockquote"]],["heading",function(e,t,n,i){var o,r,s,a,l=e.bMarks[t]+e.tShift[t],c=e.eMarks[t]
|
|
5273
5265
|
if(e.sCount[t]-e.blkIndent>=4)return!1
|
|
5274
5266
|
if(35!==(o=e.src.charCodeAt(l))||l>=c)return!1
|
|
5275
5267
|
for(r=1,o=e.src.charCodeAt(++l);35===o&&l<c&&r<=6;)r++,o=e.src.charCodeAt(++l)
|
|
5276
|
-
return!(r>6||l<c&&!
|
|
5268
|
+
return!(r>6||l<c&&!Hy(o))&&(i||(c=e.skipSpacesBack(c,l),(s=e.skipCharsBack(c,35,l))>l&&Hy(e.src.charCodeAt(s-1))&&(c=s),e.line=t+1,(a=e.push("heading_open","h"+String(r),1)).markup="########".slice(0,r),a.map=[t,e.line],(a=e.push("inline","",0)).content=e.src.slice(l,c).trim(),a.map=[t,e.line],a.children=[],(a=e.push("heading_close","h"+String(r),-1)).markup="########".slice(0,r)),!0)},["paragraph","reference","blockquote"]],["lheading",function(e,t,n){var i,o,r,s,a,l,c,d,h,u,p=t+1,g=e.md.block.ruler.getRules("paragraph")
|
|
5277
5269
|
if(e.sCount[t]-e.blkIndent>=4)return!1
|
|
5278
5270
|
for(u=e.parentType,e.parentType="paragraph";p<n&&!e.isEmpty(p);p++)if(!(e.sCount[p]-e.blkIndent>3)){if(e.sCount[p]>=e.blkIndent&&(l=e.bMarks[p]+e.tShift[p])<(c=e.eMarks[p])&&(45===(h=e.src.charCodeAt(l))||61===h)&&(l=e.skipChars(l,h),(l=e.skipSpaces(l))>=c)){d=61===h?1:2
|
|
5279
5271
|
break}if(!(e.sCount[p]<0)){for(o=!1,r=0,s=g.length;r<s;r++)if(g[r](e,p,n,!0)){o=!0
|
|
5280
5272
|
break}if(o)break}}return!!d&&(i=e.getLines(t,p,e.blkIndent,!1).trim(),e.line=p+1,(a=e.push("heading_open","h"+String(d),1)).markup=String.fromCharCode(h),a.map=[t,e.line],(a=e.push("inline","",0)).content=i,a.map=[t,e.line-1],a.children=[],(a=e.push("heading_close","h"+String(d),-1)).markup=String.fromCharCode(h),e.parentType=u,!0)}],["paragraph",function(e,t){var n,i,o,r,s,a,l=t+1,c=e.md.block.ruler.getRules("paragraph"),d=e.lineMax
|
|
5281
5273
|
for(a=e.parentType,e.parentType="paragraph";l<d&&!e.isEmpty(l);l++)if(!(e.sCount[l]-e.blkIndent>3||e.sCount[l]<0)){for(i=!1,o=0,r=c.length;o<r;o++)if(c[o](e,l,d,!0)){i=!0
|
|
5282
5274
|
break}if(i)break}return n=e.getLines(t,l,e.blkIndent,!1).trim(),e.line=l,(s=e.push("paragraph_open","p",1)).map=[t,e.line],(s=e.push("inline","",0)).content=n,s.map=[t,e.line],s.children=[],s=e.push("paragraph_close","p",-1),e.parentType=a,!0}]]
|
|
5283
|
-
function
|
|
5284
|
-
for(var e=0;e<
|
|
5285
|
-
break}for(i=0;i<r&&!o[i](e,s,n,!1);i++);e.tight=!a,e.isEmpty(e.line-1)&&(a=!0),(s=e.line)<n&&e.isEmpty(s)&&(a=!0,s++,e.line=s)}},
|
|
5286
|
-
e&&(o=new this.State(e,t,n,i),this.tokenize(o,o.line,o.lineMax))},
|
|
5287
|
-
var
|
|
5288
|
-
function
|
|
5289
|
-
default:return!1}}for(var
|
|
5290
|
-
"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach((function(e){
|
|
5291
|
-
var
|
|
5292
|
-
function
|
|
5275
|
+
function jy(){this.ruler=new Zy
|
|
5276
|
+
for(var e=0;e<Uy.length;e++)this.ruler.push(Uy[e][0],Uy[e][1],{alt:(Uy[e][2]||[]).slice()})}jy.prototype.tokenize=function(e,t,n){for(var i,o=this.ruler.getRules(""),r=o.length,s=t,a=!1,l=e.md.options.maxNesting;s<n&&(e.line=s=e.skipEmptyLines(s),!(s>=n))&&!(e.sCount[s]<e.blkIndent);){if(e.level>=l){e.line=n
|
|
5277
|
+
break}for(i=0;i<r&&!o[i](e,s,n,!1);i++);e.tight=!a,e.isEmpty(e.line-1)&&(a=!0),(s=e.line)<n&&e.isEmpty(s)&&(a=!0,s++,e.line=s)}},jy.prototype.parse=function(e,t,n,i){var o
|
|
5278
|
+
e&&(o=new this.State(e,t,n,i),this.tokenize(o,o.line,o.lineMax))},jy.prototype.State=qy
|
|
5279
|
+
var Gy=jy
|
|
5280
|
+
function Wy(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0
|
|
5281
|
+
default:return!1}}for(var Ky=/(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i,Xy=ex.isSpace,Yy=ex.isSpace,Jy=[],Qy=0;Qy<256;Qy++)Jy.push(0)
|
|
5282
|
+
"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach((function(e){Jy[e.charCodeAt(0)]=1}))
|
|
5283
|
+
var eC={}
|
|
5284
|
+
function tC(e,t){var n,i,o,r,s,a=[],l=t.length
|
|
5293
5285
|
for(n=0;n<l;n++)126===(o=t[n]).marker&&-1!==o.end&&(r=t[o.end],(s=e.tokens[o.token]).type="s_open",s.tag="s",s.nesting=1,s.markup="~~",s.content="",(s=e.tokens[r.token]).type="s_close",s.tag="s",s.nesting=-1,s.markup="~~",s.content="","text"===e.tokens[r.token-1].type&&"~"===e.tokens[r.token-1].content&&a.push(r.token-1))
|
|
5294
5286
|
for(;a.length;){for(i=(n=a.pop())+1;i<e.tokens.length&&"s_close"===e.tokens[i].type;)i++
|
|
5295
|
-
n!==--i&&(s=e.tokens[i],e.tokens[i]=e.tokens[n],e.tokens[n]=s)}}
|
|
5287
|
+
n!==--i&&(s=e.tokens[i],e.tokens[i]=e.tokens[n],e.tokens[n]=s)}}eC.tokenize=function(e,t){var n,i,o,r,s=e.pos,a=e.src.charCodeAt(s)
|
|
5296
5288
|
if(t)return!1
|
|
5297
5289
|
if(126!==a)return!1
|
|
5298
5290
|
if(o=(i=e.scanDelims(e.pos,!0)).length,r=String.fromCharCode(a),o<2)return!1
|
|
5299
5291
|
for(o%2&&(e.push("text","",0).content=r,o--),n=0;n<o;n+=2)e.push("text","",0).content=r+r,e.delimiters.push({marker:a,length:0,token:e.tokens.length-1,end:-1,open:i.can_open,close:i.can_close})
|
|
5300
|
-
return e.pos+=i.length,!0},
|
|
5301
|
-
for(
|
|
5302
|
-
var
|
|
5303
|
-
function
|
|
5304
|
-
for(n=t.length-1;n>=0;n--)95!==(i=t[n]).marker&&42!==i.marker||-1!==i.end&&(o=t[i.end],a=n>0&&t[n-1].end===i.end+1&&t[n-1].marker===i.marker&&t[n-1].token===i.token-1&&t[i.end+1].token===o.token+1,s=String.fromCharCode(i.marker),(r=e.tokens[i.token]).type=a?"strong_open":"em_open",r.tag=a?"strong":"em",r.nesting=1,r.markup=a?s+s:s,r.content="",(r=e.tokens[o.token]).type=a?"strong_close":"em_close",r.tag=a?"strong":"em",r.nesting=-1,r.markup=a?s+s:s,r.content="",a&&(e.tokens[t[n-1].token].content="",e.tokens[t[i.end+1].token].content="",n--))}
|
|
5292
|
+
return e.pos+=i.length,!0},eC.postProcess=function(e){var t,n=e.tokens_meta,i=e.tokens_meta.length
|
|
5293
|
+
for(tC(e,e.delimiters),t=0;t<i;t++)n[t]&&n[t].delimiters&&tC(e,n[t].delimiters)}
|
|
5294
|
+
var nC={}
|
|
5295
|
+
function iC(e,t){var n,i,o,r,s,a
|
|
5296
|
+
for(n=t.length-1;n>=0;n--)95!==(i=t[n]).marker&&42!==i.marker||-1!==i.end&&(o=t[i.end],a=n>0&&t[n-1].end===i.end+1&&t[n-1].marker===i.marker&&t[n-1].token===i.token-1&&t[i.end+1].token===o.token+1,s=String.fromCharCode(i.marker),(r=e.tokens[i.token]).type=a?"strong_open":"em_open",r.tag=a?"strong":"em",r.nesting=1,r.markup=a?s+s:s,r.content="",(r=e.tokens[o.token]).type=a?"strong_close":"em_close",r.tag=a?"strong":"em",r.nesting=-1,r.markup=a?s+s:s,r.content="",a&&(e.tokens[t[n-1].token].content="",e.tokens[t[i.end+1].token].content="",n--))}nC.tokenize=function(e,t){var n,i,o=e.pos,r=e.src.charCodeAt(o)
|
|
5305
5297
|
if(t)return!1
|
|
5306
5298
|
if(95!==r&&42!==r)return!1
|
|
5307
5299
|
for(i=e.scanDelims(e.pos,42===r),n=0;n<i.length;n++)e.push("text","",0).content=String.fromCharCode(r),e.delimiters.push({marker:r,length:i.length,token:e.tokens.length-1,end:-1,open:i.can_open,close:i.can_close})
|
|
5308
|
-
return e.pos+=i.length,!0},
|
|
5309
|
-
for(
|
|
5310
|
-
var
|
|
5311
|
-
var
|
|
5312
|
-
function
|
|
5300
|
+
return e.pos+=i.length,!0},nC.postProcess=function(e){var t,n=e.tokens_meta,i=e.tokens_meta.length
|
|
5301
|
+
for(iC(e,e.delimiters),t=0;t<i;t++)n[t]&&n[t].delimiters&&iC(e,n[t].delimiters)}
|
|
5302
|
+
var oC=ex.normalizeReference,rC=ex.isSpace,sC=ex.normalizeReference,aC=ex.isSpace,lC=/^([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,cC=/^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$/,dC=Ey.HTML_TAG_RE
|
|
5303
|
+
var hC=tx,uC=ex.has,pC=ex.isValidEntityCode,gC=ex.fromCodePoint,fC=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,mC=/^&([a-z][a-z0-9]{1,31});/i
|
|
5304
|
+
function vC(e,t){var n,i,o,r,s,a,l,c,d={},h=t.length
|
|
5313
5305
|
if(h){var u=0,p=-2,g=[]
|
|
5314
5306
|
for(n=0;n<h;n++)if(o=t[n],g.push(0),t[u].marker===o.marker&&p===o.token-1||(u=n),p=o.token,o.length=o.length||0,o.close){for(d.hasOwnProperty(o.marker)||(d[o.marker]=[-1,-1,-1,-1,-1,-1]),s=d[o.marker][(o.open?3:0)+o.length%3],a=i=u-g[u]-1;i>s;i-=g[i]+1)if((r=t[i]).marker===o.marker&&r.open&&r.end<0&&(l=!1,(r.close||o.open)&&(r.length+o.length)%3==0&&(r.length%3==0&&o.length%3==0||(l=!0)),!l)){c=i>0&&!t[i-1].open?g[i-1]+1:0,g[n]=n-i+c,g[i]=c,o.open=!1,r.end=n,r.close=!1,a=-1,p=-2
|
|
5315
|
-
break}-1!==a&&(d[o.marker][(o.open?3:0)+(o.length||0)%3]=a)}}}var
|
|
5316
|
-
function
|
|
5317
|
-
return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},
|
|
5318
|
-
var i=new
|
|
5319
|
-
return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),i.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],o={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(i),this.tokens_meta.push(o),i},
|
|
5307
|
+
break}-1!==a&&(d[o.marker][(o.open?3:0)+(o.length||0)%3]=a)}}}var bC=py,wC=ex.isWhiteSpace,xC=ex.isPunctChar,yC=ex.isMdAsciiPunct
|
|
5308
|
+
function CC(e,t,n,i){this.src=e,this.env=n,this.md=t,this.tokens=i,this.tokens_meta=Array(i.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}CC.prototype.pushPending=function(){var e=new bC("text","",0)
|
|
5309
|
+
return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},CC.prototype.push=function(e,t,n){this.pending&&this.pushPending()
|
|
5310
|
+
var i=new bC(e,t,n),o=null
|
|
5311
|
+
return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),i.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],o={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(i),this.tokens_meta.push(o),i},CC.prototype.scanDelims=function(e,t){var n,i,o,r,s,a,l,c,d,h=e,u=!0,p=!0,g=this.posMax,f=this.src.charCodeAt(e)
|
|
5320
5312
|
for(n=e>0?this.src.charCodeAt(e-1):32;h<g&&this.src.charCodeAt(h)===f;)h++
|
|
5321
|
-
return o=h-e,i=h<g?this.src.charCodeAt(h):32,l=
|
|
5322
|
-
var
|
|
5313
|
+
return o=h-e,i=h<g?this.src.charCodeAt(h):32,l=yC(n)||xC(String.fromCharCode(n)),d=yC(i)||xC(String.fromCharCode(i)),a=wC(n),(c=wC(i))?u=!1:d&&(a||l||(u=!1)),a?p=!1:l&&(c||d||(p=!1)),t?(r=u,s=p):(r=u&&(!p||l),s=p&&(!u||d)),{can_open:r,can_close:s,length:o}},CC.prototype.Token=bC
|
|
5314
|
+
var kC=CC,$C=Gx,_C=[["text",function(e,t){for(var n=e.pos;n<e.posMax&&!Wy(e.src.charCodeAt(n));)n++
|
|
5323
5315
|
return n!==e.pos&&(t||(e.pending+=e.src.slice(e.pos,n)),e.pos=n,!0)}],["linkify",function(e,t){var n,i,o,r,s,a,l
|
|
5324
|
-
return!!e.md.options.linkify&&(!(e.linkLevel>0)&&(!((n=e.pos)+3>e.posMax)&&(58===e.src.charCodeAt(n)&&(47===e.src.charCodeAt(n+1)&&(47===e.src.charCodeAt(n+2)&&(!!(i=e.pending.match(
|
|
5316
|
+
return!!e.md.options.linkify&&(!(e.linkLevel>0)&&(!((n=e.pos)+3>e.posMax)&&(58===e.src.charCodeAt(n)&&(47===e.src.charCodeAt(n+1)&&(47===e.src.charCodeAt(n+2)&&(!!(i=e.pending.match(Ky))&&(o=i[1],!!(r=e.md.linkify.matchAtStart(e.src.slice(n-o.length)))&&(s=(s=r.url).replace(/\*+$/,""),a=e.md.normalizeLink(s),!!e.md.validateLink(a)&&(t||(e.pending=e.pending.slice(0,-o.length),(l=e.push("link_open","a",1)).attrs=[["href",a]],l.markup="linkify",l.info="auto",(l=e.push("text","",0)).content=e.md.normalizeLinkText(s),(l=e.push("link_close","a",-1)).markup="linkify",l.info="auto"),e.pos+=s.length-o.length,!0)))))))))}],["newline",function(e,t){var n,i,o,r=e.pos
|
|
5325
5317
|
if(10!==e.src.charCodeAt(r))return!1
|
|
5326
5318
|
if(n=e.pending.length-1,i=e.posMax,!t)if(n>=0&&32===e.pending.charCodeAt(n))if(n>=1&&32===e.pending.charCodeAt(n-1)){for(o=n-1;o>=1&&32===e.pending.charCodeAt(o-1);)o--
|
|
5327
5319
|
e.pending=e.pending.slice(0,o),e.push("hardbreak","br",0)}else e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0)
|
|
5328
5320
|
else e.push("softbreak","br",0)
|
|
5329
|
-
for(r++;r<i&&
|
|
5321
|
+
for(r++;r<i&&Xy(e.src.charCodeAt(r));)r++
|
|
5330
5322
|
return e.pos=r,!0}],["escape",function(e,t){var n,i,o,r,s,a=e.pos,l=e.posMax
|
|
5331
5323
|
if(92!==e.src.charCodeAt(a))return!1
|
|
5332
5324
|
if(++a>=l)return!1
|
|
5333
|
-
if(10===(n=e.src.charCodeAt(a))){for(t||e.push("hardbreak","br",0),a++;a<l&&(n=e.src.charCodeAt(a),
|
|
5334
|
-
return e.pos=a,!0}return r=e.src[a],n>=55296&&n<=56319&&a+1<l&&(i=e.src.charCodeAt(a+1))>=56320&&i<=57343&&(r+=e.src[a+1],a++),o="\\"+r,t||(s=e.push("text_special","",0),n<256&&0!==
|
|
5325
|
+
if(10===(n=e.src.charCodeAt(a))){for(t||e.push("hardbreak","br",0),a++;a<l&&(n=e.src.charCodeAt(a),Yy(n));)a++
|
|
5326
|
+
return e.pos=a,!0}return r=e.src[a],n>=55296&&n<=56319&&a+1<l&&(i=e.src.charCodeAt(a+1))>=56320&&i<=57343&&(r+=e.src[a+1],a++),o="\\"+r,t||(s=e.push("text_special","",0),n<256&&0!==Jy[n]?s.content=r:s.content=o,s.markup=o,s.info="escape"),e.pos=a+1,!0}],["backticks",function(e,t){var n,i,o,r,s,a,l,c,d=e.pos
|
|
5335
5327
|
if(96!==e.src.charCodeAt(d))return!1
|
|
5336
5328
|
for(n=d,d++,i=e.posMax;d<i&&96===e.src.charCodeAt(d);)d++
|
|
5337
5329
|
if(l=(o=e.src.slice(n,d)).length,e.backticksScanned&&(e.backticks[l]||0)<=n)return t||(e.pending+=o),e.pos+=l,!0
|
|
5338
5330
|
for(s=a=d;-1!==(s=e.src.indexOf("`",a));){for(a=s+1;a<i&&96===e.src.charCodeAt(a);)a++
|
|
5339
5331
|
if((c=a-s)===l)return t||((r=e.push("code_inline","code",0)).markup=o,r.content=e.src.slice(d,s).replace(/\n/g," ").replace(/^ (.+) $/,"$1")),e.pos=a,!0
|
|
5340
|
-
e.backticks[c]=s}return e.backticksScanned=!0,t||(e.pending+=o),e.pos+=l,!0}],["strikethrough",
|
|
5332
|
+
e.backticks[c]=s}return e.backticksScanned=!0,t||(e.pending+=o),e.pos+=l,!0}],["strikethrough",eC.tokenize],["emphasis",nC.tokenize],["link",function(e,t){var n,i,o,r,s,a,l,c,d="",h="",u=e.pos,p=e.posMax,g=e.pos,f=!0
|
|
5341
5333
|
if(91!==e.src.charCodeAt(e.pos))return!1
|
|
5342
5334
|
if(s=e.pos+1,(r=e.md.helpers.parseLinkLabel(e,e.pos,!0))<0)return!1
|
|
5343
|
-
if((a=r+1)<p&&40===e.src.charCodeAt(a)){for(f=!1,a++;a<p&&(i=e.src.charCodeAt(a),
|
|
5344
|
-
if(g=a,(l=e.md.helpers.parseLinkDestination(e.src,a,e.posMax)).ok){for(d=e.md.normalizeLink(l.str),e.md.validateLink(d)?a=l.pos:d="",g=a;a<p&&(i=e.src.charCodeAt(a),
|
|
5345
|
-
if(a<p&&91===e.src.charCodeAt(a)?(g=a+1,(a=e.md.helpers.parseLinkLabel(e,a))>=0?o=e.src.slice(g,a++):a=r+1):a=r+1,o||(o=e.src.slice(s,r)),!(c=e.env.references[
|
|
5335
|
+
if((a=r+1)<p&&40===e.src.charCodeAt(a)){for(f=!1,a++;a<p&&(i=e.src.charCodeAt(a),rC(i)||10===i);a++);if(a>=p)return!1
|
|
5336
|
+
if(g=a,(l=e.md.helpers.parseLinkDestination(e.src,a,e.posMax)).ok){for(d=e.md.normalizeLink(l.str),e.md.validateLink(d)?a=l.pos:d="",g=a;a<p&&(i=e.src.charCodeAt(a),rC(i)||10===i);a++);if(l=e.md.helpers.parseLinkTitle(e.src,a,e.posMax),a<p&&g!==a&&l.ok)for(h=l.str,a=l.pos;a<p&&(i=e.src.charCodeAt(a),rC(i)||10===i);a++);}(a>=p||41!==e.src.charCodeAt(a))&&(f=!0),a++}if(f){if(void 0===e.env.references)return!1
|
|
5337
|
+
if(a<p&&91===e.src.charCodeAt(a)?(g=a+1,(a=e.md.helpers.parseLinkLabel(e,a))>=0?o=e.src.slice(g,a++):a=r+1):a=r+1,o||(o=e.src.slice(s,r)),!(c=e.env.references[oC(o)]))return e.pos=u,!1
|
|
5346
5338
|
d=c.href,h=c.title}return t||(e.pos=s,e.posMax=r,e.push("link_open","a",1).attrs=n=[["href",d]],h&&n.push(["title",h]),e.linkLevel++,e.md.inline.tokenize(e),e.linkLevel--,e.push("link_close","a",-1)),e.pos=a,e.posMax=p,!0}],["image",function(e,t){var n,i,o,r,s,a,l,c,d,h,u,p,g,f="",m=e.pos,v=e.posMax
|
|
5347
5339
|
if(33!==e.src.charCodeAt(e.pos))return!1
|
|
5348
5340
|
if(91!==e.src.charCodeAt(e.pos+1))return!1
|
|
5349
5341
|
if(a=e.pos+2,(s=e.md.helpers.parseLinkLabel(e,e.pos+1,!1))<0)return!1
|
|
5350
|
-
if((l=s+1)<v&&40===e.src.charCodeAt(l)){for(l++;l<v&&(i=e.src.charCodeAt(l),
|
|
5351
|
-
for(g=l,(d=e.md.helpers.parseLinkDestination(e.src,l,e.posMax)).ok&&(f=e.md.normalizeLink(d.str),e.md.validateLink(f)?l=d.pos:f=""),g=l;l<v&&(i=e.src.charCodeAt(l),
|
|
5342
|
+
if((l=s+1)<v&&40===e.src.charCodeAt(l)){for(l++;l<v&&(i=e.src.charCodeAt(l),aC(i)||10===i);l++);if(l>=v)return!1
|
|
5343
|
+
for(g=l,(d=e.md.helpers.parseLinkDestination(e.src,l,e.posMax)).ok&&(f=e.md.normalizeLink(d.str),e.md.validateLink(f)?l=d.pos:f=""),g=l;l<v&&(i=e.src.charCodeAt(l),aC(i)||10===i);l++);if(d=e.md.helpers.parseLinkTitle(e.src,l,e.posMax),l<v&&g!==l&&d.ok)for(h=d.str,l=d.pos;l<v&&(i=e.src.charCodeAt(l),aC(i)||10===i);l++);else h=""
|
|
5352
5344
|
if(l>=v||41!==e.src.charCodeAt(l))return e.pos=m,!1
|
|
5353
5345
|
l++}else{if(void 0===e.env.references)return!1
|
|
5354
|
-
if(l<v&&91===e.src.charCodeAt(l)?(g=l+1,(l=e.md.helpers.parseLinkLabel(e,l))>=0?r=e.src.slice(g,l++):l=s+1):l=s+1,r||(r=e.src.slice(a,s)),!(c=e.env.references[
|
|
5346
|
+
if(l<v&&91===e.src.charCodeAt(l)?(g=l+1,(l=e.md.helpers.parseLinkLabel(e,l))>=0?r=e.src.slice(g,l++):l=s+1):l=s+1,r||(r=e.src.slice(a,s)),!(c=e.env.references[sC(r)]))return e.pos=m,!1
|
|
5355
5347
|
f=c.href,h=c.title}return t||(o=e.src.slice(a,s),e.md.inline.parse(o,e.md,e.env,p=[]),(u=e.push("image","img",0)).attrs=n=[["src",f],["alt",""]],u.children=p,u.content=o,h&&n.push(["title",h])),e.pos=l,e.posMax=v,!0}],["autolink",function(e,t){var n,i,o,r,s,a,l=e.pos
|
|
5356
5348
|
if(60!==e.src.charCodeAt(l))return!1
|
|
5357
5349
|
for(s=e.pos,a=e.posMax;;){if(++l>=a)return!1
|
|
5358
5350
|
if(60===(r=e.src.charCodeAt(l)))return!1
|
|
5359
|
-
if(62===r)break}return n=e.src.slice(s+1,l),
|
|
5351
|
+
if(62===r)break}return n=e.src.slice(s+1,l),cC.test(n)?(i=e.md.normalizeLink(n),!!e.md.validateLink(i)&&(t||((o=e.push("link_open","a",1)).attrs=[["href",i]],o.markup="autolink",o.info="auto",(o=e.push("text","",0)).content=e.md.normalizeLinkText(n),(o=e.push("link_close","a",-1)).markup="autolink",o.info="auto"),e.pos+=n.length+2,!0)):!!lC.test(n)&&(i=e.md.normalizeLink("mailto:"+n),!!e.md.validateLink(i)&&(t||((o=e.push("link_open","a",1)).attrs=[["href",i]],o.markup="autolink",o.info="auto",(o=e.push("text","",0)).content=e.md.normalizeLinkText(n),(o=e.push("link_close","a",-1)).markup="autolink",o.info="auto"),e.pos+=n.length+2,!0))}],["html_inline",function(e,t){var n,i,o,r,s,a=e.pos
|
|
5360
5352
|
return!!e.md.options.html&&(o=e.posMax,!(60!==e.src.charCodeAt(a)||a+2>=o)&&(!(33!==(n=e.src.charCodeAt(a+1))&&63!==n&&47!==n&&!function(e){var t=32|e
|
|
5361
|
-
return t>=97&&t<=122}(n))&&(!!(i=e.src.slice(a).match(
|
|
5353
|
+
return t>=97&&t<=122}(n))&&(!!(i=e.src.slice(a).match(dC))&&(t||((r=e.push("html_inline","",0)).content=e.src.slice(a,a+i[0].length),s=r.content,/^<a[>\s]/i.test(s)&&e.linkLevel++,function(e){return/^<\/a\s*>/i.test(e)}(r.content)&&e.linkLevel--),e.pos+=i[0].length,!0))))}],["entity",function(e,t){var n,i,o,r=e.pos,s=e.posMax
|
|
5362
5354
|
if(38!==e.src.charCodeAt(r))return!1
|
|
5363
5355
|
if(r+1>=s)return!1
|
|
5364
|
-
if(35===e.src.charCodeAt(r+1)){if(i=e.src.slice(r).match(
|
|
5365
|
-
return!1}]],
|
|
5366
|
-
for(
|
|
5356
|
+
if(35===e.src.charCodeAt(r+1)){if(i=e.src.slice(r).match(fC))return t||(n="x"===i[1][0].toLowerCase()?parseInt(i[1].slice(1),16):parseInt(i[1],10),(o=e.push("text_special","",0)).content=pC(n)?gC(n):gC(65533),o.markup=i[0],o.info="entity"),e.pos+=i[0].length,!0}else if((i=e.src.slice(r).match(mC))&&uC(hC,i[1]))return t||((o=e.push("text_special","",0)).content=hC[i[1]],o.markup=i[0],o.info="entity"),e.pos+=i[0].length,!0
|
|
5357
|
+
return!1}]],SC=[["balance_pairs",function(e){var t,n=e.tokens_meta,i=e.tokens_meta.length
|
|
5358
|
+
for(vC(0,e.delimiters),t=0;t<i;t++)n[t]&&n[t].delimiters&&vC(0,n[t].delimiters)}],["strikethrough",eC.postProcess],["emphasis",nC.postProcess],["fragments_join",function(e){var t,n,i=0,o=e.tokens,r=e.tokens.length
|
|
5367
5359
|
for(t=n=0;t<r;t++)o[t].nesting<0&&i--,o[t].level=i,o[t].nesting>0&&i++,"text"===o[t].type&&t+1<r&&"text"===o[t+1].type?o[t+1].content=o[t].content+o[t+1].content:(t!==n&&(o[n]=o[t]),n++)
|
|
5368
5360
|
t!==n&&(o.length=n)}]]
|
|
5369
|
-
function
|
|
5370
|
-
for(this.ruler=new
|
|
5371
|
-
for(this.ruler2=new
|
|
5361
|
+
function IC(){var e
|
|
5362
|
+
for(this.ruler=new $C,e=0;e<_C.length;e++)this.ruler.push(_C[e][0],_C[e][1])
|
|
5363
|
+
for(this.ruler2=new $C,e=0;e<SC.length;e++)this.ruler2.push(SC[e][0],SC[e][1])}IC.prototype.skipToken=function(e){var t,n,i=e.pos,o=this.ruler.getRules(""),r=o.length,s=e.md.options.maxNesting,a=e.cache
|
|
5372
5364
|
if(void 0===a[i]){if(e.level<s)for(n=0;n<r&&(e.level++,t=o[n](e,!0),e.level--,!t);n++);else e.pos=e.posMax
|
|
5373
|
-
t||e.pos++,a[i]=e.pos}else e.pos=a[i]},
|
|
5374
|
-
for(this.tokenize(a),s=(r=this.ruler2.getRules("")).length,o=0;o<s;o++)r[o](a)},
|
|
5375
|
-
var AC,RC
|
|
5376
|
-
function
|
|
5377
|
-
var
|
|
5365
|
+
t||e.pos++,a[i]=e.pos}else e.pos=a[i]},IC.prototype.tokenize=function(e){for(var t,n,i=this.ruler.getRules(""),o=i.length,r=e.posMax,s=e.md.options.maxNesting;e.pos<r;){if(e.level<s)for(n=0;n<o&&!(t=i[n](e,!1));n++);if(t){if(e.pos>=r)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},IC.prototype.parse=function(e,t,n,i){var o,r,s,a=new this.State(e,t,n,i)
|
|
5366
|
+
for(this.tokenize(a),s=(r=this.ruler2.getRules("")).length,o=0;o<s;o++)r[o](a)},IC.prototype.State=kC
|
|
5367
|
+
var MC,AC,RC=IC
|
|
5368
|
+
function EC(e){return Array.prototype.slice.call(arguments,1).forEach((function(t){t&&Object.keys(t).forEach((function(n){e[n]=t[n]}))})),e}function DC(e){return Object.prototype.toString.call(e)}function FC(e){return"[object Function]"===DC(e)}function OC(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}var TC={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1}
|
|
5369
|
+
var zC={"http:":{validate:function(e,t,n){var i=e.slice(t)
|
|
5378
5370
|
return n.re.http||(n.re.http=new RegExp("^\\/\\/"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,"i")),n.re.http.test(i)?i.match(n.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,n){var i=e.slice(t)
|
|
5379
5371
|
return n.re.no_http||(n.re.no_http=new RegExp("^"+n.re.src_auth+"(?:localhost|(?:(?:"+n.re.src_domain+")\\.)+"+n.re.src_domain_root+")"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,"i")),n.re.no_http.test(i)?t>=3&&":"===e[t-3]||t>=3&&"/"===e[t-3]?0:i.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var i=e.slice(t)
|
|
5380
|
-
return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(i)?i.match(n.re.mailto)[0].length:0}}},
|
|
5381
|
-
function
|
|
5382
|
-
e=e||{},t.src_Any=
|
|
5372
|
+
return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(i)?i.match(n.re.mailto)[0].length:0}}},VC="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",LC="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|")
|
|
5373
|
+
function HC(e){var t=e.re=(AC||(AC=1,MC=function(e){var t={}
|
|
5374
|
+
e=e||{},t.src_Any=Fx().source,t.src_Cc=Ox().source,t.src_Z=Tx().source,t.src_P=nx.source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|")
|
|
5383
5375
|
var n="[><|]"
|
|
5384
|
-
return t.src_pseudo_letter="(?:(?![><|]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><|]|"+t.src_ZPCc+")(?!"+(e["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+n+"|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><|]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}),
|
|
5385
|
-
function i(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||n.push(
|
|
5376
|
+
return t.src_pseudo_letter="(?:(?![><|]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><|]|"+t.src_ZPCc+")(?!"+(e["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+n+"|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><|]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}),MC)(e.__opts__),n=e.__tlds__.slice()
|
|
5377
|
+
function i(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||n.push(VC),n.push(t.src_xn),t.src_tlds=n.join("|"),t.email_fuzzy=RegExp(i(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(i(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(i(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(i(t.tpl_host_fuzzy_test),"i")
|
|
5386
5378
|
var o=[]
|
|
5387
5379
|
function r(e,t){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+t)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(t){var n=e.__schemas__[t]
|
|
5388
5380
|
if(null!==n){var i={validate:null,link:null}
|
|
5389
|
-
if(e.__compiled__[t]=i,"[object Object]"===
|
|
5390
|
-
return e.test(i)?i.match(e)[0].length:0}}(n.validate),void(
|
|
5391
|
-
!function(e){return"[object String]"===
|
|
5392
|
-
var s=Object.keys(e.__compiled__).filter((function(t){return t.length>0&&e.__compiled__[t]})).map(
|
|
5393
|
-
e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function
|
|
5394
|
-
this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=i+t,this.raw=o,this.text=o,this.url=o}function
|
|
5395
|
-
return e.__compiled__[n.schema].normalize(n,e),n}function
|
|
5381
|
+
if(e.__compiled__[t]=i,"[object Object]"===DC(n))return!function(e){return"[object RegExp]"===DC(e)}(n.validate)?FC(n.validate)?i.validate=n.validate:r(t,n):i.validate=function(e){return function(t,n){var i=t.slice(n)
|
|
5382
|
+
return e.test(i)?i.match(e)[0].length:0}}(n.validate),void(FC(n.normalize)?i.normalize=n.normalize:n.normalize?r(t,n):i.normalize=function(e,t){t.normalize(e)})
|
|
5383
|
+
!function(e){return"[object String]"===DC(e)}(n)?r(t,n):o.push(t)}})),o.forEach((function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)})),e.__compiled__[""]={validate:null,normalize:function(e,t){t.normalize(e)}}
|
|
5384
|
+
var s=Object.keys(e.__compiled__).filter((function(t){return t.length>0&&e.__compiled__[t]})).map(OC).join("|")
|
|
5385
|
+
e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function PC(e,t){var n=e.__index__,i=e.__last_index__,o=e.__text_cache__.slice(n,i)
|
|
5386
|
+
this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=i+t,this.raw=o,this.text=o,this.url=o}function BC(e,t){var n=new PC(e,t)
|
|
5387
|
+
return e.__compiled__[n.schema].normalize(n,e),n}function NC(e,t){if(!(this instanceof NC))return new NC(e,t)
|
|
5396
5388
|
var n
|
|
5397
|
-
t||(n=e,Object.keys(n||{}).reduce((function(e,t){return e||
|
|
5389
|
+
t||(n=e,Object.keys(n||{}).reduce((function(e,t){return e||TC.hasOwnProperty(t)}),!1)&&(t=e,e={})),this.__opts__=EC({},TC,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=EC({},zC,e),this.__compiled__={},this.__tlds__=LC,this.__tlds_replaced__=!1,this.re={},HC(this)}NC.prototype.add=function(e,t){return this.__schemas__[e]=t,HC(this),this},NC.prototype.set=function(e){return this.__opts__=EC(this.__opts__,e),this},NC.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1
|
|
5398
5390
|
var t,n,i,o,r,s,a,l
|
|
5399
5391
|
if(this.re.schema_test.test(e))for((a=this.re.schema_search).lastIndex=0;null!==(t=a.exec(e));)if(o=this.testSchemaAt(e,t[2],a.lastIndex)){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+o
|
|
5400
|
-
break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||l<this.__index__)&&null!==(n=e.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))&&(r=n.index+n[1].length,(this.__index__<0||r<this.__index__)&&(this.__schema__="",this.__index__=r,this.__last_index__=n.index+n[0].length)),this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&e.indexOf("@")>=0&&null!==(i=e.match(this.re.email_fuzzy))&&(r=i.index+i[1].length,s=i.index+i[0].length,(this.__index__<0||r<this.__index__||r===this.__index__&&s>this.__last_index__)&&(this.__schema__="mailto:",this.__index__=r,this.__last_index__=s)),this.__index__>=0},
|
|
5401
|
-
this.__index__>=0&&this.__text_cache__===e&&(n.push(
|
|
5402
|
-
for(var i=t?e.slice(t):e;this.test(i);)n.push(
|
|
5403
|
-
return n.length?n:null},
|
|
5392
|
+
break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||l<this.__index__)&&null!==(n=e.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))&&(r=n.index+n[1].length,(this.__index__<0||r<this.__index__)&&(this.__schema__="",this.__index__=r,this.__last_index__=n.index+n[0].length)),this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&e.indexOf("@")>=0&&null!==(i=e.match(this.re.email_fuzzy))&&(r=i.index+i[1].length,s=i.index+i[0].length,(this.__index__<0||r<this.__index__||r===this.__index__&&s>this.__last_index__)&&(this.__schema__="mailto:",this.__index__=r,this.__last_index__=s)),this.__index__>=0},NC.prototype.pretest=function(e){return this.re.pretest.test(e)},NC.prototype.testSchemaAt=function(e,t,n){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,n,this):0},NC.prototype.match=function(e){var t=0,n=[]
|
|
5393
|
+
this.__index__>=0&&this.__text_cache__===e&&(n.push(BC(this,t)),t=this.__last_index__)
|
|
5394
|
+
for(var i=t?e.slice(t):e;this.test(i);)n.push(BC(this,t)),i=i.slice(this.__last_index__),t+=this.__last_index__
|
|
5395
|
+
return n.length?n:null},NC.prototype.matchAtStart=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return null
|
|
5404
5396
|
var t=this.re.schema_at_start.exec(e)
|
|
5405
5397
|
if(!t)return null
|
|
5406
5398
|
var n=this.testSchemaAt(e,t[2],t[0].length)
|
|
5407
|
-
return n?(this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+n,
|
|
5408
|
-
var
|
|
5409
|
-
|
|
5410
|
-
;/*! https://mths.be/punycode v1.4.1 by @mathias */function
|
|
5411
|
-
return i}function
|
|
5412
|
-
return n.length>1&&(i=n[0]+"@",e=n[1]),i+
|
|
5413
|
-
return i}function
|
|
5414
|
-
return e>65535&&(t+=
|
|
5415
|
-
for(e=n?
|
|
5416
|
-
return
|
|
5417
|
-
for((n=e.lastIndexOf(
|
|
5418
|
-
for(o=n>0?n+1:0;o<p;){for(r=g,s=1,a=
|
|
5419
|
-
m=
|
|
5420
|
-
for(u=(e=
|
|
5421
|
-
for(i=o=m.length,o&&m.push(
|
|
5422
|
-
for(a-t>
|
|
5423
|
-
m.push(
|
|
5424
|
-
function
|
|
5425
|
-
return!
|
|
5426
|
-
function
|
|
5427
|
-
if(t.hostname&&(!t.protocol||
|
|
5428
|
-
if(t.hostname&&(!t.protocol||
|
|
5429
|
-
t||
|
|
5430
|
-
if(
|
|
5399
|
+
return n?(this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+n,BC(this,0)):null},NC.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter((function(e,t,n){return e!==n[t-1]})).reverse(),HC(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,HC(this),this)},NC.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},NC.prototype.onCompile=function(){}
|
|
5400
|
+
var qC=NC,ZC=2147483647,UC=36,jC=1,GC=26,WC=38,KC=700,XC=72,YC=128,JC="-",QC=/^xn--/,ek=/[^\x20-\x7E]/,tk=/[\x2E\u3002\uFF0E\uFF61]/g,nk={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},ik=UC-jC,ok=Math.floor,rk=String.fromCharCode
|
|
5401
|
+
|
|
5402
|
+
;/*! https://mths.be/punycode v1.4.1 by @mathias */function sk(e){throw new RangeError(nk[e])}function ak(e,t){for(var n=e.length,i=[];n--;)i[n]=t(e[n])
|
|
5403
|
+
return i}function lk(e,t){var n=e.split("@"),i=""
|
|
5404
|
+
return n.length>1&&(i=n[0]+"@",e=n[1]),i+ak((e=e.replace(tk,".")).split("."),t).join(".")}function ck(e){for(var t,n,i=[],o=0,r=e.length;o<r;)(t=e.charCodeAt(o++))>=55296&&t<=56319&&o<r?56320==(64512&(n=e.charCodeAt(o++)))?i.push(((1023&t)<<10)+(1023&n)+65536):(i.push(t),o--):i.push(t)
|
|
5405
|
+
return i}function dk(e){return ak(e,(function(e){var t=""
|
|
5406
|
+
return e>65535&&(t+=rk((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=rk(e)})).join("")}function hk(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function uk(e,t,n){var i=0
|
|
5407
|
+
for(e=n?ok(e/KC):e>>1,e+=ok(e/t);e>ik*GC>>1;i+=UC)e=ok(e/ik)
|
|
5408
|
+
return ok(i+(ik+1)*e/(e+WC))}function pk(e){var t,n,i,o,r,s,a,l,c,d,h,u=[],p=e.length,g=0,f=YC,m=XC
|
|
5409
|
+
for((n=e.lastIndexOf(JC))<0&&(n=0),i=0;i<n;++i)e.charCodeAt(i)>=128&&sk("not-basic"),u.push(e.charCodeAt(i))
|
|
5410
|
+
for(o=n>0?n+1:0;o<p;){for(r=g,s=1,a=UC;o>=p&&sk("invalid-input"),((l=(h=e.charCodeAt(o++))-48<10?h-22:h-65<26?h-65:h-97<26?h-97:UC)>=UC||l>ok((ZC-g)/s))&&sk("overflow"),g+=l*s,!(l<(c=a<=m?jC:a>=m+GC?GC:a-m));a+=UC)s>ok(ZC/(d=UC-c))&&sk("overflow"),s*=d
|
|
5411
|
+
m=uk(g-r,t=u.length+1,0==r),ok(g/t)>ZC-f&&sk("overflow"),f+=ok(g/t),g%=t,u.splice(g++,0,f)}return dk(u)}function gk(e){var t,n,i,o,r,s,a,l,c,d,h,u,p,g,f,m=[]
|
|
5412
|
+
for(u=(e=ck(e)).length,t=YC,n=0,r=XC,s=0;s<u;++s)(h=e[s])<128&&m.push(rk(h))
|
|
5413
|
+
for(i=o=m.length,o&&m.push(JC);i<u;){for(a=ZC,s=0;s<u;++s)(h=e[s])>=t&&h<a&&(a=h)
|
|
5414
|
+
for(a-t>ok((ZC-n)/(p=i+1))&&sk("overflow"),n+=(a-t)*p,t=a,s=0;s<u;++s)if((h=e[s])<t&&++n>ZC&&sk("overflow"),h==t){for(l=n,c=UC;!(l<(d=c<=r?jC:c>=r+GC?GC:c-r));c+=UC)f=l-d,g=UC-d,m.push(rk(hk(d+f%g,0))),l=ok(f/g)
|
|
5415
|
+
m.push(rk(hk(l,0))),r=uk(n,p,i==o),n=0,++i}++n,++t}return m.join("")}function fk(e){return lk(e,(function(e){return QC.test(e)?pk(e.slice(4).toLowerCase()):e}))}function mk(e){return lk(e,(function(e){return ek.test(e)?"xn--"+gk(e):e}))}var vk="1.4.1",bk={decode:ck,encode:dk},wk={version:vk,ucs2:bk,toASCII:mk,toUnicode:fk,encode:gk,decode:pk},xk=ex,yk=Vx,Ck=Ux,kk=xy,$k=Gy,_k=RC,Sk=qC,Ik=ix,Mk=Qw(Object.freeze({__proto__:null,decode:pk,default:wk,encode:gk,toASCII:mk,toUnicode:fk,ucs2:bk,version:vk})),Ak={default:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}},zero:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","fragments_join"]}}},commonmark:{options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","fragments_join"]}}}},Rk=/^(vbscript|javascript|file|data):/,Ek=/^data:image\/(gif|png|jpeg|webp);/
|
|
5416
|
+
function Dk(e){var t=e.trim().toLowerCase()
|
|
5417
|
+
return!Rk.test(t)||!!Ek.test(t)}var Fk=["http:","https:","mailto:"]
|
|
5418
|
+
function Ok(e){var t=Ik.parse(e,!0)
|
|
5419
|
+
if(t.hostname&&(!t.protocol||Fk.indexOf(t.protocol)>=0))try{t.hostname=Mk.toASCII(t.hostname)}catch(e){}return Ik.encode(Ik.format(t))}function Tk(e){var t=Ik.parse(e,!0)
|
|
5420
|
+
if(t.hostname&&(!t.protocol||Fk.indexOf(t.protocol)>=0))try{t.hostname=Mk.toUnicode(t.hostname)}catch(e){}return Ik.decode(Ik.format(t),Ik.decode.defaultChars+"%")}function zk(e,t){if(!(this instanceof zk))return new zk(e,t)
|
|
5421
|
+
t||xk.isString(e)||(t=e||{},e="default"),this.inline=new _k,this.block=new $k,this.core=new kk,this.renderer=new Ck,this.linkify=new Sk,this.validateLink=Dk,this.normalizeLink=Ok,this.normalizeLinkText=Tk,this.utils=xk,this.helpers=xk.assign({},yk),this.options={},this.configure(e),t&&this.set(t)}zk.prototype.set=function(e){return xk.assign(this.options,e),this},zk.prototype.configure=function(e){var t,n=this
|
|
5422
|
+
if(xk.isString(e)&&!(e=Ak[t=e]))throw new Error('Wrong `markdown-it` preset "'+t+'", check name')
|
|
5431
5423
|
if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty")
|
|
5432
|
-
return e.options&&n.set(e.options),e.components&&Object.keys(e.components).forEach((function(t){e.components[t].rules&&n[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&n[t].ruler2.enableOnly(e.components[t].rules2)})),this},
|
|
5424
|
+
return e.options&&n.set(e.options),e.components&&Object.keys(e.components).forEach((function(t){e.components[t].rules&&n[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&n[t].ruler2.enableOnly(e.components[t].rules2)})),this},zk.prototype.enable=function(e,t){var n=[]
|
|
5433
5425
|
Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){n=n.concat(this[t].ruler.enable(e,!0))}),this),n=n.concat(this.inline.ruler2.enable(e,!0))
|
|
5434
5426
|
var i=e.filter((function(e){return n.indexOf(e)<0}))
|
|
5435
5427
|
if(i.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+i)
|
|
5436
|
-
return this},
|
|
5428
|
+
return this},zk.prototype.disable=function(e,t){var n=[]
|
|
5437
5429
|
Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){n=n.concat(this[t].ruler.disable(e,!0))}),this),n=n.concat(this.inline.ruler2.disable(e,!0))
|
|
5438
5430
|
var i=e.filter((function(e){return n.indexOf(e)<0}))
|
|
5439
5431
|
if(i.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+i)
|
|
5440
|
-
return this},
|
|
5441
|
-
return e.apply(e,t),this},
|
|
5432
|
+
return this},zk.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1))
|
|
5433
|
+
return e.apply(e,t),this},zk.prototype.parse=function(e,t){if("string"!=typeof e)throw new Error("Input data should be a String")
|
|
5442
5434
|
var n=new this.core.State(e,this,t)
|
|
5443
|
-
return this.core.process(n),n.tokens},
|
|
5444
|
-
return n.inlineMode=!0,this.core.process(n),n.tokens},
|
|
5445
|
-
var
|
|
5446
|
-
const
|
|
5435
|
+
return this.core.process(n),n.tokens},zk.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},zk.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t)
|
|
5436
|
+
return n.inlineMode=!0,this.core.process(n),n.tokens},zk.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)}
|
|
5437
|
+
var Vk=Jw(zk)
|
|
5438
|
+
const Lk=new class{constructor(e){this.cached=Object.create(null)
|
|
5447
5439
|
let t=this.spec={}
|
|
5448
5440
|
for(let n in e)t[n]=e[n]
|
|
5449
|
-
t.nodes=
|
|
5441
|
+
t.nodes=iw.from(e.nodes),t.marks=iw.from(e.marks||{}),this.nodes=Uw.compile(this.spec.nodes,this),this.marks=Gw.compile(this.spec.marks,this)
|
|
5450
5442
|
let n=Object.create(null)
|
|
5451
5443
|
for(let e in this.nodes){if(e in this.marks)throw new RangeError(e+" can not be both a node and a mark")
|
|
5452
5444
|
let t=this.nodes[e],i=t.spec.content||"",o=t.spec.marks
|
|
5453
|
-
t.contentMatch=n[i]||(n[i]=
|
|
5454
|
-
t.excluded=null==n?[t]:""==n?[]:
|
|
5455
|
-
else{if(!(e instanceof
|
|
5445
|
+
t.contentMatch=n[i]||(n[i]=Fw.parse(i,this.nodes)),t.inlineContent=t.contentMatch.inlineContent,t.markSet="_"==o?null:o?Ww(this,o.split(" ")):""!=o&&t.inlineContent?null:[]}for(let e in this.marks){let t=this.marks[e],n=t.spec.excludes
|
|
5446
|
+
t.excluded=null==n?[t]:""==n?[]:Ww(this,n.split(" "))}this.nodeFromJSON=this.nodeFromJSON.bind(this),this.markFromJSON=this.markFromJSON.bind(this),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,t=null,n,i){if("string"==typeof e)e=this.nodeType(e)
|
|
5447
|
+
else{if(!(e instanceof Uw))throw new RangeError("Invalid node type: "+e)
|
|
5456
5448
|
if(e.schema!=this)throw new RangeError("Node type from different schema used ("+e.name+")")}return e.createChecked(t,n,i)}text(e,t){let n=this.nodes.text
|
|
5457
|
-
return new
|
|
5449
|
+
return new Ew(n,n.defaultAttrs,e,dw.setFrom(t))}mark(e,t){return"string"==typeof e&&(e=this.marks[e]),e.create(t)}nodeFromJSON(e){return Rw.fromJSON(this,e)}markFromJSON(e){return dw.fromJSON(this,e)}nodeType(e){let t=this.nodes[e]
|
|
5458
5450
|
if(!t)throw new RangeError("Unknown node type: "+e)
|
|
5459
5451
|
return t}}({nodes:{doc:{content:"block+"},paragraph:{content:"inline*",group:"block",parseDOM:[{tag:"p"}],toDOM:()=>["p",0]},blockquote:{content:"block+",group:"block",parseDOM:[{tag:"blockquote"}],toDOM:()=>["blockquote",0]},horizontal_rule:{group:"block",parseDOM:[{tag:"hr"}],toDOM:()=>["div",["hr"]]},heading:{attrs:{level:{default:1}},content:"(text | image)*",group:"block",defining:!0,parseDOM:[{tag:"h1",attrs:{level:1}},{tag:"h2",attrs:{level:2}},{tag:"h3",attrs:{level:3}},{tag:"h4",attrs:{level:4}},{tag:"h5",attrs:{level:5}},{tag:"h6",attrs:{level:6}}],toDOM:e=>["h"+e.attrs.level,0]},code_block:{content:"text*",group:"block",code:!0,defining:!0,marks:"",attrs:{params:{default:""}},parseDOM:[{tag:"pre",preserveWhitespace:"full",getAttrs:e=>({params:e.getAttribute("data-params")||""})}],toDOM:e=>["pre",e.attrs.params?{"data-params":e.attrs.params}:{},["code",0]]},ordered_list:{content:"list_item+",group:"block",attrs:{order:{default:1},tight:{default:!1}},parseDOM:[{tag:"ol",getAttrs:e=>({order:e.hasAttribute("start")?+e.getAttribute("start"):1,tight:e.hasAttribute("data-tight")})}],toDOM:e=>["ol",{start:1==e.attrs.order?null:e.attrs.order,"data-tight":e.attrs.tight?"true":null},0]},bullet_list:{content:"list_item+",group:"block",attrs:{tight:{default:!1}},parseDOM:[{tag:"ul",getAttrs:e=>({tight:e.hasAttribute("data-tight")})}],toDOM:e=>["ul",{"data-tight":e.attrs.tight?"true":null},0]},list_item:{content:"paragraph block*",defining:!0,parseDOM:[{tag:"li"}],toDOM:()=>["li",0]},text:{group:"inline"},image:{inline:!0,attrs:{src:{},alt:{default:null},title:{default:null}},group:"inline",draggable:!0,parseDOM:[{tag:"img[src]",getAttrs:e=>({src:e.getAttribute("src"),title:e.getAttribute("title"),alt:e.getAttribute("alt")})}],toDOM:e=>["img",e.attrs]},hard_break:{inline:!0,group:"inline",selectable:!1,parseDOM:[{tag:"br"}],toDOM:()=>["br"]}},marks:{em:{parseDOM:[{tag:"i"},{tag:"em"},{style:"font-style",getAttrs:e=>"italic"==e&&null}],toDOM:()=>["em"]},strong:{parseDOM:[{tag:"b"},{tag:"strong"},{style:"font-weight",getAttrs:e=>/^(bold(er)?|[5-9]\d{2,})$/.test(e)&&null}],toDOM:()=>["strong"]},link:{attrs:{href:{},title:{default:null}},inclusive:!1,parseDOM:[{tag:"a[href]",getAttrs:e=>({href:e.getAttribute("href"),title:e.getAttribute("title")})}],toDOM:e=>["a",e.attrs]},code:{parseDOM:[{tag:"code"}],toDOM:()=>["code"]}}})
|
|
5460
|
-
class
|
|
5452
|
+
class Hk{constructor(e,t){this.schema=e,this.tokenHandlers=t,this.stack=[{type:e.topNodeType,attrs:null,content:[],marks:dw.none}]}top(){return this.stack[this.stack.length-1]}push(e){this.stack.length&&this.top().content.push(e)}addText(e){if(!e)return
|
|
5461
5453
|
let t,n=this.top(),i=n.content,o=i[i.length-1],r=this.schema.text(e,n.marks)
|
|
5462
|
-
o&&(t=function(e,t){if(e.isText&&t.isText&&
|
|
5454
|
+
o&&(t=function(e,t){if(e.isText&&t.isText&&dw.sameSet(e.marks,t.marks))return e.withText(e.text+t.text)}(o,r))?i[i.length-1]=t:i.push(r)}openMark(e){let t=this.top()
|
|
5463
5455
|
t.marks=e.addToSet(t.marks)}closeMark(e){let t=this.top()
|
|
5464
5456
|
t.marks=e.removeFromSet(t.marks)}parseTokens(e){for(let t=0;t<e.length;t++){let n=e[t],i=this.tokenHandlers[n.type]
|
|
5465
5457
|
if(!i)throw new Error("Token type `"+n.type+"` not supported by Markdown parser")
|
|
5466
5458
|
i(this,n,e,t)}}addNode(e,t,n){let i=this.top(),o=e.createAndFill(t,n,i?i.marks:[])
|
|
5467
|
-
return o?(this.push(o),o):null}openNode(e,t){this.stack.push({type:e,attrs:t,content:[],marks:
|
|
5468
|
-
return this.addNode(e.type,e.attrs,e.content)}}function
|
|
5459
|
+
return o?(this.push(o),o):null}openNode(e,t){this.stack.push({type:e,attrs:t,content:[],marks:dw.none})}closeNode(){let e=this.stack.pop()
|
|
5460
|
+
return this.addNode(e.type,e.attrs,e.content)}}function Pk(e,t,n,i){return e.getAttrs?e.getAttrs(t,n,i):e.attrs instanceof Function?e.attrs(t):e.attrs}function Bk(e,t){return e.noCloseToken||"code_inline"==t||"code_block"==t||"fence"==t}function Nk(e){return"\n"==e[e.length-1]?e.slice(0,e.length-1):e}function qk(){}class Zk{constructor(e,t,n){this.schema=e,this.tokenizer=t,this.tokens=n,this.tokenHandlers=function(e,t){let n=Object.create(null)
|
|
5469
5461
|
for(let i in t){let o=t[i]
|
|
5470
5462
|
if(o.block){let t=e.nodeType(o.block)
|
|
5471
|
-
|
|
5472
|
-
n[i]=(e,n,i,r)=>e.addNode(t,
|
|
5473
|
-
|
|
5474
|
-
|
|
5463
|
+
Bk(o,i)?n[i]=(e,n,i,r)=>{e.openNode(t,Pk(o,n,i,r)),e.addText(Nk(n.content)),e.closeNode()}:(n[i+"_open"]=(e,n,i,r)=>e.openNode(t,Pk(o,n,i,r)),n[i+"_close"]=e=>e.closeNode())}else if(o.node){let t=e.nodeType(o.node)
|
|
5464
|
+
n[i]=(e,n,i,r)=>e.addNode(t,Pk(o,n,i,r))}else if(o.mark){let t=e.marks[o.mark]
|
|
5465
|
+
Bk(o,i)?n[i]=(e,n,i,r)=>{e.openMark(t.create(Pk(o,n,i,r))),e.addText(Nk(n.content)),e.closeMark(t)}:(n[i+"_open"]=(e,n,i,r)=>e.openMark(t.create(Pk(o,n,i,r))),n[i+"_close"]=e=>e.closeMark(t))}else{if(!o.ignore)throw new RangeError("Unrecognized parsing spec "+JSON.stringify(o))
|
|
5466
|
+
Bk(o,i)?n[i]=qk:(n[i+"_open"]=qk,n[i+"_close"]=qk)}}return n.text=(e,t)=>e.addText(t.content),n.inline=(e,t)=>e.parseTokens(t.children),n.softbreak=n.softbreak||(e=>e.addText(" ")),n}(e,n)}parse(e,t={}){let n,i=new Hk(this.schema,this.tokenHandlers)
|
|
5475
5467
|
i.parseTokens(this.tokenizer.parse(e,t))
|
|
5476
5468
|
do{n=i.closeNode()}while(i.stack.length)
|
|
5477
|
-
return n||this.schema.topNodeType.createAndFill()}}function
|
|
5478
|
-
return!1}const
|
|
5469
|
+
return n||this.schema.topNodeType.createAndFill()}}function Uk(e,t){for(;++t<e.length;)if("list_item_open"!=e[t].type)return e[t].hidden
|
|
5470
|
+
return!1}const jk=new Zk(Lk,Vk("commonmark",{html:!1}),{blockquote:{block:"blockquote"},paragraph:{block:"paragraph"},list_item:{block:"list_item"},bullet_list:{block:"bullet_list",getAttrs:(e,t,n)=>({tight:Uk(t,n)})},ordered_list:{block:"ordered_list",getAttrs:(e,t,n)=>({order:+e.attrGet("start")||1,tight:Uk(t,n)})},heading:{block:"heading",getAttrs:e=>({level:+e.tag.slice(1)})},code_block:{block:"code_block",noCloseToken:!0},fence:{block:"code_block",getAttrs:e=>({params:e.info||""}),noCloseToken:!0},hr:{node:"horizontal_rule"},image:{node:"image",getAttrs:e=>({src:e.attrGet("src"),title:e.attrGet("title")||null,alt:e.children[0]&&e.children[0].content||null})},hardbreak:{node:"hard_break"},em:{mark:"em"},strong:{mark:"strong"},link:{mark:"link",getAttrs:e=>({href:e.attrGet("href"),title:e.attrGet("title")||null})},code_inline:{mark:"code",noCloseToken:!0}}),Gk=G`
|
|
5479
5471
|
<div ${Oe("viewer")} class="viewer"></div>
|
|
5480
|
-
`,
|
|
5472
|
+
`,Wk=we`
|
|
5481
5473
|
${Ao("flex")}
|
|
5482
5474
|
|
|
5483
5475
|
:host {
|
|
@@ -5524,15 +5516,15 @@ return!1}const Gk=new Uk(Hk,Lk("commonmark",{html:!1}),{blockquote:{block:"block
|
|
|
5524
5516
|
color: ${dl};
|
|
5525
5517
|
}
|
|
5526
5518
|
`
|
|
5527
|
-
class
|
|
5528
|
-
return new
|
|
5519
|
+
class Kk extends Vt{constructor(){super(),this.markdown="",this.domSerializer=Kw.fromSchema(Lk),this.markdownParser=this.initializeMarkdownParser()}connectedCallback(){super.connectedCallback(),this.updateView()}markdownChanged(){this.$fastController.isConnected&&this.updateView()}initializeMarkdownParser(){const e=jk.tokenizer.configure("zero").enable(["emphasis","list","autolink"])
|
|
5520
|
+
return new Zk(Lk,e,jk.tokens)}parseMarkdownToDOM(e){const t=this.markdownParser.parse(e)
|
|
5529
5521
|
return null===t?document.createDocumentFragment():this.domSerializer.serializeFragment(t.content)}updateView(){if(this.markdown){const e=this.parseMarkdownToDOM(this.markdown)
|
|
5530
|
-
this.viewer.replaceChildren(e)}else this.viewer.innerHTML=""}}e([m],
|
|
5531
|
-
const
|
|
5532
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
5533
|
-
const
|
|
5522
|
+
this.viewer.replaceChildren(e)}else this.viewer.innerHTML=""}}e([m],Kk.prototype,"markdown",void 0)
|
|
5523
|
+
const Xk=Kk.compose({baseName:"rich-text-viewer",template:Gk,styles:Wk})
|
|
5524
|
+
mi.getOrCreate().withPrefix("nimble").register(Xk()),mi.tagFor(Kk)
|
|
5525
|
+
const Yk=we`
|
|
5526
|
+
${Pg}
|
|
5534
5527
|
${Bg}
|
|
5535
|
-
${Ng}
|
|
5536
5528
|
|
|
5537
5529
|
${""}
|
|
5538
5530
|
[part='selected-value'] {
|
|
@@ -5550,15 +5542,15 @@ const Jk=we`
|
|
|
5550
5542
|
[part='end'] {
|
|
5551
5543
|
display: contents;
|
|
5552
5544
|
}
|
|
5553
|
-
`.withBehaviors(md(
|
|
5545
|
+
`.withBehaviors(md(Hg,we`
|
|
5554
5546
|
:host([error-visible]) .control {
|
|
5555
5547
|
border-bottom-width: ${Fa};
|
|
5556
5548
|
padding-bottom: 0;
|
|
5557
5549
|
}
|
|
5558
5550
|
`))
|
|
5559
|
-
class
|
|
5560
|
-
super.slottedOptionsChanged(e,t),n&&(this.value=n)}regionChanged(e,t){this.region&&this.control&&(this.region.anchorElement=this.control)}controlChanged(e,t){this.region&&this.control&&(this.region.anchorElement=this.control)}maxHeightChanged(){this.updateListboxMaxHeightCssVariable()}updateListboxMaxHeightCssVariable(){this.listbox&&this.listbox.style.setProperty("--ni-private-select-max-height",`${this.maxHeight}px`)}}e([se],
|
|
5561
|
-
const
|
|
5551
|
+
class Jk extends Wi{constructor(){super(...arguments),this.appearance=Vg,this.errorVisible=!1}setPositioning(){this.$fastController.isConnected&&(super.setPositioning(),this.updateListboxMaxHeightCssVariable())}slottedOptionsChanged(e,t){const n=this.value
|
|
5552
|
+
super.slottedOptionsChanged(e,t),n&&(this.value=n)}regionChanged(e,t){this.region&&this.control&&(this.region.anchorElement=this.control)}controlChanged(e,t){this.region&&this.control&&(this.region.anchorElement=this.control)}maxHeightChanged(){this.updateListboxMaxHeightCssVariable()}updateListboxMaxHeightCssVariable(){this.listbox&&this.listbox.style.setProperty("--ni-private-select-max-height",`${this.maxHeight}px`)}}e([se],Jk.prototype,"appearance",void 0),e([se({attribute:"error-text"})],Jk.prototype,"errorText",void 0),e([se({attribute:"error-visible",mode:"boolean"})],Jk.prototype,"errorVisible",void 0),e([m],Jk.prototype,"region",void 0)
|
|
5553
|
+
const Qk=Jk.compose({baseName:"select",baseClass:Wi,template:(e,t)=>G`
|
|
5562
5554
|
<template
|
|
5563
5555
|
class="${e=>[e.collapsible&&"collapsible",e.collapsible&&e.open&&"open",e.disabled&&"disabled",e.collapsible&&e.position].filter(Boolean).join(" ")}"
|
|
5564
5556
|
aria-activedescendant="${e=>e.ariaActiveDescendant}"
|
|
@@ -5597,12 +5589,12 @@ const e$=Qk.compose({baseName:"select",baseClass:Wi,template:(e,t)=>G`
|
|
|
5597
5589
|
${Je(0,t)}
|
|
5598
5590
|
</div>
|
|
5599
5591
|
`)}
|
|
5600
|
-
<${
|
|
5592
|
+
<${Hd}
|
|
5601
5593
|
${Oe("region")}
|
|
5602
5594
|
class="anchored-region"
|
|
5603
5595
|
fixed-placement
|
|
5604
5596
|
auto-update-mode="auto"
|
|
5605
|
-
vertical-default-position="${e=>e.positionAttribute===
|
|
5597
|
+
vertical-default-position="${e=>e.positionAttribute===zg?"top":"bottom"}"
|
|
5606
5598
|
vertical-positioning-mode="${e=>e.positionAttribute?"locktodefault":"dynamic"}"
|
|
5607
5599
|
horizontal-default-position="center"
|
|
5608
5600
|
horizontal-positioning-mode="locktodefault"
|
|
@@ -5620,17 +5612,17 @@ const e$=Qk.compose({baseName:"select",baseClass:Wi,template:(e,t)=>G`
|
|
|
5620
5612
|
${We({filter:e=>e instanceof HTMLElement&&Tn.slottedOptionFilter(e),flatten:!0,property:"slottedOptions"})}
|
|
5621
5613
|
></slot>
|
|
5622
5614
|
</div>
|
|
5623
|
-
</${
|
|
5615
|
+
</${Hd}>
|
|
5624
5616
|
</template>
|
|
5625
|
-
`,styles:
|
|
5626
|
-
<${
|
|
5617
|
+
`,styles:Yk,indicator:Yd.data,end:G`
|
|
5618
|
+
<${Qp}
|
|
5627
5619
|
severity="error"
|
|
5628
5620
|
class="error-icon"
|
|
5629
|
-
></${
|
|
5630
|
-
${
|
|
5621
|
+
></${Qp}>
|
|
5622
|
+
${Fg}
|
|
5631
5623
|
`})
|
|
5632
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
5633
|
-
const
|
|
5624
|
+
mi.getOrCreate().withPrefix("nimble").register(Qk()),mi.tagFor(Jk)
|
|
5625
|
+
const e$=we`
|
|
5634
5626
|
${Ao("inline-flex")}
|
|
5635
5627
|
|
|
5636
5628
|
:host {
|
|
@@ -5759,39 +5751,39 @@ const t$=we`
|
|
|
5759
5751
|
transform: translate(-50%, 0);
|
|
5760
5752
|
}
|
|
5761
5753
|
}
|
|
5762
|
-
`.withBehaviors(
|
|
5754
|
+
`.withBehaviors(Nd(kr.light,we`
|
|
5763
5755
|
:host {
|
|
5764
5756
|
--ni-private-spinner-bits-background-color: ${rr};
|
|
5765
5757
|
}
|
|
5766
5758
|
:host([appearance='accent']) {
|
|
5767
5759
|
--ni-private-spinner-bits-background-color: ${ar};
|
|
5768
5760
|
}
|
|
5769
|
-
`),
|
|
5761
|
+
`),Nd(kr.dark,we`
|
|
5770
5762
|
:host {
|
|
5771
5763
|
--ni-private-spinner-bits-background-color: ${Qo};
|
|
5772
5764
|
}
|
|
5773
5765
|
:host([appearance='accent']) {
|
|
5774
5766
|
--ni-private-spinner-bits-background-color: ${hr};
|
|
5775
5767
|
}
|
|
5776
|
-
`),
|
|
5768
|
+
`),Nd(kr.color,we`
|
|
5777
5769
|
:host {
|
|
5778
5770
|
--ni-private-spinner-bits-background-color: ${tr};
|
|
5779
5771
|
}
|
|
5780
5772
|
:host([appearance='accent']) {
|
|
5781
5773
|
--ni-private-spinner-bits-background-color: ${hr};
|
|
5782
5774
|
}
|
|
5783
|
-
`)),
|
|
5775
|
+
`)),t$=G`
|
|
5784
5776
|
<template role="progressbar">
|
|
5785
5777
|
<div class="container">
|
|
5786
5778
|
<div class="bit1"></div>
|
|
5787
5779
|
<div class="bit2"></div>
|
|
5788
5780
|
</div>
|
|
5789
5781
|
</template>
|
|
5790
|
-
`,
|
|
5791
|
-
class
|
|
5792
|
-
const
|
|
5793
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
5794
|
-
const
|
|
5782
|
+
`,n$={default:void 0,accent:"accent"}
|
|
5783
|
+
class i$ extends Vt{constructor(){super(...arguments),this.appearance=n$.default}}e([se],i$.prototype,"appearance",void 0)
|
|
5784
|
+
const o$=i$.compose({baseName:"spinner",template:t$,styles:e$})
|
|
5785
|
+
mi.getOrCreate().withPrefix("nimble").register(o$()),mi.tagFor(i$)
|
|
5786
|
+
const r$=we`
|
|
5795
5787
|
${Ao("inline-flex")}
|
|
5796
5788
|
|
|
5797
5789
|
:host {
|
|
@@ -5927,7 +5919,7 @@ const s$=we`
|
|
|
5927
5919
|
transition-duration: 0s;
|
|
5928
5920
|
}
|
|
5929
5921
|
}
|
|
5930
|
-
`.withBehaviors(
|
|
5922
|
+
`.withBehaviors(Nd(kr.light,we`
|
|
5931
5923
|
:host {
|
|
5932
5924
|
--ni-private-switch-background-disabled-color: ${br(rr,.07)};
|
|
5933
5925
|
--ni-private-switch-indicator-background-color: ${tr};
|
|
@@ -5935,7 +5927,7 @@ const s$=we`
|
|
|
5935
5927
|
--ni-private-switch-indicator-border-color: ${rr};
|
|
5936
5928
|
--ni-private-switch-indicator-border-disabled-color: ${br(rr,.3)};
|
|
5937
5929
|
}
|
|
5938
|
-
`),
|
|
5930
|
+
`),Nd(kr.dark,we`
|
|
5939
5931
|
:host {
|
|
5940
5932
|
--ni-private-switch-background-disabled-color: ${br(Qo,.07)};
|
|
5941
5933
|
--ni-private-switch-indicator-background-color: ${br(rr,.3)};
|
|
@@ -5943,7 +5935,7 @@ const s$=we`
|
|
|
5943
5935
|
--ni-private-switch-indicator-border-color: ${er};
|
|
5944
5936
|
--ni-private-switch-indicator-border-disabled-color: ${br(er,.3)};
|
|
5945
5937
|
}
|
|
5946
|
-
`),
|
|
5938
|
+
`),Nd(kr.color,we`
|
|
5947
5939
|
:host {
|
|
5948
5940
|
--ni-private-switch-background-disabled-color: ${br(tr,.07)};
|
|
5949
5941
|
--ni-private-switch-indicator-background-color: ${br(tr,.1)};
|
|
@@ -5951,7 +5943,7 @@ const s$=we`
|
|
|
5951
5943
|
--ni-private-switch-indicator-border-color: ${tr};
|
|
5952
5944
|
--ni-private-switch-indicator-border-disabled-color: ${br(tr,.3)};
|
|
5953
5945
|
}
|
|
5954
|
-
`)),
|
|
5946
|
+
`)),s$=G`
|
|
5955
5947
|
<template
|
|
5956
5948
|
role="switch"
|
|
5957
5949
|
aria-checked="${e=>e.checked}"
|
|
@@ -5986,13 +5978,114 @@ const s$=we`
|
|
|
5986
5978
|
</div>
|
|
5987
5979
|
</template>
|
|
5988
5980
|
`
|
|
5989
|
-
class
|
|
5990
|
-
mi.getOrCreate().withPrefix("nimble").register(
|
|
5981
|
+
class a$ extends Ji{}const l$=a$.compose({baseClass:Ji,baseName:"switch",template:s$,styles:r$})
|
|
5982
|
+
mi.getOrCreate().withPrefix("nimble").register(l$()),mi.tagFor(a$)
|
|
5983
|
+
const c$=we`
|
|
5984
|
+
${Ao("inline-flex")}
|
|
5985
|
+
|
|
5986
|
+
:host {
|
|
5987
|
+
position: relative;
|
|
5988
|
+
box-sizing: border-box;
|
|
5989
|
+
font: ${wc};
|
|
5990
|
+
height: ${Aa};
|
|
5991
|
+
color: ${Xl};
|
|
5992
|
+
align-items: center;
|
|
5993
|
+
justify-content: center;
|
|
5994
|
+
cursor: pointer;
|
|
5995
|
+
--ni-private-active-indicator-width: 2px;
|
|
5996
|
+
--ni-private-focus-indicator-width: 1px;
|
|
5997
|
+
--ni-private-indicator-lines-gap: 1px;
|
|
5998
|
+
--ni-private-focus-indicator-inset-width: 3px;
|
|
5999
|
+
}
|
|
6000
|
+
|
|
6001
|
+
:host(:hover) {
|
|
6002
|
+
background-color: ${da};
|
|
6003
|
+
}
|
|
6004
|
+
|
|
6005
|
+
:host(:hover[aria-selected='true']) {
|
|
6006
|
+
background-color: ${ca};
|
|
6007
|
+
}
|
|
6008
|
+
|
|
6009
|
+
:host(${Do}) {
|
|
6010
|
+
outline: none;
|
|
6011
|
+
}
|
|
6012
|
+
|
|
6013
|
+
:host(:active) {
|
|
6014
|
+
background: none;
|
|
6015
|
+
}
|
|
6016
|
+
|
|
6017
|
+
:host([disabled]) {
|
|
6018
|
+
cursor: default;
|
|
6019
|
+
color: ${Yl};
|
|
6020
|
+
background: none;
|
|
6021
|
+
}
|
|
6022
|
+
|
|
6023
|
+
slot:not([name]) {
|
|
6024
|
+
display: block;
|
|
6025
|
+
padding: calc(${Da} / 2) ${Da}
|
|
6026
|
+
calc(${Da} / 2 - ${Fa});
|
|
6027
|
+
}
|
|
6028
|
+
|
|
6029
|
+
:host::before {
|
|
6030
|
+
content: '';
|
|
6031
|
+
position: absolute;
|
|
6032
|
+
bottom: calc(
|
|
6033
|
+
var(--ni-private-active-indicator-width) +
|
|
6034
|
+
var(--ni-private-indicator-lines-gap)
|
|
6035
|
+
);
|
|
6036
|
+
width: 0px;
|
|
6037
|
+
height: 0px;
|
|
6038
|
+
border-bottom: ${va}
|
|
6039
|
+
var(--ni-private-focus-indicator-width) solid;
|
|
6040
|
+
transition: width ${Jc} ease-in;
|
|
6041
|
+
}
|
|
6042
|
+
|
|
6043
|
+
@media (prefers-reduced-motion) {
|
|
6044
|
+
:host::before {
|
|
6045
|
+
transition-duration: 0s;
|
|
6046
|
+
}
|
|
6047
|
+
}
|
|
6048
|
+
|
|
6049
|
+
:host(${Do})::before {
|
|
6050
|
+
width: calc(100% - 2 * var(--ni-private-focus-indicator-inset-width));
|
|
6051
|
+
}
|
|
6052
|
+
|
|
6053
|
+
:host::after {
|
|
6054
|
+
content: '';
|
|
6055
|
+
position: absolute;
|
|
6056
|
+
bottom: 0px;
|
|
6057
|
+
width: 0px;
|
|
6058
|
+
height: 0px;
|
|
6059
|
+
border-bottom: ${va}
|
|
6060
|
+
var(--ni-private-active-indicator-width) solid;
|
|
6061
|
+
transition: width ${Jc} ease-in;
|
|
6062
|
+
}
|
|
6063
|
+
|
|
6064
|
+
@media (prefers-reduced-motion) {
|
|
6065
|
+
:host::after {
|
|
6066
|
+
transition-duration: 0s;
|
|
6067
|
+
}
|
|
6068
|
+
}
|
|
6069
|
+
|
|
6070
|
+
:host(${Do})::after {
|
|
6071
|
+
width: 100%;
|
|
6072
|
+
border-bottom-width: var(--ni-private-focus-indicator-width);
|
|
6073
|
+
}
|
|
6074
|
+
|
|
6075
|
+
:host([aria-selected='true'])::after {
|
|
6076
|
+
width: 100%;
|
|
6077
|
+
border-bottom-width: var(--ni-private-active-indicator-width);
|
|
6078
|
+
}
|
|
6079
|
+
|
|
6080
|
+
:host([aria-selected='true'][disabled])::after {
|
|
6081
|
+
border-bottom-color: rgba(${va}, 0.3);
|
|
6082
|
+
}
|
|
6083
|
+
`
|
|
5991
6084
|
class d$ extends eo{}const h$=d$.compose({baseName:"tab",baseClass:eo,template:(e,t)=>G`
|
|
5992
6085
|
<template slot="tab" role="tab" aria-disabled="${e=>e.disabled}">
|
|
5993
6086
|
<slot></slot>
|
|
5994
6087
|
</template>
|
|
5995
|
-
`,styles:
|
|
6088
|
+
`,styles:c$})
|
|
5996
6089
|
mi.getOrCreate().withPrefix("nimble").register(h$()),mi.tagFor(d$)
|
|
5997
6090
|
const u$=we`
|
|
5998
6091
|
${Ao("block")}
|
|
@@ -6424,7 +6517,7 @@ return!this.missingColumnId&&!this.duplicateColumnId}validateColumnSortIndices(e
|
|
|
6424
6517
|
}
|
|
6425
6518
|
|
|
6426
6519
|
.disable-select {
|
|
6427
|
-
${
|
|
6520
|
+
${Dd}
|
|
6428
6521
|
}
|
|
6429
6522
|
|
|
6430
6523
|
.table-container {
|
|
@@ -6584,7 +6677,7 @@ return!this.missingColumnId&&!this.duplicateColumnId}validateColumnSortIndices(e
|
|
|
6584
6677
|
.row {
|
|
6585
6678
|
position: relative;
|
|
6586
6679
|
}
|
|
6587
|
-
`.withBehaviors(
|
|
6680
|
+
`.withBehaviors(Nd(kr.color,we`
|
|
6588
6681
|
.table-row-container::before {
|
|
6589
6682
|
content: '';
|
|
6590
6683
|
width: 100%;
|
|
@@ -6620,13 +6713,13 @@ return!this.missingColumnId&&!this.duplicateColumnId}validateColumnSortIndices(e
|
|
|
6620
6713
|
<slot></slot>
|
|
6621
6714
|
${""}
|
|
6622
6715
|
${Le((e=>e.sortDirection===l_.ascending),G`
|
|
6623
|
-
<${
|
|
6716
|
+
<${vf} class="sort-indicator" aria-hidden="true"></${vf}>
|
|
6624
6717
|
`)}
|
|
6625
6718
|
${Le((e=>e.sortDirection===l_.descending),G`
|
|
6626
|
-
<${
|
|
6719
|
+
<${rf} class="sort-indicator" aria-hidden="true"></${rf}>
|
|
6627
6720
|
`)}
|
|
6628
6721
|
${Le((e=>e.isGrouped),G`
|
|
6629
|
-
<${
|
|
6722
|
+
<${Zv} class="grouped-indicator" title="${e=>bb.getValueFor(e)}"></${Zv}>
|
|
6630
6723
|
`)}
|
|
6631
6724
|
</template>
|
|
6632
6725
|
`
|
|
@@ -6708,7 +6801,7 @@ const I_=mi.tagFor(__),M_=we`
|
|
|
6708
6801
|
:host([selected]) nimble-table-cell {
|
|
6709
6802
|
--ni-private-table-cell-action-menu-display: block;
|
|
6710
6803
|
}
|
|
6711
|
-
`.withBehaviors(
|
|
6804
|
+
`.withBehaviors(Nd(kr.color,we`
|
|
6712
6805
|
:host([selectable]:not([selected]):hover)::before {
|
|
6713
6806
|
background-color: ${br(tr,.05)};
|
|
6714
6807
|
}
|
|
@@ -6754,7 +6847,7 @@ const I_=mi.tagFor(__),M_=we`
|
|
|
6754
6847
|
<template role="cell" style="--ni-private-table-cell-nesting-level: ${e=>e.nestingLevel}">
|
|
6755
6848
|
${e=>e.cellViewTemplate}
|
|
6756
6849
|
${Le((e=>e.hasActionMenu),G`
|
|
6757
|
-
<${
|
|
6850
|
+
<${Vb} ${Oe("actionMenuButton")}
|
|
6758
6851
|
content-hidden
|
|
6759
6852
|
appearance="${pd}"
|
|
6760
6853
|
@beforetoggle="${(e,t)=>e.onActionMenuBeforeToggle(t.event)}"
|
|
@@ -6762,10 +6855,10 @@ const I_=mi.tagFor(__),M_=we`
|
|
|
6762
6855
|
@click="${(e,t)=>t.event.stopPropagation()}"
|
|
6763
6856
|
class="action-menu"
|
|
6764
6857
|
>
|
|
6765
|
-
<${
|
|
6766
|
-
${e=>e.actionMenuLabel??
|
|
6858
|
+
<${Fv} slot="start"></${Fv}>
|
|
6859
|
+
${e=>e.actionMenuLabel??vb.getValueFor(e)}
|
|
6767
6860
|
<slot name="cellActionMenu" slot="menu"></slot>
|
|
6768
|
-
</${
|
|
6861
|
+
</${Vb}>
|
|
6769
6862
|
`)}
|
|
6770
6863
|
</template>
|
|
6771
6864
|
`
|
|
@@ -6776,13 +6869,13 @@ const F_=mi.tagFor(E_),O_=G`
|
|
|
6776
6869
|
<template role="row" aria-selected=${e=>e.ariaSelected}>
|
|
6777
6870
|
${Le((e=>e.selectable&&!e.hideSelection),G`
|
|
6778
6871
|
<span role="gridcell" class="checkbox-container">
|
|
6779
|
-
<${
|
|
6872
|
+
<${Mg}
|
|
6780
6873
|
${Oe("selectionCheckbox")}
|
|
6781
6874
|
class="selection-checkbox"
|
|
6782
6875
|
@change="${(e,t)=>e.onSelectionChange(t.event)}"
|
|
6783
6876
|
@click="${(e,t)=>t.event.stopPropagation()}"
|
|
6784
6877
|
>
|
|
6785
|
-
</${
|
|
6878
|
+
</${Mg}>
|
|
6786
6879
|
</span>
|
|
6787
6880
|
`)}
|
|
6788
6881
|
${""}
|
|
@@ -6897,7 +6990,7 @@ const V_=mi.tagFor(T_),L_=we`
|
|
|
6897
6990
|
|
|
6898
6991
|
.group-header-view {
|
|
6899
6992
|
padding-left: calc(${Da} / 2);
|
|
6900
|
-
${
|
|
6993
|
+
${Dd}
|
|
6901
6994
|
overflow: hidden;
|
|
6902
6995
|
display: flex;
|
|
6903
6996
|
}
|
|
@@ -6906,7 +6999,7 @@ const V_=mi.tagFor(T_),L_=we`
|
|
|
6906
6999
|
padding-left: 2px;
|
|
6907
7000
|
padding-right: calc(${Da} / 2);
|
|
6908
7001
|
pointer-events: none;
|
|
6909
|
-
${
|
|
7002
|
+
${Dd}
|
|
6910
7003
|
}
|
|
6911
7004
|
|
|
6912
7005
|
@media (prefers-reduced-motion) {
|
|
@@ -6927,11 +7020,11 @@ const V_=mi.tagFor(T_),L_=we`
|
|
|
6927
7020
|
.selection-checkbox::part(label) {
|
|
6928
7021
|
padding-left: 0px;
|
|
6929
7022
|
}
|
|
6930
|
-
`.withBehaviors(
|
|
7023
|
+
`.withBehaviors(Nd(kr.color,we`
|
|
6931
7024
|
:host(:hover)::before {
|
|
6932
7025
|
background-color: ${br(tr,.05)};
|
|
6933
7026
|
}
|
|
6934
|
-
`),
|
|
7027
|
+
`),Nd(kr.dark,we`
|
|
6935
7028
|
:host(:hover)::before {
|
|
6936
7029
|
background-color: ${br(tr,.1)};
|
|
6937
7030
|
}
|
|
@@ -6943,26 +7036,26 @@ const V_=mi.tagFor(T_),L_=we`
|
|
|
6943
7036
|
>
|
|
6944
7037
|
${Le((e=>e.selectable),G`
|
|
6945
7038
|
<span role="gridcell" class="checkbox-container">
|
|
6946
|
-
<${
|
|
7039
|
+
<${Mg}
|
|
6947
7040
|
${Oe("selectionCheckbox")}
|
|
6948
7041
|
class="selection-checkbox"
|
|
6949
7042
|
@change="${(e,t)=>e.onSelectionChange(t.event)}"
|
|
6950
7043
|
@click="${(e,t)=>t.event.stopPropagation()}"
|
|
6951
7044
|
>
|
|
6952
|
-
</${
|
|
7045
|
+
</${Mg}>
|
|
6953
7046
|
</span>
|
|
6954
7047
|
`)}
|
|
6955
7048
|
|
|
6956
7049
|
<span role="gridcell">
|
|
6957
|
-
<${
|
|
7050
|
+
<${Gd}
|
|
6958
7051
|
appearance="${pd}"
|
|
6959
7052
|
content-hidden
|
|
6960
7053
|
class="expand-collapse-button"
|
|
6961
7054
|
tabindex="-1"
|
|
6962
7055
|
>
|
|
6963
|
-
<${
|
|
6964
|
-
${e=>e.expanded?
|
|
6965
|
-
</${
|
|
7056
|
+
<${cf} ${Oe("expandIcon")} slot="start" class="expander-icon ${e=>e.animationClass}"></${cf}>
|
|
7057
|
+
${e=>e.expanded?gb.getValueFor(e):fb.getValueFor(e)}
|
|
7058
|
+
</${Gd}>
|
|
6966
7059
|
</span>
|
|
6967
7060
|
|
|
6968
7061
|
<div class="group-row-header-content">
|
|
@@ -7001,25 +7094,25 @@ const N_=mi.tagFor(P_),q_=G`
|
|
|
7001
7094
|
<span class="header-row-action-container" ${Oe("headerRowActionContainer")}>
|
|
7002
7095
|
${Le((e=>e.selectionMode===c_.multiple),G`
|
|
7003
7096
|
<span role="columnheader" class="checkbox-container">
|
|
7004
|
-
<${
|
|
7097
|
+
<${Mg}
|
|
7005
7098
|
${Oe("selectionCheckbox")}
|
|
7006
7099
|
class="${e=>`selection-checkbox ${e.selectionMode??""}`}"
|
|
7007
7100
|
@change="${(e,t)=>e.onAllRowsSelectionChange(t.event)}"
|
|
7008
7101
|
>
|
|
7009
|
-
</${
|
|
7102
|
+
</${Mg}>
|
|
7010
7103
|
</span>
|
|
7011
7104
|
`)}
|
|
7012
7105
|
<span role="gridcell">
|
|
7013
|
-
<${
|
|
7106
|
+
<${Gd}
|
|
7014
7107
|
class="collapse-all-button ${e=>""+(e.showCollapseAll?"visible":"")}"
|
|
7015
7108
|
content-hidden
|
|
7016
7109
|
appearance="${pd}"
|
|
7017
|
-
title="${e=>
|
|
7110
|
+
title="${e=>mb.getValueFor(e)}"
|
|
7018
7111
|
@click="${e=>e.handleCollapseAllGroupRows()}"
|
|
7019
7112
|
>
|
|
7020
|
-
<${
|
|
7021
|
-
${e=>
|
|
7022
|
-
</${
|
|
7113
|
+
<${Bv} slot="start"></${Bv}>
|
|
7114
|
+
${e=>mb.getValueFor(e)}
|
|
7115
|
+
</${Gd}>
|
|
7023
7116
|
</span>
|
|
7024
7117
|
</span>
|
|
7025
7118
|
<span class="column-headers-container" ${Oe("columnHeadersContainer")}>
|
|
@@ -7437,7 +7530,7 @@ const zS=TS.compose({baseName:"table-column-anchor",template:yS,styles:bS})
|
|
|
7437
7530
|
mi.getOrCreate().withPrefix("nimble").register(zS()),mi.tagFor(TS)
|
|
7438
7531
|
const VS=(e,t)=>{if("number"===t){const t=oe.fromView(e)
|
|
7439
7532
|
return null===t?void 0:t}return"boolean"===t?!1!==e&&"false"!==e&&(!0===e||"true"===e||void 0):e?.toString()??void 0}
|
|
7440
|
-
class LS extends x_{constructor(){super(...arguments),this.validator=this.createValidator(),this.mappingNotifiers=[],this.mappings=[],this.keyType="string"}handleChange(e,t){e instanceof
|
|
7533
|
+
class LS extends x_{constructor(){super(...arguments),this.validator=this.createValidator(),this.mappingNotifiers=[],this.mappings=[],this.keyType="string"}handleChange(e,t){e instanceof _b&&"string"==typeof t&&this.updateColumnConfig()}updateColumnConfig(){this.validator.validate(this.mappings,this.keyType),this.columnInternals.columnConfig=this.validator.isValid()?this.createColumnConfig(this.getMappingConfigs()):void 0}getMappingConfigs(){const e=new Map
|
|
7441
7534
|
return this.mappings.forEach((t=>{const n=VS(t.key,this.keyType)
|
|
7442
7535
|
if(void 0===n)throw Error("Key was invalid for type. Validation should have prevented this.")
|
|
7443
7536
|
const i=this.createMappingConfig(t)
|
|
@@ -7488,7 +7581,7 @@ const t=this.columnConfig?.mappingConfigs.get(e)
|
|
|
7488
7581
|
this.text=t instanceof XS?t.text:""}}const tI=eI.compose({baseName:"table-column-enum-text-group-header-view",template:RS,styles:ES})
|
|
7489
7582
|
mi.getOrCreate().withPrefix("nimble").register(tI())
|
|
7490
7583
|
const nI=mi.tagFor(eI)
|
|
7491
|
-
class iI extends(kS(CS(LS))){createValidator(){return new US(this.columnInternals,[
|
|
7584
|
+
class iI extends(kS(CS(LS))){createValidator(){return new US(this.columnInternals,[Ib])}get validity(){return this.validator.getValidity()}getColumnInternalsOptions(){return{cellRecordFieldNames:["value"],cellViewTag:QS,groupHeaderViewTag:nI,delegatedEvents:[],sortOperation:p_}}createColumnConfig(e){return{mappingConfigs:e}}createMappingConfig(e){if(e instanceof Ib)return new XS(e.text)
|
|
7492
7585
|
throw new Error("Unsupported mapping")}}const oI=iI.compose({baseName:"table-column-enum-text",template:PS,styles:HS})
|
|
7493
7586
|
mi.getOrCreate().withPrefix("nimble").register(oI()),mi.tagFor(iI)
|
|
7494
7587
|
class rI extends(kS(CS(x_))){fieldNameChanged(){this.columnInternals.dataRecordFieldNames=[this.fieldName],this.columnInternals.operandDataRecordFieldName=this.fieldName}}e([se({attribute:"field-name"})],rI.prototype,"fieldName",void 0)
|
|
@@ -7574,12 +7667,12 @@ class mI extends Vt{}const vI=mI.compose({baseName:"tabs-toolbar",template:fI,st
|
|
|
7574
7667
|
mi.getOrCreate().withPrefix("nimble").register(vI()),mi.tagFor(mI)
|
|
7575
7668
|
const bI="outline",wI="block",xI=we`
|
|
7576
7669
|
${Ao("inline-flex")}
|
|
7577
|
-
${
|
|
7670
|
+
${Bg}
|
|
7578
7671
|
|
|
7579
7672
|
:host {
|
|
7580
7673
|
font: ${Kl};
|
|
7581
7674
|
outline: none;
|
|
7582
|
-
${
|
|
7675
|
+
${Dd}
|
|
7583
7676
|
color: ${Xl};
|
|
7584
7677
|
flex-direction: column;
|
|
7585
7678
|
vertical-align: top;
|
|
@@ -7786,23 +7879,23 @@ const CI=yI.compose({baseName:"text-area",baseClass:so,template:()=>G`
|
|
|
7786
7879
|
@change="${e=>e.handleChange()}"
|
|
7787
7880
|
${Oe("control")}
|
|
7788
7881
|
></textarea>
|
|
7789
|
-
<${
|
|
7882
|
+
<${Qp}
|
|
7790
7883
|
severity="error"
|
|
7791
7884
|
class="error-icon ${e=>e.scrollbarWidth>=0?"scrollbar-width-calculated":""}"
|
|
7792
7885
|
style="--ni-private-scrollbar-width: ${e=>e.scrollbarWidth}px;"
|
|
7793
|
-
></${
|
|
7794
|
-
${
|
|
7886
|
+
></${Qp}>
|
|
7887
|
+
${Fg}
|
|
7795
7888
|
</div>
|
|
7796
7889
|
`,styles:xI,shadowOptions:{delegatesFocus:!0}})
|
|
7797
7890
|
mi.getOrCreate().withPrefix("nimble").register(CI()),mi.tagFor(yI)
|
|
7798
7891
|
const kI="underline",$I="outline",_I="block",SI="frameless",II=we`
|
|
7799
7892
|
${Ao("inline-block")}
|
|
7800
|
-
${
|
|
7893
|
+
${Bg}
|
|
7801
7894
|
|
|
7802
7895
|
:host {
|
|
7803
7896
|
font: ${Kl};
|
|
7804
7897
|
outline: none;
|
|
7805
|
-
${
|
|
7898
|
+
${Dd}
|
|
7806
7899
|
color: ${Xl};
|
|
7807
7900
|
--ni-private-hover-indicator-width: calc(${Fa} + 1px);
|
|
7808
7901
|
--ni-private-height-within-border: calc(
|
|
@@ -7864,7 +7957,7 @@ const kI="underline",$I="outline",_I="block",SI="frameless",II=we`
|
|
|
7864
7957
|
content: ' ';
|
|
7865
7958
|
color: transparent;
|
|
7866
7959
|
width: 0px;
|
|
7867
|
-
${
|
|
7960
|
+
${Dd}
|
|
7868
7961
|
}
|
|
7869
7962
|
|
|
7870
7963
|
:host([appearance='frameless'][full-bleed]) .root::before {
|
|
@@ -7876,7 +7969,7 @@ const kI="underline",$I="outline",_I="block",SI="frameless",II=we`
|
|
|
7876
7969
|
content: ' ';
|
|
7877
7970
|
color: transparent;
|
|
7878
7971
|
width: 0px;
|
|
7879
|
-
${
|
|
7972
|
+
${Dd}
|
|
7880
7973
|
}
|
|
7881
7974
|
|
|
7882
7975
|
:host([appearance='frameless'][full-bleed]) .root::after {
|
|
@@ -8014,11 +8107,11 @@ const kI="underline",$I="outline",_I="block",SI="frameless",II=we`
|
|
|
8014
8107
|
:host([readonly]) .root {
|
|
8015
8108
|
border-color: transparent;
|
|
8016
8109
|
}
|
|
8017
|
-
`),
|
|
8110
|
+
`),Nd(kr.light,we`
|
|
8018
8111
|
.control::-ms-reveal {
|
|
8019
8112
|
filter: invert(0%);
|
|
8020
8113
|
}
|
|
8021
|
-
`),
|
|
8114
|
+
`),Nd([kr.dark,kr.color],we`
|
|
8022
8115
|
.control::-ms-reveal {
|
|
8023
8116
|
filter: invert(100%);
|
|
8024
8117
|
}
|
|
@@ -8085,14 +8178,14 @@ const AI=MI.compose({baseName:"text-field",baseClass:zi,template:(e,t)=>G`
|
|
|
8085
8178
|
</div>
|
|
8086
8179
|
</template>
|
|
8087
8180
|
`,styles:II,shadowOptions:{delegatesFocus:!0},end:G`
|
|
8088
|
-
<${
|
|
8181
|
+
<${Qp}
|
|
8089
8182
|
severity="error"
|
|
8090
8183
|
class="error-icon"
|
|
8091
|
-
></${
|
|
8184
|
+
></${Qp}>
|
|
8092
8185
|
<span part="actions">
|
|
8093
8186
|
<slot name="actions"></slot>
|
|
8094
8187
|
</span>
|
|
8095
|
-
${
|
|
8188
|
+
${Fg}
|
|
8096
8189
|
`})
|
|
8097
8190
|
mi.getOrCreate().withPrefix("nimble").register(AI()),mi.tagFor(MI)
|
|
8098
8191
|
const RI=we`
|
|
@@ -8184,7 +8277,7 @@ const FI=we`
|
|
|
8184
8277
|
display: flex;
|
|
8185
8278
|
flex: 0 0 auto;
|
|
8186
8279
|
}
|
|
8187
|
-
`.withBehaviors(
|
|
8280
|
+
`.withBehaviors(Nd(kr.light,we`
|
|
8188
8281
|
:host([severity='error']) {
|
|
8189
8282
|
--ni-private-tooltip-border-color: ${lr};
|
|
8190
8283
|
--ni-private-tooltip-background-color: ${tr};
|
|
@@ -8194,7 +8287,7 @@ const FI=we`
|
|
|
8194
8287
|
--ni-private-tooltip-border-color: ${Go};
|
|
8195
8288
|
--ni-private-tooltip-background-color: ${tr};
|
|
8196
8289
|
}
|
|
8197
|
-
`),
|
|
8290
|
+
`),Nd(kr.dark,we`
|
|
8198
8291
|
:host {
|
|
8199
8292
|
--ni-private-tooltip-border-color: ${br(Qo,.3)};
|
|
8200
8293
|
--ni-private-tooltip-background-color: ${nr};
|
|
@@ -8207,7 +8300,7 @@ const FI=we`
|
|
|
8207
8300
|
:host([severity='error']) {
|
|
8208
8301
|
--ni-private-tooltip-border-color: ${lr};
|
|
8209
8302
|
}
|
|
8210
|
-
`),
|
|
8303
|
+
`),Nd(kr.color,we`
|
|
8211
8304
|
.anchored-region {
|
|
8212
8305
|
background-color: ${sr};
|
|
8213
8306
|
}
|
|
@@ -8230,7 +8323,7 @@ const FI=we`
|
|
|
8230
8323
|
}
|
|
8231
8324
|
`)),OI=G`
|
|
8232
8325
|
${Le((e=>e.tooltipVisible),G`
|
|
8233
|
-
<${
|
|
8326
|
+
<${Hd}
|
|
8234
8327
|
class="anchored-region"
|
|
8235
8328
|
fixed-placement="true"
|
|
8236
8329
|
auto-update-mode="${e=>e.autoUpdateMode}"
|
|
@@ -8248,17 +8341,17 @@ const FI=we`
|
|
|
8248
8341
|
${Oe("region")}
|
|
8249
8342
|
>
|
|
8250
8343
|
<div class="tooltip" part="tooltip" role="tooltip">
|
|
8251
|
-
<${
|
|
8344
|
+
<${Qp}
|
|
8252
8345
|
severity="error"
|
|
8253
8346
|
class="status-icon"
|
|
8254
|
-
></${
|
|
8255
|
-
<${
|
|
8347
|
+
></${Qp}>
|
|
8348
|
+
<${tg}
|
|
8256
8349
|
severity="information"
|
|
8257
8350
|
class="status-icon"
|
|
8258
|
-
></${
|
|
8351
|
+
></${tg}>
|
|
8259
8352
|
<slot></slot>
|
|
8260
8353
|
</div>
|
|
8261
|
-
</${
|
|
8354
|
+
</${Hd}>
|
|
8262
8355
|
`)}
|
|
8263
8356
|
`
|
|
8264
8357
|
class TI extends _o{constructor(){super(...arguments),this.iconVisible=!1}}e([se],TI.prototype,"severity",void 0),e([se({attribute:"icon-visible",mode:"boolean"})],TI.prototype,"iconVisible",void 0)
|
|
@@ -8336,7 +8429,7 @@ class BI{constructor(e,t,n){this.ltr=e,this.rtl=t,this.source=n,this.attached=nu
|
|
|
8336
8429
|
padding-left: 10px;
|
|
8337
8430
|
font: inherit;
|
|
8338
8431
|
font-size: ${ec};
|
|
8339
|
-
${
|
|
8432
|
+
${Dd}
|
|
8340
8433
|
position: relative;
|
|
8341
8434
|
margin-inline-start: ${Oa};
|
|
8342
8435
|
}
|
|
@@ -8484,7 +8577,7 @@ const ZI=qI.compose({baseName:"tree-item",baseClass:Io,template:(e,t)=>G`
|
|
|
8484
8577
|
</div>
|
|
8485
8578
|
`)}
|
|
8486
8579
|
</template>
|
|
8487
|
-
`,styles:NI,expandCollapseGlyph:
|
|
8580
|
+
`,styles:NI,expandCollapseGlyph:eh.data})
|
|
8488
8581
|
mi.getOrCreate().withPrefix("nimble").register(ZI()),mi.tagFor(qI)
|
|
8489
8582
|
const UI=we`
|
|
8490
8583
|
${Ao("flex")}
|