proto-logo-wc 0.0.374 → 0.0.375

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.
@@ -464,15 +464,16 @@ const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) =>
464
464
  * @param vnodes a list of virtual DOM nodes to remove
465
465
  * @param startIdx the index at which to start removing nodes (inclusive)
466
466
  * @param endIdx the index at which to stop removing nodes (inclusive)
467
- * @param vnode a VNode
468
- * @param elm an element
469
467
  */
470
- const removeVnodes = (vnodes, startIdx, endIdx, vnode, elm) => {
471
- for (; startIdx <= endIdx; ++startIdx) {
472
- if ((vnode = vnodes[startIdx])) {
473
- elm = vnode.$elm$;
474
- // remove the vnode's element from the dom
475
- elm.remove();
468
+ const removeVnodes = (vnodes, startIdx, endIdx) => {
469
+ for (let index = startIdx; index <= endIdx; ++index) {
470
+ const vnode = vnodes[index];
471
+ if (vnode) {
472
+ const elm = vnode.$elm$;
473
+ if (elm) {
474
+ // remove the vnode's element from the dom
475
+ elm.remove();
476
+ }
476
477
  }
477
478
  }
478
479
  };
@@ -765,15 +766,53 @@ const scheduleUpdate = (hostRef, isInitialLoad) => {
765
766
  const dispatch = () => dispatchHooks(hostRef, isInitialLoad);
766
767
  return writeTask(dispatch) ;
767
768
  };
769
+ /**
770
+ * Dispatch initial-render and update lifecycle hooks, enqueuing calls to
771
+ * component lifecycle methods like `componentWillLoad` as well as
772
+ * {@link updateComponent}, which will kick off the virtual DOM re-render.
773
+ *
774
+ * @param hostRef a reference to a host DOM node
775
+ * @param isInitialLoad whether we're on the initial load or not
776
+ * @returns an empty Promise which is used to enqueue a series of operations for
777
+ * the component
778
+ */
768
779
  const dispatchHooks = (hostRef, isInitialLoad) => {
769
780
  const endSchedule = createTime('scheduleUpdate', hostRef.$cmpMeta$.$tagName$);
770
781
  const instance = hostRef.$lazyInstance$ ;
771
- let promise;
782
+ // We're going to use this variable together with `enqueue` to implement a
783
+ // little promise-based queue. We start out with it `undefined`. When we add
784
+ // the first function to the queue we'll set this variable to be that
785
+ // function's return value. When we attempt to add subsequent values to the
786
+ // queue we'll check that value and, if it was a `Promise`, we'll then chain
787
+ // the new function off of that `Promise` using `.then()`. This will give our
788
+ // queue two nice properties:
789
+ //
790
+ // 1. If all functions added to the queue are synchronous they'll be called
791
+ // synchronously right away.
792
+ // 2. If all functions added to the queue are asynchronous they'll all be
793
+ // called in order after `dispatchHooks` exits.
794
+ let maybePromise;
772
795
  endSchedule();
773
- return then(promise, () => updateComponent(hostRef, instance, isInitialLoad));
796
+ return enqueue(maybePromise, () => updateComponent(hostRef, instance, isInitialLoad));
774
797
  };
798
+ /**
799
+ * This function uses a Promise to implement a simple first-in, first-out queue
800
+ * of functions to be called.
801
+ *
802
+ * The queue is ordered on the basis of the first argument. If it's
803
+ * `undefined`, then nothing is on the queue yet, so the provided function can
804
+ * be called synchronously (although note that this function may return a
805
+ * `Promise`). The idea is that then the return value of that enqueueing
806
+ * operation is kept around, so that if it was a `Promise` then subsequent
807
+ * functions can be enqueued by calling this function again with that `Promise`
808
+ * as the first argument.
809
+ *
810
+ * @param maybePromise either a `Promise` which should resolve before the next function is called or an 'empty' sentinel
811
+ * @param fn a function to enqueue
812
+ * @returns either a `Promise` or the return value of the provided function
813
+ */
814
+ const enqueue = (maybePromise, fn) => maybePromise instanceof Promise ? maybePromise.then(fn) : fn();
775
815
  const updateComponent = async (hostRef, instance, isInitialLoad) => {
776
- // updateComponent
777
816
  const elm = hostRef.$hostElement$;
778
817
  const endUpdate = createTime('update', hostRef.$cmpMeta$.$tagName$);
779
818
  const rc = elm['s-rc'];
@@ -878,9 +917,6 @@ const appDidLoad = (who) => {
878
917
  }
879
918
  nextTick(() => emitEvent(win, 'appload', { detail: { namespace: NAMESPACE } }));
880
919
  };
881
- const then = (promise, thenFn) => {
882
- return promise && promise.then ? promise.then(thenFn) : thenFn();
883
- };
884
920
  const addHydratedFlag = (elm) => elm.classList.add('hydrated')
885
921
  ;
886
922
  const getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
@@ -1011,9 +1047,9 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1011
1047
  const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) => {
1012
1048
  // initializeComponent
1013
1049
  if ((hostRef.$flags$ & 32 /* HOST_FLAGS.hasInitializedComponent */) === 0) {
1050
+ // Let the runtime know that the component has been initialized
1051
+ hostRef.$flags$ |= 32 /* HOST_FLAGS.hasInitializedComponent */;
1014
1052
  {
1015
- // we haven't initialized this element yet
1016
- hostRef.$flags$ |= 32 /* HOST_FLAGS.hasInitializedComponent */;
1017
1053
  // lazy loaded components
1018
1054
  // request the component's implementation to be
1019
1055
  // wired up with the host element
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-c68417e9.js');
5
+ const index = require('./index-9c73d6a5.js');
6
6
 
7
7
  /*
8
- Stencil Client Patch Esm v3.2.1 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Patch Esm v3.2.2 | MIT Licensed | https://stenciljs.com
9
9
  */
10
10
  const patchEsm = () => {
11
11
  return index.promiseResolve();
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-c68417e9.js');
5
+ const index = require('./index-9c73d6a5.js');
6
6
 
7
7
  const myLogoCss = "my-logo{}";
8
8
 
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const index = require('./index-c68417e9.js');
5
+ const index = require('./index-9c73d6a5.js');
6
6
 
7
7
  /*
8
- Stencil Client Patch Browser v3.2.1 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Patch Browser v3.2.2 | MIT Licensed | https://stenciljs.com
9
9
  */
10
10
  const patchBrowser = () => {
11
11
  const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('proto-logo-wc.cjs.js', document.baseURI).href));
@@ -4,7 +4,7 @@
4
4
  ],
5
5
  "compiler": {
6
6
  "name": "@stencil/core",
7
- "version": "3.2.1",
7
+ "version": "3.2.2",
8
8
  "typescriptVersion": "4.9.5"
9
9
  },
10
10
  "collections": [],
@@ -442,15 +442,16 @@ const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) =>
442
442
  * @param vnodes a list of virtual DOM nodes to remove
443
443
  * @param startIdx the index at which to start removing nodes (inclusive)
444
444
  * @param endIdx the index at which to stop removing nodes (inclusive)
445
- * @param vnode a VNode
446
- * @param elm an element
447
445
  */
448
- const removeVnodes = (vnodes, startIdx, endIdx, vnode, elm) => {
449
- for (; startIdx <= endIdx; ++startIdx) {
450
- if ((vnode = vnodes[startIdx])) {
451
- elm = vnode.$elm$;
452
- // remove the vnode's element from the dom
453
- elm.remove();
446
+ const removeVnodes = (vnodes, startIdx, endIdx) => {
447
+ for (let index = startIdx; index <= endIdx; ++index) {
448
+ const vnode = vnodes[index];
449
+ if (vnode) {
450
+ const elm = vnode.$elm$;
451
+ if (elm) {
452
+ // remove the vnode's element from the dom
453
+ elm.remove();
454
+ }
454
455
  }
455
456
  }
456
457
  };
@@ -743,15 +744,53 @@ const scheduleUpdate = (hostRef, isInitialLoad) => {
743
744
  const dispatch = () => dispatchHooks(hostRef, isInitialLoad);
744
745
  return writeTask(dispatch) ;
745
746
  };
747
+ /**
748
+ * Dispatch initial-render and update lifecycle hooks, enqueuing calls to
749
+ * component lifecycle methods like `componentWillLoad` as well as
750
+ * {@link updateComponent}, which will kick off the virtual DOM re-render.
751
+ *
752
+ * @param hostRef a reference to a host DOM node
753
+ * @param isInitialLoad whether we're on the initial load or not
754
+ * @returns an empty Promise which is used to enqueue a series of operations for
755
+ * the component
756
+ */
746
757
  const dispatchHooks = (hostRef, isInitialLoad) => {
747
758
  const endSchedule = createTime('scheduleUpdate', hostRef.$cmpMeta$.$tagName$);
748
759
  const instance = hostRef.$lazyInstance$ ;
749
- let promise;
760
+ // We're going to use this variable together with `enqueue` to implement a
761
+ // little promise-based queue. We start out with it `undefined`. When we add
762
+ // the first function to the queue we'll set this variable to be that
763
+ // function's return value. When we attempt to add subsequent values to the
764
+ // queue we'll check that value and, if it was a `Promise`, we'll then chain
765
+ // the new function off of that `Promise` using `.then()`. This will give our
766
+ // queue two nice properties:
767
+ //
768
+ // 1. If all functions added to the queue are synchronous they'll be called
769
+ // synchronously right away.
770
+ // 2. If all functions added to the queue are asynchronous they'll all be
771
+ // called in order after `dispatchHooks` exits.
772
+ let maybePromise;
750
773
  endSchedule();
751
- return then(promise, () => updateComponent(hostRef, instance, isInitialLoad));
774
+ return enqueue(maybePromise, () => updateComponent(hostRef, instance, isInitialLoad));
752
775
  };
776
+ /**
777
+ * This function uses a Promise to implement a simple first-in, first-out queue
778
+ * of functions to be called.
779
+ *
780
+ * The queue is ordered on the basis of the first argument. If it's
781
+ * `undefined`, then nothing is on the queue yet, so the provided function can
782
+ * be called synchronously (although note that this function may return a
783
+ * `Promise`). The idea is that then the return value of that enqueueing
784
+ * operation is kept around, so that if it was a `Promise` then subsequent
785
+ * functions can be enqueued by calling this function again with that `Promise`
786
+ * as the first argument.
787
+ *
788
+ * @param maybePromise either a `Promise` which should resolve before the next function is called or an 'empty' sentinel
789
+ * @param fn a function to enqueue
790
+ * @returns either a `Promise` or the return value of the provided function
791
+ */
792
+ const enqueue = (maybePromise, fn) => maybePromise instanceof Promise ? maybePromise.then(fn) : fn();
753
793
  const updateComponent = async (hostRef, instance, isInitialLoad) => {
754
- // updateComponent
755
794
  const elm = hostRef.$hostElement$;
756
795
  const endUpdate = createTime('update', hostRef.$cmpMeta$.$tagName$);
757
796
  const rc = elm['s-rc'];
@@ -856,9 +895,6 @@ const appDidLoad = (who) => {
856
895
  }
857
896
  nextTick(() => emitEvent(win, 'appload', { detail: { namespace: NAMESPACE } }));
858
897
  };
859
- const then = (promise, thenFn) => {
860
- return promise && promise.then ? promise.then(thenFn) : thenFn();
861
- };
862
898
  const addHydratedFlag = (elm) => elm.classList.add('hydrated')
863
899
  ;
864
900
  const getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
@@ -989,9 +1025,9 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
989
1025
  const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) => {
990
1026
  // initializeComponent
991
1027
  if ((hostRef.$flags$ & 32 /* HOST_FLAGS.hasInitializedComponent */) === 0) {
1028
+ // Let the runtime know that the component has been initialized
1029
+ hostRef.$flags$ |= 32 /* HOST_FLAGS.hasInitializedComponent */;
992
1030
  {
993
- // we haven't initialized this element yet
994
- hostRef.$flags$ |= 32 /* HOST_FLAGS.hasInitializedComponent */;
995
1031
  // lazy loaded components
996
1032
  // request the component's implementation to be
997
1033
  // wired up with the host element
@@ -1,8 +1,8 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-2a5cb5ec.js';
2
- export { s as setNonce } from './index-2a5cb5ec.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-46f8020c.js';
2
+ export { s as setNonce } from './index-46f8020c.js';
3
3
 
4
4
  /*
5
- Stencil Client Patch Esm v3.2.1 | MIT Licensed | https://stenciljs.com
5
+ Stencil Client Patch Esm v3.2.2 | MIT Licensed | https://stenciljs.com
6
6
  */
7
7
  const patchEsm = () => {
8
8
  return promiseResolve();
@@ -1,4 +1,4 @@
1
- import { r as registerInstance, h } from './index-2a5cb5ec.js';
1
+ import { r as registerInstance, h } from './index-46f8020c.js';
2
2
 
3
3
  const myLogoCss = "my-logo{}";
4
4
 
@@ -1,8 +1,8 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-2a5cb5ec.js';
2
- export { s as setNonce } from './index-2a5cb5ec.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-46f8020c.js';
2
+ export { s as setNonce } from './index-46f8020c.js';
3
3
 
4
4
  /*
5
- Stencil Client Patch Browser v3.2.1 | MIT Licensed | https://stenciljs.com
5
+ Stencil Client Patch Browser v3.2.2 | MIT Licensed | https://stenciljs.com
6
6
  */
7
7
  const patchBrowser = () => {
8
8
  const importMeta = import.meta.url;
@@ -0,0 +1,2 @@
1
+ let t,n,e=!1,l=!1;const o={},s=t=>"object"==(t=typeof t)||"function"===t;function r(t){var n,e,l;return null!==(l=null===(e=null===(n=t.head)||void 0===n?void 0:n.querySelector('meta[name="csp-nonce"]'))||void 0===e?void 0:e.getAttribute("content"))&&void 0!==l?l:void 0}const i=(t,n,...e)=>{let l=null,o=!1,r=!1;const i=[],u=n=>{for(let e=0;e<n.length;e++)l=n[e],Array.isArray(l)?u(l):null!=l&&"boolean"!=typeof l&&((o="function"!=typeof t&&!s(l))&&(l+=""),o&&r?i[i.length-1].t+=l:i.push(o?c(null,l):l),r=o)};u(e);const a=c(t,null);return a.l=n,i.length>0&&(a.o=i),a},c=(t,n)=>({i:0,u:t,t:n,h:null,o:null,l:null}),u={},a=new WeakMap,f=t=>"sc-"+t.$,d=(t,n,e,l,o,r)=>{if(e!==l){let i=L(t,n);n.toLowerCase();{const c=s(l);if((i||c&&null!==l)&&!o)try{if(t.tagName.includes("-"))t[n]=l;else{const o=null==l?"":l;"list"===n?i=!1:null!=e&&t[n]==o||(t[n]=o)}}catch(t){}null==l||!1===l?!1===l&&""!==t.getAttribute(n)||t.removeAttribute(n):(!i||4&r||o)&&!c&&t.setAttribute(n,l=!0===l?"":l)}}},h=(t,n,e,l)=>{const s=11===n.h.nodeType&&n.h.host?n.h.host:n.h,r=t&&t.l||o,i=n.l||o;for(l in r)l in i||d(s,l,r[l],void 0,e,n.i);for(l in i)d(s,l,r[l],i[l],e,n.i)},$=(n,l,o)=>{const s=l.o[o];let r,i,c=0;if(e||(e="svg"===s.u),r=s.h=V.createElementNS(e?"http://www.w3.org/2000/svg":"http://www.w3.org/1999/xhtml",s.u),e&&"foreignObject"===s.u&&(e=!1),h(null,s,e),null!=t&&r["s-si"]!==t&&r.classList.add(r["s-si"]=t),s.o)for(c=0;c<s.o.length;++c)i=$(n,s,c),i&&r.appendChild(i);return"svg"===s.u?e=!1:"foreignObject"===r.tagName&&(e=!0),r},p=(t,e,l,o,s,r)=>{let i,c=t;for(c.shadowRoot&&c.tagName===n&&(c=c.shadowRoot);s<=r;++s)o[s]&&(i=$(null,l,s),i&&(o[s].h=i,c.insertBefore(i,e)))},m=(t,n,e)=>{for(let l=n;l<=e;++l){const n=t[l];if(n){const t=n.h;t&&t.remove()}}},w=(t,n)=>t.u===n.u,y=(t,n)=>{const l=n.h=t.h,o=t.o,s=n.o,r=n.u;e="svg"===r||"foreignObject"!==r&&e,h(t,n,e),null!==o&&null!==s?((t,n,e,l)=>{let o,s=0,r=0,i=n.length-1,c=n[0],u=n[i],a=l.length-1,f=l[0],d=l[a];for(;s<=i&&r<=a;)null==c?c=n[++s]:null==u?u=n[--i]:null==f?f=l[++r]:null==d?d=l[--a]:w(c,f)?(y(c,f),c=n[++s],f=l[++r]):w(u,d)?(y(u,d),u=n[--i],d=l[--a]):w(c,d)?(y(c,d),t.insertBefore(c.h,u.h.nextSibling),c=n[++s],d=l[--a]):w(u,f)?(y(u,f),t.insertBefore(u.h,c.h),u=n[--i],f=l[++r]):(o=$(n&&n[r],e,r),f=l[++r],o&&c.h.parentNode.insertBefore(o,c.h));s>i?p(t,null==l[a+1]?null:l[a+1].h,e,l,r,a):r>a&&m(n,s,i)})(l,o,n,s):null!==s?p(l,null,n,s,0,s.length-1):null!==o&&m(o,0,o.length-1),e&&"svg"===r&&(e=!1)},v=(t,n)=>{n&&!t.p&&n["s-p"]&&n["s-p"].push(new Promise((n=>t.p=n)))},b=(t,n)=>{if(t.i|=16,!(4&t.i))return v(t,t.m),X((()=>g(t,n)));t.i|=512},g=(t,n)=>{const e=t.v;return S(void 0,(()=>j(t,e,n)))},S=(t,n)=>t instanceof Promise?t.then(n):n(),j=async(t,n,e)=>{const l=t.g,o=l["s-rc"];e&&(t=>{const n=t.S,e=t.g,l=n.i,o=((t,n)=>{var e;let l=f(n);const o=q.get(l);if(t=11===t.nodeType?t:V,o)if("string"==typeof o){let n,s=a.get(t=t.head||t);if(s||a.set(t,s=new Set),!s.has(l)){{n=V.createElement("style"),n.innerHTML=o;const l=null!==(e=_.j)&&void 0!==e?e:r(V);null!=l&&n.setAttribute("nonce",l),t.insertBefore(n,t.querySelector("link"))}s&&s.add(l)}}else t.adoptedStyleSheets.includes(o)||(t.adoptedStyleSheets=[...t.adoptedStyleSheets,o]);return l})(e.shadowRoot?e.shadowRoot:e.getRootNode(),n);10&l&&(e["s-sc"]=o,e.classList.add(o+"-h"))})(t);M(t,n),o&&(o.map((t=>t())),l["s-rc"]=void 0);{const n=l["s-p"],e=()=>O(t);0===n.length?e():(Promise.all(n).then(e),t.i|=4,n.length=0)}},M=(e,l)=>{try{l=l.render(),e.i&=-17,e.i|=2,((e,l)=>{const o=e.g,s=e.M||c(null,null),r=(t=>t&&t.u===u)(l)?l:i(null,null,l);n=o.tagName,r.u=null,r.i|=4,e.M=r,r.h=s.h=o.shadowRoot||o,t=o["s-sc"],y(s,r)})(e,l)}catch(t){R(t,e.g)}return null},O=t=>{const n=t.g,e=t.m;64&t.i||(t.i|=64,C(n),t.O(n),e||k()),t.p&&(t.p(),t.p=void 0),512&t.i&&Q((()=>b(t,!1))),t.i&=-517},k=()=>{C(V.documentElement),Q((()=>(t=>{const n=_.ce("appload",{detail:{namespace:"proto-logo-wc"}});return t.dispatchEvent(n),n})(H)))},C=t=>t.classList.add("hydrated"),P=(t,n,e)=>{if(n.k){const l=Object.entries(n.k),o=t.prototype;if(l.map((([t,[l]])=>{(31&l||2&e&&32&l)&&Object.defineProperty(o,t,{get(){return((t,n)=>T(this).C.get(n))(0,t)},set(e){((t,n,e,l)=>{const o=T(t),r=o.C.get(n),i=o.i,c=o.v;e=((t,n)=>null==t||s(t)?t:2&n?parseFloat(t):1&n?t+"":t)(e,l.k[n][0]),8&i&&void 0!==r||e===r||Number.isNaN(r)&&Number.isNaN(e)||(o.C.set(n,e),c&&2==(18&i)&&b(o,!1))})(this,t,e,n)},configurable:!0,enumerable:!0})})),1&e){const n=new Map;o.attributeChangedCallback=function(t,e,l){_.jmp((()=>{const e=n.get(t);if(this.hasOwnProperty(e))l=this[e],delete this[e];else if(o.hasOwnProperty(e)&&"number"==typeof this[e]&&this[e]==l)return;this[e]=(null!==l||"boolean"!=typeof this[e])&&l}))},t.observedAttributes=l.filter((([t,n])=>15&n[0])).map((([t,e])=>{const l=e[1]||t;return n.set(l,t),l}))}}return t},x=(t,n={})=>{var e;const l=[],o=n.exclude||[],s=H.customElements,i=V.head,c=i.querySelector("meta[charset]"),u=V.createElement("style"),a=[];let d,h=!0;Object.assign(_,n),_.P=new URL(n.resourcesUrl||"./",V.baseURI).href,t.map((t=>{t[1].map((n=>{const e={i:n[0],$:n[1],k:n[2],N:n[3]};e.k=n[2];const r=e.$,i=class extends HTMLElement{constructor(t){super(t),F(t=this,e),1&e.i&&t.attachShadow({mode:"open"})}connectedCallback(){d&&(clearTimeout(d),d=null),h?a.push(this):_.jmp((()=>(t=>{if(0==(1&_.i)){const n=T(t),e=n.S,l=()=>{};if(!(1&n.i)){n.i|=1;{let e=t;for(;e=e.parentNode||e.host;)if(e["s-p"]){v(n,n.m=e);break}}e.k&&Object.entries(e.k).map((([n,[e]])=>{if(31&e&&t.hasOwnProperty(n)){const e=t[n];delete t[n],t[n]=e}})),(async(t,n,e,l,o)=>{if(0==(32&n.i)){n.i|=32;{if((o=W(e)).then){const t=()=>{};o=await o,t()}o.isProxied||(P(o,e,2),o.isProxied=!0);const t=()=>{};n.i|=8;try{new o(n)}catch(t){R(t)}n.i&=-9,t()}if(o.style){let t=o.style;const n=f(e);if(!q.has(n)){const l=()=>{};((t,n,e)=>{let l=q.get(t);B&&e?(l=l||new CSSStyleSheet,"string"==typeof l?l=n:l.replaceSync(n)):l=n,q.set(t,l)})(n,t,!!(1&e.i)),l()}}}const s=n.m,r=()=>b(n,!0);s&&s["s-rc"]?s["s-rc"].push(r):r()})(0,n,e)}l()}})(this)))}disconnectedCallback(){_.jmp((()=>{}))}componentOnReady(){return T(this).T}};e.A=t[0],o.includes(r)||s.get(r)||(l.push(r),s.define(r,P(i,e,1)))}))}));{u.innerHTML=l+"{visibility:hidden}.hydrated{visibility:inherit}",u.setAttribute("data-styles","");const t=null!==(e=_.j)&&void 0!==e?e:r(V);null!=t&&u.setAttribute("nonce",t),i.insertBefore(u,c?c.nextSibling:i.firstChild)}h=!1,a.length?a.map((t=>t.connectedCallback())):_.jmp((()=>d=setTimeout(k,30)))},E=t=>_.j=t,N=new WeakMap,T=t=>N.get(t),A=(t,n)=>N.set(n.v=t,n),F=(t,n)=>{const e={i:0,g:t,S:n,C:new Map};return e.T=new Promise((t=>e.O=t)),t["s-p"]=[],t["s-rc"]=[],N.set(t,e)},L=(t,n)=>n in t,R=(t,n)=>(0,console.error)(t,n),U=new Map,W=t=>{const n=t.$.replace(/-/g,"_"),e=t.A,l=U.get(e);return l?l[n]:import(`./${e}.entry.js`).then((t=>(U.set(e,t),t[n])),R)
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},q=new Map,H="undefined"!=typeof window?window:{},V=H.document||{head:{}},_={i:0,P:"",jmp:t=>t(),raf:t=>requestAnimationFrame(t),ael:(t,n,e,l)=>t.addEventListener(n,e,l),rel:(t,n,e,l)=>t.removeEventListener(n,e,l),ce:(t,n)=>new CustomEvent(t,n)},z=t=>Promise.resolve(t),B=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(t){}return!1})(),D=[],G=[],I=(t,n)=>e=>{t.push(e),l||(l=!0,n&&4&_.i?Q(K):_.raf(K))},J=t=>{for(let n=0;n<t.length;n++)try{t[n](performance.now())}catch(t){R(t)}t.length=0},K=()=>{J(D),J(G),(l=D.length>0)&&_.raf(K)},Q=t=>z().then(t),X=I(G,!0);export{x as b,i as h,z as p,A as r,E as s}
@@ -1 +1 @@
1
- import{r as c,h as l}from"./p-726163c5.js";const a=class{constructor(l){c(this,l),this.fill="currentcolor",this.stroke=void 0,this.opacity=1,this.size=void 0}render(){const{fill:c,stroke:a,opacity:M,size:z}=this;return l("svg",{width:z,height:z,viewBox:"0 0 818 874","fill-rule":"evenodd","clip-rule":"evenodd","stroke-linejoin":"round","stroke-miterlimit":"2"},l("g",{fill:c,stroke:a,"fill-opacity":M},l("path",{d:"M134.304 112.082l1-.113c.294.453.615.781 1.086 1.011.77.358 1.842.52 3.242.362 1.373-.035 2.924-.291 4.576-.722a28.466 28.466 0 004.837-1.642c1.63-.63 3.086-1.363 4.218-2.099.83-.54 1.912-1.35 3.172-2.385 1.31-.959 2.471-2.143 3.508-3.355 1.038-1.211 1.777-2.55 2.316-3.868.54-1.316.354-2.592-.382-3.723-.735-1.132-1.777-1.743-2.95-1.732-1.25.06-2.675.344-4.256 1.05-1.58.706-3.388 1.559-5.248 2.661-1.935 1.151-3.87 2.302-5.855 3.378-1.984 1.076-4.018 2.076-6.074 2.876-2.131.85-4.108 1.276-6.082 1.379-1.973.102-3.916-.245-5.678-1.139-1.838-.845-3.468-2.361-4.99-4.7-1.03-1.584-1.633-3.339-1.86-5.338-.302-1.951-.054-4.045.72-6.158.772-2.113 2.02-4.32 3.869-6.596 1.897-2.2 4.368-4.344 7.462-6.355 2.64-1.717 5.127-3.012 7.334-3.91a55.02 55.02 0 015.964-2.054c1.728-.48 3.23-.812 4.456-1.073 1.226-.26 2.128-.524 2.807-.966.68-.442 1.11-.936 1.215-1.434l1.298.015.927 12.817-.951.188c-.517-.63-1.136-1.086-1.732-1.342-.77-.359-1.842-.52-3.14-.536-1.324.11-2.724.269-4.3.65-1.578.382-3.181.887-4.81 1.518-1.582.706-3.189 1.536-4.622 2.468a30.611 30.611 0 00-3.248 2.435c-1.06 1.01-1.97 1.924-2.705 2.94-.736 1.014-1.196 1.958-1.456 2.878-.286 1.045-.098 1.996.442 2.826.785 1.207 1.827 1.818 3.124 1.833 1.223.064 2.725-.268 4.354-.899a34.599 34.599 0 005.297-2.585c1.86-1.102 3.844-2.178 5.829-3.254 1.984-1.075 4.018-2.075 6.15-2.925 2.055-.8 4.108-1.276 6.081-1.378 1.973-.102 3.841.293 5.679 1.138 1.762.894 3.392 2.41 4.864 4.674 1.717 2.64 2.412 5.195 2.133 7.738-.354 2.592-1.255 5.003-2.655 7.309-1.399 2.305-3.27 4.38-5.413 6.204a52.034 52.034 0 01-6.371 4.895c-2.867 1.864-5.38 3.283-7.512 4.132-2.157.974-3.987 1.627-5.613 1.933-1.577.382-2.928.616-3.928.73-1 .113-1.777.403-2.305.747-.377.245-.532.668-.588 1.241l-1.45.083-1.786-11.828zM199.519 64.52c1.53-.761 2.74-1.765 3.507-2.85.767-1.086.689-2.454-.153-4.146-.842-1.693-1.887-2.58-3.295-2.784-1.368-.123-2.898.236-4.43.998l-13.536 6.736 4.37 8.783 13.537-6.736zm-27.286-1.5c-.401-.806-1.246-.888-2.616-.207l-.722-1.45 23.448-11.668c4.35-2.165 7.975-2.963 10.993-2.555 2.937.448 5.348 2.667 7.272 6.534 1.925 3.868 2.2 7.048.747 9.581-1.495 2.654-4.357 4.983-8.708 7.148l-13.698 6.816 6.015 12.086c.4.806 1.165.928 2.293.367l.722 1.45-11.442 5.694-.721-1.45c1.37-.682 1.813-1.406 1.412-2.211l-14.995-30.136zM237.764 37.195c-1.774.652-3.455 1.558-4.927 2.77a15.493 15.493 0 00-3.714 4.243c-.948 1.595-1.549 3.35-1.719 5.234-.255 1.916-.025 3.845.72 5.872.746 2.028 1.82 3.646 3.255 4.94 1.35 1.326 2.915 2.19 4.67 2.79 1.786.687 3.586.888 5.578.827 1.906-.03 3.805-.344 5.578-.997 1.774-.652 3.424-1.642 4.98-2.885 1.473-1.213 2.714-2.532 3.63-4.212.948-1.595 1.58-3.265 1.835-5.18.17-1.885-.06-3.815-.805-5.842-.745-2.027-1.82-3.646-3.17-4.971-1.435-1.295-3.03-2.243-4.785-2.844a16.048 16.048 0 00-5.494-.857 17.77 17.77 0 00-5.632 1.112zm-2.298-6.25a35.093 35.093 0 019.22-2.048c2.982-.234 5.782.08 8.4.939a18.42 18.42 0 016.989 4.143c2.083 2.014 3.7 4.585 4.88 7.795 1.18 3.21 1.613 6.214 1.3 9.014-.282 2.885-1.173 5.418-2.61 7.768-1.437 2.35-3.398 4.318-5.853 5.988-2.508 1.785-5.256 3.179-8.381 4.328-3.126 1.15-6.122 1.867-9.105 2.1-3.036.35-5.805.121-8.422-.738-2.618-.86-4.937-2.213-7.02-4.228-2.052-1.93-3.669-4.5-4.849-7.71-1.18-3.21-1.613-6.215-1.332-9.1a18.42 18.42 0 012.641-7.683c1.438-2.35 3.368-4.402 5.876-6.187a33.933 33.933 0 018.266-4.382zM288.314 53.081c.216.874.848 1.181 1.984.9l.39 1.572-11.445 2.834-.39-1.573c.962-.238 1.29-.783 1.074-1.656l-8.09-32.674c-.216-.874-.76-1.202-1.721-.964l-.39-1.573 11.445-2.833.389 1.572c-1.136.281-1.552.848-1.335 1.722l3.525 14.24c1.598-2.158 3.197-4.315 4.883-6.494 1.685-2.179 3.24-4.14 4.553-5.949 1.314-1.808 2.41-3.378 3.307-4.62.898-1.242 1.292-1.896 1.227-2.158-.064-.262-.304-.48-.61-.59-.392-.089-.763-.09-1.025-.025l-.325-1.31 14.415-3.57.39 1.573c-.635.436-1.532 1.307-2.648 2.788L296.247 29.7l18.043 13.706c.915.7 1.917 1.38 2.92 2.059 1.024.766 2.028 1.074 2.879 1.141l.39 1.573-12.93 3.2-.39-1.572c.612-.151.918-.412.831-.762-.065-.262-.217-.502-.587-.874s-1.046-.854-2.048-1.533l-13.99-10.444-5.474 7.104 2.423 9.784z","fill-rule":"nonzero"}),l("path",{d:"M347.793 27.702l-9.298-13.975-4.252 15.854 13.55-1.88zM320.071 46.63c.7-.188 1.186-.619 1.634-1.317.372-.596.565-1.168.77-1.651l9.265-30.815c.245-.852.413-1.603.607-2.175.116-.47.131-1.017.07-1.463-.05-.357-.176-.612-.278-.688l-.572-.194-.223-1.604 13.462-1.868.222 1.605-.498.342c-.255.126-.32.317-.257.762.05.357.29.778.619 1.187.341.497.695 1.084 1.05 1.671l18.645 28.307a3.25 3.25 0 001.142 1.023 2.79 2.79 0 001.233.374l.222 1.604-12.658 1.756-.186-1.337c.268-.037.612-.175.944-.403.242-.216.371-.597.31-1.043-.05-.356-.189-.7-.315-.956a26.637 26.637 0 00-.606-1.097l-3.112-4.747-19.078 2.646-1.828 5.16a4.81 4.81 0 00-.362 1.323c-.116.47-.156.839-.119 1.106.062.446.29.778.57.83.28.052.737.08 1.272.005l.223 1.605-11.946 1.657-.222-1.605zM373.087 39.689c1.08-.024 1.61-.486 1.59-1.385l-.738-33.652c-.02-.9-.57-1.338-1.65-1.315l-.035-1.62 13.227-.29.036 1.62c-.448.1-.626.194-.62.464.006.27.653 1.066 2.032 2.386l22.097 22.38-.535-24.383c-.02-.9-.66-1.336-1.83-1.31l-.035-1.62 10.977-.241.036 1.62c-1.08.023-1.61.485-1.59 1.385l.738 33.652c.02.9.57 1.338 1.65 1.314l.035 1.62-11.697.256-.036-1.62c.45-.01.626-.193.62-.463-.006-.27-.284-.624-.837-1.242-.644-.616-1.288-1.232-2.025-2.026L381.66 11.954l.574 26.184c.02.9.66 1.336 1.92 1.308l.035 1.62-11.067.242-.036-1.62zM468.005 13.216c.11-1.164-.735-1.787-2.617-1.965l-21.862-2.067-.848 8.96 13.799 1.305c.985.093 1.8.08 2.265-.057.457-.047.768-.47.827-1.097l1.613.152-.898 9.498-1.792-.17c.238-.61.012-1.083-.598-1.322a20.511 20.511 0 00-2.761-.441l-13.082-1.238-1 10.573 22.938 2.17c.717.067 1.361-.053 1.843-.369.474-.226.785-.649.836-1.186l1.612.152-.89 9.408-1.612-.152c.05-.538-.193-.832-.632-.964-.44-.132-1.067-.191-1.784-.26l-32.883-3.109.152-1.613c.27.026.636-.03.93-.273.286-.154.5-.495.541-.943l3.17-33.511a1.49 1.49 0 00-.347-1.118 1.737 1.737 0 00-.87-.353l.152-1.613 31.808 3.008c1.882.178 2.829-.275 2.93-1.35l1.613.152-.94 9.946-1.613-.153zM555.313 25.982c.164-.609.043-1.2-.298-1.665-.451-.4-1.274-.808-2.49-1.135l-28.16-7.569-2.898 10.777 17.036 4.58c1.13.303 2.109.473 2.788.376.678-.097 1.166-.525 1.376-1.308l1.565.42-3.364 12.517-1.565-.42c.35-1.305.236-2.267-.255-2.865-.515-.512-1.424-.942-2.554-1.246l-17.036-4.579-4.532 16.862c-.14.521.004 1.026.479 1.34.364.377.926.715 1.708.925l-.42 1.565-14.776-3.972.42-1.564c1.478.397 2.4.086 2.68-.957l10.607-39.46c.28-1.043-.362-1.775-1.84-2.172l.421-1.564 40.329 10.84c1.217.326 2.132.386 2.77.092.529-.231.93-.683 1.093-1.29l1.565.42-3.084 11.472-1.565-.42zM555.335 64.501c.93.34 1.553.47 1.984.34.4-.045.692-.322.846-.745l11.531-31.623a1.283 1.283 0 00-.137-1.2c-.277-.292-.838-.592-1.768-.932l.555-1.522 12.852 4.687-.555 1.522c-1.606-.586-2.521-.44-2.83.405l-11.53 31.623c-.309.846.298 1.546 1.905 2.132l-.555 1.522-12.852-4.687.554-1.522zM611.868 65.307c5.296 2.483 8.788 2.033 10.354-1.308.65-1.385.495-2.75-.346-4.138-.96-1.345-2.806-2.708-5.576-4.007l-12.875-6.037-4.433 9.453 12.876 6.037zM619.29 49.9c4.808 2.254 8.256 4.864 10.219 7.674 1.925 2.89 2.01 6.31.215 10.14-.688 1.467-1.543 2.656-2.649 3.53-1.105.873-2.215 1.545-3.494 1.94-1.317.476-2.682.63-3.97.623a14.015 14.015 0 01-3.914-.344l2.522 15.397c.14.761.4 1.48.855 1.992a6.496 6.496 0 001.286 1.497l-.688 1.467-12.467-5.846.688-1.467c.733.344 1.174.253 1.403-.236.267-.57.242-1.577-.038-3.1l-1.93-12.634-11.326-5.31-5.464 11.652c-.19.408-.18.81.15 1.164.212.397.5.632.826.785l-.688 1.466-10.838-5.081.688-1.467c.978.458 1.658.28 2.04-.535l14.29-30.476c.381-.815.083-1.452-.894-1.91l.687-1.467 22.491 10.546zM673.328 89.784c.61-.998.124-1.928-1.49-2.913L653.1 75.422l-4.692 7.68 11.828 7.226c.844.516 1.583.862 2.06.943.431.157.896-.086 1.225-.623l1.382.844-4.973 8.141-1.536-.938c.482-.444.486-.969.042-1.45a20.511 20.511 0 00-2.287-1.609l-11.213-6.85-5.536 9.062 19.66 12.012c.615.375 1.247.55 1.819.477.524.005.99-.239 1.27-.7l1.383.845-4.926 8.064-1.383-.844c.282-.461.192-.832-.145-1.144-.337-.311-.875-.64-1.49-1.015l-28.186-17.22.845-1.382c.23.141.585.252.956.162.324-.013.665-.226.9-.61L647.65 67.77a1.49 1.49 0 00.179-1.156 1.737 1.737 0 00-.628-.7l.845-1.382 27.265 16.656c1.613.986 2.662.994 3.225.072l1.383.845-5.208 8.525-1.383-.845zM232.902 140.753c1.851-.91 3.436-1.91 4.663-2.884 1.227-.973 2.128-2.157 2.613-3.434.515-1.216.704-2.644.507-4.252-.257-1.58-.84-3.37-1.867-5.46-1.027-2.09-2.087-3.646-3.18-4.814-1.153-1.14-2.398-1.862-3.705-2.258-1.277-.337-2.765-.347-4.286.029-1.52.376-3.281 1.019-5.133 1.928l-9.258 4.548 10.387 21.146 9.259-4.549zm-10.522-27.456c2.21-1.085 4.388-1.784 6.622-2.066 2.174-.253 4.316-.119 6.306.46 2.02.64 3.947 1.695 5.692 3.285s3.307 3.714 4.628 6.402c1.32 2.688 2.017 5.163 2.209 7.516.192 2.352-.122 4.582-.88 6.512-.728 1.989-1.93 3.766-3.46 5.333-1.588 1.596-3.473 2.892-5.683 3.978l-19.83 9.741-.529-1.075c.896-.44 1.198-1.033.846-1.75l-13.322-27.118c-.352-.717-1.006-.84-1.902-.4l-.528-1.076 19.831-9.742zM276.433 104.021c-.297-.812-1.06-.958-2.372-.477l-15.246 5.59 2.29 6.248 9.623-3.528c.688-.252 1.227-.52 1.494-.76.29-.177.362-.558.202-.995l1.125-.413 2.428 6.624-1.25.458c-.035-.483-.337-.727-.82-.692-.46.098-1.171.288-1.983.585l-9.123 3.345 2.703 7.373 15.996-5.864c.5-.184.891-.469 1.112-.833.244-.302.317-.683.18-1.058l1.124-.413 2.405 6.561-1.125.412c-.137-.374-.393-.493-.728-.441-.336.052-.773.212-1.273.396l-22.932 8.406-.412-1.124a.953.953 0 00.533-.48c.142-.193.175-.489.06-.801l-8.566-23.37a1.102 1.102 0 00-.588-.634 1.284 1.284 0 00-.693.041l-.413-1.125 22.182-8.131c1.312-.482 1.8-1.086 1.525-1.835l1.124-.413 2.543 6.936-1.125.412zM306.873 101.54c1.222-.326 2.247-.875 2.963-1.547.716-.673.863-1.676.503-3.027-.36-1.35-.985-2.148-1.975-2.504-.973-.292-2.135-.258-3.357.067l-10.804 2.877 1.866 7.01 10.804-2.877zm-19.546-5.127c-.171-.643-.771-.828-1.864-.537l-.309-1.157 18.715-4.983c3.472-.924 6.216-.966 8.342-.224 2.062.76 3.48 2.724 4.302 5.81.822 3.087.55 5.432-.877 7.052-1.476 1.701-3.894 2.965-7.367 3.89l-10.932 2.91 2.568 9.647c.171.643.707.845 1.607.605l.309 1.158-9.132 2.431-.309-1.157c1.094-.291 1.522-.75 1.351-1.393l-6.404-24.052zM343.46 98.99l-7.197-10.113-2.774 11.817 9.97-1.704zm-20.05 14.634c.514-.156.863-.485 1.178-1.012.26-.45.39-.877.53-1.238l6.132-22.99c.162-.636.269-1.194.399-1.621.075-.35.073-.755.017-1.083-.045-.263-.144-.448-.22-.503l-.428-.13-.202-1.18 9.906-1.693.201 1.181-.36.264c-.185.1-.228.242-.172.57.045.262.232.568.485.862.264.36.539.786.814 1.211l14.438 20.488c.264.36.572.578.868.73.296.152.58.238.92.248l.201 1.18-9.315 1.592-.168-.984c.197-.033.448-.144.688-.32.175-.165.26-.45.205-.777a2.392 2.392 0 00-.255-.7c-.099-.185-.286-.49-.473-.796l-2.41-3.437-14.039 2.399-1.231 3.856c-.141.362-.216.712-.237.986-.075.35-.096.624-.062.82.056.328.232.568.44.6.208.032.547.042.94-.025l.202 1.18-8.79 1.502-.202-1.18zM379.584 90.53c4.314-.319 6.4-1.875 6.199-4.596-.084-1.128-.678-1.952-1.723-2.542-1.106-.518-2.79-.727-5.047-.56l-10.486.777.57 7.698 10.487-.776zm-.802-12.62c3.916-.29 7.085.143 9.368 1.242 2.289 1.165 3.584 3.338 3.815 6.458.089 1.194-.032 2.27-.428 3.234-.395.964-.867 1.8-1.548 2.517-.676.785-1.5 1.38-2.333 1.842-.828.528-1.733.929-2.647 1.197l7.207 9.009c.366.44.794.808 1.273.973.418.236.897.4 1.372.499l.088 1.195-10.154.752-.089-1.195c.598-.044.849-.263.819-.661-.034-.465-.415-1.104-1.148-1.984l-5.823-7.443-9.225.684.703 9.49c.024.332.177.588.518.696.28.18.55.226.816.206l.089 1.195-8.827.654-.089-1.195c.797-.059 1.17-.42 1.121-1.084l-1.838-24.822c-.05-.663-.472-.966-1.269-.907l-.088-1.194 18.317-1.357zM408.891 105.074c.2.003.467-.059.67-.255.202-.13.34-.394.345-.726l.374-22.158-8.65-.146a1.878 1.878 0 00-1.003.249c-.336.194-.473.458-.48.857l-1.198-.02.13-7.652 1.197.02c-.01.599.115 1.067.445 1.272.329.205.66.344.992.35l23.689.4c.332.005.667-.123 1.003-.317.337-.194.477-.657.488-1.256l1.197.02-.129 7.652-1.198-.02c.007-.399-.121-.667-.45-.873a1.878 1.878 0 00-.994-.283l-8.65-.146-.375 22.158c-.01.666.383 1.005 1.181 1.019l-.02 1.198-8.584-.145.02-1.198zM434.3 105.672c.205-.043.411-.086.625-.195.148-.116.253-.439.307-.902l2.847-24.19c.07-.595.05-1 0-1.14-.117-.147-.307-.237-.638-.275l.14-1.19 9.188 1.081-.14 1.19c-.463-.055-.685.12-.731.517-.024.198.019.404.186.692.094.346.245.766.513 1.333l6.314 15.82 9.872-13.848c.392-.49.645-.93.882-1.236.237-.307.327-.498.342-.63.047-.397-.128-.618-.458-.657l.14-1.19 9.319 1.097-.14 1.19c-.198-.024-.404.019-.61.062-.28.1-.378.357-.416.688l-2.925 24.851c-.039.33-.004.603.245.766.175.222.365.311.564.335l-.14 1.19-7.667-.903.14-1.19c.925.11 1.36-.175 1.306-.851l2.186-18.573-.132-.015-13.679 19.431-.528-.062-8.2-22.006.067.008-.133-.016-2.185 18.573c-.078.66.28 1.038 1.007 1.124l-.14 1.19-7.469-.88.14-1.19zM509.372 96.079c.191-.844-.37-1.38-1.733-1.689l-15.838-3.582-1.468 6.491 9.996 2.261c.714.162 1.313.229 1.667.172.339.009.607-.272.71-.726l1.168.264-1.556 6.88-1.298-.293c.232-.425.111-.793-.314-1.026a15.167 15.167 0 00-1.983-.585l-9.477-2.143-1.732 7.66 16.617 3.757c.52.118 1.003.09 1.386-.095.369-.122.637-.402.725-.792l1.169.265-1.542 6.815-1.168-.264c.088-.39-.063-.628-.373-.767-.31-.138-.764-.24-1.283-.358l-23.823-5.388.265-1.168c.194.044.469.037.707-.113.225-.086.413-.316.487-.64l5.49-24.278a1.102 1.102 0 00-.148-.852 1.284 1.284 0 00-.605-.341l.264-1.169 23.043 5.212c1.364.308 2.1.066 2.277-.713l1.168.264-1.63 7.205-1.168-.264zM513.885 119.831c.757.254 1.242.066 1.453-.565l7.917-23.597c.211-.631-.061-1.074-.819-1.328l.381-1.136 9.275 3.112-.38 1.136c-.337-.043-.485-.022-.548.167-.064.19.188.905.816 2.17l9.767 21.105 5.736-17.099c.212-.63-.124-1.094-.944-1.37l.38-1.135 7.698 2.582-.38 1.136c-.758-.254-1.242-.065-1.454.565l-7.916 23.598c-.212.63.06 1.073.818 1.327l-.381 1.136-8.202-2.752.38-1.135c.316.105.485.022.548-.168.064-.189-.041-.505-.271-1.073-.294-.59-.587-1.18-.902-1.917l-10.06-21.907-6.159 18.361c-.211.63.125 1.095 1.008 1.39l-.381 1.137-7.76-2.604.38-1.136zM560.678 137c.182.08.452.129.716.028.236-.04.466-.229.602-.533l9.043-20.232-7.899-3.53a1.878 1.878 0 00-1.02-.165c-.385.047-.615.236-.778.6l-1.093-.489 3.122-6.987 1.094.489c-.244.547-.313 1.026-.09 1.345.222.318.471.575.775.71l21.63 9.668c.304.136.662.15 1.047.104.385-.047.697-.418.941-.965l1.094.489-3.123 6.987-1.094-.489c.163-.364.15-.661-.072-.98a1.878 1.878 0 00-.803-.65l-7.898-3.53-9.043 20.232c-.272.608-.043 1.075.686 1.4l-.488 1.094-7.838-3.503.489-1.094zM97.085 747.003c-.455.485-.391 1 .24 1.592l-.819.873-6.357-5.957.819-.873c.534.5 1.004.485 1.458 0l17.007-18.148c.454-.486.44-.956-.095-1.456l.819-.873 6.357 5.957-.819.873c-.63-.591-1.15-.621-1.604-.136l-7.412 7.91c1.98.123 3.96.247 5.989.416 2.028.17 3.869.345 5.518.433 1.65.087 3.063.136 4.194.193 1.13.057 1.695.04 1.831-.107.137-.145.176-.382.121-.615a1.734 1.734 0 00-.397-.646l.682-.728 8.006 7.503-.818.874c-.525-.219-1.425-.425-2.793-.521l-14.242-1.043-1.246 16.695c-.066.849-.084 1.743-.102 2.638-.064.943.149 1.689.45 2.243l-.82.874-7.18-6.73.818-.873c.34.318.624.403.806.209.137-.146.225-.337.306-.716.082-.379.11-.991.127-1.886l.853-12.872-6.605-.538-5.092 5.435zM119.713 769.015c.631.488 1.15.47 1.557-.057l15.22-19.67c.406-.527.294-1.034-.337-1.522l.733-.947 7.731 5.982-.732.947c-.304-.151-.45-.18-.572-.022-.122.158-.12.916.058 2.315l2.287 23.126 11.028-14.254c.407-.525.242-1.073-.441-1.602l.732-.947 6.417 4.964-.733.947c-.63-.488-1.15-.47-1.557.057l-15.219 19.67c-.407.527-.295 1.034.337 1.522l-.733.947-6.837-5.29.732-.947c.263.203.45.18.572.022.122-.158.127-.49.096-1.103-.083-.653-.167-1.306-.221-2.105l-2.301-23.977-11.842 15.306c-.407.526-.242 1.073.494 1.643l-.732.947-6.47-5.005.733-.947zM156.831 796.544c.612.402 1.037.602 1.369.581.295.035.553-.114.735-.392l13.66-20.784a.948.948 0 00.104-.886c-.149-.258-.501-.569-1.113-.97l.658-1 8.447 5.55-.658 1c-1.055-.693-1.738-.744-2.103-.188l-13.66 20.784c-.365.556-.048 1.162 1.008 1.856l-.657 1-8.447-5.55.657-1.001zM207.492 805.484l-.47-.795c.285-.374.44-.516.473-.574.194-.349.189-.885-.107-1.583-.329-.64-.74-1.403-1.36-2.205-.618-.802-1.386-1.61-2.243-2.393-.949-.758-1.93-1.457-2.975-2.04a20.782 20.782 0 00-4.324-1.803c-1.472-.364-2.867-.456-4.243-.31-1.409.204-2.682.712-3.878 1.492-1.197.78-2.264 2.011-3.171 3.638-.907 1.626-1.394 3.182-1.338 4.583.023 1.46.318 2.843.949 4.032a10.096 10.096 0 002.41 3.324c1.058.971 2.122 1.793 3.226 2.408a35.639 35.639 0 004.956 2.308 15.33 15.33 0 004.81.932l2.041-3.66-5.982-3.336c-.406-.226-.845-.395-1.233-.383-.387.013-.814.231-1.131.664l-1.045-.583 3.336-5.982 1.045.583c-.168.439-.066.8.16 1.079.226.278.6.563 1.006.79l11.384 6.348-.583 1.045c-.446-.02-.776.025-.989.134-.213.11-.433.368-.66.774l-3.077 5.518c-.195.348-.266.613-.215.794-.039.207.129.452.438.853l-.389.697c-.478.038-1.162.037-2.144.022a31.876 31.876 0 01-3.526-.367c-1.388-.241-2.886-.696-4.526-1.306-1.672-.552-3.42-1.375-5.28-2.411-2.497-1.393-4.6-2.947-6.308-4.661-1.742-1.657-2.998-3.5-3.777-5.38-.836-1.914-1.162-3.923-.952-5.938.12-1.99.75-4.074 1.883-6.107 1.134-2.033 2.577-3.665 4.239-4.87 1.571-1.179 3.452-1.957 5.552-2.31 2.01-.325 4.237-.225 6.626.27 2.357.553 4.784 1.526 7.281 2.919 1.51.842 2.782 1.703 3.781 2.641 1 .938 1.825 1.78 2.534 2.556.71.776 1.303 1.487 1.663 2.07.361.581.703.924.993 1.086.29.162.555.234.762.273.207.039.446.02.775-.025l.503.737-6.9 4.452zM220.634 831.287c-.133.305-.117.602.013.804.103.262.26.403.504.509l-.477 1.097-7.685-3.34.478-1.098c.244.106.453.125.777.048.175-.07.403-.26.535-.565l9.917-22.809c.132-.305.116-.602.074-.838-.191-.228-.348-.368-.592-.474l.478-1.098 7.684 3.34-.477 1.099a1.123 1.123 0 00-.69-.083c-.262.104-.49.295-.623.6l-3.738 8.599 16.344 7.105 3.738-8.599c.133-.304.178-.575.074-.837a1.34 1.34 0 00-.59-.475l.476-1.098 7.685 3.341-.478 1.098a1.123 1.123 0 00-.689-.082c-.263.103-.49.294-.623.599l-9.916 22.808c-.133.305-.117.602.013.804.103.262.26.403.504.509l-.478 1.098-7.684-3.341.477-1.098c.244.106.515.151.777.048.236-.043.403-.26.536-.565l4.004-9.209-16.345-7.106-4.003 9.21zM262.063 848.82c.19.062.463.083.715-.044.231-.063.441-.274.546-.59l6.961-21.021-8.207-2.718a1.877 1.877 0 00-1.03-.061c-.378.085-.588.295-.714.674l-1.136-.376 2.404-7.26 1.136.376c-.188.568-.208 1.052.045 1.346.253.294.527.525.843.63l22.473 7.442c.316.104.673.083 1.052-.002.378-.085.65-.485.839-1.053l1.136.376-2.404 7.26-1.136-.377c.125-.378.082-.673-.17-.967a1.877 1.877 0 00-.864-.566l-8.206-2.717-6.962 21.021c-.21.632.065 1.073.823 1.324l-.377 1.136-8.143-2.697.376-1.136zM292.401 848.824l-.346 1.147c-.157.647.09 1.322.805 2.043.7.785 1.559 1.472 2.644 2.077 1.005.655 2.09 1.26 3.206 1.735 1.052.46 1.925.809 2.572.966.581.14 1.373.264 2.293.418a9.595 9.595 0 002.726.045c.903-.055 1.773-.254 2.48-.63.69-.312 1.17-.88 1.374-1.72.235-.97-.125-1.741-1.05-2.444-.989-.719-2.203-1.355-3.756-2.005-1.569-.586-3.187-1.251-4.998-1.964a22.213 22.213 0 01-4.889-2.416c-1.49-.909-2.595-1.998-3.378-3.282-.864-1.236-1.037-2.783-.583-4.657.674-2.78 2.37-4.695 5.023-5.763 2.654-1.067 6.089-1.124 10.225-.122 2.004.485 3.717 1.038 5.126 1.721 1.343.668 2.477 1.353 3.353 1.976.875.622 1.637 1.15 2.205 1.629.503.464.909.768 1.232.846.323.078.597.076.822-.006.21-.018.435-.1.725-.167l.539.884-4.704 5.292-1.07-.67c-.001-.274.061-.533.06-.807-.003-.274-.134-.58-.394-.916-.668-.915-1.869-1.89-3.553-2.846-1.685-.955-3.625-1.7-5.887-2.247-.84-.204-1.697-.343-2.488-.466-.807-.059-1.565-.037-2.209.08-.644.118-1.24.316-1.657.625a2.706 2.706 0 00-.893 1.426c-.234.97.126 1.741 1.13 2.395.925.703 2.14 1.34 3.708 1.925 1.553.65 3.171 1.316 4.998 1.964 1.812.712 3.398 1.507 4.873 2.48 1.475.974 2.58 2.062 3.412 3.427.768 1.35.925 2.961.47 4.836-.454 1.874-1.282 3.315-2.484 4.324-1.267.993-2.65 1.616-4.18 1.998-1.529.382-3.19.459-4.852.261-1.728-.213-3.31-.46-4.797-.82-1.486-.36-2.877-.834-4.22-1.502a27.854 27.854 0 01-3.708-1.925c-1.15-.62-2.04-1.178-2.787-1.77-.762-.526-1.183-.765-1.377-.812a.948.948 0 00-.869.2l-.748-.866 4.727-6.518 1.15.62zM363.784 847.014c-1.39-.138-2.799-.078-4.168.253a11.448 11.448 0 00-3.838 1.623 9.133 9.133 0 00-2.83 2.927c-.787 1.191-1.256 2.548-1.414 4.136-.158 1.588.035 3.01.571 4.334.47 1.316 1.232 2.394 2.205 3.36.967 1.032 2.099 1.746 3.442 2.347 1.278.595 2.641.998 4.03 1.136 1.39.139 2.806.012 4.242-.313 1.37-.331 2.62-.808 3.77-1.63 1.145-.754 2.104-1.661 2.891-2.853.72-1.198 1.19-2.555 1.348-4.143.158-1.588-.035-3.01-.505-4.327a10.15 10.15 0 00-2.265-3.433 11.858 11.858 0 00-3.376-2.34 13.13 13.13 0 00-4.103-1.077zm.487-4.897a25.93 25.93 0 016.79 1.611c2.058.806 3.82 1.917 5.282 3.332a13.61 13.61 0 013.311 5.008c.736 2.011.982 4.24.731 6.755-.25 2.515-.93 4.653-2.041 6.413a13.245 13.245 0 01-4.24 4.323c-1.713 1.1-3.651 1.775-5.821 2.094-2.243.378-4.52.42-6.968.176-2.448-.244-4.672-.732-6.73-1.539-2.131-.746-3.898-1.79-5.361-3.206a13.245 13.245 0 01-3.305-5.074c-.742-1.945-.988-4.175-.738-6.69.25-2.514.93-4.651 2.048-6.478a13.61 13.61 0 014.233-4.257c1.713-1.1 3.658-1.841 5.901-2.22a25.073 25.073 0 016.908-.248zM416.242 850.505c.002-.2-.129-.466-.46-.668-.33-.202-.862-.273-1.594-.28l-18.02-.144-.057 7.049 11.704.094c.731.006 1.197-.057 1.398-.255.2-.131.27-.397.339-.729l1.196.01-.056 6.982-1.197-.01c-.063-.332-.128-.599-.326-.8-.198-.201-.663-.271-1.394-.277l-11.704-.094-.081 10.174c-.003.332.128.6.46.735.33.202.662.271 1.061.275l-.01 1.197-9.176-.074.01-1.197c.864.007 1.266-.322 1.27-.987l.2-24.87c.006-.666-.457-1.002-1.388-1.01l.01-1.196 25.801.207c.731.006 1.265-.123 1.599-.32.334-.196.47-.528.472-.86l1.197.01-.057 7.048-1.197-.01zM454.915 869.845a.953.953 0 00.628-.345c.181-.156.281-.436.241-.766l-2.68-21.982-8.581 1.046c-.33.04-.652.147-.958.385-.306.238-.406.519-.358.915l-1.188.144-.926-7.59 1.189-.146c.072.594.26 1.04.615 1.198.354.158.7.25 1.03.21l23.5-2.866c.33-.04.644-.212.95-.45.306-.239.382-.717.31-1.31l1.187-.146.926 7.591-1.188.145c-.049-.396-.213-.644-.567-.801a1.877 1.877 0 00-1.022-.144l-8.582 1.046 2.68 21.982c.08.66.517.942 1.31.846l.144 1.188-8.516 1.038-.144-1.188zM489.6 863.5c.066.326.249.56.47.652.235.157.444.183.705.13l.235 1.174-8.216 1.646-.235-1.174c.26-.052.443-.156.665-.404.104-.157.182-.444.117-.77l-4.886-24.386a1.426 1.426 0 00-.417-.73c-.287-.078-.496-.104-.757-.052l-.235-1.174 8.216-1.646.235 1.174c-.26.052-.443.156-.613.326a1.101 1.101 0 00-.17.848l1.843 9.194 17.475-3.502-1.842-9.193c-.066-.326-.183-.574-.418-.73a1.34 1.34 0 00-.756-.052l-.236-1.174 8.216-1.646.235 1.174c-.26.052-.443.156-.613.326a1.101 1.101 0 00-.169.848l4.886 24.386c.065.326.248.56.47.652.235.156.443.182.704.13l.235 1.174-8.216 1.646-.235-1.174c.261-.052.509-.17.665-.404.17-.17.183-.444.117-.77l-1.972-9.846-17.475 3.501 1.973 9.846zM545.046 827.293c-.259-.825-1.013-1.006-2.345-.588l-15.481 4.86 1.991 6.345 9.771-3.068c.698-.219 1.25-.461 1.527-.688.297-.163.388-.54.248-.984l1.142-.359 2.112 6.726-1.27.398c-.012-.484-.302-.741-.786-.729-.464.076-1.181.232-2.006.49l-9.264 2.91 2.35 7.486 16.243-5.1c.508-.159.912-.425 1.15-.779.257-.29.348-.666.228-1.047l1.142-.359 2.092 6.662-1.142.359c-.12-.38-.37-.512-.707-.475-.337.036-.781.175-1.289.335l-23.285 7.31-.358-1.142a.953.953 0 00.555-.453c.15-.187.197-.48.098-.798l-7.45-23.729a1.101 1.101 0 00-.556-.662 1.283 1.283 0 00-.694.01l-.359-1.143 22.524-7.071c1.332-.418 1.847-.998 1.608-1.76l1.142-.358 2.21 7.043-1.141.358zM583.223 836.036c.72-.345.936-.817.649-1.417l-10.741-22.432c-.288-.6-.791-.727-1.51-.383l-.518-1.08 8.817-4.221.517 1.08c-.271.203-.362.32-.276.5.086.18.764.52 2.095.988l21.69 8.342-7.784-16.254c-.287-.6-.85-.699-1.63-.326l-.517-1.08 7.317-3.503.517 1.08c-.72.344-.936.816-.648 1.416l10.74 22.432c.288.6.791.727 1.511.383l.517 1.08-7.797 3.733-.517-1.08c.3-.143.362-.32.276-.5-.086-.18-.38-.334-.942-.582-.62-.219-1.241-.437-1.98-.747l-22.456-8.712 8.357 17.454c.287.6.85.698 1.69.296l.517 1.08-7.377 3.532-.517-1.08zM624.868 787.695c-1.194.726-2.283 1.622-3.178 2.71a11.448 11.448 0 00-2.088 3.605 9.133 9.133 0 00-.501 4.04c.088 1.426.53 2.792 1.359 4.156.83 1.363 1.839 2.384 3.063 3.118 1.168.768 2.425 1.172 3.783 1.357 1.393.243 2.727.133 4.162-.195 1.378-.294 2.71-.792 3.903-1.517 1.193-.726 2.248-1.679 3.2-2.802.894-1.089 1.606-2.222 2.031-3.57.46-1.292.68-2.593.592-4.018-.145-1.391-.586-2.757-1.415-4.12-.83-1.364-1.84-2.385-3.007-3.153a10.15 10.15 0 00-3.874-1.38 11.858 11.858 0 00-4.105.16 13.13 13.13 0 00-3.925 1.61zm-2.557-4.204a25.93 25.93 0 016.393-2.798c2.13-.594 4.204-.766 6.224-.516 2.02.25 3.894.9 5.657 2.008 1.798 1.164 3.336 2.797 4.648 4.957 1.313 2.159 2.056 4.276 2.228 6.35a13.245 13.245 0 01-.786 6.004c-.707 1.909-1.849 3.615-3.39 5.175-1.565 1.651-3.359 3.053-5.46 4.332-2.103 1.278-4.173 2.226-6.303 2.82-2.151.685-4.191.914-6.211.664-2.02-.25-3.895-.9-5.692-2.065-1.763-1.107-3.3-2.74-4.614-4.9-1.313-2.159-2.055-4.276-2.262-6.407a13.61 13.61 0 01.82-5.947c.708-1.909 1.815-3.672 3.38-5.323a25.073 25.073 0 015.368-4.354zM665.328 769.97c3.462-2.587 4.384-5.02 2.752-7.203-.676-.906-1.62-1.28-2.817-1.216-1.21.158-2.742.887-4.553 2.24l-8.417 6.29 4.618 6.179 8.417-6.29zm-7.457-10.2c3.143-2.35 6.045-3.687 8.56-3.989 2.553-.248 4.812.887 6.683 3.39.717.96 1.194 1.931 1.378 2.956.184 1.024.236 1.982.048 2.952-.148 1.024-.522 1.968-.976 2.805-.414.89-.96 1.714-1.587 2.43l10.913 3.718c.545.174 1.103.254 1.595.136a4.8 4.8 0 001.424-.317l.717.959-8.15 6.09-.717-.959c.479-.358.573-.677.334-.997-.279-.373-.943-.706-2.033-1.054l-8.906-3.142-7.404 5.533 5.692 7.618c.199.266.465.4.81.307.333.001.586-.105.8-.264l.716.959-7.086 5.294-.716-.96c.64-.477.76-.982.362-1.515l-14.887-19.923c-.398-.533-.917-.56-1.556-.083l-.717-.959 14.703-10.986zM698.657 762.706a.953.953 0 00.319-.641c.06-.232-.017-.52-.239-.767l-14.736-16.53-6.453 5.754a1.877 1.877 0 00-.568.862c-.115.37-.037.657.228.955l-.893.797-5.09-5.709.894-.796c.398.447.807.705 1.188.633.381-.072.718-.194.966-.416l17.67-15.754c.249-.221.409-.542.524-.912.115-.37-.095-.806-.493-1.253l.893-.797 5.09 5.709-.894.796c-.266-.298-.542-.408-.923-.335-.38.072-.673.244-.921.465l-6.453 5.753 14.737 16.53c.442.495.961.478 1.557-.053l.796.894-6.403 5.708-.796-.893zM723.745 737.648c.243.227.528.312.761.257.282-.01.467-.11.649-.304l.874.818-5.726 6.118-.874-.818c.182-.194.27-.385.306-.716-.006-.188-.11-.467-.352-.694l-18.16-16.994a1.426 1.426 0 00-.764-.351c-.279.103-.464.203-.645.397l-.874-.817 5.725-6.118.874.818c-.182.194-.27.385-.309.622.01.282.113.56.356.788l6.846 6.407 12.178-13.013-6.846-6.407c-.243-.227-.483-.36-.765-.35a1.34 1.34 0 00-.645.397l-.874-.818 5.725-6.118.874.818c-.182.194-.27.385-.309.622.01.282.113.56.356.788l18.16 16.994c.242.228.527.312.76.258.282-.01.467-.11.649-.304l.874.818-5.725 6.117-.874-.817c.181-.195.315-.434.305-.716.04-.237-.11-.467-.352-.694l-7.332-6.862-12.178 13.013 7.332 6.861zM288.144 287.296c-2.19-1.331-5.52.391-5.698 2.948 1.667 1.359 4.654.15 4.905-1.986l.793-.962zM546.829 472.98c3.317-.146 4.46-5.451 1.778-7.409a22.212 22.212 0 00-2.07 6.73l.292.679zM464.214 298.32c-1.272-2.42-4.729-3.366-7.056-1.93 1.716 2.445 4.957 3.712 7.877 3.079l-.821-1.149zM344.446 681.229c1.292 2.484 4.903 3.385 7.21 1.798-1.853-2.36-5.12-3.513-8.043-2.837l.833 1.039zM202.624 348.007c2.938-1.425 4.445-5.252 3.267-8.298-2.253 1.319-3.665 3.954-3.517 6.56l.25 1.738zM633.579 439.582c-.261 4.771 1.216 9.618 4.092 13.434 1.131-4.774-.491-10.101-4.092-13.434M340.148 676.448a13.968 13.968 0 00-8.029-3.902c.62 4.614 5.772 8.054 10.272 6.86.019-1.058-.637-2.097-1.6-2.536l-.643-.422zM170.214 455.277l.382 9.504c1.646-.38 2.028-2.515 2.068-4.203l.303-12.758c-2.179 1.197-3.29 4.044-2.497 6.401l-.256 1.056zM535.477 523.118l-4.284-4.594c-1.908 1.487-2.38 4.514-1.013 6.51 1.367 1.996 4.36 2.65 6.436 1.407 1.096-.67.866-2.654-.355-3.054l-.784-.269zM461.634 402.456a199.854 199.854 0 00-12.267 7.885c5.261 2.317 12.19-2.137 12.267-7.885M387.898 788.868a75.617 75.617 0 0010.073-10.192c-5.63-1.996-12.135 4.587-10.073 10.192M193.171 521.846a51.827 51.827 0 00-5.629-15.585c-.672-1.208-1.678-2.548-3.057-2.448.486 6.816 3.659 13.404 8.686 18.033M488.647 402.5c-2.896-.734-6.022 2.294-5.382 5.211.642 2.917 4.75 4.356 7.07 2.476-.05-1.007-.997-1.882-2.004-1.856l4.17-6.035-2.606-.712-1.248.916zM393.596 787.474l-2.386 1.771c.891.11 1.033 1.664.176 1.932 2.822 1.342 7.048 2.233 8.345-.61 1.083-2.373-.603-6.341 1.895-7.092-2.792-1.527-6.826.641-7.093 3.812l-.937.187zM351.881 684.276a22.704 22.704 0 0013.476 6.337c1.455.149 3.263-.045 3.852-1.385-4.807-3.868-11.203-5.696-17.328-4.952M399.975 487.865a7.033 7.033 0 001.334-5.9c-4.744-.898-9.875 2.625-10.744 7.374 2.87 1.005 6.203.58 8.728-1.116l.682-.358zM350.801 312.177c2.549-6.105 2.4-13.282-.399-19.276-3.257 5.892-3.099 13.523.399 19.276M489.613 452.979a49.848 49.848 0 0110.741-12.684c-3.371-1.16-7.402-.051-9.706 2.67-2.305 2.721-2.734 6.879-1.035 10.014M281.783 645.518c3.196-2.856 6.602-6.095 7.134-10.349a92.749 92.749 0 00-19.84 17.988c1.705 1.45 4.246-.08 5.916-1.573 2.264-2.021 4.527-4.045 6.79-6.066M467.647 500.027c-.216-.852-.881-1.504-1.518-2.109l-3.801-3.618c-1.341-1.275-3.138-2.65-4.855-1.96-1.487.599-2.011 2.565-1.54 4.099.471 1.533 1.656 2.725 2.799 3.85 1.448 1.425 3.048 2.926 5.062 3.186 2.015.26 4.354-1.479 3.853-3.448M404.578 763.468a129.79 129.79 0 00-.944 16.095c.007 1.903 1.635 4.582 3.024 3.28 2.366-6.743 2.607-14.216.677-21.097l-2.757 1.722M404.521 746.15c-.053 1.206-.282 2.509.335 3.547.632 1.062 2.145 1.485 3.236.903a333.566 333.566 0 01-.171-23.435c-3.615.266-5.468 4.67-5.161 8.282.307 3.612 1.92 7.081 1.761 10.703M414.32 655.138c1.858 2.57 6.596 1.925 7.698-1.049 1.03-2.775-.734-6.406 1.261-8.592 1.443-1.581 3.93-1.33 6.051-1.618 2.121-.289 4.539-2.291 3.497-4.161-4.536 1.014-10.413-1.459-13.283 2.196-1.585 2.018-1.212 4.87-1.305 7.435-.093 2.564-1.356 5.658-3.919 5.789M547.882 310.719l2.381 3.364c3.6-3.353 3.641-9.782.085-13.182a22.004 22.004 0 00-2.283 8.043c-3.73-.3-7.547 1.725-9.391 4.981-1.844 3.255-1.616 7.57.559 10.614a47.644 47.644 0 018.649-13.82M243.505 326.452l16.734-8.986c-1.939-2.362-5.351-3.153-8.346-2.546-2.996.608-5.622 2.411-7.864 4.489a32.905 32.905 0 00-6.85 9.01c2.234.185 4.352-.907 6.326-1.967M267.908 441.446c-6.573 3.802-9.024 12.246-8.678 19.83.17 3.704 1.289 7.959 4.691 9.43 2.699-2.455.154-6.755-.376-10.365-.952-6.489 5.423-12.423 4.363-18.895M313.599 468.785c3.708-2.334 5.663-6.779 6.062-11.142.397-4.363-.542-8.726-1.477-13.006-.308-1.409-.825-3.055-2.205-3.469-2.713 1.443-3.105 5.207-2.464 8.213.641 3.006 1.966 6.011 1.408 9.033-.665 3.608-3.799 7.663-1.324 10.371M331.924 374.512c-.905-1.185-2.786-2.386-3.621-1.151-.473 3.193 1.404 6.212 3.198 8.895-4.946 2.804-9.904-6.867-15.306-5.095 1.86 4.716 6.076 8.434 10.987 9.69 2.376.608 5.215.537 6.895-1.25 2.819-2.999.346-7.818-2.153-11.089M307.344 420.407c-.501-.542-1.209-.835-1.897-1.102a69.723 69.723 0 00-20.591-4.55c2.926 4.846 8.427 7.401 13.609 9.682 2.105.927 4.421 1.872 6.638 1.262 2.218-.609 3.803-3.605 2.241-5.292M296.292 498.133c4.845-.371 7.126-6.87 5.195-11.328-1.932-4.458-6.39-7.19-10.59-9.637l-2.684-1.564c.106 8.235 10.932 14.803 8.079 22.529M635.25 471.833l-10.13 32.842c-.578 1.878-1.066 4.184.304 5.593a146.023 146.023 0 0013.283-43.553c-1.98.792-2.828 3.079-3.457 5.118M458.539 663.424c-3.258 2.781-9.197.895-10.254-3.256-.62-2.436-3.772-3.456-6.168-2.691-2.395.764-4.172 2.74-5.827 4.633-1.355 1.549-2.732 3.918-1.356 5.45 1.971.98 3.79-1.451 5.041-3.264 1.252-1.812 4.618-2.967 5.14-.827.756 3.097 3.454 5.628 6.594 6.184 3.139.556 6.543-.894 8.317-3.542l-1.487-2.687M292.218 280.703a79.211 79.211 0 01-27.748-7.96c-1.766-.882-4.162-1.732-5.475-.258 6.251 8.572 18.119 10.357 28.7 11.13 2.148.158 5.282-.896 4.523-2.912M391.603 534.895c2.559-.514 3.692-3.624 3.547-6.229-.145-2.606-1.085-5.19-.699-7.771.453-3.024 2.677-5.631 2.799-8.687-6.094 2.492-10.55 8.588-11.074 15.152-.286 3.587 1.899 8.243 5.427 7.535M300.623 394.282l.9 2.686a11.636 11.636 0 006.733 1.977c3.793-.088 7.769-2.606 8.307-6.361.538-3.756-3.904-7.576-7.174-5.654a10.195 10.195 0 003.145 6.22c-3.239 1.545-7.314 1.155-10.201-.976-2.455-1.812-6.061-1.221-8.539.559-2.479 1.78-4.088 4.496-5.626 7.131a55.968 55.968 0 0012.455-5.582M359.389 422.956l14.396 12.23c2.6 2.209 5.297 4.473 8.558 5.48 3.259 1.007 7.26.435 9.343-2.269-10.32-1.278-18.54-8.931-25.982-16.195 1.263.102 2.476-1.075 2.411-2.341-.064-1.266-1.389-2.313-2.636-2.084a22.054 22.054 0 01-6.09 5.179M344.689 582.751l2.186 3.1a31.897 31.897 0 008.868-15.332c.259-1.053.413-2.31-.339-3.09-1.057-1.1-2.904-.36-4.152.517-6.18 4.343-10.74 10.937-12.622 18.252 2.442.072 4.872-1.311 6.059-3.447M400.815 713.955c3.791.687 4.094 5.968 3.439 9.765 1.297-.369 2.768-.717 3.928-.031l.216-25.386c.011-1.374-.398-3.215-1.772-3.243-2.864 1.301-2.205 5.45-1.595 8.536.61 3.087-.849 7.64-3.885 6.813l1.073-7.334c-2.774-.216-5.516 2.013-5.873 4.773-.356 2.759 1.73 5.612 4.469 6.107M388.019 696.451c-1.792 1.687-2.094 4.728-.672 6.735 2.792 1.316 5.222-2.705 4.964-5.78-.257-3.075-1.472-6.525.372-9 2.454-3.295-1.924-7.814-1.164-11.852.733-3.904 5.866-5.625 6.926-9.453-2.834-1.458-6.469.337-8.135 3.054-1.666 2.717-1.874 6.051-2.038 9.234l-.253 4.913c-.208 4.048-.416 8.116 0 12.149M188.553 392.16l-15.29 44.498c-.822 2.39-1.607 5.17-.272 7.315a374.987 374.987 0 0018.986-53.786c-.867-1.424-2.882.397-3.424 1.972"}),l("path",{d:"M555.848 476.488c.868-4.228 2.731-8.265 2.981-12.573.25-4.309-1.794-9.257-5.972-10.337-1.065-.275-2.519-.044-2.763 1.028 4.48 3.775 4.029 10.76 2.542 16.427-1.486 5.666-3.593 11.807-1.217 17.162.938 2.114 3.439 4.089 5.391 2.847a27.643 27.643 0 01-.962-14.554M181.122 505.28c-5.857-3.845-4.54-15.221-11.383-16.727a425.177 425.177 0 0024.595 51.391c2.048-.061 1.86-3.192.975-5.04l-14.187-29.624M321.432 342.342c-1.436.716-3.05-.563-4.03-1.834a23.325 23.325 0 01-3.22-5.674 19.842 19.842 0 017.25 7.508m-.244-8.649l-7.291-7.274c-.59-.59-1.204-1.195-1.979-1.507-2.855-1.151-5.641 2.55-5.139 5.588.501 3.037 2.827 5.382 4.576 7.916 1.633 2.366 2.85 5.066 4.937 7.043 2.087 1.977 5.484 3.026 7.84 1.379 2.113-1.477 2.527-4.577 1.643-6.999-.883-2.422-2.762-4.325-4.587-6.146M436.375 607.867c-1.093 4.092-1.407 8.346-1.716 12.57-.156 2.126-.267 4.431.916 6.204 5.902-3.972 10.375-10.022 12.445-16.83.988-3.252 1.065-7.524-1.867-9.244-2.039-1.195-4.787-.494-6.524 1.109-1.737 1.602-2.645 3.907-3.254 6.191M465.423 655.365c.737-.78 2.331.184 1.983 1.198-.347 1.015-2.197.799-2.301-.268l.318-.93zm13.446-4.622c-.483-.663-1.094-1.228-1.761-1.705-3.293-2.359-8.058-2.427-11.416-.163-3.359 2.263-5.083 6.706-4.131 10.642.474 1.967 1.698 3.894 3.605 4.57.895.318 1.865.338 2.815.297 3.57-.154 7.269-1.239 9.729-3.832 2.46-2.593 3.268-6.923 1.159-9.809M414.285 642.057c-1.524-.998-3.475-.982-5.296-.934-4.894.133-10.654.754-13.1 4.996-1.41 2.446-1.494 5.834-3.852 7.389-1.037.684-2.32.85-3.554.997l-31.138 3.737c-.732 1.029-.01 2.572 1.115 3.147 1.124.576 2.462.466 3.719.342l26.169-2.587c2.874-.283 6.009-.691 7.998-2.783 2.678-2.821 2.478-7.927 5.847-9.868 2.035-1.174 4.569-.67 6.917-.739 2.349-.069 5.157-1.347 5.175-3.697M261.228 578.546c13.413 6.389 29.214 7.597 43.443 3.322.355-.107.726-.226.985-.492 1.068-1.098-.755-2.643-2.233-3.043a92.11 92.11 0 00-38.406-2.036c-1.534.245-3.339.763-3.789 2.249M383.505 420.409c-2.866-3.399-6.168-6.404-9.546-9.295a221.376 221.376 0 00-13.952-11.002c-2.504-1.818-5.174-3.634-8.238-4.069-3.065-.435-6.616.96-7.636 3.882a11.903 11.903 0 00-2.272-4.169l-3.474 3.501c.58 1.701 2.93 2.493 4.421 1.49l2.05 3.99c1.725 1.262 2.625-2.579 4.487-3.63 1.227-.692 2.743.031 3.946.766a115.292 115.292 0 0127.986 24.033c1.795 2.129 3.545 5.281 1.816 7.464a19.342 19.342 0 019.173 2.088 50.58 50.58 0 00-8.761-15.049M278.679 333.573c-2.334 1.938-6.542.414-7.094-2.569 1.696-1.418 4.691-.685 5.539 1.356l1.555 1.213zm2.361 11.249c2.631-2.231 6.976-2.043 9.404.406a10.2 10.2 0 00-4.823 3.193c1.417 1.058 3.813.12 4.136-1.619 3.905 1.321 7.146 4.479 8.566 8.351-1.53 1.578-3.994-.496-5.196-2.335-1.203-1.84-3.889-3.745-5.219-1.994 1.548 3.331 3.307 6.89 6.562 8.591 3.255 1.7 8.319.171 8.646-3.487.218-2.436-1.637-4.511-3.362-6.246l-22.922-23.058c-2.553-2.569-7.546-1.173-8.94 2.17-1.395 3.342.506 7.469 3.682 9.209 3.177 1.739 7.206 1.372 10.443-.252l-.977 7.071"}),l("path",{d:"M448.489 642.861l12.812-.723c-2.583 2.203-5.266 4.545-6.473 7.718-1.207 3.174-.342 7.412 2.742 8.833-2.018-5.432 1.902-11.715 7.233-13.985 5.332-2.271 11.486-1.407 17.019.316a8.114 8.114 0 01.467-6.564 616.257 616.257 0 00-34.475-.048c-2.351.063-5.092.349-6.34 2.345-1.64 2.623.4 6.594-1.623 8.935-3.055 1.377-6.956-2.549-5.305-5.467l-3.35-.618c-2.427 3.884-.26 9.797 4.103 11.194 4.362 1.395 9.559-2.163 9.837-6.734.101-1.663-.197-3.696 1.163-4.66.622-.441 1.428-.499 2.19-.542M364.822 246.777l-2.41 2.011c-.212-5.041 5.03-9.547 9.982-8.58l-7.171 5.937-.401.632zm25.351-9.251c-3.023 3.925-8.206 5.302-12.645 7.503a32.913 32.913 0 00-12.449 10.808c-1.537-.787-1.925-2.942-1.267-4.539.659-1.595 2.072-2.739 3.472-3.749a59.561 59.561 0 0122.889-10.023m-30.502 16.946c.639 2.091 1.597 4.423 3.666 5.127 3.728 1.267 6.348-3.454 8.897-6.454 3.449-4.059 8.915-5.608 13.867-7.57 4.952-1.962 10.161-5.132 11.343-10.326-11.506-2.615-23.867-1.306-34.57 3.658-5.265 2.442-4.899 10.016-3.203 15.565M397.858 216.345c-3.09-.266-5.341-3.968-4.155-6.834 2.736 1.019 4.695 3.84 4.693 6.76l-.538.074zm-7.646-1.874l-19.416.689c-1.485.053-3.297-.075-3.967-1.402a145.03 145.03 0 0123.479-8.385 15.551 15.551 0 00-.096 9.098m-22.918-5.446c-3.527 1.522-7.514 3.593-8.224 7.368 9.925 6.274 23.374-.331 34.571 3.202 2.028.64 3.982 1.615 6.1 1.795 2.118.181 4.546-.717 5.266-2.717.885-2.458-1.143-4.925-3.007-6.756l-8.288-8.138c-1.353-1.329-2.83-2.723-4.701-3.038-1.762-.297-3.519.427-5.16 1.136l-16.557 7.148M459.833 259.609l-14.382-17.306c-7.296-8.78-20.994-11.442-31.048-6.032 4.13 4.463 8.991 9.226 15.071 9.317 4.451.067 9.613-2.263 12.925.712-.006 3.403-1.722 6.759-4.476 8.757a81.368 81.368 0 0021.91 4.552M337.955 418.84c2.254 1.469 4.041 3.632 6.458 4.813 2.418 1.182 5.963.872 7.033-1.597a8.027 8.027 0 00-2.821 5.412c-.252 2.945 1.381 6.041 4.086 7.232 2.705 1.19 6.28.149 7.689-2.448 1.409-2.597.13-6.359-2.663-7.325-1.285.964-1.849 2.788-1.332 4.309-.654.594-1.699.706-2.464.265-1.407-.599-1.814-2.527-1.253-3.951.561-1.423 1.798-2.45 2.987-3.414 2.824-2.287 6.034-4.704 9.659-4.439l.901-2.405c-.62-1.846-3.286-1.787-5.076-1.022-3.44 1.471-6.262 4.146-9.714 5.588-3.451 1.442-8.216 1.123-9.986-2.173 3.207-.312 5.863-3.462 5.629-6.675-.234-3.214-3.318-5.945-6.536-5.789-2.676.13-5.311-1.798-5.997-4.387-.687-2.589.646-5.569 3.034-6.782-2.303-1.913-6.185-.844-7.712 1.731-1.527 2.575-.958 6.022.803 8.444 1.76 2.422 4.505 3.954 7.325 4.961 1.791.639 3.89 1.315 4.56 3.095-3.092 2.4-7.484.643-11.347.015-4.908-.797-10.125.546-14.037 3.614a161.212 161.212 0 0026.824 14.097c-1.468-5.203-6.303-9.282-11.679-9.852-2.145-.228-5.179-.776-4.978-2.923 3.546-1.009 7.518-.407 10.607 1.606M284.576 455.102c-.863-1.112-.208-3.025 1.155-3.375 1.18 1.203.74 3.546-.798 4.237l-.357-.862zm-5.674 1.635c.234 2.613 3.008 4.398 5.63 4.472 2.622.075 5.097-1.107 7.452-2.262-1.534-3.082-1.01-7.07 1.268-9.65a80.036 80.036 0 005.092 13.207c2.355-5.279 2.201-11.725-.83-16.648-3.032-4.922-9.009-8.007-14.729-7.167-5.719.841-10.693 5.831-11.08 11.599-.087 1.281.033 2.585-.252 3.836-1.445 6.346 1.801 13.464 7.541 16.533 5.739 3.068 13.462 1.815 17.936-2.912-1.858-2.86-5.984-2.935-9.348-2.368-3.363.566-7.145 1.366-9.929-.606-4.431-3.136-2.552-10.013-.193-14.902 1.297.137 1.961 1.69 1.898 2.993-.063 1.303-.573 2.576-.456 3.875M523.307 455.714c.104 1.872-2.835 2.944-3.962 1.446-.081-1.113 1.498-1.911 2.346-1.185l1.616-.261zm5.172 5.265c.339 1.112.678 2.225 1.015 3.338-4.966 3.671-11.95 4.407-17.573 1.852-5.624-2.556-9.662-8.301-10.162-14.457-.125-1.541 2.186-2.214 3.461-1.34 1.275.874 1.77 2.477 2.411 3.884 3.407 7.476 13.715 10.799 20.848 6.723m-31.102-2.517c2.83 8.444 11.323 14.655 20.227 14.794 8.905.139 17.587-5.805 20.679-14.157.771-2.082 1.209-4.434.394-6.499-.891-2.257-3.077-3.71-5.232-4.823-7.692-3.968-16.657-5.418-25.207-4.077-4.503.707-9.415 2.641-11.089 6.881-.985 2.496-.624 5.337.228 7.881M299.734 253.298c1.387 1.652 3.875-.274 5.393-1.806 3.048-3.076 7.437-4.776 11.762-4.556a337.79 337.79 0 01-37.348 25.879c3.383 1.189 7.133.613 10.57-.413 13.206-3.941 23.768-14.11 31.455-25.55l10.862-2.662c7.119-1.745 14.785-3.83 19.3-9.604.61-.782 1.166-1.658 1.28-2.642.307-2.621-2.458-4.495-4.939-5.393-12.275-4.441-26.385-.871-37.11 6.571-10.725 7.442-18.573 18.306-25.377 29.447 7.005-.615 10.856-8.086 14.908-13.833 10.615-15.051 31.088-22.357 48.833-17.426-4.173 7.232-14.793 6.138-22.458 9.45-2.015.871-4.051 2.124-6.228 1.835-8.049-1.068-15.089 5.036-20.903 10.703M324.072 278.604a19.107 19.107 0 01-5.695 10.602c-1.006.947-2.306 1.833-3.663 1.571 1.09-5.179 4.633-9.787 9.358-12.173m-23.255 25.685a221.772 221.772 0 0112.154-14.911c-.838 8.158-5.794 15.788-12.907 19.869-1.381-1.226-.35-3.478.753-4.958m28.672-45.2c-2.969 3.946-3.675 9.138-6.017 13.485-5.315 9.869-18.728 15.059-20.18 26.174l-5.949-3.311c5.395-6.434 11.88-11.879 17.354-18.247 5.474-6.367 10.028-14.034 10.412-22.422-3.808-.106-5.45 4.601-6.986 8.086-.945 2.145-2.239 4.116-3.572 6.042a144.841 144.841 0 01-36.524 36.526c6.415 3.637 13.35-7.053 20.519-5.326-.343 4.371-4.395 7.558-8.507 9.082-4.111 1.523-8.602 1.978-12.537 3.912-1.584.779-3.156 2.966-1.748 4.031l24.262-4.775c6.204-1.221 10.911-6.168 14.983-11.006 3.766-4.476 7.398-9.124 10.057-14.335 4.355-8.532 5.93-18.455 4.433-27.916M176.264 233.03c-2.381-.097-4.638-1.683-5.537-3.891-.737-1.814-.569-3.94.309-5.69a15.675 15.675 0 015.228 9.581m19.489 20.362l5.449 5.346c-2.686-.796-4.984-2.808-6.129-5.364m51.59 53.536c1.564-8.086-4.86-15.314-10.774-21.046l-48.751-47.253c-2.585-2.506-5.214-5.07-6.874-8.264-1.323-2.545-1.991-5.421-3.582-7.807-1.591-2.385-4.611-4.231-7.285-3.193-3.993 1.549-3.532 7.465-1.438 11.201 2.55 4.545 6.341 8.245 10.079 11.876l60.662 58.922c2.347 2.28 4.825 4.639 7.963 5.564"}),l("path",{d:"M260.383 280.105c-1.884-1.432-3.764-3.101-4.481-5.355-.717-2.254.229-5.189 2.5-5.854 14.089-4.128 26.736-13.021 35.387-24.883l-59.246 14.382c-.62.15-1.272.318-1.724.768-1.285 1.276-.019 3.408 1.24 4.71a272.513 272.513 0 0032.926 28.972c2.569 1.917 5.636 3.89 8.749 3.122 3.111-.768 4.46-6.001 1.418-7.013a58.113 58.113 0 01-16.769-8.849M359.084 668.446a48.15 48.15 0 0019.763.139c3.611 5.152 1.751 12.127.64 18.319-1.376 7.673-1.356 15.52-1.332 23.314l.26 83.798c.007 2.436 1.593 5.902 3.715 4.706l2.357-127.116c.067-3.566-3.208-6.451-6.661-7.346-3.453-.894-7.088-.328-10.647-.085-6.83.465-14.41-.624-18.978-5.723-4.567-5.1-3.531-15.011 3.03-16.962 1.836-.546 3.796-.418 5.707-.284l14.197.991c-.988 3.68-5.257 5.3-9.009 5.959-3.752.658-7.975 1.124-10.403 4.06-2.429 2.935-.249 8.929 3.407 7.859-1.452-3.562 2.903-6.717 6.63-7.667 3.949-1.008 8.313-1.498 11.297-4.274 2.985-2.776 2.93-8.952-1.024-9.943-5.718-1.433-11.589-2.878-17.444-2.189-5.854.688-11.778 3.983-13.885 9.488-1.995 5.21-.089 11.357 3.719 15.435 3.808 4.076 9.211 6.334 14.661 7.521M258.443 601.337c-4.685-.744-8.813 2.945-12.168 6.358l-86.149 87.628c-4.991 5.077-10.257 12.983-5.943 18.666 2.595 3.419 7.712 3.88 11.633 2.232 3.921-1.648 6.927-4.919 9.804-8.096l83.403-92.129c2.836-3.132 5.779-7.901 3.154-11.218L167.46 708.55c-1.963 2.15-4.987 4.47-7.399 2.864-3.033-2.018-.66-6.78 1.856-9.435l33.16-34.992c.743-.785 1.647-1.632 2.712-1.525 1.066.108 1.675 1.9.664 2.26l59.99-66.385M626.337 666.13c-.904 2.321 2.01 4.17 4.309 5.132 2.297.961 4.893 3.554 3.298 5.467l-50.537-45.22c-1.152-1.031-2.356-2.82-1.268-3.919l40.221 31.1c2.396 1.852 5.077 4.619 3.977 7.44m43.109 26.592c-.675 3.594-3.441 6.716-6.927 7.82l-26.147-21.759c4.54-.782 9.317-1.548 13.664-.022 2.789.979 5.173 2.83 7.502 4.651l11.908 9.31m-39.561-24.495c1.181-2.118 2.361-4.237 3.543-6.355a1122.964 1122.964 0 00-60.916-45.615c-3.321-2.315-7.914-4.609-11.086-2.097a1033.013 1033.013 0 0096.242 88.306c1.169.943 2.384 1.908 3.831 2.311 4.156 1.16 7.933-2.57 10.646-5.925 1.059-1.311 2.165-2.734 2.296-4.414.191-2.457-1.722-4.516-3.496-6.228-8.319-8.032-18.665-16.705-29.994-14.381-2.054.422-4.632 1.03-5.897-.642l9.569-4.792a26.295 26.295 0 00-14.738-.168M400.542 598.79c-3.191-.064-6.561-.293-9.392 1.181-2.831 1.474-4.637 5.431-2.676 7.95 1.388 1.782 4.064 2.077 6.206 1.358 2.141-.719 3.903-2.234 5.692-3.613l.708 4.639c2.882-1.98 6.684-1.642 10.158-2.036 3.475-.393 7.468-2.377 7.607-5.872 3.982 3.943 2.816 11.686-2.151 14.28-3.902 2.039-8.605.965-13.007.871-4.402-.095-9.743 1.774-10.382 6.131l27.07 1.24c1.695.077 3.483.136 4.983-.659 2.62-1.388 3.355-4.743 3.712-7.686a140.215 140.215 0 00-1.415-42.849c-.518-2.746-1.255-5.703-3.446-7.437-1.79-1.417-4.194-1.722-6.47-1.91a122.046 122.046 0 00-27.201.8c-2.656.378-5.898 1.425-6.248 4.086-.274 2.09 1.635 3.947 3.685 4.445 2.049.498 4.191.019 6.27-.338a53.332 53.332 0 0122.984 1.114c2.283.624 2.312 4.221.512 5.757-1.799 1.536-4.395 1.576-6.761 1.537l-13.179-.214c-4.93-.08-10.788.324-13.336 4.546 1.405 3.999 7.082 3.495 11.285 2.95 7.533-.977 15.145.483 22.6 1.936 1.153 1.646.355 4.077-1.209 5.339-1.566 1.261-3.65 1.633-5.644 1.882a76.115 76.115 0 01-10.955.572M527.556 344.686c39.868-31.92 72.076-72.522 111.674-104.776 5.545-4.516 11.604-12.699 6.505-17.711-4.647-4.567-12.24.149-16.859 4.743l-67.761 67.408c-3.976 3.955-8.292 9.331-6.247 14.553a2420.267 2420.267 0 0179.989-80.796c1.325-1.277 2.8-2.624 4.632-2.798 1.833-.175 3.881 1.562 3.256 3.294-.213.592-.682 1.051-1.137 1.488L526.433 340.78c-2.512 2.413-5.983 5.012-9.132 3.523.285-10.59 20.005-14.863 16.654-24.913l-15.994 14.584c-3.687 3.362-7.646 8.734-4.69 12.755 3.203 4.356 10.064 1.336 14.285-2.043"}),l("path",{d:"M360.486 694.789a392.818 392.818 0 00-98.549-33.79c7.086-18.98 27.222-28.949 43.044-41.602 2.962-2.368 5.958-5.106 6.913-8.776.956-3.669-1.158-8.346-4.933-8.693-2.788-.256-5.203 1.785-7.251 3.693l-67.149 62.553a322.945 322.945 0 0197.387 25.369c12.966 5.659 25.846 12.259 39.883 14.024 1.838-5.484-4.171-10.192-9.345-12.778M336.467 468.415c-2.319 5.587-8.261 8.612-13.742 11.172-.93-2.541.973-5.254 3.129-6.889 2.155-1.635 4.76-2.865 6.177-5.17 3.362-5.467-1.937-13.094.951-18.827 2.306.601 3.137 3.385 3.578 5.727.875 4.651 1.721 9.616-.093 13.987m11.46-14.858l1.977 1.278a377.58 377.58 0 0123.134 3.451c1.221.221 2.509.48 3.433 1.308.925.828 1.275 2.428.388 3.298l-25.571-1.644c-3.139-.201-6.492-.481-8.961-2.432-2.468-1.95-3.32-6.219-.833-8.146.24-.186.537-.35.833-.284.399.089.591.533.722.92l1.875 5.538c1.553-.321 2.823-1.711 3.003-3.287m-21.203-4.218c1.363 12.38-5.054 24.684-14.344 32.98-2.799 2.499-5.936 4.8-7.728 8.097a403.49 403.49 0 0170.747-2.29c2.383.133 4.968.234 6.935-1.119 2.458-1.69 3.059-4.972 4.142-7.752 1.082-2.779 3.776-5.651 6.588-4.654 3.659 1.296 7.797-2.068 8.212-5.929.415-3.86-2.056-7.573-5.271-9.75-3.215-2.178-7.084-3.12-10.861-4.022l-27.785-6.636-24.607-5.877c-1.486-.355-3.15-.686-4.46.1-2.134 1.279-1.84 4.38-1.568 6.852M445.027 528.908a78.149 78.149 0 01-29.519-8.225c-3.473-1.763-4.237-7.219-1.382-9.87 1.752 5.942 8.344 8.88 14.335 10.454 5.99 1.575 12.643 2.848 16.566 7.641m11.605 35.725c1.923 1.514 2.062 4.344 1.871 6.784a54.79 54.79 0 01-2.695 13.182c5.392 2.155 10.456-4.609 10.405-10.415-.052-5.805-2.752-11.463-2.073-17.229.255-2.169 1.2-4.509 3.215-5.351 3.119-1.301 6.526 2.056 6.78 5.426.256 3.37-1.465 6.524-2.801 9.628-1.191 2.766-1.435 7.021 1.484 7.762 6.754-7.566 8.706-19.079 4.824-28.448-1.298-3.131-3.19-6.044-3.962-9.346-.578-2.476-.498-5.069-1.079-7.544-2.284-9.719-13.322-14.2-22.966-16.784a376.145 376.145 0 00-37.823-8.078c-2.747-.441-6.264-.481-7.498 2.012-2.026 4.092-4.1 8.389-4.005 12.955.095 4.566 3.133 9.42 7.672 9.914a90.946 90.946 0 0129.764 8.559c5.845 2.835 12.517 6.373 18.442 3.709 4.335-1.948 8.344-7.075 12.652-5.065a116.173 116.173 0 01-12.999 17.321c-2.188 2.41-5.386 4.932-8.361 3.611a159.702 159.702 0 00-38.734-11.604c6.282 7.828 16.009 12.785 26.034 13.267 2.927.141 5.269 2.731 6.086 5.543.817 2.814.443 5.817.062 8.722l-2.786 21.229c3.197 2.541 8.351.794 10.516-2.669 2.165-3.462 1.992-7.906 1.062-11.882-.846-3.618-2.263-7.323-1.409-10.938.854-3.615 5.405-6.569 8.322-4.271M507.662 626.694l37.65 33.813-45.362 12.708a97.746 97.746 0 0138.175-15.405c-10.849-.852-21.572 2.597-31.604 6.817a200.903 200.903 0 00-47.579 28.309c-1.632 1.307-3.355 2.828-3.676 4.894-.321 2.066 1.769 4.455 3.663 3.569 36.892-17.254 77.023-27.554 117.665-30.197l-53.136-49.85c-2.499-2.344-5.255-4.81-8.662-5.167-3.406-.356-7.279 2.669-6.356 5.968-3.145-.89-3.623-5.551-1.656-8.163 1.966-2.611 5.279-3.729 8.311-4.953 3.031-1.226 6.238-2.989 7.293-6.083a317.926 317.926 0 01-67.48 3.704c-1.314 1.316-.538 3.751 1.028 4.755 1.568 1.003 3.554.989 5.413.942l34.04-.866c4.862-.124 5.828 6.853 4.962 11.64-.864 4.786-.297 11.699 4.559 11.972a28.325 28.325 0 012.752-8.407M420.955 701.924c.152-.619.388-1.311.973-1.564.266-.117.581-.118.849-.004 1.661 6.423 3.156 13.841-.738 19.214a29.919 29.919 0 01-1.084-17.646m-16.988-31.852c5.187 2.36 12.113-1.918 12.326-7.612 3.344 1.747 3.428 6.419 3.071 10.176a947.494 947.494 0 00-3.742 120.017c.053 1.63.209 3.47 1.473 4.5 1.061.866 2.563.865 3.932.821l20.391-.654a858.971 858.971 0 014.731-108.603c.593-5.527.828-12.102-3.55-15.525-3.213-2.511-7.685-2.273-11.714-2.897-4.03-.624-8.604-3.257-8.371-7.328.242-4.244-6.597-4.82-9.751-1.972-3.156 2.85-4.915 7.341-8.796 9.077M128.001 236.422L80 269.892c-.381.265-.794.542-1.259.542-1.839.004-1.035-2.981.34-4.203a234.165 234.165 0 0142.779-30.184c2.055-1.129 5.332-1.826 6.141.375m-76.268 75.525c5.926-5.575 9.585-13.494 9.989-21.62l3.939 8.528 3.143-8.65 65.235-44.799c4.916-3.376 9.968-6.891 13.151-11.934 3.183-5.043 4.025-12.063.393-16.792a38.988 38.988 0 0011.896-15.113c-.743-3.046-5.337-3.343-7.755-1.346-2.418 1.996-3.413 5.183-4.969 7.906-4.964 8.692-15.345 12.347-24.631 16.087C71.009 244.8 29.801 288.647 12.423 340.94 4.983 351.136.606 363.54 0 376.148a300.992 300.992 0 0151.733-64.201M652.733 197.652c1.584-1.123 3.793-1.291 5.527-.419a17.655 17.655 0 01-7.298 5.933c-1.159-1.512-.39-4.07 1.411-4.693l.36-.821zm72.221 73.787l13.418 10.533c-.844 2.759-5.005 1.605-7.353-.073a7561.683 7561.683 0 01-42.021-30.268c.776-1.827 3.447-1.486 5.304-.784a118.56 118.56 0 0120.869 10.337l4.788.635c-1.493 3.6 1.929 7.213 4.995 9.62m-45.356-55.747c-3.75-3.485-7.641-7.318-8.768-12.312-1.502-6.654-8.043-12.017-14.846-11.498-6.802.52-12.615 7.467-11.306 14.162 1.311 6.695 10.09 10.872 15.822 7.172 5.824-3.758 13.879 1.699 15.848 8.344 1.97 6.646.099 13.727-.606 20.622s.328 14.929 6.06 18.824a824.68 824.68 0 01106.375 85.991 411.837 411.837 0 0029.22 36.575c-9.423-35.53-31.35-66.594-56.658-93.251-25.309-26.657-54.217-49.604-81.141-74.629"}),l("path",{d:"M357.82 509.813c-.843-1.466.535-3.465 2.212-3.682 1.677-.216 3.285.867 4.3 2.219-1.385 1.401-3.594 1.914-5.454 1.271l-1.058.192zm-64.466 6.021a52.141 52.141 0 01-11.141 10.528c3.468.293 6.838-1.05 10.102-2.26 20.475-7.585 42.571-10.761 64.354-9.248 3.145.219 6.457.597 8.989 2.475-5.062 1.989-10.686 1.671-16.124 1.584a170.584 170.584 0 00-61.067 10.29c-3.393 1.238-8.352 1.924-9.565-1.478-.665-1.867.41-3.901 1.691-5.414 3.165-3.739 7.874-6.129 12.761-6.477m-11.217 40.642c6.328 11.533 21.714 17.117 33.966 12.328l-.436 3.804 4.033-1.408a178.371 178.371 0 01-2.742 62.141c5.151-.578 9.023-5.368 10.218-10.413 1.196-5.044.292-10.32-.616-15.424l9.455 7.498a17.285 17.285 0 00-4.83-11.08l6.067 3.288-9.235-31.955c-.343-1.185-.683-2.475-.234-3.626.499-1.281 1.822-2.01 3.046-2.635l41.732-21.294c2.071-1.057 4.251-2.212 5.44-4.211 1.031-1.735 1.155-3.842 1.253-5.857l1.568-32.332c.077-1.578.133-3.25-.627-4.636-1.531-2.788-5.377-3.018-8.556-2.892-16.423.65-32.844 1.339-49.264 2.065-9.496.421-19.213.901-28 4.527-11.917 4.916-21.227 15.735-24.313 28.252-3.522-9.256-.157-20.666 7.824-26.53-10.773.002-19.878 9.209-22.965 19.531-3.087 10.321-1.378 21.439 1.139 31.915l5.934-16.231a20.79 20.79 0 013.241 11.113c11.105-12.605 27.021-20.187 43.36-24.084 16.34-3.898 33.271-4.408 50.062-4.901 6.254-.183 14.979 2.218 13.986 8.395-.347 2.159-1.956 3.871-3.543 5.375-22.639 21.45-57.381 29.151-86.963 19.277M481.832 494.106a9.93 9.93 0 01-5.734-4.411c3.21-1.326 7.36 1.014 7.888 4.447l-2.154-.036zm-15.001-45.396l5.915-.943c-.675 2.902-3.456 5.175-6.435 5.257-2.979.082-5.881-2.034-6.714-4.895 2.005-.755 4.378-.444 6.12.802m-8.518 15.93a93.403 93.403 0 01-18.023 2.922c-1.56.098-3.673-.311-3.741-1.872-.065-1.483 1.825-2.131 3.297-2.319l13.521-1.727c2.341-.299 5.877.828 4.946 2.996m40.614 33.251a116.498 116.498 0 00-21.719-16.356c-4.993-2.914-8.406-8.376-8.835-14.14-.073-.983-.028-2.075.64-2.799.669-.723 2.151-.655 2.408.296 1.896 7 6.619 13.191 12.869 16.871 3.429 2.019 7.297 3.317 10.437 5.763 3.141 2.445 5.487 6.598 4.2 10.365m2.062-16.804c-9.297-7.43-16.259-17.739-19.677-29.139-.925-3.086-1.794-6.538-4.47-8.333-2.511-1.685-5.82-1.351-8.81-.89a223.892 223.892 0 00-46.53 12.422c-1.979.764-4.057 1.642-5.28 3.375-1.097 1.556-1.322 3.546-1.474 5.444-.75 9.337-.589 18.747.479 28.052a54.12 54.12 0 009.133-9.758 28.331 28.331 0 01-1.799 11.106l7.071-4.731c3.234 3.421 7.116 6.68 11.792 7.222 4.676.542 10.021-2.843 9.905-7.549-.048-1.942 1.986-3.415 3.928-3.488 1.941-.073 3.764.851 5.486 1.751 7.468 3.905 16.188 10.339 14.229 18.536-.534 2.239.851 4.443 2.17 6.329l11.495 16.449c.974 1.393 2.012 2.843 3.539 3.589 1.859.91 4.054.599 6.096.267 5.464-.887 11.383-2.015 15.049-6.162 5.659-6.4 3.242-16.583 6.707-24.392a16.66 16.66 0 005.711 9.99l-1.52-27.375c-3.032 1.57-5.206 4.692-5.627 8.08-8.094-1.994-14.133-10.297-13.538-18.613-2.827 1.38-4.559 4.711-4.065 7.818M89.72 390.532c-14.454 13.79-35.267 20.622-55.081 18.08l-.005 14.334a201.521 201.521 0 0136.696 1.093l-.022 88.686c-.001 3.641-.024 7.397-1.445 10.75-2.775 6.544-10.378 9.954-17.486 9.954-4.647 0-9.536-1.137-13.79.735-4.254 1.871-6.316 8.825-2.174 10.93 1.08.549 2.33.627 3.542.692a1141.071 1141.071 0 00105.658.836c4.35-.167 9.72-1.095 11.018-5.252 1.506-4.824-4.241-8.979-9.285-9.298-5.044-.319-10.272 1.307-15.076-.264-9.441-3.088-11.063-15.541-10.987-25.475l.945-122.66c-10.971-3.955-24.07-1.191-32.508 6.859M744.41 398.223c9.603 7.645 10.696 21.702 9.833 33.946-.578 8.197-1.72 16.515-5.251 23.936-8.967-3.213-18.061-6.491-25.814-12.024-7.752-5.533-14.125-13.711-15.298-23.163-1.127-9.092 3.1-18.762 10.804-23.72 7.705-4.958 18.558-4.682 25.726 1.025m13.75 111.474c4.693 9.289 3.29 21.25-3.211 29.377-6.502 8.128-17.681 12.122-27.916 10.232-10.234-1.891-19.159-9.469-22.954-19.161-1.33-3.397-2.066-7.004-2.477-10.629-1.526-13.478 1.519-27.432 8.52-39.049a205.01 205.01 0 0124.715 9.951c9.262 4.451 18.688 10.107 23.323 19.279m-31.81 50.56c17.94.299 36.556-2.531 51.549-12.386 14.993-9.855 25.515-27.898 22.571-45.597-3.446-20.716-23.498-34.836-43.66-40.717 16.646-4.053 33.72-14.804 36.838-31.649 2.613-14.11-5.826-28.622-17.827-36.488-12.001-7.867-26.864-10.108-41.214-10.125-14.526-.017-29.414 2.17-42.096 9.252-12.683 7.083-22.868 19.682-24.325 34.135-2.164 21.459 15.356 40.904 35.535 48.518-16.88 3.028-34.76 11.399-40.706 27.486-5.808 15.715 2.357 34.101 15.763 44.149 13.406 10.049 30.82 13.142 47.572 13.422","fill-rule":"nonzero"}),l("path",{d:"M531.316 414.264l-2.376 3.517c-2.499-1.624-2.024-6.137.758-7.206.514.909 1.03 1.817 1.545 2.726l.073.963zm3.663-3.614c1.799 1.961 1.618 5.398-.377 7.159-2.45-1.212-2.806-5.191-.609-6.819m-29.011 164.037c-1.545 2.19-5.766.942-5.871-1.737a11.16 11.16 0 017.681-1.438c1.075.815.378 2.918-.972 2.93m-75.977-291.024c-.891-1.553-1.812-3.233-1.66-5.017.153-1.784 1.918-3.526 3.611-2.942a58.588 58.588 0 003.619 9.531c-1.645.393-3.492-.26-4.523-1.599m84.758 273.731c-1.391-3.429-.351-7.694 2.463-10.099 2.813-2.405 7.187-2.769 10.36-.863-4.961 1.526-9.076 5.568-10.692 10.499-.485.621-1.432.827-2.131.463M410.161 262.341c.212-1.76 1.185-4.063 2.914-3.671 2.127 4.416.854 9.608.437 14.491-.466 5.461.204 10.947.873 16.387.404 3.277 1.11 7.03 3.986 8.653 3.566 2.014 8.173-.54 12.097.634 1.251.793-.511 2.517-1.963 2.813a66.737 66.737 0 01-10.494 1.284c-1.53.065-3.157.053-4.462-.75-1.961-1.207-2.543-3.749-2.885-6.026a126.086 126.086 0 01-.503-33.815m25.464 121.929a30.421 30.421 0 0110.043-13.596c1.597.292 1.288 2.684.538 4.125a132.36 132.36 0 01-15.005 22.736c-3.246-4.103-3.592-9.717-3.8-14.944l-1.207-30.279c-.111-2.778-.207-5.65.807-8.239 2.271-5.8 9.059-8.157 15.057-9.832.147 2.557-2.005 4.662-4.224 5.94-2.221 1.278-4.756 2.182-6.433 4.119-1.677 1.937-1.919 5.451.319 6.698.734-1.476 2.533-2.336 4.143-1.979-.137 1.985-1.392 3.856-3.176 4.736 2.039 2.318 1.29 6.474-1.431 7.934l3.172 2.327c-5.096 6.567-1.532 16.159-3.266 24.288 2.091.848 3.682-1.916 4.463-4.034m-77.305-30.054c1.25-4.722-.36-9.657-1.458-14.416-1.098-4.759-1.528-10.26 1.557-14.047l18.996 10.658c3.135 1.76 6.472 3.734 7.922 7.023.86 1.952.944 4.145 1.001 6.277a504.123 504.123 0 01-.942 47.037 159.132 159.132 0 01-19.318-20.383c-5.047-6.367-9.837-14.295-7.758-22.149m1.384-60.078c-.953-3.397-1.916-6.895-1.538-10.403.378-3.508 2.419-7.074 5.767-8.187a107.458 107.458 0 0036.855-21.138c.895-.786 2.411-.266 3.068.729.657.994.695 2.259.713 3.45l.497 33.929c.049 3.405-1.258 8.109-4.628 7.631a180.91 180.91 0 00-36.729-1.439c-2.198.137-3.411-2.452-4.005-4.572m83.646 130.153c3.431-3.917 8.655-6.196 13.861-6.048a44.707 44.707 0 01-17.303 11.363c3.153-14.162 11.008-27.237 22.032-36.671.743 5.474 9.55 7.326 12.434 2.614 1.347-4.467-2.554-9.675-7.22-9.638 3.927-2.617 6.484-7.178 6.67-11.893a227.308 227.308 0 00-36.117 40.641c-2.951 4.252-5.883 9.171-4.986 14.269.897 5.098 7.867 8.905 11.443 5.162 11.552-12.097 38.118-4.033 43.923-19.721l-.591 12.568a192.444 192.444 0 0145.099-30.758c2.464-.528 1.434 3.847-.635 5.284l-30.731 21.344 20.353.217c7.083.075 15.172-.291 19.687-5.748 5.251-6.345 2.728-15.799-.051-23.553 11.219 10.533 17.86 25.785 17.926 41.173a25.323 25.323 0 005.312-11.66 247.1 247.1 0 015.297 82.864c-.279 2.636-.784 5.589-2.956 7.108-2.17 1.52-6.162-.294-5.333-2.811a44.534 44.534 0 00-2.049 24.104c8.926 2.596 13.024 13.932 10.339 22.831-2.686 8.901-10.291 15.461-18.331 20.129 5.693-9.591 1.865-22.897-6.779-29.946-8.643-7.049-20.8-8.562-31.748-6.434-11.761 2.287-23.639 9.678-26.522 21.307-3.368 13.58-13.474 25.313-26.406 30.655a336.758 336.758 0 0057.994-3.075c6.382-.895 14.582-4.345 13.514-10.7-.824-4.912-6.163-11.776-1.334-12.994a63.629 63.629 0 019.596 28.062 86.342 86.342 0 0127.179-14.867 318.599 318.599 0 0031.903 40.253c2.498 2.677 5.298 5.451 8.905 6.078 3.608.626 7.955-2.131 7.474-5.761-7.478-56.311 43.415-106.921 40.102-163.631-1.446-24.758-13.147-47.54-22.189-70.633a345.023 345.023 0 01-22.746-99.885 725.622 725.622 0 01-66.949 78.436c-.793 3.837 3.493 7.187 7.405 6.978 3.913-.209 7.263-2.756 10.273-5.263a248.037 248.037 0 0042.015-44.916c.495 32.502 8.691 64.862 23.727 93.681 6.333 12.137 13.984 24.005 16.226 37.51 3.701 22.289-7.879 43.858-17.261 64.414a371.81 371.81 0 00-27.164 85.754c-15.928-11.411-24.874-31.865-22.439-51.307 1.415-11.303-13.448-22.845-6.655-31.989 6.601-8.887 6.933-20.793 7.001-31.863.165-27.227-.208-56.326-15.466-78.875-10.11-14.943-25.633-25.191-40.745-35.044l-40.627-26.488c8.824-1.004 14.771-9.164 19.973-16.362 22.068-30.536 50.715-56.291 83.418-74.998-59.694.891-114.128-32.395-172.419-45.294-1.18 4.288.099 9.163 3.232 12.319 9.064-1.379 18.339-2.756 27.347-1.046 9.009 1.709 17.86 7.123 21.158 15.678 2.93 7.6 11.928 10.546 19.822 12.555l65.063 16.563a1508.8 1508.8 0 00-51.435 42.191c-9.784 8.393-20.005 17.804-22.716 30.407-7.515-4.419-12.098-13.378-11.284-22.058.811-8.66-5.897-15.911-10.24-23.446-4.344-7.536-5.015-19.581 3.121-22.657l-.595 20.723c4.986 1.179 9.645-4.059 9.788-9.181.302-10.852-12.282-16.965-22.9-19.228-10.618-2.262-23.355-4.955-27.194-15.11-1.557-4.122-7.732-2.519-11.482-.205l-43.402 26.786c-1.882 1.161-3.82 2.375-5.074 4.196-3.004 4.364-1.076 10.222.102 15.387 2.621 11.486.775 23.931-5.068 34.161-6.677 11.692-17.906 19.95-28.808 27.851l-56.771 41.144c-16.358 11.855-22.183 33.165-26.928 52.803-1.131 4.679-2.265 9.575-1.133 14.255 1.152 4.765 4.611 9.259 3.587 14.053a332.687 332.687 0 00-7.07 56.251c-.366 9.212.229 19.748 7.35 25.602 4.427 3.64 1.017 10.721-2.566 15.194l-33.272 41.541-4.079-29.644c-1.96-14.247-3.95-28.615-8.819-42.147-6.21-17.256-16.96-32.74-21.875-50.409-8.884-31.937 2.41-65.628 13.578-96.839 8.517-23.803 17.033-47.605 25.551-71.407a312.293 312.293 0 0048.652 46.569c4.577 3.518 9.984 7.093 15.661 6.049 5.677-1.044 9.289-9.63 4.395-12.691-31.825-19.903-56.159-49.515-79.896-78.591a994.815 994.815 0 01-33.735 131.798c-4.545 13.759-9.436 27.643-10.204 42.113-1.431 26.975 11.448 52.307 21.282 77.467a365.293 365.293 0 0123.707 101.822 465.121 465.121 0 0146.432-56.153c7.886-8.143 4.89-21.528.788-32.096-4.102-10.567-8.707-22.917-2.844-32.618 1.735-2.871 4.309-5.279 5.387-8.455 1.077-3.176-.328-7.606-3.665-7.942-4.374-.439-4.641-6.977-2.441-10.784 2.199-3.807 5.682-7.744 4.451-11.965-8.83-30.255 3.177-65.442 28.66-83.989 4.369 10.713 18.442 12.655 30.008 12.962-4.526-5.731-12.494-8.502-19.599-6.815.441-7.795 5.873-15.079 13.217-17.725l6.92 2.621c-.642-12.184 8.401-24.17 20.292-26.898a14.977 14.977 0 00-.588 10.583l14.139-6.849c3.747 8.849 10.505 16.39 18.891 21.082a154.147 154.147 0 00-10.936-24.188l.164 8.886c-3.333-2.701-5.542-6.748-6.009-11.013a35.531 35.531 0 00-11.338 6.591c1.132-9.859 8.088-18.827 17.356-22.375 7.927 28.868 24.383 55.337 46.765 75.218l-1.179-72.959c-.151-9.35-11.024-13.925-19.47-17.939-8.447-4.015-16.876-14.731-10.484-21.558 27.209 1.553 54.914 3.063 81.352-3.557 7.256-1.817 11.962 9.13 8.199 15.594-3.764 6.464-11.486 9.194-18.25 12.388-6.764 3.194-13.868 8.62-13.8 16.1l.666 73.542c19.822-21.754 40.693-45.828 42.971-75.171a67.504 67.504 0 0120.946 24.548c3.13-2.594 3.98-7.549 1.896-11.038 9.845 3.93 17.47 12.995 19.656 23.368l-11.111-2.951a35.132 35.132 0 01-9.16 14.169l1.164-7.893c-3.775 1.429-6.289 5.632-5.759 9.635 4.706 3.096 12.147-.298 12.893-5.883 4.377 2.136 9.87 1.782 13.937-.897a21.66 21.66 0 01-8.727 10.179c10.069-1.161 17.022-13.543 12.772-22.744l19.171 18c-9.745-1.199-19.957 2.189-27.053 8.975l11.117-3.877a143.798 143.798 0 00-22.279 18.388c-2.664-5.162-10.509-3.272-15.4-.137-4.891 3.133-11.338 6.831-15.926 3.268a40.065 40.065 0 001.022-10.941c-8.054 1.991-15.216 7.354-19.393 14.521"})))}};a.style="my-logo{}";export{a as my_logo}
1
+ import{r as c,h as l}from"./p-a2f68c99.js";const a=class{constructor(l){c(this,l),this.fill="currentcolor",this.stroke=void 0,this.opacity=1,this.size=void 0}render(){const{fill:c,stroke:a,opacity:M,size:z}=this;return l("svg",{width:z,height:z,viewBox:"0 0 818 874","fill-rule":"evenodd","clip-rule":"evenodd","stroke-linejoin":"round","stroke-miterlimit":"2"},l("g",{fill:c,stroke:a,"fill-opacity":M},l("path",{d:"M134.304 112.082l1-.113c.294.453.615.781 1.086 1.011.77.358 1.842.52 3.242.362 1.373-.035 2.924-.291 4.576-.722a28.466 28.466 0 004.837-1.642c1.63-.63 3.086-1.363 4.218-2.099.83-.54 1.912-1.35 3.172-2.385 1.31-.959 2.471-2.143 3.508-3.355 1.038-1.211 1.777-2.55 2.316-3.868.54-1.316.354-2.592-.382-3.723-.735-1.132-1.777-1.743-2.95-1.732-1.25.06-2.675.344-4.256 1.05-1.58.706-3.388 1.559-5.248 2.661-1.935 1.151-3.87 2.302-5.855 3.378-1.984 1.076-4.018 2.076-6.074 2.876-2.131.85-4.108 1.276-6.082 1.379-1.973.102-3.916-.245-5.678-1.139-1.838-.845-3.468-2.361-4.99-4.7-1.03-1.584-1.633-3.339-1.86-5.338-.302-1.951-.054-4.045.72-6.158.772-2.113 2.02-4.32 3.869-6.596 1.897-2.2 4.368-4.344 7.462-6.355 2.64-1.717 5.127-3.012 7.334-3.91a55.02 55.02 0 015.964-2.054c1.728-.48 3.23-.812 4.456-1.073 1.226-.26 2.128-.524 2.807-.966.68-.442 1.11-.936 1.215-1.434l1.298.015.927 12.817-.951.188c-.517-.63-1.136-1.086-1.732-1.342-.77-.359-1.842-.52-3.14-.536-1.324.11-2.724.269-4.3.65-1.578.382-3.181.887-4.81 1.518-1.582.706-3.189 1.536-4.622 2.468a30.611 30.611 0 00-3.248 2.435c-1.06 1.01-1.97 1.924-2.705 2.94-.736 1.014-1.196 1.958-1.456 2.878-.286 1.045-.098 1.996.442 2.826.785 1.207 1.827 1.818 3.124 1.833 1.223.064 2.725-.268 4.354-.899a34.599 34.599 0 005.297-2.585c1.86-1.102 3.844-2.178 5.829-3.254 1.984-1.075 4.018-2.075 6.15-2.925 2.055-.8 4.108-1.276 6.081-1.378 1.973-.102 3.841.293 5.679 1.138 1.762.894 3.392 2.41 4.864 4.674 1.717 2.64 2.412 5.195 2.133 7.738-.354 2.592-1.255 5.003-2.655 7.309-1.399 2.305-3.27 4.38-5.413 6.204a52.034 52.034 0 01-6.371 4.895c-2.867 1.864-5.38 3.283-7.512 4.132-2.157.974-3.987 1.627-5.613 1.933-1.577.382-2.928.616-3.928.73-1 .113-1.777.403-2.305.747-.377.245-.532.668-.588 1.241l-1.45.083-1.786-11.828zM199.519 64.52c1.53-.761 2.74-1.765 3.507-2.85.767-1.086.689-2.454-.153-4.146-.842-1.693-1.887-2.58-3.295-2.784-1.368-.123-2.898.236-4.43.998l-13.536 6.736 4.37 8.783 13.537-6.736zm-27.286-1.5c-.401-.806-1.246-.888-2.616-.207l-.722-1.45 23.448-11.668c4.35-2.165 7.975-2.963 10.993-2.555 2.937.448 5.348 2.667 7.272 6.534 1.925 3.868 2.2 7.048.747 9.581-1.495 2.654-4.357 4.983-8.708 7.148l-13.698 6.816 6.015 12.086c.4.806 1.165.928 2.293.367l.722 1.45-11.442 5.694-.721-1.45c1.37-.682 1.813-1.406 1.412-2.211l-14.995-30.136zM237.764 37.195c-1.774.652-3.455 1.558-4.927 2.77a15.493 15.493 0 00-3.714 4.243c-.948 1.595-1.549 3.35-1.719 5.234-.255 1.916-.025 3.845.72 5.872.746 2.028 1.82 3.646 3.255 4.94 1.35 1.326 2.915 2.19 4.67 2.79 1.786.687 3.586.888 5.578.827 1.906-.03 3.805-.344 5.578-.997 1.774-.652 3.424-1.642 4.98-2.885 1.473-1.213 2.714-2.532 3.63-4.212.948-1.595 1.58-3.265 1.835-5.18.17-1.885-.06-3.815-.805-5.842-.745-2.027-1.82-3.646-3.17-4.971-1.435-1.295-3.03-2.243-4.785-2.844a16.048 16.048 0 00-5.494-.857 17.77 17.77 0 00-5.632 1.112zm-2.298-6.25a35.093 35.093 0 019.22-2.048c2.982-.234 5.782.08 8.4.939a18.42 18.42 0 016.989 4.143c2.083 2.014 3.7 4.585 4.88 7.795 1.18 3.21 1.613 6.214 1.3 9.014-.282 2.885-1.173 5.418-2.61 7.768-1.437 2.35-3.398 4.318-5.853 5.988-2.508 1.785-5.256 3.179-8.381 4.328-3.126 1.15-6.122 1.867-9.105 2.1-3.036.35-5.805.121-8.422-.738-2.618-.86-4.937-2.213-7.02-4.228-2.052-1.93-3.669-4.5-4.849-7.71-1.18-3.21-1.613-6.215-1.332-9.1a18.42 18.42 0 012.641-7.683c1.438-2.35 3.368-4.402 5.876-6.187a33.933 33.933 0 018.266-4.382zM288.314 53.081c.216.874.848 1.181 1.984.9l.39 1.572-11.445 2.834-.39-1.573c.962-.238 1.29-.783 1.074-1.656l-8.09-32.674c-.216-.874-.76-1.202-1.721-.964l-.39-1.573 11.445-2.833.389 1.572c-1.136.281-1.552.848-1.335 1.722l3.525 14.24c1.598-2.158 3.197-4.315 4.883-6.494 1.685-2.179 3.24-4.14 4.553-5.949 1.314-1.808 2.41-3.378 3.307-4.62.898-1.242 1.292-1.896 1.227-2.158-.064-.262-.304-.48-.61-.59-.392-.089-.763-.09-1.025-.025l-.325-1.31 14.415-3.57.39 1.573c-.635.436-1.532 1.307-2.648 2.788L296.247 29.7l18.043 13.706c.915.7 1.917 1.38 2.92 2.059 1.024.766 2.028 1.074 2.879 1.141l.39 1.573-12.93 3.2-.39-1.572c.612-.151.918-.412.831-.762-.065-.262-.217-.502-.587-.874s-1.046-.854-2.048-1.533l-13.99-10.444-5.474 7.104 2.423 9.784z","fill-rule":"nonzero"}),l("path",{d:"M347.793 27.702l-9.298-13.975-4.252 15.854 13.55-1.88zM320.071 46.63c.7-.188 1.186-.619 1.634-1.317.372-.596.565-1.168.77-1.651l9.265-30.815c.245-.852.413-1.603.607-2.175.116-.47.131-1.017.07-1.463-.05-.357-.176-.612-.278-.688l-.572-.194-.223-1.604 13.462-1.868.222 1.605-.498.342c-.255.126-.32.317-.257.762.05.357.29.778.619 1.187.341.497.695 1.084 1.05 1.671l18.645 28.307a3.25 3.25 0 001.142 1.023 2.79 2.79 0 001.233.374l.222 1.604-12.658 1.756-.186-1.337c.268-.037.612-.175.944-.403.242-.216.371-.597.31-1.043-.05-.356-.189-.7-.315-.956a26.637 26.637 0 00-.606-1.097l-3.112-4.747-19.078 2.646-1.828 5.16a4.81 4.81 0 00-.362 1.323c-.116.47-.156.839-.119 1.106.062.446.29.778.57.83.28.052.737.08 1.272.005l.223 1.605-11.946 1.657-.222-1.605zM373.087 39.689c1.08-.024 1.61-.486 1.59-1.385l-.738-33.652c-.02-.9-.57-1.338-1.65-1.315l-.035-1.62 13.227-.29.036 1.62c-.448.1-.626.194-.62.464.006.27.653 1.066 2.032 2.386l22.097 22.38-.535-24.383c-.02-.9-.66-1.336-1.83-1.31l-.035-1.62 10.977-.241.036 1.62c-1.08.023-1.61.485-1.59 1.385l.738 33.652c.02.9.57 1.338 1.65 1.314l.035 1.62-11.697.256-.036-1.62c.45-.01.626-.193.62-.463-.006-.27-.284-.624-.837-1.242-.644-.616-1.288-1.232-2.025-2.026L381.66 11.954l.574 26.184c.02.9.66 1.336 1.92 1.308l.035 1.62-11.067.242-.036-1.62zM468.005 13.216c.11-1.164-.735-1.787-2.617-1.965l-21.862-2.067-.848 8.96 13.799 1.305c.985.093 1.8.08 2.265-.057.457-.047.768-.47.827-1.097l1.613.152-.898 9.498-1.792-.17c.238-.61.012-1.083-.598-1.322a20.511 20.511 0 00-2.761-.441l-13.082-1.238-1 10.573 22.938 2.17c.717.067 1.361-.053 1.843-.369.474-.226.785-.649.836-1.186l1.612.152-.89 9.408-1.612-.152c.05-.538-.193-.832-.632-.964-.44-.132-1.067-.191-1.784-.26l-32.883-3.109.152-1.613c.27.026.636-.03.93-.273.286-.154.5-.495.541-.943l3.17-33.511a1.49 1.49 0 00-.347-1.118 1.737 1.737 0 00-.87-.353l.152-1.613 31.808 3.008c1.882.178 2.829-.275 2.93-1.35l1.613.152-.94 9.946-1.613-.153zM555.313 25.982c.164-.609.043-1.2-.298-1.665-.451-.4-1.274-.808-2.49-1.135l-28.16-7.569-2.898 10.777 17.036 4.58c1.13.303 2.109.473 2.788.376.678-.097 1.166-.525 1.376-1.308l1.565.42-3.364 12.517-1.565-.42c.35-1.305.236-2.267-.255-2.865-.515-.512-1.424-.942-2.554-1.246l-17.036-4.579-4.532 16.862c-.14.521.004 1.026.479 1.34.364.377.926.715 1.708.925l-.42 1.565-14.776-3.972.42-1.564c1.478.397 2.4.086 2.68-.957l10.607-39.46c.28-1.043-.362-1.775-1.84-2.172l.421-1.564 40.329 10.84c1.217.326 2.132.386 2.77.092.529-.231.93-.683 1.093-1.29l1.565.42-3.084 11.472-1.565-.42zM555.335 64.501c.93.34 1.553.47 1.984.34.4-.045.692-.322.846-.745l11.531-31.623a1.283 1.283 0 00-.137-1.2c-.277-.292-.838-.592-1.768-.932l.555-1.522 12.852 4.687-.555 1.522c-1.606-.586-2.521-.44-2.83.405l-11.53 31.623c-.309.846.298 1.546 1.905 2.132l-.555 1.522-12.852-4.687.554-1.522zM611.868 65.307c5.296 2.483 8.788 2.033 10.354-1.308.65-1.385.495-2.75-.346-4.138-.96-1.345-2.806-2.708-5.576-4.007l-12.875-6.037-4.433 9.453 12.876 6.037zM619.29 49.9c4.808 2.254 8.256 4.864 10.219 7.674 1.925 2.89 2.01 6.31.215 10.14-.688 1.467-1.543 2.656-2.649 3.53-1.105.873-2.215 1.545-3.494 1.94-1.317.476-2.682.63-3.97.623a14.015 14.015 0 01-3.914-.344l2.522 15.397c.14.761.4 1.48.855 1.992a6.496 6.496 0 001.286 1.497l-.688 1.467-12.467-5.846.688-1.467c.733.344 1.174.253 1.403-.236.267-.57.242-1.577-.038-3.1l-1.93-12.634-11.326-5.31-5.464 11.652c-.19.408-.18.81.15 1.164.212.397.5.632.826.785l-.688 1.466-10.838-5.081.688-1.467c.978.458 1.658.28 2.04-.535l14.29-30.476c.381-.815.083-1.452-.894-1.91l.687-1.467 22.491 10.546zM673.328 89.784c.61-.998.124-1.928-1.49-2.913L653.1 75.422l-4.692 7.68 11.828 7.226c.844.516 1.583.862 2.06.943.431.157.896-.086 1.225-.623l1.382.844-4.973 8.141-1.536-.938c.482-.444.486-.969.042-1.45a20.511 20.511 0 00-2.287-1.609l-11.213-6.85-5.536 9.062 19.66 12.012c.615.375 1.247.55 1.819.477.524.005.99-.239 1.27-.7l1.383.845-4.926 8.064-1.383-.844c.282-.461.192-.832-.145-1.144-.337-.311-.875-.64-1.49-1.015l-28.186-17.22.845-1.382c.23.141.585.252.956.162.324-.013.665-.226.9-.61L647.65 67.77a1.49 1.49 0 00.179-1.156 1.737 1.737 0 00-.628-.7l.845-1.382 27.265 16.656c1.613.986 2.662.994 3.225.072l1.383.845-5.208 8.525-1.383-.845zM232.902 140.753c1.851-.91 3.436-1.91 4.663-2.884 1.227-.973 2.128-2.157 2.613-3.434.515-1.216.704-2.644.507-4.252-.257-1.58-.84-3.37-1.867-5.46-1.027-2.09-2.087-3.646-3.18-4.814-1.153-1.14-2.398-1.862-3.705-2.258-1.277-.337-2.765-.347-4.286.029-1.52.376-3.281 1.019-5.133 1.928l-9.258 4.548 10.387 21.146 9.259-4.549zm-10.522-27.456c2.21-1.085 4.388-1.784 6.622-2.066 2.174-.253 4.316-.119 6.306.46 2.02.64 3.947 1.695 5.692 3.285s3.307 3.714 4.628 6.402c1.32 2.688 2.017 5.163 2.209 7.516.192 2.352-.122 4.582-.88 6.512-.728 1.989-1.93 3.766-3.46 5.333-1.588 1.596-3.473 2.892-5.683 3.978l-19.83 9.741-.529-1.075c.896-.44 1.198-1.033.846-1.75l-13.322-27.118c-.352-.717-1.006-.84-1.902-.4l-.528-1.076 19.831-9.742zM276.433 104.021c-.297-.812-1.06-.958-2.372-.477l-15.246 5.59 2.29 6.248 9.623-3.528c.688-.252 1.227-.52 1.494-.76.29-.177.362-.558.202-.995l1.125-.413 2.428 6.624-1.25.458c-.035-.483-.337-.727-.82-.692-.46.098-1.171.288-1.983.585l-9.123 3.345 2.703 7.373 15.996-5.864c.5-.184.891-.469 1.112-.833.244-.302.317-.683.18-1.058l1.124-.413 2.405 6.561-1.125.412c-.137-.374-.393-.493-.728-.441-.336.052-.773.212-1.273.396l-22.932 8.406-.412-1.124a.953.953 0 00.533-.48c.142-.193.175-.489.06-.801l-8.566-23.37a1.102 1.102 0 00-.588-.634 1.284 1.284 0 00-.693.041l-.413-1.125 22.182-8.131c1.312-.482 1.8-1.086 1.525-1.835l1.124-.413 2.543 6.936-1.125.412zM306.873 101.54c1.222-.326 2.247-.875 2.963-1.547.716-.673.863-1.676.503-3.027-.36-1.35-.985-2.148-1.975-2.504-.973-.292-2.135-.258-3.357.067l-10.804 2.877 1.866 7.01 10.804-2.877zm-19.546-5.127c-.171-.643-.771-.828-1.864-.537l-.309-1.157 18.715-4.983c3.472-.924 6.216-.966 8.342-.224 2.062.76 3.48 2.724 4.302 5.81.822 3.087.55 5.432-.877 7.052-1.476 1.701-3.894 2.965-7.367 3.89l-10.932 2.91 2.568 9.647c.171.643.707.845 1.607.605l.309 1.158-9.132 2.431-.309-1.157c1.094-.291 1.522-.75 1.351-1.393l-6.404-24.052zM343.46 98.99l-7.197-10.113-2.774 11.817 9.97-1.704zm-20.05 14.634c.514-.156.863-.485 1.178-1.012.26-.45.39-.877.53-1.238l6.132-22.99c.162-.636.269-1.194.399-1.621.075-.35.073-.755.017-1.083-.045-.263-.144-.448-.22-.503l-.428-.13-.202-1.18 9.906-1.693.201 1.181-.36.264c-.185.1-.228.242-.172.57.045.262.232.568.485.862.264.36.539.786.814 1.211l14.438 20.488c.264.36.572.578.868.73.296.152.58.238.92.248l.201 1.18-9.315 1.592-.168-.984c.197-.033.448-.144.688-.32.175-.165.26-.45.205-.777a2.392 2.392 0 00-.255-.7c-.099-.185-.286-.49-.473-.796l-2.41-3.437-14.039 2.399-1.231 3.856c-.141.362-.216.712-.237.986-.075.35-.096.624-.062.82.056.328.232.568.44.6.208.032.547.042.94-.025l.202 1.18-8.79 1.502-.202-1.18zM379.584 90.53c4.314-.319 6.4-1.875 6.199-4.596-.084-1.128-.678-1.952-1.723-2.542-1.106-.518-2.79-.727-5.047-.56l-10.486.777.57 7.698 10.487-.776zm-.802-12.62c3.916-.29 7.085.143 9.368 1.242 2.289 1.165 3.584 3.338 3.815 6.458.089 1.194-.032 2.27-.428 3.234-.395.964-.867 1.8-1.548 2.517-.676.785-1.5 1.38-2.333 1.842-.828.528-1.733.929-2.647 1.197l7.207 9.009c.366.44.794.808 1.273.973.418.236.897.4 1.372.499l.088 1.195-10.154.752-.089-1.195c.598-.044.849-.263.819-.661-.034-.465-.415-1.104-1.148-1.984l-5.823-7.443-9.225.684.703 9.49c.024.332.177.588.518.696.28.18.55.226.816.206l.089 1.195-8.827.654-.089-1.195c.797-.059 1.17-.42 1.121-1.084l-1.838-24.822c-.05-.663-.472-.966-1.269-.907l-.088-1.194 18.317-1.357zM408.891 105.074c.2.003.467-.059.67-.255.202-.13.34-.394.345-.726l.374-22.158-8.65-.146a1.878 1.878 0 00-1.003.249c-.336.194-.473.458-.48.857l-1.198-.02.13-7.652 1.197.02c-.01.599.115 1.067.445 1.272.329.205.66.344.992.35l23.689.4c.332.005.667-.123 1.003-.317.337-.194.477-.657.488-1.256l1.197.02-.129 7.652-1.198-.02c.007-.399-.121-.667-.45-.873a1.878 1.878 0 00-.994-.283l-8.65-.146-.375 22.158c-.01.666.383 1.005 1.181 1.019l-.02 1.198-8.584-.145.02-1.198zM434.3 105.672c.205-.043.411-.086.625-.195.148-.116.253-.439.307-.902l2.847-24.19c.07-.595.05-1 0-1.14-.117-.147-.307-.237-.638-.275l.14-1.19 9.188 1.081-.14 1.19c-.463-.055-.685.12-.731.517-.024.198.019.404.186.692.094.346.245.766.513 1.333l6.314 15.82 9.872-13.848c.392-.49.645-.93.882-1.236.237-.307.327-.498.342-.63.047-.397-.128-.618-.458-.657l.14-1.19 9.319 1.097-.14 1.19c-.198-.024-.404.019-.61.062-.28.1-.378.357-.416.688l-2.925 24.851c-.039.33-.004.603.245.766.175.222.365.311.564.335l-.14 1.19-7.667-.903.14-1.19c.925.11 1.36-.175 1.306-.851l2.186-18.573-.132-.015-13.679 19.431-.528-.062-8.2-22.006.067.008-.133-.016-2.185 18.573c-.078.66.28 1.038 1.007 1.124l-.14 1.19-7.469-.88.14-1.19zM509.372 96.079c.191-.844-.37-1.38-1.733-1.689l-15.838-3.582-1.468 6.491 9.996 2.261c.714.162 1.313.229 1.667.172.339.009.607-.272.71-.726l1.168.264-1.556 6.88-1.298-.293c.232-.425.111-.793-.314-1.026a15.167 15.167 0 00-1.983-.585l-9.477-2.143-1.732 7.66 16.617 3.757c.52.118 1.003.09 1.386-.095.369-.122.637-.402.725-.792l1.169.265-1.542 6.815-1.168-.264c.088-.39-.063-.628-.373-.767-.31-.138-.764-.24-1.283-.358l-23.823-5.388.265-1.168c.194.044.469.037.707-.113.225-.086.413-.316.487-.64l5.49-24.278a1.102 1.102 0 00-.148-.852 1.284 1.284 0 00-.605-.341l.264-1.169 23.043 5.212c1.364.308 2.1.066 2.277-.713l1.168.264-1.63 7.205-1.168-.264zM513.885 119.831c.757.254 1.242.066 1.453-.565l7.917-23.597c.211-.631-.061-1.074-.819-1.328l.381-1.136 9.275 3.112-.38 1.136c-.337-.043-.485-.022-.548.167-.064.19.188.905.816 2.17l9.767 21.105 5.736-17.099c.212-.63-.124-1.094-.944-1.37l.38-1.135 7.698 2.582-.38 1.136c-.758-.254-1.242-.065-1.454.565l-7.916 23.598c-.212.63.06 1.073.818 1.327l-.381 1.136-8.202-2.752.38-1.135c.316.105.485.022.548-.168.064-.189-.041-.505-.271-1.073-.294-.59-.587-1.18-.902-1.917l-10.06-21.907-6.159 18.361c-.211.63.125 1.095 1.008 1.39l-.381 1.137-7.76-2.604.38-1.136zM560.678 137c.182.08.452.129.716.028.236-.04.466-.229.602-.533l9.043-20.232-7.899-3.53a1.878 1.878 0 00-1.02-.165c-.385.047-.615.236-.778.6l-1.093-.489 3.122-6.987 1.094.489c-.244.547-.313 1.026-.09 1.345.222.318.471.575.775.71l21.63 9.668c.304.136.662.15 1.047.104.385-.047.697-.418.941-.965l1.094.489-3.123 6.987-1.094-.489c.163-.364.15-.661-.072-.98a1.878 1.878 0 00-.803-.65l-7.898-3.53-9.043 20.232c-.272.608-.043 1.075.686 1.4l-.488 1.094-7.838-3.503.489-1.094zM97.085 747.003c-.455.485-.391 1 .24 1.592l-.819.873-6.357-5.957.819-.873c.534.5 1.004.485 1.458 0l17.007-18.148c.454-.486.44-.956-.095-1.456l.819-.873 6.357 5.957-.819.873c-.63-.591-1.15-.621-1.604-.136l-7.412 7.91c1.98.123 3.96.247 5.989.416 2.028.17 3.869.345 5.518.433 1.65.087 3.063.136 4.194.193 1.13.057 1.695.04 1.831-.107.137-.145.176-.382.121-.615a1.734 1.734 0 00-.397-.646l.682-.728 8.006 7.503-.818.874c-.525-.219-1.425-.425-2.793-.521l-14.242-1.043-1.246 16.695c-.066.849-.084 1.743-.102 2.638-.064.943.149 1.689.45 2.243l-.82.874-7.18-6.73.818-.873c.34.318.624.403.806.209.137-.146.225-.337.306-.716.082-.379.11-.991.127-1.886l.853-12.872-6.605-.538-5.092 5.435zM119.713 769.015c.631.488 1.15.47 1.557-.057l15.22-19.67c.406-.527.294-1.034-.337-1.522l.733-.947 7.731 5.982-.732.947c-.304-.151-.45-.18-.572-.022-.122.158-.12.916.058 2.315l2.287 23.126 11.028-14.254c.407-.525.242-1.073-.441-1.602l.732-.947 6.417 4.964-.733.947c-.63-.488-1.15-.47-1.557.057l-15.219 19.67c-.407.527-.295 1.034.337 1.522l-.733.947-6.837-5.29.732-.947c.263.203.45.18.572.022.122-.158.127-.49.096-1.103-.083-.653-.167-1.306-.221-2.105l-2.301-23.977-11.842 15.306c-.407.526-.242 1.073.494 1.643l-.732.947-6.47-5.005.733-.947zM156.831 796.544c.612.402 1.037.602 1.369.581.295.035.553-.114.735-.392l13.66-20.784a.948.948 0 00.104-.886c-.149-.258-.501-.569-1.113-.97l.658-1 8.447 5.55-.658 1c-1.055-.693-1.738-.744-2.103-.188l-13.66 20.784c-.365.556-.048 1.162 1.008 1.856l-.657 1-8.447-5.55.657-1.001zM207.492 805.484l-.47-.795c.285-.374.44-.516.473-.574.194-.349.189-.885-.107-1.583-.329-.64-.74-1.403-1.36-2.205-.618-.802-1.386-1.61-2.243-2.393-.949-.758-1.93-1.457-2.975-2.04a20.782 20.782 0 00-4.324-1.803c-1.472-.364-2.867-.456-4.243-.31-1.409.204-2.682.712-3.878 1.492-1.197.78-2.264 2.011-3.171 3.638-.907 1.626-1.394 3.182-1.338 4.583.023 1.46.318 2.843.949 4.032a10.096 10.096 0 002.41 3.324c1.058.971 2.122 1.793 3.226 2.408a35.639 35.639 0 004.956 2.308 15.33 15.33 0 004.81.932l2.041-3.66-5.982-3.336c-.406-.226-.845-.395-1.233-.383-.387.013-.814.231-1.131.664l-1.045-.583 3.336-5.982 1.045.583c-.168.439-.066.8.16 1.079.226.278.6.563 1.006.79l11.384 6.348-.583 1.045c-.446-.02-.776.025-.989.134-.213.11-.433.368-.66.774l-3.077 5.518c-.195.348-.266.613-.215.794-.039.207.129.452.438.853l-.389.697c-.478.038-1.162.037-2.144.022a31.876 31.876 0 01-3.526-.367c-1.388-.241-2.886-.696-4.526-1.306-1.672-.552-3.42-1.375-5.28-2.411-2.497-1.393-4.6-2.947-6.308-4.661-1.742-1.657-2.998-3.5-3.777-5.38-.836-1.914-1.162-3.923-.952-5.938.12-1.99.75-4.074 1.883-6.107 1.134-2.033 2.577-3.665 4.239-4.87 1.571-1.179 3.452-1.957 5.552-2.31 2.01-.325 4.237-.225 6.626.27 2.357.553 4.784 1.526 7.281 2.919 1.51.842 2.782 1.703 3.781 2.641 1 .938 1.825 1.78 2.534 2.556.71.776 1.303 1.487 1.663 2.07.361.581.703.924.993 1.086.29.162.555.234.762.273.207.039.446.02.775-.025l.503.737-6.9 4.452zM220.634 831.287c-.133.305-.117.602.013.804.103.262.26.403.504.509l-.477 1.097-7.685-3.34.478-1.098c.244.106.453.125.777.048.175-.07.403-.26.535-.565l9.917-22.809c.132-.305.116-.602.074-.838-.191-.228-.348-.368-.592-.474l.478-1.098 7.684 3.34-.477 1.099a1.123 1.123 0 00-.69-.083c-.262.104-.49.295-.623.6l-3.738 8.599 16.344 7.105 3.738-8.599c.133-.304.178-.575.074-.837a1.34 1.34 0 00-.59-.475l.476-1.098 7.685 3.341-.478 1.098a1.123 1.123 0 00-.689-.082c-.263.103-.49.294-.623.599l-9.916 22.808c-.133.305-.117.602.013.804.103.262.26.403.504.509l-.478 1.098-7.684-3.341.477-1.098c.244.106.515.151.777.048.236-.043.403-.26.536-.565l4.004-9.209-16.345-7.106-4.003 9.21zM262.063 848.82c.19.062.463.083.715-.044.231-.063.441-.274.546-.59l6.961-21.021-8.207-2.718a1.877 1.877 0 00-1.03-.061c-.378.085-.588.295-.714.674l-1.136-.376 2.404-7.26 1.136.376c-.188.568-.208 1.052.045 1.346.253.294.527.525.843.63l22.473 7.442c.316.104.673.083 1.052-.002.378-.085.65-.485.839-1.053l1.136.376-2.404 7.26-1.136-.377c.125-.378.082-.673-.17-.967a1.877 1.877 0 00-.864-.566l-8.206-2.717-6.962 21.021c-.21.632.065 1.073.823 1.324l-.377 1.136-8.143-2.697.376-1.136zM292.401 848.824l-.346 1.147c-.157.647.09 1.322.805 2.043.7.785 1.559 1.472 2.644 2.077 1.005.655 2.09 1.26 3.206 1.735 1.052.46 1.925.809 2.572.966.581.14 1.373.264 2.293.418a9.595 9.595 0 002.726.045c.903-.055 1.773-.254 2.48-.63.69-.312 1.17-.88 1.374-1.72.235-.97-.125-1.741-1.05-2.444-.989-.719-2.203-1.355-3.756-2.005-1.569-.586-3.187-1.251-4.998-1.964a22.213 22.213 0 01-4.889-2.416c-1.49-.909-2.595-1.998-3.378-3.282-.864-1.236-1.037-2.783-.583-4.657.674-2.78 2.37-4.695 5.023-5.763 2.654-1.067 6.089-1.124 10.225-.122 2.004.485 3.717 1.038 5.126 1.721 1.343.668 2.477 1.353 3.353 1.976.875.622 1.637 1.15 2.205 1.629.503.464.909.768 1.232.846.323.078.597.076.822-.006.21-.018.435-.1.725-.167l.539.884-4.704 5.292-1.07-.67c-.001-.274.061-.533.06-.807-.003-.274-.134-.58-.394-.916-.668-.915-1.869-1.89-3.553-2.846-1.685-.955-3.625-1.7-5.887-2.247-.84-.204-1.697-.343-2.488-.466-.807-.059-1.565-.037-2.209.08-.644.118-1.24.316-1.657.625a2.706 2.706 0 00-.893 1.426c-.234.97.126 1.741 1.13 2.395.925.703 2.14 1.34 3.708 1.925 1.553.65 3.171 1.316 4.998 1.964 1.812.712 3.398 1.507 4.873 2.48 1.475.974 2.58 2.062 3.412 3.427.768 1.35.925 2.961.47 4.836-.454 1.874-1.282 3.315-2.484 4.324-1.267.993-2.65 1.616-4.18 1.998-1.529.382-3.19.459-4.852.261-1.728-.213-3.31-.46-4.797-.82-1.486-.36-2.877-.834-4.22-1.502a27.854 27.854 0 01-3.708-1.925c-1.15-.62-2.04-1.178-2.787-1.77-.762-.526-1.183-.765-1.377-.812a.948.948 0 00-.869.2l-.748-.866 4.727-6.518 1.15.62zM363.784 847.014c-1.39-.138-2.799-.078-4.168.253a11.448 11.448 0 00-3.838 1.623 9.133 9.133 0 00-2.83 2.927c-.787 1.191-1.256 2.548-1.414 4.136-.158 1.588.035 3.01.571 4.334.47 1.316 1.232 2.394 2.205 3.36.967 1.032 2.099 1.746 3.442 2.347 1.278.595 2.641.998 4.03 1.136 1.39.139 2.806.012 4.242-.313 1.37-.331 2.62-.808 3.77-1.63 1.145-.754 2.104-1.661 2.891-2.853.72-1.198 1.19-2.555 1.348-4.143.158-1.588-.035-3.01-.505-4.327a10.15 10.15 0 00-2.265-3.433 11.858 11.858 0 00-3.376-2.34 13.13 13.13 0 00-4.103-1.077zm.487-4.897a25.93 25.93 0 016.79 1.611c2.058.806 3.82 1.917 5.282 3.332a13.61 13.61 0 013.311 5.008c.736 2.011.982 4.24.731 6.755-.25 2.515-.93 4.653-2.041 6.413a13.245 13.245 0 01-4.24 4.323c-1.713 1.1-3.651 1.775-5.821 2.094-2.243.378-4.52.42-6.968.176-2.448-.244-4.672-.732-6.73-1.539-2.131-.746-3.898-1.79-5.361-3.206a13.245 13.245 0 01-3.305-5.074c-.742-1.945-.988-4.175-.738-6.69.25-2.514.93-4.651 2.048-6.478a13.61 13.61 0 014.233-4.257c1.713-1.1 3.658-1.841 5.901-2.22a25.073 25.073 0 016.908-.248zM416.242 850.505c.002-.2-.129-.466-.46-.668-.33-.202-.862-.273-1.594-.28l-18.02-.144-.057 7.049 11.704.094c.731.006 1.197-.057 1.398-.255.2-.131.27-.397.339-.729l1.196.01-.056 6.982-1.197-.01c-.063-.332-.128-.599-.326-.8-.198-.201-.663-.271-1.394-.277l-11.704-.094-.081 10.174c-.003.332.128.6.46.735.33.202.662.271 1.061.275l-.01 1.197-9.176-.074.01-1.197c.864.007 1.266-.322 1.27-.987l.2-24.87c.006-.666-.457-1.002-1.388-1.01l.01-1.196 25.801.207c.731.006 1.265-.123 1.599-.32.334-.196.47-.528.472-.86l1.197.01-.057 7.048-1.197-.01zM454.915 869.845a.953.953 0 00.628-.345c.181-.156.281-.436.241-.766l-2.68-21.982-8.581 1.046c-.33.04-.652.147-.958.385-.306.238-.406.519-.358.915l-1.188.144-.926-7.59 1.189-.146c.072.594.26 1.04.615 1.198.354.158.7.25 1.03.21l23.5-2.866c.33-.04.644-.212.95-.45.306-.239.382-.717.31-1.31l1.187-.146.926 7.591-1.188.145c-.049-.396-.213-.644-.567-.801a1.877 1.877 0 00-1.022-.144l-8.582 1.046 2.68 21.982c.08.66.517.942 1.31.846l.144 1.188-8.516 1.038-.144-1.188zM489.6 863.5c.066.326.249.56.47.652.235.157.444.183.705.13l.235 1.174-8.216 1.646-.235-1.174c.26-.052.443-.156.665-.404.104-.157.182-.444.117-.77l-4.886-24.386a1.426 1.426 0 00-.417-.73c-.287-.078-.496-.104-.757-.052l-.235-1.174 8.216-1.646.235 1.174c-.26.052-.443.156-.613.326a1.101 1.101 0 00-.17.848l1.843 9.194 17.475-3.502-1.842-9.193c-.066-.326-.183-.574-.418-.73a1.34 1.34 0 00-.756-.052l-.236-1.174 8.216-1.646.235 1.174c-.26.052-.443.156-.613.326a1.101 1.101 0 00-.169.848l4.886 24.386c.065.326.248.56.47.652.235.156.443.182.704.13l.235 1.174-8.216 1.646-.235-1.174c.261-.052.509-.17.665-.404.17-.17.183-.444.117-.77l-1.972-9.846-17.475 3.501 1.973 9.846zM545.046 827.293c-.259-.825-1.013-1.006-2.345-.588l-15.481 4.86 1.991 6.345 9.771-3.068c.698-.219 1.25-.461 1.527-.688.297-.163.388-.54.248-.984l1.142-.359 2.112 6.726-1.27.398c-.012-.484-.302-.741-.786-.729-.464.076-1.181.232-2.006.49l-9.264 2.91 2.35 7.486 16.243-5.1c.508-.159.912-.425 1.15-.779.257-.29.348-.666.228-1.047l1.142-.359 2.092 6.662-1.142.359c-.12-.38-.37-.512-.707-.475-.337.036-.781.175-1.289.335l-23.285 7.31-.358-1.142a.953.953 0 00.555-.453c.15-.187.197-.48.098-.798l-7.45-23.729a1.101 1.101 0 00-.556-.662 1.283 1.283 0 00-.694.01l-.359-1.143 22.524-7.071c1.332-.418 1.847-.998 1.608-1.76l1.142-.358 2.21 7.043-1.141.358zM583.223 836.036c.72-.345.936-.817.649-1.417l-10.741-22.432c-.288-.6-.791-.727-1.51-.383l-.518-1.08 8.817-4.221.517 1.08c-.271.203-.362.32-.276.5.086.18.764.52 2.095.988l21.69 8.342-7.784-16.254c-.287-.6-.85-.699-1.63-.326l-.517-1.08 7.317-3.503.517 1.08c-.72.344-.936.816-.648 1.416l10.74 22.432c.288.6.791.727 1.511.383l.517 1.08-7.797 3.733-.517-1.08c.3-.143.362-.32.276-.5-.086-.18-.38-.334-.942-.582-.62-.219-1.241-.437-1.98-.747l-22.456-8.712 8.357 17.454c.287.6.85.698 1.69.296l.517 1.08-7.377 3.532-.517-1.08zM624.868 787.695c-1.194.726-2.283 1.622-3.178 2.71a11.448 11.448 0 00-2.088 3.605 9.133 9.133 0 00-.501 4.04c.088 1.426.53 2.792 1.359 4.156.83 1.363 1.839 2.384 3.063 3.118 1.168.768 2.425 1.172 3.783 1.357 1.393.243 2.727.133 4.162-.195 1.378-.294 2.71-.792 3.903-1.517 1.193-.726 2.248-1.679 3.2-2.802.894-1.089 1.606-2.222 2.031-3.57.46-1.292.68-2.593.592-4.018-.145-1.391-.586-2.757-1.415-4.12-.83-1.364-1.84-2.385-3.007-3.153a10.15 10.15 0 00-3.874-1.38 11.858 11.858 0 00-4.105.16 13.13 13.13 0 00-3.925 1.61zm-2.557-4.204a25.93 25.93 0 016.393-2.798c2.13-.594 4.204-.766 6.224-.516 2.02.25 3.894.9 5.657 2.008 1.798 1.164 3.336 2.797 4.648 4.957 1.313 2.159 2.056 4.276 2.228 6.35a13.245 13.245 0 01-.786 6.004c-.707 1.909-1.849 3.615-3.39 5.175-1.565 1.651-3.359 3.053-5.46 4.332-2.103 1.278-4.173 2.226-6.303 2.82-2.151.685-4.191.914-6.211.664-2.02-.25-3.895-.9-5.692-2.065-1.763-1.107-3.3-2.74-4.614-4.9-1.313-2.159-2.055-4.276-2.262-6.407a13.61 13.61 0 01.82-5.947c.708-1.909 1.815-3.672 3.38-5.323a25.073 25.073 0 015.368-4.354zM665.328 769.97c3.462-2.587 4.384-5.02 2.752-7.203-.676-.906-1.62-1.28-2.817-1.216-1.21.158-2.742.887-4.553 2.24l-8.417 6.29 4.618 6.179 8.417-6.29zm-7.457-10.2c3.143-2.35 6.045-3.687 8.56-3.989 2.553-.248 4.812.887 6.683 3.39.717.96 1.194 1.931 1.378 2.956.184 1.024.236 1.982.048 2.952-.148 1.024-.522 1.968-.976 2.805-.414.89-.96 1.714-1.587 2.43l10.913 3.718c.545.174 1.103.254 1.595.136a4.8 4.8 0 001.424-.317l.717.959-8.15 6.09-.717-.959c.479-.358.573-.677.334-.997-.279-.373-.943-.706-2.033-1.054l-8.906-3.142-7.404 5.533 5.692 7.618c.199.266.465.4.81.307.333.001.586-.105.8-.264l.716.959-7.086 5.294-.716-.96c.64-.477.76-.982.362-1.515l-14.887-19.923c-.398-.533-.917-.56-1.556-.083l-.717-.959 14.703-10.986zM698.657 762.706a.953.953 0 00.319-.641c.06-.232-.017-.52-.239-.767l-14.736-16.53-6.453 5.754a1.877 1.877 0 00-.568.862c-.115.37-.037.657.228.955l-.893.797-5.09-5.709.894-.796c.398.447.807.705 1.188.633.381-.072.718-.194.966-.416l17.67-15.754c.249-.221.409-.542.524-.912.115-.37-.095-.806-.493-1.253l.893-.797 5.09 5.709-.894.796c-.266-.298-.542-.408-.923-.335-.38.072-.673.244-.921.465l-6.453 5.753 14.737 16.53c.442.495.961.478 1.557-.053l.796.894-6.403 5.708-.796-.893zM723.745 737.648c.243.227.528.312.761.257.282-.01.467-.11.649-.304l.874.818-5.726 6.118-.874-.818c.182-.194.27-.385.306-.716-.006-.188-.11-.467-.352-.694l-18.16-16.994a1.426 1.426 0 00-.764-.351c-.279.103-.464.203-.645.397l-.874-.817 5.725-6.118.874.818c-.182.194-.27.385-.309.622.01.282.113.56.356.788l6.846 6.407 12.178-13.013-6.846-6.407c-.243-.227-.483-.36-.765-.35a1.34 1.34 0 00-.645.397l-.874-.818 5.725-6.118.874.818c-.182.194-.27.385-.309.622.01.282.113.56.356.788l18.16 16.994c.242.228.527.312.76.258.282-.01.467-.11.649-.304l.874.818-5.725 6.117-.874-.817c.181-.195.315-.434.305-.716.04-.237-.11-.467-.352-.694l-7.332-6.862-12.178 13.013 7.332 6.861zM288.144 287.296c-2.19-1.331-5.52.391-5.698 2.948 1.667 1.359 4.654.15 4.905-1.986l.793-.962zM546.829 472.98c3.317-.146 4.46-5.451 1.778-7.409a22.212 22.212 0 00-2.07 6.73l.292.679zM464.214 298.32c-1.272-2.42-4.729-3.366-7.056-1.93 1.716 2.445 4.957 3.712 7.877 3.079l-.821-1.149zM344.446 681.229c1.292 2.484 4.903 3.385 7.21 1.798-1.853-2.36-5.12-3.513-8.043-2.837l.833 1.039zM202.624 348.007c2.938-1.425 4.445-5.252 3.267-8.298-2.253 1.319-3.665 3.954-3.517 6.56l.25 1.738zM633.579 439.582c-.261 4.771 1.216 9.618 4.092 13.434 1.131-4.774-.491-10.101-4.092-13.434M340.148 676.448a13.968 13.968 0 00-8.029-3.902c.62 4.614 5.772 8.054 10.272 6.86.019-1.058-.637-2.097-1.6-2.536l-.643-.422zM170.214 455.277l.382 9.504c1.646-.38 2.028-2.515 2.068-4.203l.303-12.758c-2.179 1.197-3.29 4.044-2.497 6.401l-.256 1.056zM535.477 523.118l-4.284-4.594c-1.908 1.487-2.38 4.514-1.013 6.51 1.367 1.996 4.36 2.65 6.436 1.407 1.096-.67.866-2.654-.355-3.054l-.784-.269zM461.634 402.456a199.854 199.854 0 00-12.267 7.885c5.261 2.317 12.19-2.137 12.267-7.885M387.898 788.868a75.617 75.617 0 0010.073-10.192c-5.63-1.996-12.135 4.587-10.073 10.192M193.171 521.846a51.827 51.827 0 00-5.629-15.585c-.672-1.208-1.678-2.548-3.057-2.448.486 6.816 3.659 13.404 8.686 18.033M488.647 402.5c-2.896-.734-6.022 2.294-5.382 5.211.642 2.917 4.75 4.356 7.07 2.476-.05-1.007-.997-1.882-2.004-1.856l4.17-6.035-2.606-.712-1.248.916zM393.596 787.474l-2.386 1.771c.891.11 1.033 1.664.176 1.932 2.822 1.342 7.048 2.233 8.345-.61 1.083-2.373-.603-6.341 1.895-7.092-2.792-1.527-6.826.641-7.093 3.812l-.937.187zM351.881 684.276a22.704 22.704 0 0013.476 6.337c1.455.149 3.263-.045 3.852-1.385-4.807-3.868-11.203-5.696-17.328-4.952M399.975 487.865a7.033 7.033 0 001.334-5.9c-4.744-.898-9.875 2.625-10.744 7.374 2.87 1.005 6.203.58 8.728-1.116l.682-.358zM350.801 312.177c2.549-6.105 2.4-13.282-.399-19.276-3.257 5.892-3.099 13.523.399 19.276M489.613 452.979a49.848 49.848 0 0110.741-12.684c-3.371-1.16-7.402-.051-9.706 2.67-2.305 2.721-2.734 6.879-1.035 10.014M281.783 645.518c3.196-2.856 6.602-6.095 7.134-10.349a92.749 92.749 0 00-19.84 17.988c1.705 1.45 4.246-.08 5.916-1.573 2.264-2.021 4.527-4.045 6.79-6.066M467.647 500.027c-.216-.852-.881-1.504-1.518-2.109l-3.801-3.618c-1.341-1.275-3.138-2.65-4.855-1.96-1.487.599-2.011 2.565-1.54 4.099.471 1.533 1.656 2.725 2.799 3.85 1.448 1.425 3.048 2.926 5.062 3.186 2.015.26 4.354-1.479 3.853-3.448M404.578 763.468a129.79 129.79 0 00-.944 16.095c.007 1.903 1.635 4.582 3.024 3.28 2.366-6.743 2.607-14.216.677-21.097l-2.757 1.722M404.521 746.15c-.053 1.206-.282 2.509.335 3.547.632 1.062 2.145 1.485 3.236.903a333.566 333.566 0 01-.171-23.435c-3.615.266-5.468 4.67-5.161 8.282.307 3.612 1.92 7.081 1.761 10.703M414.32 655.138c1.858 2.57 6.596 1.925 7.698-1.049 1.03-2.775-.734-6.406 1.261-8.592 1.443-1.581 3.93-1.33 6.051-1.618 2.121-.289 4.539-2.291 3.497-4.161-4.536 1.014-10.413-1.459-13.283 2.196-1.585 2.018-1.212 4.87-1.305 7.435-.093 2.564-1.356 5.658-3.919 5.789M547.882 310.719l2.381 3.364c3.6-3.353 3.641-9.782.085-13.182a22.004 22.004 0 00-2.283 8.043c-3.73-.3-7.547 1.725-9.391 4.981-1.844 3.255-1.616 7.57.559 10.614a47.644 47.644 0 018.649-13.82M243.505 326.452l16.734-8.986c-1.939-2.362-5.351-3.153-8.346-2.546-2.996.608-5.622 2.411-7.864 4.489a32.905 32.905 0 00-6.85 9.01c2.234.185 4.352-.907 6.326-1.967M267.908 441.446c-6.573 3.802-9.024 12.246-8.678 19.83.17 3.704 1.289 7.959 4.691 9.43 2.699-2.455.154-6.755-.376-10.365-.952-6.489 5.423-12.423 4.363-18.895M313.599 468.785c3.708-2.334 5.663-6.779 6.062-11.142.397-4.363-.542-8.726-1.477-13.006-.308-1.409-.825-3.055-2.205-3.469-2.713 1.443-3.105 5.207-2.464 8.213.641 3.006 1.966 6.011 1.408 9.033-.665 3.608-3.799 7.663-1.324 10.371M331.924 374.512c-.905-1.185-2.786-2.386-3.621-1.151-.473 3.193 1.404 6.212 3.198 8.895-4.946 2.804-9.904-6.867-15.306-5.095 1.86 4.716 6.076 8.434 10.987 9.69 2.376.608 5.215.537 6.895-1.25 2.819-2.999.346-7.818-2.153-11.089M307.344 420.407c-.501-.542-1.209-.835-1.897-1.102a69.723 69.723 0 00-20.591-4.55c2.926 4.846 8.427 7.401 13.609 9.682 2.105.927 4.421 1.872 6.638 1.262 2.218-.609 3.803-3.605 2.241-5.292M296.292 498.133c4.845-.371 7.126-6.87 5.195-11.328-1.932-4.458-6.39-7.19-10.59-9.637l-2.684-1.564c.106 8.235 10.932 14.803 8.079 22.529M635.25 471.833l-10.13 32.842c-.578 1.878-1.066 4.184.304 5.593a146.023 146.023 0 0013.283-43.553c-1.98.792-2.828 3.079-3.457 5.118M458.539 663.424c-3.258 2.781-9.197.895-10.254-3.256-.62-2.436-3.772-3.456-6.168-2.691-2.395.764-4.172 2.74-5.827 4.633-1.355 1.549-2.732 3.918-1.356 5.45 1.971.98 3.79-1.451 5.041-3.264 1.252-1.812 4.618-2.967 5.14-.827.756 3.097 3.454 5.628 6.594 6.184 3.139.556 6.543-.894 8.317-3.542l-1.487-2.687M292.218 280.703a79.211 79.211 0 01-27.748-7.96c-1.766-.882-4.162-1.732-5.475-.258 6.251 8.572 18.119 10.357 28.7 11.13 2.148.158 5.282-.896 4.523-2.912M391.603 534.895c2.559-.514 3.692-3.624 3.547-6.229-.145-2.606-1.085-5.19-.699-7.771.453-3.024 2.677-5.631 2.799-8.687-6.094 2.492-10.55 8.588-11.074 15.152-.286 3.587 1.899 8.243 5.427 7.535M300.623 394.282l.9 2.686a11.636 11.636 0 006.733 1.977c3.793-.088 7.769-2.606 8.307-6.361.538-3.756-3.904-7.576-7.174-5.654a10.195 10.195 0 003.145 6.22c-3.239 1.545-7.314 1.155-10.201-.976-2.455-1.812-6.061-1.221-8.539.559-2.479 1.78-4.088 4.496-5.626 7.131a55.968 55.968 0 0012.455-5.582M359.389 422.956l14.396 12.23c2.6 2.209 5.297 4.473 8.558 5.48 3.259 1.007 7.26.435 9.343-2.269-10.32-1.278-18.54-8.931-25.982-16.195 1.263.102 2.476-1.075 2.411-2.341-.064-1.266-1.389-2.313-2.636-2.084a22.054 22.054 0 01-6.09 5.179M344.689 582.751l2.186 3.1a31.897 31.897 0 008.868-15.332c.259-1.053.413-2.31-.339-3.09-1.057-1.1-2.904-.36-4.152.517-6.18 4.343-10.74 10.937-12.622 18.252 2.442.072 4.872-1.311 6.059-3.447M400.815 713.955c3.791.687 4.094 5.968 3.439 9.765 1.297-.369 2.768-.717 3.928-.031l.216-25.386c.011-1.374-.398-3.215-1.772-3.243-2.864 1.301-2.205 5.45-1.595 8.536.61 3.087-.849 7.64-3.885 6.813l1.073-7.334c-2.774-.216-5.516 2.013-5.873 4.773-.356 2.759 1.73 5.612 4.469 6.107M388.019 696.451c-1.792 1.687-2.094 4.728-.672 6.735 2.792 1.316 5.222-2.705 4.964-5.78-.257-3.075-1.472-6.525.372-9 2.454-3.295-1.924-7.814-1.164-11.852.733-3.904 5.866-5.625 6.926-9.453-2.834-1.458-6.469.337-8.135 3.054-1.666 2.717-1.874 6.051-2.038 9.234l-.253 4.913c-.208 4.048-.416 8.116 0 12.149M188.553 392.16l-15.29 44.498c-.822 2.39-1.607 5.17-.272 7.315a374.987 374.987 0 0018.986-53.786c-.867-1.424-2.882.397-3.424 1.972"}),l("path",{d:"M555.848 476.488c.868-4.228 2.731-8.265 2.981-12.573.25-4.309-1.794-9.257-5.972-10.337-1.065-.275-2.519-.044-2.763 1.028 4.48 3.775 4.029 10.76 2.542 16.427-1.486 5.666-3.593 11.807-1.217 17.162.938 2.114 3.439 4.089 5.391 2.847a27.643 27.643 0 01-.962-14.554M181.122 505.28c-5.857-3.845-4.54-15.221-11.383-16.727a425.177 425.177 0 0024.595 51.391c2.048-.061 1.86-3.192.975-5.04l-14.187-29.624M321.432 342.342c-1.436.716-3.05-.563-4.03-1.834a23.325 23.325 0 01-3.22-5.674 19.842 19.842 0 017.25 7.508m-.244-8.649l-7.291-7.274c-.59-.59-1.204-1.195-1.979-1.507-2.855-1.151-5.641 2.55-5.139 5.588.501 3.037 2.827 5.382 4.576 7.916 1.633 2.366 2.85 5.066 4.937 7.043 2.087 1.977 5.484 3.026 7.84 1.379 2.113-1.477 2.527-4.577 1.643-6.999-.883-2.422-2.762-4.325-4.587-6.146M436.375 607.867c-1.093 4.092-1.407 8.346-1.716 12.57-.156 2.126-.267 4.431.916 6.204 5.902-3.972 10.375-10.022 12.445-16.83.988-3.252 1.065-7.524-1.867-9.244-2.039-1.195-4.787-.494-6.524 1.109-1.737 1.602-2.645 3.907-3.254 6.191M465.423 655.365c.737-.78 2.331.184 1.983 1.198-.347 1.015-2.197.799-2.301-.268l.318-.93zm13.446-4.622c-.483-.663-1.094-1.228-1.761-1.705-3.293-2.359-8.058-2.427-11.416-.163-3.359 2.263-5.083 6.706-4.131 10.642.474 1.967 1.698 3.894 3.605 4.57.895.318 1.865.338 2.815.297 3.57-.154 7.269-1.239 9.729-3.832 2.46-2.593 3.268-6.923 1.159-9.809M414.285 642.057c-1.524-.998-3.475-.982-5.296-.934-4.894.133-10.654.754-13.1 4.996-1.41 2.446-1.494 5.834-3.852 7.389-1.037.684-2.32.85-3.554.997l-31.138 3.737c-.732 1.029-.01 2.572 1.115 3.147 1.124.576 2.462.466 3.719.342l26.169-2.587c2.874-.283 6.009-.691 7.998-2.783 2.678-2.821 2.478-7.927 5.847-9.868 2.035-1.174 4.569-.67 6.917-.739 2.349-.069 5.157-1.347 5.175-3.697M261.228 578.546c13.413 6.389 29.214 7.597 43.443 3.322.355-.107.726-.226.985-.492 1.068-1.098-.755-2.643-2.233-3.043a92.11 92.11 0 00-38.406-2.036c-1.534.245-3.339.763-3.789 2.249M383.505 420.409c-2.866-3.399-6.168-6.404-9.546-9.295a221.376 221.376 0 00-13.952-11.002c-2.504-1.818-5.174-3.634-8.238-4.069-3.065-.435-6.616.96-7.636 3.882a11.903 11.903 0 00-2.272-4.169l-3.474 3.501c.58 1.701 2.93 2.493 4.421 1.49l2.05 3.99c1.725 1.262 2.625-2.579 4.487-3.63 1.227-.692 2.743.031 3.946.766a115.292 115.292 0 0127.986 24.033c1.795 2.129 3.545 5.281 1.816 7.464a19.342 19.342 0 019.173 2.088 50.58 50.58 0 00-8.761-15.049M278.679 333.573c-2.334 1.938-6.542.414-7.094-2.569 1.696-1.418 4.691-.685 5.539 1.356l1.555 1.213zm2.361 11.249c2.631-2.231 6.976-2.043 9.404.406a10.2 10.2 0 00-4.823 3.193c1.417 1.058 3.813.12 4.136-1.619 3.905 1.321 7.146 4.479 8.566 8.351-1.53 1.578-3.994-.496-5.196-2.335-1.203-1.84-3.889-3.745-5.219-1.994 1.548 3.331 3.307 6.89 6.562 8.591 3.255 1.7 8.319.171 8.646-3.487.218-2.436-1.637-4.511-3.362-6.246l-22.922-23.058c-2.553-2.569-7.546-1.173-8.94 2.17-1.395 3.342.506 7.469 3.682 9.209 3.177 1.739 7.206 1.372 10.443-.252l-.977 7.071"}),l("path",{d:"M448.489 642.861l12.812-.723c-2.583 2.203-5.266 4.545-6.473 7.718-1.207 3.174-.342 7.412 2.742 8.833-2.018-5.432 1.902-11.715 7.233-13.985 5.332-2.271 11.486-1.407 17.019.316a8.114 8.114 0 01.467-6.564 616.257 616.257 0 00-34.475-.048c-2.351.063-5.092.349-6.34 2.345-1.64 2.623.4 6.594-1.623 8.935-3.055 1.377-6.956-2.549-5.305-5.467l-3.35-.618c-2.427 3.884-.26 9.797 4.103 11.194 4.362 1.395 9.559-2.163 9.837-6.734.101-1.663-.197-3.696 1.163-4.66.622-.441 1.428-.499 2.19-.542M364.822 246.777l-2.41 2.011c-.212-5.041 5.03-9.547 9.982-8.58l-7.171 5.937-.401.632zm25.351-9.251c-3.023 3.925-8.206 5.302-12.645 7.503a32.913 32.913 0 00-12.449 10.808c-1.537-.787-1.925-2.942-1.267-4.539.659-1.595 2.072-2.739 3.472-3.749a59.561 59.561 0 0122.889-10.023m-30.502 16.946c.639 2.091 1.597 4.423 3.666 5.127 3.728 1.267 6.348-3.454 8.897-6.454 3.449-4.059 8.915-5.608 13.867-7.57 4.952-1.962 10.161-5.132 11.343-10.326-11.506-2.615-23.867-1.306-34.57 3.658-5.265 2.442-4.899 10.016-3.203 15.565M397.858 216.345c-3.09-.266-5.341-3.968-4.155-6.834 2.736 1.019 4.695 3.84 4.693 6.76l-.538.074zm-7.646-1.874l-19.416.689c-1.485.053-3.297-.075-3.967-1.402a145.03 145.03 0 0123.479-8.385 15.551 15.551 0 00-.096 9.098m-22.918-5.446c-3.527 1.522-7.514 3.593-8.224 7.368 9.925 6.274 23.374-.331 34.571 3.202 2.028.64 3.982 1.615 6.1 1.795 2.118.181 4.546-.717 5.266-2.717.885-2.458-1.143-4.925-3.007-6.756l-8.288-8.138c-1.353-1.329-2.83-2.723-4.701-3.038-1.762-.297-3.519.427-5.16 1.136l-16.557 7.148M459.833 259.609l-14.382-17.306c-7.296-8.78-20.994-11.442-31.048-6.032 4.13 4.463 8.991 9.226 15.071 9.317 4.451.067 9.613-2.263 12.925.712-.006 3.403-1.722 6.759-4.476 8.757a81.368 81.368 0 0021.91 4.552M337.955 418.84c2.254 1.469 4.041 3.632 6.458 4.813 2.418 1.182 5.963.872 7.033-1.597a8.027 8.027 0 00-2.821 5.412c-.252 2.945 1.381 6.041 4.086 7.232 2.705 1.19 6.28.149 7.689-2.448 1.409-2.597.13-6.359-2.663-7.325-1.285.964-1.849 2.788-1.332 4.309-.654.594-1.699.706-2.464.265-1.407-.599-1.814-2.527-1.253-3.951.561-1.423 1.798-2.45 2.987-3.414 2.824-2.287 6.034-4.704 9.659-4.439l.901-2.405c-.62-1.846-3.286-1.787-5.076-1.022-3.44 1.471-6.262 4.146-9.714 5.588-3.451 1.442-8.216 1.123-9.986-2.173 3.207-.312 5.863-3.462 5.629-6.675-.234-3.214-3.318-5.945-6.536-5.789-2.676.13-5.311-1.798-5.997-4.387-.687-2.589.646-5.569 3.034-6.782-2.303-1.913-6.185-.844-7.712 1.731-1.527 2.575-.958 6.022.803 8.444 1.76 2.422 4.505 3.954 7.325 4.961 1.791.639 3.89 1.315 4.56 3.095-3.092 2.4-7.484.643-11.347.015-4.908-.797-10.125.546-14.037 3.614a161.212 161.212 0 0026.824 14.097c-1.468-5.203-6.303-9.282-11.679-9.852-2.145-.228-5.179-.776-4.978-2.923 3.546-1.009 7.518-.407 10.607 1.606M284.576 455.102c-.863-1.112-.208-3.025 1.155-3.375 1.18 1.203.74 3.546-.798 4.237l-.357-.862zm-5.674 1.635c.234 2.613 3.008 4.398 5.63 4.472 2.622.075 5.097-1.107 7.452-2.262-1.534-3.082-1.01-7.07 1.268-9.65a80.036 80.036 0 005.092 13.207c2.355-5.279 2.201-11.725-.83-16.648-3.032-4.922-9.009-8.007-14.729-7.167-5.719.841-10.693 5.831-11.08 11.599-.087 1.281.033 2.585-.252 3.836-1.445 6.346 1.801 13.464 7.541 16.533 5.739 3.068 13.462 1.815 17.936-2.912-1.858-2.86-5.984-2.935-9.348-2.368-3.363.566-7.145 1.366-9.929-.606-4.431-3.136-2.552-10.013-.193-14.902 1.297.137 1.961 1.69 1.898 2.993-.063 1.303-.573 2.576-.456 3.875M523.307 455.714c.104 1.872-2.835 2.944-3.962 1.446-.081-1.113 1.498-1.911 2.346-1.185l1.616-.261zm5.172 5.265c.339 1.112.678 2.225 1.015 3.338-4.966 3.671-11.95 4.407-17.573 1.852-5.624-2.556-9.662-8.301-10.162-14.457-.125-1.541 2.186-2.214 3.461-1.34 1.275.874 1.77 2.477 2.411 3.884 3.407 7.476 13.715 10.799 20.848 6.723m-31.102-2.517c2.83 8.444 11.323 14.655 20.227 14.794 8.905.139 17.587-5.805 20.679-14.157.771-2.082 1.209-4.434.394-6.499-.891-2.257-3.077-3.71-5.232-4.823-7.692-3.968-16.657-5.418-25.207-4.077-4.503.707-9.415 2.641-11.089 6.881-.985 2.496-.624 5.337.228 7.881M299.734 253.298c1.387 1.652 3.875-.274 5.393-1.806 3.048-3.076 7.437-4.776 11.762-4.556a337.79 337.79 0 01-37.348 25.879c3.383 1.189 7.133.613 10.57-.413 13.206-3.941 23.768-14.11 31.455-25.55l10.862-2.662c7.119-1.745 14.785-3.83 19.3-9.604.61-.782 1.166-1.658 1.28-2.642.307-2.621-2.458-4.495-4.939-5.393-12.275-4.441-26.385-.871-37.11 6.571-10.725 7.442-18.573 18.306-25.377 29.447 7.005-.615 10.856-8.086 14.908-13.833 10.615-15.051 31.088-22.357 48.833-17.426-4.173 7.232-14.793 6.138-22.458 9.45-2.015.871-4.051 2.124-6.228 1.835-8.049-1.068-15.089 5.036-20.903 10.703M324.072 278.604a19.107 19.107 0 01-5.695 10.602c-1.006.947-2.306 1.833-3.663 1.571 1.09-5.179 4.633-9.787 9.358-12.173m-23.255 25.685a221.772 221.772 0 0112.154-14.911c-.838 8.158-5.794 15.788-12.907 19.869-1.381-1.226-.35-3.478.753-4.958m28.672-45.2c-2.969 3.946-3.675 9.138-6.017 13.485-5.315 9.869-18.728 15.059-20.18 26.174l-5.949-3.311c5.395-6.434 11.88-11.879 17.354-18.247 5.474-6.367 10.028-14.034 10.412-22.422-3.808-.106-5.45 4.601-6.986 8.086-.945 2.145-2.239 4.116-3.572 6.042a144.841 144.841 0 01-36.524 36.526c6.415 3.637 13.35-7.053 20.519-5.326-.343 4.371-4.395 7.558-8.507 9.082-4.111 1.523-8.602 1.978-12.537 3.912-1.584.779-3.156 2.966-1.748 4.031l24.262-4.775c6.204-1.221 10.911-6.168 14.983-11.006 3.766-4.476 7.398-9.124 10.057-14.335 4.355-8.532 5.93-18.455 4.433-27.916M176.264 233.03c-2.381-.097-4.638-1.683-5.537-3.891-.737-1.814-.569-3.94.309-5.69a15.675 15.675 0 015.228 9.581m19.489 20.362l5.449 5.346c-2.686-.796-4.984-2.808-6.129-5.364m51.59 53.536c1.564-8.086-4.86-15.314-10.774-21.046l-48.751-47.253c-2.585-2.506-5.214-5.07-6.874-8.264-1.323-2.545-1.991-5.421-3.582-7.807-1.591-2.385-4.611-4.231-7.285-3.193-3.993 1.549-3.532 7.465-1.438 11.201 2.55 4.545 6.341 8.245 10.079 11.876l60.662 58.922c2.347 2.28 4.825 4.639 7.963 5.564"}),l("path",{d:"M260.383 280.105c-1.884-1.432-3.764-3.101-4.481-5.355-.717-2.254.229-5.189 2.5-5.854 14.089-4.128 26.736-13.021 35.387-24.883l-59.246 14.382c-.62.15-1.272.318-1.724.768-1.285 1.276-.019 3.408 1.24 4.71a272.513 272.513 0 0032.926 28.972c2.569 1.917 5.636 3.89 8.749 3.122 3.111-.768 4.46-6.001 1.418-7.013a58.113 58.113 0 01-16.769-8.849M359.084 668.446a48.15 48.15 0 0019.763.139c3.611 5.152 1.751 12.127.64 18.319-1.376 7.673-1.356 15.52-1.332 23.314l.26 83.798c.007 2.436 1.593 5.902 3.715 4.706l2.357-127.116c.067-3.566-3.208-6.451-6.661-7.346-3.453-.894-7.088-.328-10.647-.085-6.83.465-14.41-.624-18.978-5.723-4.567-5.1-3.531-15.011 3.03-16.962 1.836-.546 3.796-.418 5.707-.284l14.197.991c-.988 3.68-5.257 5.3-9.009 5.959-3.752.658-7.975 1.124-10.403 4.06-2.429 2.935-.249 8.929 3.407 7.859-1.452-3.562 2.903-6.717 6.63-7.667 3.949-1.008 8.313-1.498 11.297-4.274 2.985-2.776 2.93-8.952-1.024-9.943-5.718-1.433-11.589-2.878-17.444-2.189-5.854.688-11.778 3.983-13.885 9.488-1.995 5.21-.089 11.357 3.719 15.435 3.808 4.076 9.211 6.334 14.661 7.521M258.443 601.337c-4.685-.744-8.813 2.945-12.168 6.358l-86.149 87.628c-4.991 5.077-10.257 12.983-5.943 18.666 2.595 3.419 7.712 3.88 11.633 2.232 3.921-1.648 6.927-4.919 9.804-8.096l83.403-92.129c2.836-3.132 5.779-7.901 3.154-11.218L167.46 708.55c-1.963 2.15-4.987 4.47-7.399 2.864-3.033-2.018-.66-6.78 1.856-9.435l33.16-34.992c.743-.785 1.647-1.632 2.712-1.525 1.066.108 1.675 1.9.664 2.26l59.99-66.385M626.337 666.13c-.904 2.321 2.01 4.17 4.309 5.132 2.297.961 4.893 3.554 3.298 5.467l-50.537-45.22c-1.152-1.031-2.356-2.82-1.268-3.919l40.221 31.1c2.396 1.852 5.077 4.619 3.977 7.44m43.109 26.592c-.675 3.594-3.441 6.716-6.927 7.82l-26.147-21.759c4.54-.782 9.317-1.548 13.664-.022 2.789.979 5.173 2.83 7.502 4.651l11.908 9.31m-39.561-24.495c1.181-2.118 2.361-4.237 3.543-6.355a1122.964 1122.964 0 00-60.916-45.615c-3.321-2.315-7.914-4.609-11.086-2.097a1033.013 1033.013 0 0096.242 88.306c1.169.943 2.384 1.908 3.831 2.311 4.156 1.16 7.933-2.57 10.646-5.925 1.059-1.311 2.165-2.734 2.296-4.414.191-2.457-1.722-4.516-3.496-6.228-8.319-8.032-18.665-16.705-29.994-14.381-2.054.422-4.632 1.03-5.897-.642l9.569-4.792a26.295 26.295 0 00-14.738-.168M400.542 598.79c-3.191-.064-6.561-.293-9.392 1.181-2.831 1.474-4.637 5.431-2.676 7.95 1.388 1.782 4.064 2.077 6.206 1.358 2.141-.719 3.903-2.234 5.692-3.613l.708 4.639c2.882-1.98 6.684-1.642 10.158-2.036 3.475-.393 7.468-2.377 7.607-5.872 3.982 3.943 2.816 11.686-2.151 14.28-3.902 2.039-8.605.965-13.007.871-4.402-.095-9.743 1.774-10.382 6.131l27.07 1.24c1.695.077 3.483.136 4.983-.659 2.62-1.388 3.355-4.743 3.712-7.686a140.215 140.215 0 00-1.415-42.849c-.518-2.746-1.255-5.703-3.446-7.437-1.79-1.417-4.194-1.722-6.47-1.91a122.046 122.046 0 00-27.201.8c-2.656.378-5.898 1.425-6.248 4.086-.274 2.09 1.635 3.947 3.685 4.445 2.049.498 4.191.019 6.27-.338a53.332 53.332 0 0122.984 1.114c2.283.624 2.312 4.221.512 5.757-1.799 1.536-4.395 1.576-6.761 1.537l-13.179-.214c-4.93-.08-10.788.324-13.336 4.546 1.405 3.999 7.082 3.495 11.285 2.95 7.533-.977 15.145.483 22.6 1.936 1.153 1.646.355 4.077-1.209 5.339-1.566 1.261-3.65 1.633-5.644 1.882a76.115 76.115 0 01-10.955.572M527.556 344.686c39.868-31.92 72.076-72.522 111.674-104.776 5.545-4.516 11.604-12.699 6.505-17.711-4.647-4.567-12.24.149-16.859 4.743l-67.761 67.408c-3.976 3.955-8.292 9.331-6.247 14.553a2420.267 2420.267 0 0179.989-80.796c1.325-1.277 2.8-2.624 4.632-2.798 1.833-.175 3.881 1.562 3.256 3.294-.213.592-.682 1.051-1.137 1.488L526.433 340.78c-2.512 2.413-5.983 5.012-9.132 3.523.285-10.59 20.005-14.863 16.654-24.913l-15.994 14.584c-3.687 3.362-7.646 8.734-4.69 12.755 3.203 4.356 10.064 1.336 14.285-2.043"}),l("path",{d:"M360.486 694.789a392.818 392.818 0 00-98.549-33.79c7.086-18.98 27.222-28.949 43.044-41.602 2.962-2.368 5.958-5.106 6.913-8.776.956-3.669-1.158-8.346-4.933-8.693-2.788-.256-5.203 1.785-7.251 3.693l-67.149 62.553a322.945 322.945 0 0197.387 25.369c12.966 5.659 25.846 12.259 39.883 14.024 1.838-5.484-4.171-10.192-9.345-12.778M336.467 468.415c-2.319 5.587-8.261 8.612-13.742 11.172-.93-2.541.973-5.254 3.129-6.889 2.155-1.635 4.76-2.865 6.177-5.17 3.362-5.467-1.937-13.094.951-18.827 2.306.601 3.137 3.385 3.578 5.727.875 4.651 1.721 9.616-.093 13.987m11.46-14.858l1.977 1.278a377.58 377.58 0 0123.134 3.451c1.221.221 2.509.48 3.433 1.308.925.828 1.275 2.428.388 3.298l-25.571-1.644c-3.139-.201-6.492-.481-8.961-2.432-2.468-1.95-3.32-6.219-.833-8.146.24-.186.537-.35.833-.284.399.089.591.533.722.92l1.875 5.538c1.553-.321 2.823-1.711 3.003-3.287m-21.203-4.218c1.363 12.38-5.054 24.684-14.344 32.98-2.799 2.499-5.936 4.8-7.728 8.097a403.49 403.49 0 0170.747-2.29c2.383.133 4.968.234 6.935-1.119 2.458-1.69 3.059-4.972 4.142-7.752 1.082-2.779 3.776-5.651 6.588-4.654 3.659 1.296 7.797-2.068 8.212-5.929.415-3.86-2.056-7.573-5.271-9.75-3.215-2.178-7.084-3.12-10.861-4.022l-27.785-6.636-24.607-5.877c-1.486-.355-3.15-.686-4.46.1-2.134 1.279-1.84 4.38-1.568 6.852M445.027 528.908a78.149 78.149 0 01-29.519-8.225c-3.473-1.763-4.237-7.219-1.382-9.87 1.752 5.942 8.344 8.88 14.335 10.454 5.99 1.575 12.643 2.848 16.566 7.641m11.605 35.725c1.923 1.514 2.062 4.344 1.871 6.784a54.79 54.79 0 01-2.695 13.182c5.392 2.155 10.456-4.609 10.405-10.415-.052-5.805-2.752-11.463-2.073-17.229.255-2.169 1.2-4.509 3.215-5.351 3.119-1.301 6.526 2.056 6.78 5.426.256 3.37-1.465 6.524-2.801 9.628-1.191 2.766-1.435 7.021 1.484 7.762 6.754-7.566 8.706-19.079 4.824-28.448-1.298-3.131-3.19-6.044-3.962-9.346-.578-2.476-.498-5.069-1.079-7.544-2.284-9.719-13.322-14.2-22.966-16.784a376.145 376.145 0 00-37.823-8.078c-2.747-.441-6.264-.481-7.498 2.012-2.026 4.092-4.1 8.389-4.005 12.955.095 4.566 3.133 9.42 7.672 9.914a90.946 90.946 0 0129.764 8.559c5.845 2.835 12.517 6.373 18.442 3.709 4.335-1.948 8.344-7.075 12.652-5.065a116.173 116.173 0 01-12.999 17.321c-2.188 2.41-5.386 4.932-8.361 3.611a159.702 159.702 0 00-38.734-11.604c6.282 7.828 16.009 12.785 26.034 13.267 2.927.141 5.269 2.731 6.086 5.543.817 2.814.443 5.817.062 8.722l-2.786 21.229c3.197 2.541 8.351.794 10.516-2.669 2.165-3.462 1.992-7.906 1.062-11.882-.846-3.618-2.263-7.323-1.409-10.938.854-3.615 5.405-6.569 8.322-4.271M507.662 626.694l37.65 33.813-45.362 12.708a97.746 97.746 0 0138.175-15.405c-10.849-.852-21.572 2.597-31.604 6.817a200.903 200.903 0 00-47.579 28.309c-1.632 1.307-3.355 2.828-3.676 4.894-.321 2.066 1.769 4.455 3.663 3.569 36.892-17.254 77.023-27.554 117.665-30.197l-53.136-49.85c-2.499-2.344-5.255-4.81-8.662-5.167-3.406-.356-7.279 2.669-6.356 5.968-3.145-.89-3.623-5.551-1.656-8.163 1.966-2.611 5.279-3.729 8.311-4.953 3.031-1.226 6.238-2.989 7.293-6.083a317.926 317.926 0 01-67.48 3.704c-1.314 1.316-.538 3.751 1.028 4.755 1.568 1.003 3.554.989 5.413.942l34.04-.866c4.862-.124 5.828 6.853 4.962 11.64-.864 4.786-.297 11.699 4.559 11.972a28.325 28.325 0 012.752-8.407M420.955 701.924c.152-.619.388-1.311.973-1.564.266-.117.581-.118.849-.004 1.661 6.423 3.156 13.841-.738 19.214a29.919 29.919 0 01-1.084-17.646m-16.988-31.852c5.187 2.36 12.113-1.918 12.326-7.612 3.344 1.747 3.428 6.419 3.071 10.176a947.494 947.494 0 00-3.742 120.017c.053 1.63.209 3.47 1.473 4.5 1.061.866 2.563.865 3.932.821l20.391-.654a858.971 858.971 0 014.731-108.603c.593-5.527.828-12.102-3.55-15.525-3.213-2.511-7.685-2.273-11.714-2.897-4.03-.624-8.604-3.257-8.371-7.328.242-4.244-6.597-4.82-9.751-1.972-3.156 2.85-4.915 7.341-8.796 9.077M128.001 236.422L80 269.892c-.381.265-.794.542-1.259.542-1.839.004-1.035-2.981.34-4.203a234.165 234.165 0 0142.779-30.184c2.055-1.129 5.332-1.826 6.141.375m-76.268 75.525c5.926-5.575 9.585-13.494 9.989-21.62l3.939 8.528 3.143-8.65 65.235-44.799c4.916-3.376 9.968-6.891 13.151-11.934 3.183-5.043 4.025-12.063.393-16.792a38.988 38.988 0 0011.896-15.113c-.743-3.046-5.337-3.343-7.755-1.346-2.418 1.996-3.413 5.183-4.969 7.906-4.964 8.692-15.345 12.347-24.631 16.087C71.009 244.8 29.801 288.647 12.423 340.94 4.983 351.136.606 363.54 0 376.148a300.992 300.992 0 0151.733-64.201M652.733 197.652c1.584-1.123 3.793-1.291 5.527-.419a17.655 17.655 0 01-7.298 5.933c-1.159-1.512-.39-4.07 1.411-4.693l.36-.821zm72.221 73.787l13.418 10.533c-.844 2.759-5.005 1.605-7.353-.073a7561.683 7561.683 0 01-42.021-30.268c.776-1.827 3.447-1.486 5.304-.784a118.56 118.56 0 0120.869 10.337l4.788.635c-1.493 3.6 1.929 7.213 4.995 9.62m-45.356-55.747c-3.75-3.485-7.641-7.318-8.768-12.312-1.502-6.654-8.043-12.017-14.846-11.498-6.802.52-12.615 7.467-11.306 14.162 1.311 6.695 10.09 10.872 15.822 7.172 5.824-3.758 13.879 1.699 15.848 8.344 1.97 6.646.099 13.727-.606 20.622s.328 14.929 6.06 18.824a824.68 824.68 0 01106.375 85.991 411.837 411.837 0 0029.22 36.575c-9.423-35.53-31.35-66.594-56.658-93.251-25.309-26.657-54.217-49.604-81.141-74.629"}),l("path",{d:"M357.82 509.813c-.843-1.466.535-3.465 2.212-3.682 1.677-.216 3.285.867 4.3 2.219-1.385 1.401-3.594 1.914-5.454 1.271l-1.058.192zm-64.466 6.021a52.141 52.141 0 01-11.141 10.528c3.468.293 6.838-1.05 10.102-2.26 20.475-7.585 42.571-10.761 64.354-9.248 3.145.219 6.457.597 8.989 2.475-5.062 1.989-10.686 1.671-16.124 1.584a170.584 170.584 0 00-61.067 10.29c-3.393 1.238-8.352 1.924-9.565-1.478-.665-1.867.41-3.901 1.691-5.414 3.165-3.739 7.874-6.129 12.761-6.477m-11.217 40.642c6.328 11.533 21.714 17.117 33.966 12.328l-.436 3.804 4.033-1.408a178.371 178.371 0 01-2.742 62.141c5.151-.578 9.023-5.368 10.218-10.413 1.196-5.044.292-10.32-.616-15.424l9.455 7.498a17.285 17.285 0 00-4.83-11.08l6.067 3.288-9.235-31.955c-.343-1.185-.683-2.475-.234-3.626.499-1.281 1.822-2.01 3.046-2.635l41.732-21.294c2.071-1.057 4.251-2.212 5.44-4.211 1.031-1.735 1.155-3.842 1.253-5.857l1.568-32.332c.077-1.578.133-3.25-.627-4.636-1.531-2.788-5.377-3.018-8.556-2.892-16.423.65-32.844 1.339-49.264 2.065-9.496.421-19.213.901-28 4.527-11.917 4.916-21.227 15.735-24.313 28.252-3.522-9.256-.157-20.666 7.824-26.53-10.773.002-19.878 9.209-22.965 19.531-3.087 10.321-1.378 21.439 1.139 31.915l5.934-16.231a20.79 20.79 0 013.241 11.113c11.105-12.605 27.021-20.187 43.36-24.084 16.34-3.898 33.271-4.408 50.062-4.901 6.254-.183 14.979 2.218 13.986 8.395-.347 2.159-1.956 3.871-3.543 5.375-22.639 21.45-57.381 29.151-86.963 19.277M481.832 494.106a9.93 9.93 0 01-5.734-4.411c3.21-1.326 7.36 1.014 7.888 4.447l-2.154-.036zm-15.001-45.396l5.915-.943c-.675 2.902-3.456 5.175-6.435 5.257-2.979.082-5.881-2.034-6.714-4.895 2.005-.755 4.378-.444 6.12.802m-8.518 15.93a93.403 93.403 0 01-18.023 2.922c-1.56.098-3.673-.311-3.741-1.872-.065-1.483 1.825-2.131 3.297-2.319l13.521-1.727c2.341-.299 5.877.828 4.946 2.996m40.614 33.251a116.498 116.498 0 00-21.719-16.356c-4.993-2.914-8.406-8.376-8.835-14.14-.073-.983-.028-2.075.64-2.799.669-.723 2.151-.655 2.408.296 1.896 7 6.619 13.191 12.869 16.871 3.429 2.019 7.297 3.317 10.437 5.763 3.141 2.445 5.487 6.598 4.2 10.365m2.062-16.804c-9.297-7.43-16.259-17.739-19.677-29.139-.925-3.086-1.794-6.538-4.47-8.333-2.511-1.685-5.82-1.351-8.81-.89a223.892 223.892 0 00-46.53 12.422c-1.979.764-4.057 1.642-5.28 3.375-1.097 1.556-1.322 3.546-1.474 5.444-.75 9.337-.589 18.747.479 28.052a54.12 54.12 0 009.133-9.758 28.331 28.331 0 01-1.799 11.106l7.071-4.731c3.234 3.421 7.116 6.68 11.792 7.222 4.676.542 10.021-2.843 9.905-7.549-.048-1.942 1.986-3.415 3.928-3.488 1.941-.073 3.764.851 5.486 1.751 7.468 3.905 16.188 10.339 14.229 18.536-.534 2.239.851 4.443 2.17 6.329l11.495 16.449c.974 1.393 2.012 2.843 3.539 3.589 1.859.91 4.054.599 6.096.267 5.464-.887 11.383-2.015 15.049-6.162 5.659-6.4 3.242-16.583 6.707-24.392a16.66 16.66 0 005.711 9.99l-1.52-27.375c-3.032 1.57-5.206 4.692-5.627 8.08-8.094-1.994-14.133-10.297-13.538-18.613-2.827 1.38-4.559 4.711-4.065 7.818M89.72 390.532c-14.454 13.79-35.267 20.622-55.081 18.08l-.005 14.334a201.521 201.521 0 0136.696 1.093l-.022 88.686c-.001 3.641-.024 7.397-1.445 10.75-2.775 6.544-10.378 9.954-17.486 9.954-4.647 0-9.536-1.137-13.79.735-4.254 1.871-6.316 8.825-2.174 10.93 1.08.549 2.33.627 3.542.692a1141.071 1141.071 0 00105.658.836c4.35-.167 9.72-1.095 11.018-5.252 1.506-4.824-4.241-8.979-9.285-9.298-5.044-.319-10.272 1.307-15.076-.264-9.441-3.088-11.063-15.541-10.987-25.475l.945-122.66c-10.971-3.955-24.07-1.191-32.508 6.859M744.41 398.223c9.603 7.645 10.696 21.702 9.833 33.946-.578 8.197-1.72 16.515-5.251 23.936-8.967-3.213-18.061-6.491-25.814-12.024-7.752-5.533-14.125-13.711-15.298-23.163-1.127-9.092 3.1-18.762 10.804-23.72 7.705-4.958 18.558-4.682 25.726 1.025m13.75 111.474c4.693 9.289 3.29 21.25-3.211 29.377-6.502 8.128-17.681 12.122-27.916 10.232-10.234-1.891-19.159-9.469-22.954-19.161-1.33-3.397-2.066-7.004-2.477-10.629-1.526-13.478 1.519-27.432 8.52-39.049a205.01 205.01 0 0124.715 9.951c9.262 4.451 18.688 10.107 23.323 19.279m-31.81 50.56c17.94.299 36.556-2.531 51.549-12.386 14.993-9.855 25.515-27.898 22.571-45.597-3.446-20.716-23.498-34.836-43.66-40.717 16.646-4.053 33.72-14.804 36.838-31.649 2.613-14.11-5.826-28.622-17.827-36.488-12.001-7.867-26.864-10.108-41.214-10.125-14.526-.017-29.414 2.17-42.096 9.252-12.683 7.083-22.868 19.682-24.325 34.135-2.164 21.459 15.356 40.904 35.535 48.518-16.88 3.028-34.76 11.399-40.706 27.486-5.808 15.715 2.357 34.101 15.763 44.149 13.406 10.049 30.82 13.142 47.572 13.422","fill-rule":"nonzero"}),l("path",{d:"M531.316 414.264l-2.376 3.517c-2.499-1.624-2.024-6.137.758-7.206.514.909 1.03 1.817 1.545 2.726l.073.963zm3.663-3.614c1.799 1.961 1.618 5.398-.377 7.159-2.45-1.212-2.806-5.191-.609-6.819m-29.011 164.037c-1.545 2.19-5.766.942-5.871-1.737a11.16 11.16 0 017.681-1.438c1.075.815.378 2.918-.972 2.93m-75.977-291.024c-.891-1.553-1.812-3.233-1.66-5.017.153-1.784 1.918-3.526 3.611-2.942a58.588 58.588 0 003.619 9.531c-1.645.393-3.492-.26-4.523-1.599m84.758 273.731c-1.391-3.429-.351-7.694 2.463-10.099 2.813-2.405 7.187-2.769 10.36-.863-4.961 1.526-9.076 5.568-10.692 10.499-.485.621-1.432.827-2.131.463M410.161 262.341c.212-1.76 1.185-4.063 2.914-3.671 2.127 4.416.854 9.608.437 14.491-.466 5.461.204 10.947.873 16.387.404 3.277 1.11 7.03 3.986 8.653 3.566 2.014 8.173-.54 12.097.634 1.251.793-.511 2.517-1.963 2.813a66.737 66.737 0 01-10.494 1.284c-1.53.065-3.157.053-4.462-.75-1.961-1.207-2.543-3.749-2.885-6.026a126.086 126.086 0 01-.503-33.815m25.464 121.929a30.421 30.421 0 0110.043-13.596c1.597.292 1.288 2.684.538 4.125a132.36 132.36 0 01-15.005 22.736c-3.246-4.103-3.592-9.717-3.8-14.944l-1.207-30.279c-.111-2.778-.207-5.65.807-8.239 2.271-5.8 9.059-8.157 15.057-9.832.147 2.557-2.005 4.662-4.224 5.94-2.221 1.278-4.756 2.182-6.433 4.119-1.677 1.937-1.919 5.451.319 6.698.734-1.476 2.533-2.336 4.143-1.979-.137 1.985-1.392 3.856-3.176 4.736 2.039 2.318 1.29 6.474-1.431 7.934l3.172 2.327c-5.096 6.567-1.532 16.159-3.266 24.288 2.091.848 3.682-1.916 4.463-4.034m-77.305-30.054c1.25-4.722-.36-9.657-1.458-14.416-1.098-4.759-1.528-10.26 1.557-14.047l18.996 10.658c3.135 1.76 6.472 3.734 7.922 7.023.86 1.952.944 4.145 1.001 6.277a504.123 504.123 0 01-.942 47.037 159.132 159.132 0 01-19.318-20.383c-5.047-6.367-9.837-14.295-7.758-22.149m1.384-60.078c-.953-3.397-1.916-6.895-1.538-10.403.378-3.508 2.419-7.074 5.767-8.187a107.458 107.458 0 0036.855-21.138c.895-.786 2.411-.266 3.068.729.657.994.695 2.259.713 3.45l.497 33.929c.049 3.405-1.258 8.109-4.628 7.631a180.91 180.91 0 00-36.729-1.439c-2.198.137-3.411-2.452-4.005-4.572m83.646 130.153c3.431-3.917 8.655-6.196 13.861-6.048a44.707 44.707 0 01-17.303 11.363c3.153-14.162 11.008-27.237 22.032-36.671.743 5.474 9.55 7.326 12.434 2.614 1.347-4.467-2.554-9.675-7.22-9.638 3.927-2.617 6.484-7.178 6.67-11.893a227.308 227.308 0 00-36.117 40.641c-2.951 4.252-5.883 9.171-4.986 14.269.897 5.098 7.867 8.905 11.443 5.162 11.552-12.097 38.118-4.033 43.923-19.721l-.591 12.568a192.444 192.444 0 0145.099-30.758c2.464-.528 1.434 3.847-.635 5.284l-30.731 21.344 20.353.217c7.083.075 15.172-.291 19.687-5.748 5.251-6.345 2.728-15.799-.051-23.553 11.219 10.533 17.86 25.785 17.926 41.173a25.323 25.323 0 005.312-11.66 247.1 247.1 0 015.297 82.864c-.279 2.636-.784 5.589-2.956 7.108-2.17 1.52-6.162-.294-5.333-2.811a44.534 44.534 0 00-2.049 24.104c8.926 2.596 13.024 13.932 10.339 22.831-2.686 8.901-10.291 15.461-18.331 20.129 5.693-9.591 1.865-22.897-6.779-29.946-8.643-7.049-20.8-8.562-31.748-6.434-11.761 2.287-23.639 9.678-26.522 21.307-3.368 13.58-13.474 25.313-26.406 30.655a336.758 336.758 0 0057.994-3.075c6.382-.895 14.582-4.345 13.514-10.7-.824-4.912-6.163-11.776-1.334-12.994a63.629 63.629 0 019.596 28.062 86.342 86.342 0 0127.179-14.867 318.599 318.599 0 0031.903 40.253c2.498 2.677 5.298 5.451 8.905 6.078 3.608.626 7.955-2.131 7.474-5.761-7.478-56.311 43.415-106.921 40.102-163.631-1.446-24.758-13.147-47.54-22.189-70.633a345.023 345.023 0 01-22.746-99.885 725.622 725.622 0 01-66.949 78.436c-.793 3.837 3.493 7.187 7.405 6.978 3.913-.209 7.263-2.756 10.273-5.263a248.037 248.037 0 0042.015-44.916c.495 32.502 8.691 64.862 23.727 93.681 6.333 12.137 13.984 24.005 16.226 37.51 3.701 22.289-7.879 43.858-17.261 64.414a371.81 371.81 0 00-27.164 85.754c-15.928-11.411-24.874-31.865-22.439-51.307 1.415-11.303-13.448-22.845-6.655-31.989 6.601-8.887 6.933-20.793 7.001-31.863.165-27.227-.208-56.326-15.466-78.875-10.11-14.943-25.633-25.191-40.745-35.044l-40.627-26.488c8.824-1.004 14.771-9.164 19.973-16.362 22.068-30.536 50.715-56.291 83.418-74.998-59.694.891-114.128-32.395-172.419-45.294-1.18 4.288.099 9.163 3.232 12.319 9.064-1.379 18.339-2.756 27.347-1.046 9.009 1.709 17.86 7.123 21.158 15.678 2.93 7.6 11.928 10.546 19.822 12.555l65.063 16.563a1508.8 1508.8 0 00-51.435 42.191c-9.784 8.393-20.005 17.804-22.716 30.407-7.515-4.419-12.098-13.378-11.284-22.058.811-8.66-5.897-15.911-10.24-23.446-4.344-7.536-5.015-19.581 3.121-22.657l-.595 20.723c4.986 1.179 9.645-4.059 9.788-9.181.302-10.852-12.282-16.965-22.9-19.228-10.618-2.262-23.355-4.955-27.194-15.11-1.557-4.122-7.732-2.519-11.482-.205l-43.402 26.786c-1.882 1.161-3.82 2.375-5.074 4.196-3.004 4.364-1.076 10.222.102 15.387 2.621 11.486.775 23.931-5.068 34.161-6.677 11.692-17.906 19.95-28.808 27.851l-56.771 41.144c-16.358 11.855-22.183 33.165-26.928 52.803-1.131 4.679-2.265 9.575-1.133 14.255 1.152 4.765 4.611 9.259 3.587 14.053a332.687 332.687 0 00-7.07 56.251c-.366 9.212.229 19.748 7.35 25.602 4.427 3.64 1.017 10.721-2.566 15.194l-33.272 41.541-4.079-29.644c-1.96-14.247-3.95-28.615-8.819-42.147-6.21-17.256-16.96-32.74-21.875-50.409-8.884-31.937 2.41-65.628 13.578-96.839 8.517-23.803 17.033-47.605 25.551-71.407a312.293 312.293 0 0048.652 46.569c4.577 3.518 9.984 7.093 15.661 6.049 5.677-1.044 9.289-9.63 4.395-12.691-31.825-19.903-56.159-49.515-79.896-78.591a994.815 994.815 0 01-33.735 131.798c-4.545 13.759-9.436 27.643-10.204 42.113-1.431 26.975 11.448 52.307 21.282 77.467a365.293 365.293 0 0123.707 101.822 465.121 465.121 0 0146.432-56.153c7.886-8.143 4.89-21.528.788-32.096-4.102-10.567-8.707-22.917-2.844-32.618 1.735-2.871 4.309-5.279 5.387-8.455 1.077-3.176-.328-7.606-3.665-7.942-4.374-.439-4.641-6.977-2.441-10.784 2.199-3.807 5.682-7.744 4.451-11.965-8.83-30.255 3.177-65.442 28.66-83.989 4.369 10.713 18.442 12.655 30.008 12.962-4.526-5.731-12.494-8.502-19.599-6.815.441-7.795 5.873-15.079 13.217-17.725l6.92 2.621c-.642-12.184 8.401-24.17 20.292-26.898a14.977 14.977 0 00-.588 10.583l14.139-6.849c3.747 8.849 10.505 16.39 18.891 21.082a154.147 154.147 0 00-10.936-24.188l.164 8.886c-3.333-2.701-5.542-6.748-6.009-11.013a35.531 35.531 0 00-11.338 6.591c1.132-9.859 8.088-18.827 17.356-22.375 7.927 28.868 24.383 55.337 46.765 75.218l-1.179-72.959c-.151-9.35-11.024-13.925-19.47-17.939-8.447-4.015-16.876-14.731-10.484-21.558 27.209 1.553 54.914 3.063 81.352-3.557 7.256-1.817 11.962 9.13 8.199 15.594-3.764 6.464-11.486 9.194-18.25 12.388-6.764 3.194-13.868 8.62-13.8 16.1l.666 73.542c19.822-21.754 40.693-45.828 42.971-75.171a67.504 67.504 0 0120.946 24.548c3.13-2.594 3.98-7.549 1.896-11.038 9.845 3.93 17.47 12.995 19.656 23.368l-11.111-2.951a35.132 35.132 0 01-9.16 14.169l1.164-7.893c-3.775 1.429-6.289 5.632-5.759 9.635 4.706 3.096 12.147-.298 12.893-5.883 4.377 2.136 9.87 1.782 13.937-.897a21.66 21.66 0 01-8.727 10.179c10.069-1.161 17.022-13.543 12.772-22.744l19.171 18c-9.745-1.199-19.957 2.189-27.053 8.975l11.117-3.877a143.798 143.798 0 00-22.279 18.388c-2.664-5.162-10.509-3.272-15.4-.137-4.891 3.133-11.338 6.831-15.926 3.268a40.065 40.065 0 001.022-10.941c-8.054 1.991-15.216 7.354-19.393 14.521"})))}};a.style="my-logo{}";export{a as my_logo}
@@ -1 +1 @@
1
- import{p as o,b as t}from"./p-726163c5.js";export{s as setNonce}from"./p-726163c5.js";(()=>{const s=import.meta.url,t={};return""!==s&&(t.resourcesUrl=new URL(".",s).href),o(t)})().then((o=>t([["p-6cb4445b",[[1,"my-logo",{fill:[1],stroke:[1],opacity:[2],size:[2]}]]]],o)));
1
+ import{p as o,b as t}from"./p-a2f68c99.js";export{s as setNonce}from"./p-a2f68c99.js";(()=>{const s=import.meta.url,t={};return""!==s&&(t.resourcesUrl=new URL(".",s).href),o(t)})().then((o=>t([["p-bfdccc82",[[1,"my-logo",{fill:[1],stroke:[1],opacity:[2],size:[2]}]]]],o)));
@@ -812,6 +812,7 @@ export declare namespace JSXBase {
812
812
  datetime?: string;
813
813
  }
814
814
  interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
815
+ onCancel?: (event: Event) => void;
815
816
  onClose?: (event: Event) => void;
816
817
  open?: boolean;
817
818
  returnValue?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proto-logo-wc",
3
- "version": "0.0.374",
3
+ "version": "0.0.375",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -25,7 +25,7 @@
25
25
  "format": "prettier --write src"
26
26
  },
27
27
  "dependencies": {
28
- "@stencil/core": "3.2.1"
28
+ "@stencil/core": "3.2.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "cspell": "6.31.1",
@@ -1,2 +0,0 @@
1
- let t,n,e=!1,l=!1;const o={},s=t=>"object"==(t=typeof t)||"function"===t;function r(t){var n,e,l;return null!==(l=null===(e=null===(n=t.head)||void 0===n?void 0:n.querySelector('meta[name="csp-nonce"]'))||void 0===e?void 0:e.getAttribute("content"))&&void 0!==l?l:void 0}const i=(t,n,...e)=>{let l=null,o=!1,r=!1;const i=[],u=n=>{for(let e=0;e<n.length;e++)l=n[e],Array.isArray(l)?u(l):null!=l&&"boolean"!=typeof l&&((o="function"!=typeof t&&!s(l))&&(l+=""),o&&r?i[i.length-1].t+=l:i.push(o?c(null,l):l),r=o)};u(e);const a=c(t,null);return a.l=n,i.length>0&&(a.o=i),a},c=(t,n)=>({i:0,u:t,t:n,h:null,o:null,l:null}),u={},a=new WeakMap,f=t=>"sc-"+t.$,d=(t,n,e,l,o,r)=>{if(e!==l){let i=L(t,n);n.toLowerCase();{const c=s(l);if((i||c&&null!==l)&&!o)try{if(t.tagName.includes("-"))t[n]=l;else{const o=null==l?"":l;"list"===n?i=!1:null!=e&&t[n]==o||(t[n]=o)}}catch(t){}null==l||!1===l?!1===l&&""!==t.getAttribute(n)||t.removeAttribute(n):(!i||4&r||o)&&!c&&t.setAttribute(n,l=!0===l?"":l)}}},h=(t,n,e,l)=>{const s=11===n.h.nodeType&&n.h.host?n.h.host:n.h,r=t&&t.l||o,i=n.l||o;for(l in r)l in i||d(s,l,r[l],void 0,e,n.i);for(l in i)d(s,l,r[l],i[l],e,n.i)},$=(n,l,o)=>{const s=l.o[o];let r,i,c=0;if(e||(e="svg"===s.u),r=s.h=V.createElementNS(e?"http://www.w3.org/2000/svg":"http://www.w3.org/1999/xhtml",s.u),e&&"foreignObject"===s.u&&(e=!1),h(null,s,e),null!=t&&r["s-si"]!==t&&r.classList.add(r["s-si"]=t),s.o)for(c=0;c<s.o.length;++c)i=$(n,s,c),i&&r.appendChild(i);return"svg"===s.u?e=!1:"foreignObject"===r.tagName&&(e=!0),r},p=(t,e,l,o,s,r)=>{let i,c=t;for(c.shadowRoot&&c.tagName===n&&(c=c.shadowRoot);s<=r;++s)o[s]&&(i=$(null,l,s),i&&(o[s].h=i,c.insertBefore(i,e)))},m=(t,n,e,l)=>{for(;n<=e;++n)(l=t[n])&&l.h.remove()},w=(t,n)=>t.u===n.u,y=(t,n)=>{const l=n.h=t.h,o=t.o,s=n.o,r=n.u;e="svg"===r||"foreignObject"!==r&&e,h(t,n,e),null!==o&&null!==s?((t,n,e,l)=>{let o,s=0,r=0,i=n.length-1,c=n[0],u=n[i],a=l.length-1,f=l[0],d=l[a];for(;s<=i&&r<=a;)null==c?c=n[++s]:null==u?u=n[--i]:null==f?f=l[++r]:null==d?d=l[--a]:w(c,f)?(y(c,f),c=n[++s],f=l[++r]):w(u,d)?(y(u,d),u=n[--i],d=l[--a]):w(c,d)?(y(c,d),t.insertBefore(c.h,u.h.nextSibling),c=n[++s],d=l[--a]):w(u,f)?(y(u,f),t.insertBefore(u.h,c.h),u=n[--i],f=l[++r]):(o=$(n&&n[r],e,r),f=l[++r],o&&c.h.parentNode.insertBefore(o,c.h));s>i?p(t,null==l[a+1]?null:l[a+1].h,e,l,r,a):r>a&&m(n,s,i)})(l,o,n,s):null!==s?p(l,null,n,s,0,s.length-1):null!==o&&m(o,0,o.length-1),e&&"svg"===r&&(e=!1)},v=(t,n)=>{n&&!t.p&&n["s-p"]&&n["s-p"].push(new Promise((n=>t.p=n)))},b=(t,n)=>{if(t.i|=16,!(4&t.i))return v(t,t.m),X((()=>g(t,n)));t.i|=512},g=(t,n)=>{const e=t.v;return k(void 0,(()=>S(t,e,n)))},S=async(t,n,e)=>{const l=t.g,o=l["s-rc"];e&&(t=>{const n=t.S,e=t.g,l=n.i,o=((t,n)=>{var e;let l=f(n);const o=q.get(l);if(t=11===t.nodeType?t:V,o)if("string"==typeof o){let n,s=a.get(t=t.head||t);if(s||a.set(t,s=new Set),!s.has(l)){{n=V.createElement("style"),n.innerHTML=o;const l=null!==(e=_.j)&&void 0!==e?e:r(V);null!=l&&n.setAttribute("nonce",l),t.insertBefore(n,t.querySelector("link"))}s&&s.add(l)}}else t.adoptedStyleSheets.includes(o)||(t.adoptedStyleSheets=[...t.adoptedStyleSheets,o]);return l})(e.shadowRoot?e.shadowRoot:e.getRootNode(),n);10&l&&(e["s-sc"]=o,e.classList.add(o+"-h"))})(t);j(t,n),o&&(o.map((t=>t())),l["s-rc"]=void 0);{const n=l["s-p"],e=()=>M(t);0===n.length?e():(Promise.all(n).then(e),t.i|=4,n.length=0)}},j=(e,l)=>{try{l=l.render(),e.i&=-17,e.i|=2,((e,l)=>{const o=e.g,s=e.M||c(null,null),r=(t=>t&&t.u===u)(l)?l:i(null,null,l);n=o.tagName,r.u=null,r.i|=4,e.M=r,r.h=s.h=o.shadowRoot||o,t=o["s-sc"],y(s,r)})(e,l)}catch(t){R(t,e.g)}return null},M=t=>{const n=t.g,e=t.m;64&t.i||(t.i|=64,C(n),t.O(n),e||O()),t.p&&(t.p(),t.p=void 0),512&t.i&&Q((()=>b(t,!1))),t.i&=-517},O=()=>{C(V.documentElement),Q((()=>(t=>{const n=_.ce("appload",{detail:{namespace:"proto-logo-wc"}});return t.dispatchEvent(n),n})(H)))},k=(t,n)=>t&&t.then?t.then(n):n(),C=t=>t.classList.add("hydrated"),x=(t,n,e)=>{if(n.k){const l=Object.entries(n.k),o=t.prototype;if(l.map((([t,[l]])=>{(31&l||2&e&&32&l)&&Object.defineProperty(o,t,{get(){return((t,n)=>T(this).C.get(n))(0,t)},set(e){((t,n,e,l)=>{const o=T(t),r=o.C.get(n),i=o.i,c=o.v;e=((t,n)=>null==t||s(t)?t:2&n?parseFloat(t):1&n?t+"":t)(e,l.k[n][0]),8&i&&void 0!==r||e===r||Number.isNaN(r)&&Number.isNaN(e)||(o.C.set(n,e),c&&2==(18&i)&&b(o,!1))})(this,t,e,n)},configurable:!0,enumerable:!0})})),1&e){const n=new Map;o.attributeChangedCallback=function(t,e,l){_.jmp((()=>{const e=n.get(t);if(this.hasOwnProperty(e))l=this[e],delete this[e];else if(o.hasOwnProperty(e)&&"number"==typeof this[e]&&this[e]==l)return;this[e]=(null!==l||"boolean"!=typeof this[e])&&l}))},t.observedAttributes=l.filter((([t,n])=>15&n[0])).map((([t,e])=>{const l=e[1]||t;return n.set(l,t),l}))}}return t},P=(t,n={})=>{var e;const l=[],o=n.exclude||[],s=H.customElements,i=V.head,c=i.querySelector("meta[charset]"),u=V.createElement("style"),a=[];let d,h=!0;Object.assign(_,n),_.P=new URL(n.resourcesUrl||"./",V.baseURI).href,t.map((t=>{t[1].map((n=>{const e={i:n[0],$:n[1],k:n[2],N:n[3]};e.k=n[2];const r=e.$,i=class extends HTMLElement{constructor(t){super(t),F(t=this,e),1&e.i&&t.attachShadow({mode:"open"})}connectedCallback(){d&&(clearTimeout(d),d=null),h?a.push(this):_.jmp((()=>(t=>{if(0==(1&_.i)){const n=T(t),e=n.S,l=()=>{};if(!(1&n.i)){n.i|=1;{let e=t;for(;e=e.parentNode||e.host;)if(e["s-p"]){v(n,n.m=e);break}}e.k&&Object.entries(e.k).map((([n,[e]])=>{if(31&e&&t.hasOwnProperty(n)){const e=t[n];delete t[n],t[n]=e}})),(async(t,n,e,l,o)=>{if(0==(32&n.i)){{if(n.i|=32,(o=W(e)).then){const t=()=>{};o=await o,t()}o.isProxied||(x(o,e,2),o.isProxied=!0);const t=()=>{};n.i|=8;try{new o(n)}catch(t){R(t)}n.i&=-9,t()}if(o.style){let t=o.style;const n=f(e);if(!q.has(n)){const l=()=>{};((t,n,e)=>{let l=q.get(t);B&&e?(l=l||new CSSStyleSheet,"string"==typeof l?l=n:l.replaceSync(n)):l=n,q.set(t,l)})(n,t,!!(1&e.i)),l()}}}const s=n.m,r=()=>b(n,!0);s&&s["s-rc"]?s["s-rc"].push(r):r()})(0,n,e)}l()}})(this)))}disconnectedCallback(){_.jmp((()=>{}))}componentOnReady(){return T(this).T}};e.A=t[0],o.includes(r)||s.get(r)||(l.push(r),s.define(r,x(i,e,1)))}))}));{u.innerHTML=l+"{visibility:hidden}.hydrated{visibility:inherit}",u.setAttribute("data-styles","");const t=null!==(e=_.j)&&void 0!==e?e:r(V);null!=t&&u.setAttribute("nonce",t),i.insertBefore(u,c?c.nextSibling:i.firstChild)}h=!1,a.length?a.map((t=>t.connectedCallback())):_.jmp((()=>d=setTimeout(O,30)))},E=t=>_.j=t,N=new WeakMap,T=t=>N.get(t),A=(t,n)=>N.set(n.v=t,n),F=(t,n)=>{const e={i:0,g:t,S:n,C:new Map};return e.T=new Promise((t=>e.O=t)),t["s-p"]=[],t["s-rc"]=[],N.set(t,e)},L=(t,n)=>n in t,R=(t,n)=>(0,console.error)(t,n),U=new Map,W=t=>{const n=t.$.replace(/-/g,"_"),e=t.A,l=U.get(e);return l?l[n]:import(`./${e}.entry.js`).then((t=>(U.set(e,t),t[n])),R)
2
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},q=new Map,H="undefined"!=typeof window?window:{},V=H.document||{head:{}},_={i:0,P:"",jmp:t=>t(),raf:t=>requestAnimationFrame(t),ael:(t,n,e,l)=>t.addEventListener(n,e,l),rel:(t,n,e,l)=>t.removeEventListener(n,e,l),ce:(t,n)=>new CustomEvent(t,n)},z=t=>Promise.resolve(t),B=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(t){}return!1})(),D=[],G=[],I=(t,n)=>e=>{t.push(e),l||(l=!0,n&&4&_.i?Q(K):_.raf(K))},J=t=>{for(let n=0;n<t.length;n++)try{t[n](performance.now())}catch(t){R(t)}t.length=0},K=()=>{J(D),J(G),(l=D.length>0)&&_.raf(K)},Q=t=>z().then(t),X=I(G,!0);export{P as b,i as h,z as p,A as r,E as s}