@solomei-ai/intent 2.1.0 → 2.1.2

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.
@@ -6,5 +6,5 @@
6
6
  * html2canvas-pro 2.3.9 <https://yorickshan.github.io/html2canvas-pro/>
7
7
  * Copyright (c) 2024-present yorickshan and html2canvas-pro contributors
8
8
  * Released under MIT License
9
- */var t=class A{constructor(A={}){const t=A.window||("undefined"!=typeof window?window:void 0);if(!t)throw new Error("Window object is required but not available");this.window=t,this.cspNonce=A.cspNonce,this.cache=A.cache}static fromElement(t,e={}){const r=t.ownerDocument;if(!r)throw new Error("Element is not attached to a document");const n=r.defaultView;if(!n)throw new Error("Document is not attached to a window");return new A({window:n,...e})}clone(t={}){return new A({window:t.window||this.window,cspNonce:t.cspNonce??this.cspNonce,cache:t.cache??this.cache})}},e=class{constructor(A={}){this.config={maxImageTimeout:3e5,allowDataUrls:!0,...A}}validateUrl(A,t="general"){if(!A||"string"!=typeof A)return{valid:!1,error:"URL must be a non-empty string"};if(A.startsWith("data:"))return this.config.allowDataUrls?{valid:!0,sanitized:A}:{valid:!1,error:"Data URLs are not allowed"};if(A.startsWith("blob:"))return{valid:!0,sanitized:A};try{const e=new URL(A);if(!["http:","https:"].includes(e.protocol))return{valid:!1,error:`Protocol ${e.protocol} is not allowed. Only http and https are permitted.`};if("proxy"===t&&this.config.allowedProxyDomains&&this.config.allowedProxyDomains.length>0){const A=e.hostname.toLowerCase();if(!this.config.allowedProxyDomains.some(t=>{const e=t.toLowerCase();return A===e||A.endsWith("."+e)}))return{valid:!1,error:`Proxy domain ${e.hostname} is not in the allowed list`}}if("proxy"===t){if(!this.config.allowLocalhostProxy){const A=e.hostname.toLowerCase();if("localhost"===A||"127.0.0.1"===A||"::1"===A)return{valid:!1,error:"Localhost is not allowed for proxy URLs"};if(this.isPrivateIP(A))return{valid:!1,error:"Private IP addresses are not allowed for proxy URLs"};if(A.startsWith("169.254.")||A.startsWith("fe80:"))return{valid:!1,error:"Link-local addresses are not allowed for proxy URLs"}}return{valid:!0,sanitized:A,requiresRuntimeCheck:!0}}return{valid:!0,sanitized:A}}catch(A){return{valid:!1,error:`Invalid URL format: ${A instanceof Error?A.message:"Unknown error"}`}}}isPrivateIP(A){return!![/^0\./,/^10\./,/^100\.(6[4-9]|[7-9][0-9]|1[0-1][0-9]|12[0-7])\./,/^127\./,/^169\.254\./,/^172\.(1[6-9]|2[0-9]|3[0-1])\./,/^192\.0\.0\./,/^192\.0\.2\./,/^192\.168\./,/^198\.(1[8-9])\./,/^198\.51\.100\./,/^203\.0\.113\./,/^2(2[4-9]|3[0-9])\./,/^24[0-9]\./,/^255\.255\.255\.255$/].some(t=>t.test(A))||!!A.includes(":")&&this.isPrivateIPv6(A)}isPrivateIPv6(A){const t=A.toLowerCase().trim().replace(/^\[|\]$/g,"").split("%")[0];if(/^(0:){7}1$/.test(t)||"::1"===t)return!0;if(/^(0:){7}0$/.test(t)||"::"===t)return!0;const e=this.expandIPv6(t);if(!e)return this.isPrivateIPv6Prefix(t);const r=parseInt(e.substring(0,2),16);if(r>=252&&r<=253)return!0;if(254===r){const A=parseInt(e.substring(2,4),16);if(A>=128&&A<=191)return!0}return 255===r}expandIPv6(A){try{if(A.includes("::")){const t=A.split("::");if(t.length>2)return null;const e=t[0]?t[0].split(":"):[],r=t[1]?t[1].split(":"):[],n=8-e.length-r.length;if(n<0)return null;const s=Array(n).fill("0000");return[...e,...s,...r].map(A=>A.padStart(4,"0")).join(":")}{const t=A.split(":");return 8!==t.length?null:t.map(A=>A.padStart(4,"0")).join(":")}}catch{return null}}isPrivateIPv6Prefix(A){return!!(/^fc[0-9a-f]{0,2}:?/i.test(A)||/^fd[0-9a-f]{0,2}:?/i.test(A)||/^fe[89ab][0-9a-f]:?/i.test(A)||/^ff[0-9a-f]{0,2}:?/i.test(A))}validateCspNonce(A){return A&&"string"==typeof A?A.length<16?{valid:!1,error:"CSP nonce is too short (minimum 16 characters recommended)"}:/^[A-Za-z0-9+/=_-]+$/.test(A)?{valid:!0,sanitized:A}:{valid:!1,error:"CSP nonce contains invalid characters"}:{valid:!1,error:"CSP nonce must be a non-empty string"}}validateImageTimeout(A){return"number"!=typeof A||isNaN(A)?{valid:!1,error:"Image timeout must be a number"}:A<0?{valid:!1,error:"Image timeout cannot be negative"}:this.config.maxImageTimeout&&A>this.config.maxImageTimeout?{valid:!1,error:`Image timeout ${A}ms exceeds maximum allowed ${this.config.maxImageTimeout}ms`}:{valid:!0,sanitized:A}}validateDimensions(A,t){if("number"!=typeof A||"number"!=typeof t)return{valid:!1,error:"Dimensions must be numbers"};if(isNaN(A)||isNaN(t))return{valid:!1,error:"Dimensions cannot be NaN"};if(A<=0||t<=0)return{valid:!1,error:"Dimensions must be positive"};return A>32767||t>32767?{valid:!1,error:"Dimensions exceed maximum allowed (32767px)"}:{valid:!0,sanitized:{width:A,height:t}}}validateScale(A){return"number"!=typeof A||isNaN(A)?{valid:!1,error:"Scale must be a number"}:A<=0?{valid:!1,error:"Scale must be positive"}:A>10?{valid:!1,error:"Scale factor too large (maximum 10x)"}:{valid:!0,sanitized:A}}validateElement(A){return A?"object"!=typeof A?{valid:!1,error:"Element must be an object"}:"undefined"!=typeof HTMLElement&&A instanceof HTMLElement?A.ownerDocument?{valid:!0}:{valid:!1,error:"Element must be attached to a document"}:A.ownerDocument?A.ownerDocument.defaultView?{valid:!0}:{valid:!1,error:"Document must be attached to a window (ownerDocument.defaultView required)"}:{valid:!1,error:"Element must be attached to a document (ownerDocument required)"}:{valid:!1,error:"Element is required"}}validateOptions(A){const t=[],e=A.proxy;if(null!=e&&"string"==typeof e&&e.length>0){const A=this.validateUrl(e,"proxy");A.valid||t.push(`Proxy: ${A.error}`)}if(void 0!==A.imageTimeout){const e=this.validateImageTimeout(A.imageTimeout);e.valid||t.push(`Image timeout: ${e.error}`)}if(void 0!==A.width||void 0!==A.height){const e=this.validateDimensions(A.width??800,A.height??600);e.valid||t.push(`Dimensions: ${e.error}`)}if(void 0!==A.scale){const e=this.validateScale(A.scale);e.valid||t.push(`Scale: ${e.error}`)}if(void 0!==A.cspNonce){const e=this.validateCspNonce(A.cspNonce);e.valid||t.push(`CSP nonce: ${e.error}`)}if(this.config.customValidator){const e=this.config.customValidator(A,"options");e.valid||t.push(`Custom validation: ${e.error}`)}return t.length>0?{valid:!1,error:t.join("; ")}:{valid:!0}}},r=class{constructor(A,t=!0){this.context=A,this.activeMetrics=new Map,this.completedMetrics=[],this.enabled=t,this.getTime="undefined"!=typeof performance&&"function"==typeof performance.now?()=>performance.now():()=>Date.now()}start(A,t){this.enabled&&(this.activeMetrics.has(A)&&this.context?.logger.warn(`Performance metric '${A}' already started. Overwriting.`),this.activeMetrics.set(A,{name:A,startTime:this.getTime(),metadata:t}))}end(A){if(!this.enabled)return;const t=this.activeMetrics.get(A);if(t)return t.endTime=this.getTime(),t.duration=t.endTime-t.startTime,this.completedMetrics.push(t),this.activeMetrics.delete(A),this.context?.logger.debug(`⏱️ ${A}: ${t.duration.toFixed(2)}ms`,t.metadata),t;this.context?.logger.warn(`Performance metric '${A}' not found. Was start() called?`)}measure(A,t,e){this.start(A,e);try{const e=t();return this.end(A),e}catch(t){throw this.end(A),t}}async measureAsync(A,t,e){this.start(A,e);try{const e=await t();return this.end(A),e}catch(t){throw this.end(A),t}}getMetrics(){return[...this.completedMetrics]}getMetric(A){return this.completedMetrics.find(t=>t.name===A)}getSummary(){const A=this.completedMetrics.reduce((A,t)=>A+(t.duration||0),0),t=this.completedMetrics.map(t=>({name:t.name,duration:t.duration||0,percentage:A>0?((t.duration||0)/A*100).toFixed(1)+"%":"0%"}));return{totalDuration:A,metrics:this.getMetrics(),breakdown:t}}logSummary(){if(!this.enabled||0===this.completedMetrics.length||!this.context)return;const A=this.getSummary();this.context.logger.info(`\n📊 Performance Summary (Total: ${A.totalDuration.toFixed(2)}ms):`),A.breakdown.sort((A,t)=>t.duration-A.duration).forEach(A=>{this.context.logger.info(` ${A.name.padEnd(20)} ${A.duration.toFixed(2).padStart(8)}ms ${A.percentage.padStart(6)}`)})}clear(){this.activeMetrics.clear(),this.completedMetrics.splice(0)}isEnabled(){return this.enabled}getActiveMetrics(){return Array.from(this.activeMetrics.keys())}},n=class A{constructor(A,t,e,r){this.left=A,this.top=t,this.width=e,this.height=r}add(t,e,r,n){return new A(this.left+t,this.top+e,this.width+r,this.height+n)}static fromClientRect(t,e){return new A(e.left+t.windowBounds.left,e.top+t.windowBounds.top,e.width,e.height)}static fromDOMRectList(t,e){const r=Array.from(e);let n=r.find(A=>0!==A.width);return n||(n=r.find(A=>0!==A.height)),!n&&r.length>0&&(n=r[0]),n?new A(n.left+t.windowBounds.left,n.top+t.windowBounds.top,n.width,n.height):A.EMPTY}static{this.EMPTY=new A(0,0,0,0)}};const s=(A,t)=>n.fromClientRect(A,t.getBoundingClientRect());for(var o=A=>{for(var t=[],e=0,r=A.length;e<r;){var n=A.charCodeAt(e++);if(n>=55296&&n<=56319&&e<r){var s=A.charCodeAt(e++);56320==(64512&s)?t.push(((1023&n)<<10)+(1023&s)+65536):(t.push(n),e--)}else t.push(n)}return t},i=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,s="";++n<e;){var o=A[n];o<=65535?r.push(o):r.push(55296+((o-=65536)>>10),o%1024+56320),(n+1===e||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},a="undefined"==typeof Uint8Array?[]:new Uint8Array(256),c=0;c<64;c++)a["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(c)]=c;for(var B="undefined"==typeof Uint8Array?[]:new Uint8Array(256),l=0;l<64;l++)B["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(l)]=l;for(var g=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),h=function(){function A(A,t,e,r,n,s){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=s}return A.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return this.data[t=((t=this.index[A>>5])<<2)+(31&A)];if(A<=65535)return this.data[t=((t=this.index[2048+(A-55296>>5)])<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],this.data[t=((t=this.index[t+=A>>5&63])<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),d="undefined"==typeof Uint8Array?[]:new Uint8Array(256),w=0;w<64;w++)d["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(w)]=w;var u,Q,p,C,U,f,F,m,y=10,I=13,H=15,E=17,b=18,x=19,v=20,K=21,L=22,S=24,D=25,M=26,T=27,k=28,O=30,R=32,V=33,N=34,G=35,P=37,X=38,J=39,W=40,Y=42,Z=[9001,65288],z="×",_="÷",q=(C=(A=>{var t,e,r,n,s,o=.75*A.length,i=A.length,a=0;"="===A[A.length-1]&&(o--,"="===A[A.length-2]&&o--);var c="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),l=Array.isArray(c)?c:new Uint8Array(c);for(t=0;t<i;t+=4)e=B[A.charCodeAt(t)],r=B[A.charCodeAt(t+1)],n=B[A.charCodeAt(t+2)],s=B[A.charCodeAt(t+3)],l[a++]=e<<2|r>>4,l[a++]=(15&r)<<4|n>>2,l[a++]=(3&n)<<6|63&s;return c})("KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="),U=Array.isArray(C)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(C):new Uint32Array(C),f=Array.isArray(C)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(C):new Uint16Array(C),F=g(f,12,U[4]/2),m=2===U[5]?g(f,(24+U[4])/2):(u=U,Q=Math.ceil((24+U[4])/4),u.slice?u.slice(Q,p):new Uint32Array(Array.prototype.slice.call(u,Q,p))),new h(U[0],U[1],U[2],U[3],F,m)),j=[O,36],$=[1,2,3,5],AA=[y,8],tA=[T,M],eA=$.concat(AA),rA=[X,J,W,N,G],nA=[H,I],sA=(A,t,e,r)=>{var n=r[e];if(Array.isArray(A)?-1!==A.indexOf(n):A===n)for(var s=e;s<=r.length;){if((a=r[++s])===t)return!0;if(a!==y)break}if(n===y)for(s=e;s>0;){var o=r[--s];if(Array.isArray(A)?-1!==A.indexOf(o):A===o)for(var i=e;i<=r.length;){var a;if((a=r[++i])===t)return!0;if(a!==y)break}if(o!==y)break}return!1},oA=(A,t)=>{for(var e=A;e>=0;){var r=t[e];if(r!==y)return r;e--}return 0},iA=(A,t,e,r,n)=>{if(0===e[r])return z;var s=r-1;if(Array.isArray(n)&&!0===n[s])return z;var o=s-1,i=s+1,a=t[s],c=o>=0?t[o]:0,B=t[i];if(2===a&&3===B)return z;if(-1!==$.indexOf(a))return"!";if(-1!==$.indexOf(B))return z;if(-1!==AA.indexOf(B))return z;if(8===oA(s,t))return _;if(11===q.get(A[s]))return z;if((a===R||a===V)&&11===q.get(A[i]))return z;if(7===a||7===B)return z;if(9===a)return z;if(-1===[y,I,H].indexOf(a)&&9===B)return z;if(-1!==[E,b,x,S,k].indexOf(B))return z;if(oA(s,t)===L)return z;if(sA(23,L,s,t))return z;if(sA([E,b],K,s,t))return z;if(sA(12,12,s,t))return z;if(a===y)return _;if(23===a||23===B)return z;if(16===B||16===a)return _;if(-1!==[I,H,K].indexOf(B)||14===a)return z;if(36===c&&-1!==nA.indexOf(a))return z;if(a===k&&36===B)return z;if(B===v)return z;if(-1!==j.indexOf(B)&&a===D||-1!==j.indexOf(a)&&B===D)return z;if(a===T&&-1!==[P,R,V].indexOf(B)||-1!==[P,R,V].indexOf(a)&&B===M)return z;if(-1!==j.indexOf(a)&&-1!==tA.indexOf(B)||-1!==tA.indexOf(a)&&-1!==j.indexOf(B))return z;if(-1!==[T,M].indexOf(a)&&(B===D||-1!==[L,H].indexOf(B)&&t[i+1]===D)||-1!==[L,H].indexOf(a)&&B===D||a===D&&-1!==[D,k,S].indexOf(B))return z;if(-1!==[D,k,S,E,b].indexOf(B))for(var l=s;l>=0;){if((g=t[l])===D)return z;if(-1===[k,S].indexOf(g))break;l--}if(-1!==[T,M].indexOf(B))for(l=-1!==[E,b].indexOf(a)?o:s;l>=0;){var g;if((g=t[l])===D)return z;if(-1===[k,S].indexOf(g))break;l--}if(X===a&&-1!==[X,J,N,G].indexOf(B)||-1!==[J,N].indexOf(a)&&-1!==[J,W].indexOf(B)||-1!==[W,G].indexOf(a)&&B===W)return z;if(-1!==rA.indexOf(a)&&-1!==[v,M].indexOf(B)||-1!==rA.indexOf(B)&&a===T)return z;if(-1!==j.indexOf(a)&&-1!==j.indexOf(B))return z;if(a===S&&-1!==j.indexOf(B))return z;if(-1!==j.concat(D).indexOf(a)&&B===L&&-1===Z.indexOf(A[i])||-1!==j.concat(D).indexOf(B)&&a===b)return z;if(41===a&&41===B){for(var h=e[s],d=1;h>0&&41===t[--h];)d++;if(d%2!=0)return z}return a===R&&B===V?z:_},aA=function(){function A(A,t,e,r){this.codePoints=A,this.required="!"===t,this.start=e,this.end=r}return A.prototype.slice=function(){return i.apply(void 0,this.codePoints.slice(this.start,this.end))},A}();const cA=A=>A>=48&&A<=57,BA=A=>cA(A)||A>=65&&A<=70||A>=97&&A<=102,lA=A=>10===A||9===A||32===A,gA=A=>(A=>(A=>A>=97&&A<=122)(A)||(A=>A>=65&&A<=90)(A))(A)||(A=>A>=128)(A)||95===A,hA=A=>gA(A)||cA(A)||45===A,dA=A=>A>=0&&A<=8||11===A||A>=14&&A<=31||127===A,wA=(A,t)=>92===A&&10!==t,uA=(A,t,e)=>45===A?gA(t)||wA(t,e):!!gA(A)||!(92!==A||!wA(A,t)),QA=(A,t,e)=>43===A||45===A?!!cA(t)||46===t&&cA(e):cA(46===A?t:A),pA=A=>{let t=0,e=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(e=-1),t++);const r=[];for(;cA(A[t]);)r.push(A[t++]);const n=r.length?parseInt(i(...r),10):0;46===A[t]&&t++;const s=[];for(;cA(A[t]);)s.push(A[t++]);const o=s.length,a=o?parseInt(i(...s),10):0;69!==A[t]&&101!==A[t]||t++;let c=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(c=-1),t++);const B=[];for(;cA(A[t]);)B.push(A[t++]);const l=B.length?parseInt(i(...B),10):0;return e*(n+a*Math.pow(10,-o))*Math.pow(10,c*l)},CA={type:2},UA={type:3},fA={type:4},FA={type:13},mA={type:8},yA={type:21},IA={type:9},HA={type:10},EA={type:11},bA={type:12},xA={type:14},vA={type:23},KA={type:1},LA={type:25},SA={type:24},DA={type:26},MA={type:27},TA={type:28},kA={type:29},OA={type:31},RA={type:32};var VA=class A{static{this._pool=[]}static{this.MAX_POOL_SIZE=40}static get(){return A._pool.pop()||new A}static release(t){A._pool.length<A.MAX_POOL_SIZE&&(t._reset(),A._pool.push(t))}constructor(){this._value=[]}_reset(){this._value=[]}write(A){this._value=this._value.concat(o(A))}read(){const A=[];let t=this.consumeToken();for(;t!==RA;)A.push(t),t=this.consumeToken();return A}consumeToken(){const A=this.consumeCodePoint();switch(A){case 34:return this.consumeStringToken(34);case 35:{const A=this.peekCodePoint(0),t=this.peekCodePoint(1),e=this.peekCodePoint(2);if(hA(A)||wA(t,e)){const r=uA(A,t,e)?2:1;return{type:5,value:this.consumeName(),flags:r}}break}case 36:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),FA;break;case 39:return this.consumeStringToken(39);case 40:return CA;case 41:return UA;case 42:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),xA;break;case 43:if(QA(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 44:return fA;case 45:{const t=A,e=this.peekCodePoint(0),r=this.peekCodePoint(1);if(QA(t,e,r))return this.reconsumeCodePoint(A),this.consumeNumericToken();if(uA(t,e,r))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();if(45===e&&62===r)return this.consumeCodePoint(),this.consumeCodePoint(),SA;break}case 46:if(QA(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 47:if(42===this.peekCodePoint(0))for(this.consumeCodePoint();;){let A=this.consumeCodePoint();if(42===A&&(A=this.consumeCodePoint(),47===A))return this.consumeToken();if(-1===A)return this.consumeToken()}break;case 58:return DA;case 59:return MA;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),LA;break;case 64:if(uA(this.peekCodePoint(0),this.peekCodePoint(1),this.peekCodePoint(2)))return{type:7,value:this.consumeName()};break;case 91:return TA;case 92:if(wA(A,this.peekCodePoint(0)))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();break;case 93:return kA;case 61:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),mA;break;case 123:return EA;case 125:return bA;case 117:case 85:{const t=this.peekCodePoint(0),e=this.peekCodePoint(1);return 43!==t||!BA(e)&&63!==e||(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(A),this.consumeIdentLikeToken()}case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),IA;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),yA;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),HA;break;case-1:return RA}return lA(A)?(this.consumeWhiteSpace(),OA):cA(A)?(this.reconsumeCodePoint(A),this.consumeNumericToken()):gA(A)?(this.reconsumeCodePoint(A),this.consumeIdentLikeToken()):{type:6,value:i(A)}}consumeCodePoint(){const A=this._value.shift();return void 0===A?-1:A}reconsumeCodePoint(A){this._value.unshift(A)}peekCodePoint(A){return A>=this._value.length?-1:this._value[A]}consumeUnicodeRangeToken(){const A=[];let t=this.consumeCodePoint();for(;BA(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();let e=!1;for(;63===t&&A.length<6;)A.push(t),t=this.consumeCodePoint(),e=!0;if(e)return{type:30,start:parseInt(i(...A.map(A=>63===A?48:A)),16),end:parseInt(i(...A.map(A=>63===A?70:A)),16)};const r=parseInt(i(...A),16);if(45===this.peekCodePoint(0)&&BA(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();const A=[];for(;BA(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();return{type:30,start:r,end:parseInt(i(...A),16)}}return{type:30,start:r,end:r}}consumeIdentLikeToken(){const A=this.consumeName();return"url"===A.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:A}):{type:20,value:A}}consumeUrlToken(){const A=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};const t=this.peekCodePoint(0);if(39===t||34===t){const A=this.consumeStringToken(this.consumeCodePoint());return 0===A.type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:A.value}):(this.consumeBadUrlRemnants(),vA)}for(;;){const t=this.consumeCodePoint();if(-1===t||41===t)return{type:22,value:i(...A)};if(lA(t))return this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:22,value:i(...A)}):(this.consumeBadUrlRemnants(),vA);if(34===t||39===t||40===t||dA(t))return this.consumeBadUrlRemnants(),vA;if(92===t){if(!wA(t,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),vA;A.push(this.consumeEscapedCodePoint())}else A.push(t)}}consumeWhiteSpace(){for(;lA(this.peekCodePoint(0));)this.consumeCodePoint()}consumeBadUrlRemnants(){for(;;){const A=this.consumeCodePoint();if(41===A||-1===A)return;wA(A,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}}consumeStringSlice(A){let t="";for(;A>0;){const e=Math.min(5e4,A);t+=i(...this._value.splice(0,e)),A-=e}return this._value.shift(),t}consumeStringToken(A){let t="",e=0;for(;;){const r=this._value[e];if(-1===r||void 0===r||r===A)return t+=this.consumeStringSlice(e),{type:0,value:t};if(10===r)return this._value.splice(0,e),KA;if(92===r){const A=this._value[e+1];-1!==A&&void 0!==A&&(10===A?(t+=this.consumeStringSlice(e),e=-1,this._value.shift()):wA(r,A)&&(t+=this.consumeStringSlice(e),t+=i(this.consumeEscapedCodePoint()),e=-1))}e++}}consumeNumber(){const A=[];let t=4,e=this.peekCodePoint(0);for(43!==e&&45!==e||A.push(this.consumeCodePoint());cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0);let r=this.peekCodePoint(1);if(46===e&&cA(r))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0),r=this.peekCodePoint(1);const n=this.peekCodePoint(2);if((69===e||101===e)&&((43===r||45===r)&&cA(n)||cA(r)))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());return[pA(A),t]}consumeNumericToken(){const[A,t]=this.consumeNumber(),e=this.peekCodePoint(0);return uA(e,this.peekCodePoint(1),this.peekCodePoint(2))?{type:15,number:A,flags:t,unit:this.consumeName()}:37===e?(this.consumeCodePoint(),{type:16,number:A,flags:t}):{type:17,number:A,flags:t}}consumeEscapedCodePoint(){const A=this.consumeCodePoint();if(BA(A)){let t=i(A);for(;BA(this.peekCodePoint(0))&&t.length<6;)t+=i(this.consumeCodePoint());lA(this.peekCodePoint(0))&&this.consumeCodePoint();const e=parseInt(t,16);return 0===e||(A=>A>=55296&&A<=57343)(e)||e>1114111?65533:e}return-1===A?65533:A}consumeName(){let A="";for(;;){const t=this.consumeCodePoint();if(hA(t))A+=i(t);else{if(!wA(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),A;A+=i(this.consumeEscapedCodePoint())}}}},NA=class A{constructor(A){this._tokens=A}static create(t){const e=new VA;return e.write(t),new A(e.read())}static parseValue(t){return A.create(t).parseComponentValue()}static parseValues(t){return A.create(t).parseComponentValues()}parseComponentValue(){let A=this.consumeToken();for(;31===A.type;)A=this.consumeToken();if(32===A.type)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(A);const t=this.consumeComponentValue();do{A=this.consumeToken()}while(31===A.type);if(32===A.type)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")}parseComponentValues(){const A=[];for(;;){const t=this.consumeComponentValue();if(32===t.type)return A;A.push(t)}}consumeComponentValue(){const A=this.consumeToken();switch(A.type){case 11:case 28:case 2:return this.consumeSimpleBlock(A.type);case 19:return this.consumeFunction(A)}return A}consumeSimpleBlock(A){const t={type:A,values:[]};let e=this.consumeToken();for(;;){if(32===e.type||_A(e,A))return t;this.reconsumeToken(e),t.values.push(this.consumeComponentValue()),e=this.consumeToken()}}consumeFunction(A){const t={name:A.value,values:[],type:18};for(;;){const A=this.consumeToken();if(32===A.type||3===A.type)return t;this.reconsumeToken(A),t.values.push(this.consumeComponentValue())}}consumeToken(){const A=this._tokens.shift();return void 0===A?RA:A}reconsumeToken(A){this._tokens.unshift(A)}};const GA=A=>15===A.type,PA=A=>17===A.type,XA=A=>20===A.type,JA=A=>0===A.type,WA=(A,t)=>XA(A)&&A.value===t,YA=A=>31!==A.type,ZA=A=>31!==A.type&&4!==A.type,zA=A=>{const t=[];let e=[];return A.forEach(A=>{4!==A.type?31!==A.type&&e.push(A):e.length&&(t.push(e),e=[])}),e.length&&t.push(e),t},_A=(A,t)=>11===t&&12===A.type||28===t&&29===A.type||2===t&&3===A.type,qA=/(\d+(?:\.\d+)?|[+\-*/()])/g,jA=A=>{const t=A.match(qA);if(!t)return NaN;const e=[],r=[],n={"+":1,"-":1,"*":2,"/":2};for(const A of t)if(/^\d+(?:\.\d+)?$/.test(A))e.push(parseFloat(A));else if("("===A)r.push(A);else if(")"===A){for(;r.length&&"("!==r[r.length-1];)e.push(r.pop());if(!r.length)return NaN;r.pop()}else{for(;r.length&&n[r[r.length-1]]>=n[A];)e.push(r.pop());r.push(A)}for(;r.length;){const A=r.pop();if("("===A)return NaN;e.push(A)}const s=[];for(const A of e)if("number"==typeof A)s.push(A);else{const t=s.pop(),e=s.pop();if(void 0===e||void 0===t)return NaN;switch(A){case"+":s.push(e+t);break;case"-":s.push(e-t);break;case"*":s.push(e*t);break;case"/":s.push(0===t?NaN:e/t);break;default:return NaN}}return 1===s.length?s[0]:NaN},$A=(A,t,e)=>Math.min(Math.max(A,t),e),At=(A,t)=>[A[0]*t[0]+A[1]*t[1]+A[2]*t[2],A[3]*t[0]+A[4]*t[1]+A[5]*t[2],A[6]*t[0]+A[7]*t[1]+A[8]*t[2]],tt=A=>At([3.2409699419045226,-1.537383177570094,-.4986107602930034,-.9692436362808796,1.8759675015077202,.04155505740717559,.05563007969699366,-.20397695888897652,1.0569715142428786],A),et=A=>At([.41239079926595934,.357584339383878,.1804807884018343,.21263900587151027,.715168678767756,.07219231536073371,.01933081871559182,.11919477979462598,.9505321522496607],A),rt=A=>A.map(A=>{const t=A<0?-1:1,e=Math.abs(A);return e>.0031308?t*(1.055*e**(1/2.4)-.055):12.92*A}),nt=A=>A.map(A=>{const t=A<0?-1:1,e=Math.abs(A);return e<=.04045?A/12.92:t*((e+.055)/1.055)**2.4}),st=A=>17===A.type||15===A.type,ot=A=>16===A.type||st(A)||it(A),it=A=>17===A.type&&void 0!==A._calcPercentage,at=A=>{return 18===(t=A).type&&"calc"===t.name?(A=>{const t=ct(A,0);if(!t)return null;const e=ct(A,100);if(!e)return null;const r=t.number,n=e.number-r;return 0===n?t:{type:17,number:r,flags:4,_calcPercentage:n,_calcPixelOffset:r}})(A):ot(A)?A:null;var t},ct=(A,t=0)=>{const e=A=>{let r="";for(const n of A)if(31!==n.type)if(18===n.type){if("calc"!==n.name)return null;{const A=e(n.values);if(null===A)return null;r+=`(${A})`}}else if(17===n.type)r+=n.number.toString();else if(15===n.type)r+="px"===n.unit?n.number.toString():"rem"===n.unit||"em"===n.unit?(16*n.number).toString():n.number.toString();else if(16===n.type)r+=(n.number/100*t).toString();else if(6===n.type){const A=n.value;"+"===A||"-"===A||"*"===A||"/"===A?r+=` ${A} `:"("===A?r+="(":")"===A&&(r+=")")}return r};try{const t=e(A.values);if(null===t||""===t.trim())return null;const r=jA(t);if("number"==typeof r&&!isNaN(r))return{type:17,number:r,flags:4}}catch(A){return null}return null},Bt=A=>A.length>1?[A[0],A[1]]:[A[0]],lt={type:17,number:0,flags:4},gt={type:16,number:50,flags:4},ht={type:16,number:100,flags:4},dt=(A,t,e)=>{const[r,n]=A;return[wt(r,t),wt(void 0!==n?n:r,e)]},wt=(A,t)=>{if(it(A))return A._calcPercentage/100*t+A._calcPixelOffset;if(16===A.type)return A.number/100*t;if(GA(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},ut="grad",Qt="turn",pt=(A,t)=>{if(15===t.type)switch(t.unit){case"deg":return Math.PI*t.number/180;case ut:return Math.PI/200*t.number;case"rad":return t.number;case Qt:return 2*Math.PI*t.number}throw new Error("Unsupported angle type")},Ct=A=>15===A.type&&("deg"===A.unit||A.unit===ut||"rad"===A.unit||A.unit===Qt),Ut=A=>{switch(A.filter(XA).map(A=>A.value).join(" ")){case"to bottom right":case"to right bottom":case"left top":case"top left":return[lt,lt];case"to top":case"bottom":return ft(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[lt,ht];case"to right":case"left":return ft(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[ht,ht];case"to bottom":case"top":return ft(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[ht,lt];case"to left":case"right":return ft(270)}return 0},ft=A=>Math.PI*A/180,Ft=A=>!(255&A),mt=A=>{const t=255&A,e=255&A>>8,r=255&A>>16,n=255&A>>24;return t<255?`rgba(${n},${r},${e},${t/255})`:`rgb(${n},${r},${e})`},yt=(A,t,e,r)=>(A<<24|t<<16|e<<8|Math.round(255*r))>>>0,It=(A,t)=>{if(17===A.type)return A.number;if(16===A.type){const e=3===t?1:255;return 3===t?A.number/100*e:Math.round(A.number/100*e)}return 0},Ht=A=>"from"===(20===A[0].type?A[0].value:"unknown"),Et=([A,t,e,r])=>{const n=rt([A,t,e]);return yt($A(Math.round(255*n[0]),0,255),$A(Math.round(255*n[1]),0,255),$A(Math.round(255*n[2]),0,255),r)},bt=A=>{const t=tt([A[0],A[1],A[2]]);return Et([t[0],t[1],t[2],A[3]])},xt=(A,t)=>{const[e,r,n,s]=t.filter(ZA);return[(17===e.type?ft(e.number):pt(0,e))/(2*Math.PI),ot(r)?r.number/100:0,ot(n)?n.number/100:0,void 0!==s&&ot(s)?wt(s,1):1]},vt=(A,t)=>{if(Ht(t))throw new Error("Relative color not supported for hsl()");const[e,r,n,s]=xt(0,t),o=kt([e,r,n]);return yt(255*o[0],255*o[1],255*o[2],0===r?1:s)},Kt=A=>{const t=A.filter(ZA);return[ot(t[0])?t[0].number:0,ot(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},Lt=A=>{const t=A.filter(ZA);return[16===t[0].type?t[0].number/100:PA(t[0])?t[0].number:0,16===t[1].type?t[1].number/100:PA(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},St=A=>{const t=A.filter(ZA);return[16===t[0].type?t[0].number/100:PA(t[0])?t[0].number:0,16===t[1].type?t[1].number/100:PA(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},Dt=A=>At([1.0479297925449969,.022946870601609652,-.05019226628920524,.02962780877005599,.9904344267538799,-.017073799063418826,-.009243040646204504,.015055191490298152,.7518742814281371],A),Mt=A=>At([.955473421488075,-.02309845494876471,.06325924320057072,-.0283697093338637,1.0099953980813041,.021041441191917323,.012314014864481998,-.020507649298898964,1.330365926242124],A),Tt=(A,t,e)=>(e<0&&(e+=1),e>=1&&(e-=1),e<1/6?(t-A)*e*6+A:e<.5?t:e<2/3?6*(t-A)*(2/3-e)+A:A),kt=([A,t,e])=>{if(0===t)return[255*e,255*e,255*e];const r=e<=.5?e*(t+1):e+t-e*t,n=2*e-r;return[Tt(n,r,A+1/3),Tt(n,r,A),Tt(n,r,A-1/3)]},Ot=([A,t,e])=>(t<0&&(t=0),isNaN(e)&&(e=0),[A,t*Math.cos(e*Math.PI/180),t*Math.sin(e*Math.PI/180)]),Rt=A=>At([1.2268798758459243,-.5578149944602171,.2813910456659647,-.0405757452148008,1.112286803280317,-.0717110580655164,-.0763729366746601,-.4214933324022432,1.5869240198367816],At([1,.3963377773761749,.2158037573099136,1,-.1055613458156586,-.0638541728258133,1,-.0894841775298119,-1.2914855480194092],A).map(A=>A**3)),Vt=A=>{const t=(A[0]+16)/116,e=A[1]/500+t,r=t-A[2]/200,n=24389/27,s=24/116,o=[.3457*(e>s?e**3:(116*e-16)/n)/.3585,A[0]>8?t**3:A[0]/n,.2958*(r>s?r**3:(116*r-16)/n)/.3585];return Mt([o[0],o[1],o[2]])},Nt=A=>A,Gt=A=>bt([A[0],A[1],A[2],A[3]]),Pt=1.09929682680944,Xt=.018053968510807,Jt=(A,t)=>{if(18===t.type){const e=qt[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported color function "${t.name}"`);return e(A,t.values)}if(5===t.type){const[A,e,r,n]=Wt(t);return yt(A,e,r,n)}if(20===t.type){const A=$t[t.value.toUpperCase()];if(void 0!==A)return A}return $t.TRANSPARENT},Wt=A=>{if(3===A.value.length){const t=A.value.substring(0,1),e=A.value.substring(1,2),r=A.value.substring(2,3);return[parseInt(t+t,16),parseInt(e+e,16),parseInt(r+r,16),1]}if(4===A.value.length){const t=A.value.substring(0,1),e=A.value.substring(1,2),r=A.value.substring(2,3),n=A.value.substring(3,4);return[parseInt(t+t,16),parseInt(e+e,16),parseInt(r+r,16),parseInt(n+n,16)/255]}if(6===A.value.length){const t=A.value.substring(0,2),e=A.value.substring(2,4),r=A.value.substring(4,6);return[parseInt(t,16),parseInt(e,16),parseInt(r,16),1]}if(8===A.value.length){const t=A.value.substring(0,2),e=A.value.substring(2,4),r=A.value.substring(4,6),n=A.value.substring(6,8);return[parseInt(t,16),parseInt(e,16),parseInt(r,16),parseInt(n,16)/255]}return[0,0,0,1]},Yt=(A,t)=>{const e=t.filter(ZA);if(Ht(e))throw new Error("Relative color not supported for rgb()");if(3===e.length){const[A,t,r]=e.map(It);return yt(A,t,r,1)}if(4===e.length){const[A,t,r,n]=e.map(It);return yt(A,t,r,n)}return 5===e.length&&6===e[3].type&&"/"===e[3].value?yt(It(e[0],0),It(e[1],1),It(e[2],2),It(e[4],3)):0},Zt={srgb:A=>yt($A(Math.round(255*A[0]),0,255),$A(Math.round(255*A[1]),0,255),$A(Math.round(255*A[2]),0,255),$A(A[3],0,1)),"srgb-linear":Et,"display-p3":A=>{const t=(A=>{const t=[A[0],A[1],A[2]].map(A=>{const t=A<0?-1:1;return A*t<=.04045?A/12.92:t*((A+.055)/1.055)**2.4||0});return At([.4865709486482162,.26566769316909306,.1982172852343625,.2289745640697488,.6917385218365064,.079286914093745,0,.04511338185890264,1.043944368900976],[t[0],t[1],t[2]])})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},"a98-rgb":A=>{const t=tt((e=(A=>{const t=A.map(A=>(A<0?-1:1)*Math.abs(A)**(563/256));return[t[0],t[1],t[2]]})([A[0],A[1],A[2]]),At([.5766690429101305,.1855582379065463,.1882286462349947,.29734497525053605,.6273635662554661,.0752914584939978,.02703136138641234,.07068885253582723,.9913375368376388],e)));var e;return Et([t[0],t[1],t[2],A[3]])},"prophoto-rgb":A=>{const t=(A=>{const t=[A[0],A[1],A[2]].map(A=>A<16/512?A/16:A**1.8);return Mt(At([.7977666449006423,.13518129740053308,.0313477341283922,.2880748288194013,.711835234241873,8993693872564e-17,0,0,.8251046025104602],[t[0],t[1],t[2]]))})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},xyz:Gt,"xyz-d50":A=>{const t=(A=>Mt([A[0],A[1],A[2]]))([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},"xyz-d65":Gt,rec2020:A=>{const t=(A=>{const t=(A=>A.map(A=>A<4.5*Xt?A/4.5:Math.pow((A+Pt-1)/Pt,1/.45)))([A[0],A[1],A[2]]);return At([.6369580483012914,.14461690358620832,.1688809751641721,.2627002120112671,.6779980715188708,.05930171646986196,0,.028072693049087428,1.060985057710791],[t[0],t[1],t[2]])})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])}},zt={rgb:(A,t)=>{const e=t.filter(ZA);if(3===e.length){const[A,t,r]=e.map(It),n=nt([A/255,t/255,r/255]),[s,o,i]=et([n[0],n[1],n[2]]);return[s,o,i,1]}if(4===e.length){const[A,t,r,n]=e.map(It),s=nt([A/255,t/255,r/255]),[o,i,a]=et([s[0],s[1],s[2]]);return[o,i,a,n]}return[0,0,0,1]},hsl:(A,t)=>{const[e,r,n,s]=xt(0,t),o=nt(kt([e,r,n])),[i,a,c]=et([o[0],o[1],o[2]]);return[i,a,c,s]},lab:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Vt([e,r,n]);return[o,i,a,s]},lch:(A,t)=>{const[e,r,n,s]=Kt(t),[o,i,a]=Vt(Ot([e,r,n]));return[o,i,a,s]},oklab:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Rt([e,r,n]);return[o,i,a,s]},oklch:(A,t)=>{const[e,r,n,s]=St(t),[o,i,a]=Rt(Ot([e,r,n]));return[o,i,a,s]}},_t={srgb:A=>{const[t,e,r]=rt(tt([A[0],A[1],A[2]]));return[t,e,r,A[3]]},"srgb-linear":A=>{const[t,e,r]=tt([A[0],A[1],A[2]]);return[$A(Math.round(255*t),0,255),$A(Math.round(255*e),0,255),$A(Math.round(255*r),0,255),A[3]]},"display-p3":A=>{const[t,e,r]=(n=At([2.493496911941425,-.9313836179191239,-.40271078445071684,-.8294889695615747,1.7626640603183463,.023624685841943577,.03584583024378447,-.07617238926804182,.9568845240076872],[A[0],A[1],A[2]]),rt(n));var n;return[t,e,r,A[3]]},"a98-rgb":A=>{const[t,e,r]=(A=>{const t=A.map(A=>(A<0?-1:1)*Math.abs(A)**(256/563));return[t[0],t[1],t[2]]})(At([2.0415879038107465,-.5650069742788596,-.34473135077832956,-.9692436362808795,1.8759675015077202,.04155505740717557,.013444280632031142,-.11836239223101838,1.0151749943912054],[A[0],A[1],A[2]]));return[t,e,r,A[3]]},"prophoto-rgb":A=>{const[t,e,r]=(n=Dt([A[0],A[1],A[2]]),At([1.3457868816471583,-.25557208737979464,-.05110186497554526,-.5446307051249019,1.5082477428451468,.02052744743642139,0,0,1.2119675456389452],n).map(A=>A>1/512?A**(1/1.8):16*A));var n;return[t,e,r,A[3]]},xyz:Nt,"xyz-d50":A=>{const[t,e,r]=Dt([A[0],A[2],A[3]]);return[t,e,r,A[3]]},"xyz-d65":Nt,rec2020:A=>{const[t,e,r]=(A=>A.map(A=>A>=Xt?Pt*Math.pow(A,.45)-(Pt-1):4.5*A))(At([1.716651187971268,-.355670783776392,-.25336628137366,-.666684351832489,1.616481236634939,.0157685458139111,.017639857445311,-.042770613257809,.942103121235474],[A[0],A[1],A[2]]));return[t,e,r,A[3]]}},qt={hsl:vt,hsla:vt,rgb:Yt,rgba:Yt,lch:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for lch()");const[e,r,n,s]=Kt(t),o=rt(tt(Vt(Ot([e,r,n]))));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},oklch:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for oklch()");const[e,r,n,s]=St(t),o=rt(tt(Rt(Ot([e,r,n]))));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},oklab:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for oklab()");const[e,r,n,s]=Lt(t),o=rt(tt(Rt([e,r,n])));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},lab:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for lab()");const[e,r,n,s]=Lt(t),o=rt(tt(Vt([e,r,n])));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},color:(A,t)=>{const e=t.filter(ZA),r=20===e[0].type?e[0].value:"unknown";if(Ht(e)){const t=(A,t)=>{if(PA(t))return t.number;if(XA(t))return A[e=t.value,"r"===e||"x"===e?0:"g"===e||"y"===e?1:2];var e;const r=A=>{const t=A.filter(ZA);let e="(";for(const A of t)e+=18===A.type&&"calc"===A.name?r(A.values):PA(A)?A.number:6===A.type||XA(A)?A.value:"";return e+=")",e};if(18===t.type){const e=t.values.filter(ZA);if("calc"===t.name)return jA(r(e).replace(/r|x/,A[0].toString()).replace(/g|y/,A[1].toString()).replace(/b|z/,A[2].toString()))}return null},r=18===e[1].type?e[1].name:XA(e[1])||5===e[1].type?"rgb":"unknown",n=XA(e[2])?e[2].value:"unknown";let s=18===e[1].type?e[1].values:XA(e[1])?[e[1]]:[];if(XA(e[1])){if(void 0===$t[e[1].value.toUpperCase()])throw new Error("Attempting to use unknown color in relative color 'from'");{const t=jt(A,e[1].value),r=255&t;s=[{type:17,number:255&t>>24,flags:1},{type:17,number:255&t>>16,flags:1},{type:17,number:255&t>>8,flags:1},{type:17,number:r>1?r/255:r,flags:1}]}}else if(5===e[1].type){const[A,t,r,n]=Wt(e[1]);s=[{type:17,number:A,flags:1},{type:17,number:t,flags:1},{type:17,number:r,flags:1},{type:17,number:n>1?n/255:n,flags:1}]}if(0===s.length)throw new Error("Attempting to use unknown color in relative color 'from'");if("unknown"===n)throw new Error("Attempting to use unknown colorspace in relative color 'to'");const o=zt[r],i=_t[n],a=Zt[n];if(void 0===o)throw new Error(`Attempting to parse an unsupported color space "${r}" for color() function`);if(void 0===i)throw new Error(`Attempting to parse an unsupported color space "${n}" for color() function`);const c=i(o(A,s)),B=t(c,e[3]),l=t(c,e[4]),g=t(c,e[5]),h=e.length>6&&6===e[6].type&&"/"===e[6].value&&PA(e[7])?e[7].number:1;if(null===B||null===l||null===g)throw new Error("Invalid relative color in color() function");return a([B,l,g,h])}{const A=Zt[r];if(void 0===A)throw new Error(`Attempting to parse an unsupported color space "${r}" for color() function`);return A([PA(e[1])?e[1].number:0,PA(e[2])?e[2].number:0,PA(e[3])?e[3].number:0,e.length>4&&6===e[4].type&&"/"===e[4].value&&PA(e[5])?e[5].number:1])}}},jt=(A,t)=>Jt(A,NA.create(t).parseComponentValue()),$t={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},Ae=A=>A.nodeType===Node.ELEMENT_NODE,te=A=>A.nodeType===Node.TEXT_NODE,ee=A=>"object"==typeof A.className,re=A=>Ae(A)&&void 0!==A.style&&!ee(A),ne=A=>"svg"===A.tagName,se=A=>"BODY"===A.tagName,oe=A=>"CANVAS"===A.tagName,ie=A=>"VIDEO"===A.tagName,ae=A=>"IMG"===A.tagName,ce=A=>"IFRAME"===A.tagName,Be=A=>"STYLE"===A.tagName,le=A=>"TEXTAREA"===A.tagName,ge=A=>"SELECT"===A.tagName,he=A=>"SLOT"===A.tagName,de=A=>!ee(A)&&A.tagName.indexOf("-")>0,we=new Set(["IMG","VIDEO","AUDIO","CANVAS","IFRAME","INPUT","TEXTAREA","SELECT","BR","HR","META","LINK","BASE","COL","SOURCE","TRACK","WBR","AREA","PARAM","EMBED","OBJECT"]),ue={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 52;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},Qe=(A,t)=>0!==(A&t);var pe=class{constructor(){this.counters={}}getCounterValue(A){const t=this.counters[A];return t&&t.length?t[t.length-1]:1}getCounterValues(A){return this.counters[A]||[]}pop(A){A.forEach(A=>this.counters[A].pop())}parse(A){const t=A.counterIncrement,e=A.counterReset;let r=!0;null!==t&&t.forEach(A=>{const t=this.counters[A.counter];t&&0!==A.increment&&(r=!1,t.length||t.push(1),t[Math.max(0,t.length-1)]+=A.increment)});const n=[];return r&&e.forEach(A=>{let t=this.counters[A.counter];n.push(A.counter),t||(t=this.counters[A.counter]=[]),t.push(A.reset)}),n}};const Ce={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},Ue={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},fe={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},Fe={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},me=(A,t,e,r,n,s)=>A<t||A>e?Le(A,n,s.length>0):r.integers.reduce((t,e,n)=>{for(;A>=e;)A-=e,t+=r.values[n];return t},"")+s,ye=(A,t,e,r)=>{let n="";do{e||A--,n=r(A)+n,A/=t}while(A*t>=t);return n},Ie=(A,t,e,r,n)=>{const s=e-t+1;return(A<0?"-":"")+(ye(Math.abs(A),s,r,A=>i(Math.floor(A%s)+t))+n)},He=(A,t,e=". ")=>{const r=t.length;return ye(Math.abs(A),r,!1,A=>t[Math.floor(A%r)])+e},Ee=(A,t,e,r,n,s)=>{if(A<-9999||A>9999)return Le(A,4,n.length>0);let o=Math.abs(A),i=n;if(0===o)return t[0]+i;for(let r=0;o>0&&r<=4;r++){const n=o%10;0===n&&Qe(s,1)&&""!==i?i=t[n]+i:n>1||1===n&&0===r||1===n&&1===r&&Qe(s,2)||1===n&&1===r&&Qe(s,4)&&A>100||1===n&&r>1&&Qe(s,8)?i=t[n]+(r>0?e[r-1]:"")+i:1===n&&r>0&&(i=e[r-1]+i),o=Math.floor(o/10)}return(A<0?r:"")+i},be="十百千萬",xe="拾佰仟萬",ve="マイナス",Ke="마이너스",Le=(A,t,e)=>{const r=e?". ":"",n=e?"、":"",s=e?", ":"",o=e?" ":"";switch(t){case 0:return"•"+o;case 1:return"◦"+o;case 2:return"◾"+o;case 5:const t=Ie(A,48,57,!0,r);return t.length<4?`0${t}`:t;case 4:return He(A,"〇一二三四五六七八九",n);case 6:return me(A,1,3999,Ce,3,r).toLowerCase();case 7:return me(A,1,3999,Ce,3,r);case 8:return Ie(A,945,969,!1,r);case 9:return Ie(A,97,122,!1,r);case 10:return Ie(A,65,90,!1,r);case 11:return Ie(A,1632,1641,!0,r);case 12:case 49:return me(A,1,9999,Ue,3,r);case 35:return me(A,1,9999,Ue,3,r).toLowerCase();case 13:return Ie(A,2534,2543,!0,r);case 14:case 30:return Ie(A,6112,6121,!0,r);case 15:return He(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return He(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return Ee(A,"零一二三四五六七八九",be,"負",n,14);case 47:return Ee(A,"零壹貳參肆伍陸柒捌玖",xe,"負",n,15);case 42:return Ee(A,"零一二三四五六七八九",be,"负",n,14);case 41:return Ee(A,"零壹贰叁肆伍陆柒捌玖",xe,"负",n,15);case 26:return Ee(A,"〇一二三四五六七八九","十百千万",ve,n,0);case 25:return Ee(A,"零壱弐参四伍六七八九","拾百千万",ve,n,7);case 31:return Ee(A,"영일이삼사오육칠팔구","십백천만",Ke,s,7);case 33:return Ee(A,"零一二三四五六七八九","十百千萬",Ke,s,0);case 32:return Ee(A,"零壹貳參四五六七八九","拾百千",Ke,s,7);case 18:return Ie(A,2406,2415,!0,r);case 20:return me(A,1,19999,Fe,3,r);case 21:return Ie(A,2790,2799,!0,r);case 22:return Ie(A,2662,2671,!0,r);case 52:return me(A,1,10999,fe,3,r);case 23:return He(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return He(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return Ie(A,3302,3311,!0,r);case 28:return He(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return He(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return Ie(A,3792,3801,!0,r);case 37:return Ie(A,6160,6169,!0,r);case 38:return Ie(A,4160,4169,!0,r);case 39:return Ie(A,2918,2927,!0,r);case 40:return Ie(A,1776,1785,!0,r);case 43:return Ie(A,3046,3055,!0,r);case 44:return Ie(A,3174,3183,!0,r);case 45:return Ie(A,3664,3673,!0,r);case 46:return Ie(A,3872,3881,!0,r);default:return Ie(A,48,57,!0,r)}},Se={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:(A,t)=>t.map(A=>{if(XA(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2;case"text":return 3}return 0})},De={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Me=(A,t)=>{const e=Jt(A,t[0]),r=t[1];return r&&ot(r)?{color:e,stop:r}:{color:e,stop:null}},Te=(A,t)=>{const e=A[0],r=A[A.length-1];null===e.stop&&(e.stop=lt),null===r.stop&&(r.stop=ht);const n=[];let s=0;for(let e=0;e<A.length;e++){const r=A[e].stop;if(null!==r){const A=wt(r,t);n.push(A>s?A:s),s=A}else n.push(null)}let o=null;for(let A=0;A<n.length;A++){const t=n[A];if(null===t)null===o&&(o=A);else if(null!==o){const e=A-o,r=(t-n[o-1])/(e+1);for(let A=1;A<=e;A++)n[o+A-1]=r*A;o=null}}return A.map(({color:A},e)=>({color:A,stop:Math.max(Math.min(1,n[e]/t),0)}))},ke=(A,t,e)=>{const r="number"==typeof A?A:((A,t,e)=>{const r=t/2,n=e/2,s=wt(A[0],t)-r,o=n-wt(A[1],e);return(Math.atan2(o,s)+2*Math.PI)%(2*Math.PI)})(A,t,e),n=Math.abs(t*Math.sin(r))+Math.abs(e*Math.cos(r)),s=t/2,o=e/2,i=n/2,a=Math.sin(r-Math.PI/2)*i,c=Math.cos(r-Math.PI/2)*i;return[n,s-c,s+c,o-a,o+a]},Oe=(A,t)=>Math.sqrt(A*A+t*t),Re=(A,t,e,r,n)=>[[0,0],[0,t],[A,0],[A,t]].reduce((A,t)=>{const[s,o]=t,i=Oe(e-s,r-o);return(n?i<A.optimumDistance:i>A.optimumDistance)?{optimumCorner:t,optimumDistance:i}:A},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner,Ve=(A,t)=>{let e=ft(180);const r=[];return zA(t).forEach((t,n)=>{if(0===n){const A=t[0];if(20===A.type&&"to"===A.value)return void(e=Ut(t));if(Ct(A))return void(e=pt(0,A))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Ne=(A,t)=>{let e=ft(180);const r=[];return zA(t).forEach((t,n)=>{if(0===n){const A=t[0];if(20===A.type&&-1!==["top","left","right","bottom"].indexOf(A.value))return void(e=Ut(t));if(Ct(A))return void(e=(pt(0,A)+ft(270))%ft(360))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Ge="closest-side",Pe="farthest-side",Xe="closest-corner",Je="farthest-corner",We="circle",Ye="ellipse",Ze="cover",ze="contain",_e=(A,t)=>{let e=0,r=3;const n=[],s=[];return zA(t).forEach((t,o)=>{let i=!0;if(0===o?i=t.reduce((A,t)=>{if(XA(t))switch(t.value){case"center":return s.push(gt),!1;case"top":case"left":return s.push(lt),!1;case"right":case"bottom":return s.push(ht),!1}else if(ot(t)||st(t))return s.push(t),!1;return A},i):1===o&&(i=t.reduce((A,t)=>{if(XA(t))switch(t.value){case We:return e=0,!1;case Ye:return e=1,!1;case ze:case Ge:return r=0,!1;case Pe:return r=1,!1;case Xe:return r=2,!1;case Ze:case Je:return r=3,!1}else if(st(t)||ot(t))return Array.isArray(r)||(r=[]),r.push(t),!1;return A},i)),i){const e=Me(A,t);n.push(e)}}),{size:r,shape:e,stops:n,position:s,type:2}},qe=(A,t)=>({...Ve(A,t),type:3}),je=A=>1===A.type,$e=A=>2===A.type,Ar=A=>3===A.type,tr=(A,t)=>{if(22===t.type){const e={url:t.value,type:0};return A.cache.addImage(t.value),e}if(18===t.type){const e=rr[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported image function "${t.name}"`);return e(A,t.values)}throw new Error(`Unsupported image type ${t.type}`)};function er(A){return!(20===A.type&&"none"===A.value||18===A.type&&!rr[A.name])}const rr={"linear-gradient":Ve,"-moz-linear-gradient":Ne,"-ms-linear-gradient":Ne,"-o-linear-gradient":Ne,"-webkit-linear-gradient":Ne,"radial-gradient":(A,t)=>{let e=0,r=3;const n=[],s=[];return zA(t).forEach((t,o)=>{let i=!0;if(0===o){let A=!1;i=t.reduce((t,n)=>{if(A)if(XA(n))switch(n.value){case"center":return s.push(gt),t;case"top":case"left":return s.push(lt),t;case"right":case"bottom":return s.push(ht),t}else(ot(n)||st(n))&&s.push(n);else if(XA(n))switch(n.value){case We:return e=0,!1;case Ye:return e=1,!1;case"at":return A=!0,!1;case Ge:return r=0,!1;case Ze:case Pe:return r=1,!1;case ze:case Xe:return r=2,!1;case Je:return r=3,!1}else if(st(n)||ot(n))return Array.isArray(r)||(r=[]),r.push(n),!1;return t},i)}if(i){const e=Me(A,t);n.push(e)}}),{size:r,shape:e,stops:n,position:s,type:2}},"-moz-radial-gradient":_e,"-ms-radial-gradient":_e,"-o-radial-gradient":_e,"-webkit-radial-gradient":_e,"-webkit-gradient":(A,t)=>{const e=ft(180),r=[];let n=1;return zA(t).forEach((t,e)=>{const s=t[0];if(0===e){if(XA(s)&&"linear"===s.value)return void(n=1);if(XA(s)&&"radial"===s.value)return void(n=2)}if(18===s.type)if("from"===s.name){const t=Jt(A,s.values[0]);r.push({stop:lt,color:t})}else if("to"===s.name){const t=Jt(A,s.values[0]);r.push({stop:ht,color:t})}else if("color-stop"===s.name){const t=s.values.filter(ZA);if(2===t.length){const e=Jt(A,t[1]),n=t[0];PA(n)&&r.push({stop:{type:16,number:100*n.number,flags:n.flags},color:e})}}}),1===n?{angle:(e+ft(180))%ft(360),stops:r,type:n}:{size:3,shape:0,stops:r,position:[],type:n}},"repeating-linear-gradient":qe,"-webkit-repeating-linear-gradient":qe,"-moz-repeating-linear-gradient":qe,"-ms-repeating-linear-gradient":qe,"-o-repeating-linear-gradient":qe},nr={name:"background-image",initialValue:"none",type:1,prefix:!1,skipCache:!0,parse:(A,t)=>{if(0===t.length)return[];const e=t[0];return 20===e.type&&"none"===e.value?[]:t.filter(A=>ZA(A)&&er(A)).map(t=>tr(A,t))}},sr={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:(A,t)=>t.map(A=>{if(XA(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})},or={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:(A,t)=>zA(t).map(A=>A.map(at).filter(A=>null!==A)).map(Bt)},ir={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.filter(XA).map(A=>A.value).join(" ")).map(ar)},ar=A=>{switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},cr={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.map(A=>Br(A)?A:at(A)).filter(A=>null!==A))},Br=A=>XA(A)||ot(A),lr=A=>({name:`border-${A}-color`,initialValue:"transparent",prefix:!1,type:3,format:"color"}),gr=lr("top"),hr=lr("right"),dr=lr("bottom"),wr=lr("left"),ur=A=>({name:`border-${A}-radius`,initialValue:"0 0",prefix:!1,type:1,parse:(A,t)=>Bt(t.filter(ot))}),Qr=ur("top-left"),pr=ur("top-right"),Cr=ur("bottom-right"),Ur=ur("bottom-left"),fr=A=>({name:`border-${A}-style`,initialValue:"solid",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}),Fr=fr("top"),mr=fr("right"),yr=fr("bottom"),Ir=fr("left"),Hr=A=>({name:`border-${A}-width`,initialValue:"0",type:0,prefix:!1,parse:(A,t)=>GA(t)?t.number:0}),Er=Hr("top"),br=Hr("right"),xr=Hr("bottom"),vr=Hr("left"),Kr={type:0},Lr=A=>{const[t]=A;return t?XA(t)?"farthest-side"===t.value?"farthest-side":"closest-side":ot(t)?t:"closest-side":"closest-side"},Sr=A=>{let t=null,e=null;for(const r of A)if(XA(r))switch(r.value){case"left":t=lt;break;case"right":t=ht;break;case"top":e=lt;break;case"bottom":e=ht;break;case"center":null===t?t=gt:null===e&&(e=gt)}else ot(r)&&(null===t?t=r:null===e&&(e=r));return{cx:t??gt,cy:e??gt}},Dr={name:"clip-path",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>{if(XA(t)&&"none"===t.value)return Kr;if(18===t.type)switch(t.name){case"inset":return(A=>{const t=[];for(const e of A)if(31!==e.type){if(XA(e)&&"round"===e.value)break;ot(e)&&t.push(e)}const e=t[0]??lt,r=t[1]??e;return{type:1,top:e,right:r,bottom:t[2]??e,left:t[3]??r}})(t.values);case"circle":return(A=>{const t=A.filter(YA),e=t.findIndex(A=>WA(A,"at")),r=-1===e?t:t.slice(0,e),n=-1===e?[]:t.slice(e+1);return{type:2,radius:Lr(r),...Sr(n)}})(t.values);case"ellipse":return(A=>{const t=A.filter(YA),e=t.findIndex(A=>WA(A,"at")),r=-1===e?t:t.slice(0,e),n=-1===e?[]:t.slice(e+1);return{type:3,rx:Lr(r.slice(0,1)),ry:Lr(r.slice(1,2)),...Sr(n)}})(t.values);case"polygon":return(A=>{const t=zA(A),e=[];for(const A of t){if(1===A.length&&XA(A[0]))continue;const t=A.filter(ot);t.length>=2&&e.push([t[0],t[1]])}return{type:4,points:e}})(t.values);case"path":return(A=>{const t=A.find(A=>0===A.type);return t?{type:5,d:t.value}:Kr})(t.values)}return Kr}},Mr={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Tr={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:(A,t)=>"rtl"===t?1:0},kr={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Or(t.value),0)},Or=A=>{switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},Rr={name:"float",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},Vr={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"normal"===t.value?0:17===t.type||15===t.type?t.number:0},Nr={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"strict"===t?"strict":"normal"},Gr={name:"line-height",initialValue:"normal",prefix:!1,type:4},Pr=(A,t)=>XA(A)&&"normal"===A.value?1.2*t:17===A.type?t*A.number:ot(A)?wt(A,t):t,Xr={name:"list-style-image",initialValue:"none",type:0,prefix:!1,skipCache:!0,parse:(A,t)=>20===t.type&&"none"===t.value?null:tr(A,t)},Jr={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:(A,t)=>"inside"===t?0:1},Wr=A=>({name:`margin-${A}`,initialValue:"0",prefix:!1,type:4}),Yr=Wr("top"),Zr=Wr("right"),zr=Wr("bottom"),_r=Wr("left"),qr={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).map(A=>{switch(A.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})},jr={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"break-word"===t?"break-word":"normal"},$r=A=>({name:`padding-${A}`,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}),An=$r("top"),tn=$r("right"),en=$r("bottom"),rn=$r("left"),nn={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},sn={name:"position",initialValue:"static",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},on={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:zA(t).map(t=>{const e={color:$t.TRANSPARENT,offsetX:lt,offsetY:lt,blur:lt};let r=0;for(let n=0;n<t.length;n++){const s=t[n];st(s)?(0===r?e.offsetX=s:1===r?e.offsetY=s:e.blur=s,r++):e.color=Jt(A,s)}return e})},an={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},cn={name:"transform",initialValue:"none",prefix:!0,type:0,parse:(A,t)=>{if(20===t.type&&"none"===t.value)return null;if(18===t.type){const e=Bn[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported transform function "${t.name}"`);return e(A,t.values)}return null}},Bn={matrix:(A,t)=>{const e=t.filter(A=>17===A.type).map(A=>A.number);return 6===e.length?e:null},matrix3d:(A,t)=>{const e=t.filter(A=>17===A.type).map(A=>A.number),[r,n,{},{},s,o,{},{},{},{},{},{},i,a]=e;return 16===e.length?[r,n,s,o,i,a]:null},rotate:(A,t)=>{if(1!==t.length)return null;const e=t[0];let r=0;if(17===e.type&&0===e.number)r=0;else{if(15!==e.type)return null;r=pt(0,e)}const n=Math.cos(r),s=Math.sin(r);return[n,s,-s,n,0,0]}},ln={type:16,number:50,flags:4},gn=[ln,ln],hn={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:(A,t)=>{const e=t.filter(ot);return 2!==e.length?gn:[e[0],e[1]]}},dn={name:"rotate",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?null:17===t.type&&0===t.number?0:15===t.type?180*pt(0,t)/Math.PI:null},wn={name:"visibility",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"hidden":return 1;case"collapse":return 2;default:return 0}}},un={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"break-all":return"break-all";case"keep-all":return"keep-all";default:return"normal"}}},Qn={name:"white-space",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"pre":return"pre";case"nowrap":return"nowrap";case"pre-wrap":return"pre-wrap";case"pre-line":return"pre-line";default:return"normal"}}},pn=A=>0!==A,Cn=A=>3===A||4===A,Un={name:"writing-mode",initialValue:"horizontal-tb",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"vertical-rl":return 1;case"vertical-lr":return 2;case"sideways-rl":return 3;case"sideways-lr":return 4;default:return 0}}},fn={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>{if(20===t.type)return{auto:!0,order:0};if(PA(t))return{auto:!1,order:t.number};throw new Error("Invalid z-index number parsed")}},Fn=(A,t)=>{if(15===t.type)switch(t.unit.toLowerCase()){case"s":return 1e3*t.number;case"ms":return t.number}throw new Error("Unsupported time type")},mn={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:1},yn={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},In={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).map(A=>{switch(A.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(A=>0!==A)},Hn={name:"text-decoration-style",initialValue:"solid",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"double":return 1;case"dotted":return 2;case"dashed":return 3;case"wavy":return 4;default:return 0}}},En={name:"text-decoration-thickness",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>{if(XA(t))switch(t.value){case"auto":return"auto";case"from-font":return"from-font"}return GA(t)?t.number:"auto"}},bn={name:"text-underline-offset",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>XA(t)&&"auto"===t.value?"auto":GA(t)?t.number:"auto"},xn={name:"font-family",initialValue:"",prefix:!1,type:1,parse:(A,t)=>{const e=[],r=[];return t.forEach(A=>{switch(A.type){case 20:case 0:e.push(A.value);break;case 17:e.push(A.number.toString());break;case 4:r.push(e.join(" ")),e.length=0}}),e.length&&r.push(e.join(" ")),r.map(A=>-1===A.indexOf(" ")?A:`'${A}'`)}},vn={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Kn={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:XA(t)&&"bold"===t.value?700:400},Ln={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>t.filter(XA).map(A=>A.value)},Sn={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},Dn={name:"content",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>{if(0===t.length)return[];const e=t[0];return 20===e.type&&"none"===e.value?[]:t}},Mn=(A,t)=>{const e=[],r=A.filter(YA);for(let A=0;A<r.length;A++){const n=r[A],s=r[A+1];if(20===n.type){const A=s&&PA(s)?s.number:t;e.push([n.value,A])}}return e},Tn={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>{if(0===t.length)return null;const e=t[0];return 20===e.type&&"none"===e.value?null:Mn(t,1).map(([A,t])=>({counter:A,increment:t}))}},kn={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>0===t.length?[]:Mn(t,0).filter(([A])=>"none"!==A).map(([A,t])=>({counter:A,reset:t}))},On={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:(A,t)=>t.filter(GA).map(A=>Fn(0,A))},Rn={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>{if(0===t.length)return null;const e=t[0];if(20===e.type&&"none"===e.value)return null;const r=[],n=t.filter(JA);if(n.length%2!=0)return null;for(let A=0;A<n.length;A+=2)r.push({open:n[A].value,close:n[A+1].value});return r}},Vn=(A,t,e)=>{if(!A)return"";const r=A[Math.min(t,A.length-1)];return r?e?r.open:r.close:""},Nn={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:zA(t).map(t=>{const e={color:255,offsetX:lt,offsetY:lt,blur:lt,spread:lt,inset:!1};let r=0;for(let n=0;n<t.length;n++){const s=t[n];WA(s,"inset")?e.inset=!0:st(s)?(0===r?e.offsetX=s:1===r?e.offsetY=s:2===r?e.blur=s:e.spread=s,r++):e.color=Jt(A,s)}return e})},Gn={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:(A,t)=>{const e=[];return t.filter(XA).forEach(A=>{switch(A.value){case"stroke":e.push(1);break;case"fill":e.push(0);break;case"markers":e.push(2)}}),[0,1,2].forEach(A=>{-1===e.indexOf(A)&&e.push(A)}),e}},Pn={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Xn={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:(A,t)=>GA(t)?t.number:0},Jn={name:"-webkit-line-clamp",initialValue:"none",prefix:!0,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?0:17===t.type?Math.max(0,Math.floor(t.number)):0},Wn={name:"object-fit",initialValue:"fill",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Yn(t.value),0)},Yn=A=>{switch(A){case"contain":return 2;case"cover":return 4;case"none":return 8;case"scale-down":return 16}return 0},Zn={name:"text-overflow",initialValue:"clip",prefix:!1,type:2,parse:(A,t)=>"ellipsis"===t?1:0},zn={name:"image-rendering",initialValue:"auto",prefix:!1,type:2,parse:(A,t)=>{switch(t.toLowerCase()){case"crisp-edges":case"-webkit-crisp-edges":case"-moz-crisp-edges":return 1;case"pixelated":case"-webkit-optimize-contrast":return 2;case"smooth":case"high-quality":return 3;default:return 0}}},_n={NORMAL:"normal",MULTIPLY:"multiply",SCREEN:"screen",OVERLAY:"overlay",DARKEN:"darken",LIGHTEN:"lighten",COLOR_DODGE:"color-dodge",COLOR_BURN:"color-burn",HARD_LIGHT:"hard-light",SOFT_LIGHT:"soft-light",DIFFERENCE:"difference",EXCLUSION:"exclusion",HUE:"hue",SATURATION:"saturation",COLOR:"color",LUMINOSITY:"luminosity"},qn=new Set(Object.values(_n)),jn={name:"mix-blend-mode",initialValue:"normal",type:2,prefix:!1,parse:(A,t)=>qn.has(t)?t:_n.NORMAL},$n={name:"filter",initialValue:"none",prefix:!1,type:1,parse:(A,t)=>{if(1===t.length&&20===t[0].type&&"none"===t[0].value)return null;const e=[];for(const A of t)if(18===A.type){const t=A,r=As(t.values);switch(t.name){case"blur":e.push(`blur(${r}px)`);break;case"brightness":case"contrast":case"invert":case"opacity":case"saturate":case"sepia":e.push(`${t.name}(${r})`);break;case"grayscale":e.push(`grayscale(${r})`);break;case"hue-rotate":e.push(`hue-rotate(${r}deg)`);break;case"drop-shadow":e.push(`drop-shadow(${r})`)}}return e.length>0?e.join(" "):null}},As=A=>{const t=[];for(const e of A)31!==e.type&&(15===e.type?t.push(`${e.number}${e.unit}`):17===e.type?t.push(`${e.number}`):16===e.type?t.push(`${e.number}%`):20===e.type?t.push(e.value):5===e.type&&t.push(`#${e.value}`));return t.join(" ")},ts={name:"font-variant-ligatures",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"none":return 1;case"common-ligatures":return 2;case"no-common-ligatures":return 3;case"discretionary-ligatures":return 4;case"no-discretionary-ligatures":return 5;case"historical-ligatures":return 6;case"no-historical-ligatures":return 7;case"contextual":return 8;case"no-contextual":return 9;default:return 0}}},es={name:"zoom",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>16===t.type?Math.max(0,t.number/100):17===t.type?Math.max(0,t.number):1},rs={name:"object-position",initialValue:"50% 50%",prefix:!1,type:1,parse:(A,t)=>{const e=[];let r=0;for(;r<t.length&&e.length<2;){const A=t[r];if(XA(A))switch(A.value){case"left":case"top":e.push(lt);break;case"center":e.push(gt);break;case"right":case"bottom":e.push(ht)}else ot(A)&&e.push(A);r++}for(;e.length<2;)e.push(gt);return[e[0],e[1]]}},ns=new Set(Object.values({NORMAL:"normal",MULTIPLY:"multiply",SCREEN:"screen",OVERLAY:"overlay",DARKEN:"darken",LIGHTEN:"lighten",COLOR_DODGE:"color-dodge",COLOR_BURN:"color-burn",HARD_LIGHT:"hard-light",SOFT_LIGHT:"soft-light",DIFFERENCE:"difference",EXCLUSION:"exclusion",HUE:"hue",SATURATION:"saturation",COLOR:"color",LUMINOSITY:"luminosity"})),ss={name:"background-blend-mode",initialValue:"normal",prefix:!1,type:1,parse:(A,t)=>{const e=[],r=t.filter(ZA);for(const A of r)XA(A)&&ns.has(A.value)&&e.push(A.value);return e.length>0?e:["normal"]}},os={name:"border-image-source",initialValue:"none",prefix:!1,type:1,skipCache:!0,parse:(A,t)=>{if(0===t.length)return null;const e=t.filter(A=>ZA(A)&&er(A));return 0===e.length?null:tr(A,e[0])}},is={name:"border-image-slice",initialValue:"100%",prefix:!1,type:1,parse:(A,t)=>{const e=t.filter(YA),r=[];let n=!1,s="percent";for(const A of e)XA(A)&&"fill"===A.value?n=!0:17===A.type?(r.push(A.number),s="number"):16===A.type&&(r.push(A.number),s="percent");const[o,i,a,c]=(A=>{const t=[...A];return 1===t.length?t.push(t[0],t[0],t[0]):2===t.length?t.push(t[0],t[1]):3===t.length&&t.push(t[1]),t.slice(0,4)})(r.length>0?r:[100]);return{top:o,right:i,bottom:a,left:c,fill:n,unit:s}}},as=A=>{switch(A){case"repeat":return 1;case"round":return 2;case"space":return 3;default:return 0}},cs={name:"border-image-repeat",initialValue:"stretch",prefix:!1,type:1,parse:(A,t)=>{const e=t.filter(YA),r=[];for(const A of e)XA(A)&&r.push(as(A.value));const n=r[0]??0;return{horizontal:n,vertical:r[1]??n}}},Bs={name:"box-decoration-break",initialValue:"slice",prefix:!1,type:2,parse:(A,t)=>"clone"===t?1:0};var ls=class{constructor(A){this.styles=A}get topColor(){return this.styles.borderTopColor}get rightColor(){return this.styles.borderRightColor}get bottomColor(){return this.styles.borderBottomColor}get leftColor(){return this.styles.borderLeftColor}get topStyle(){return this.styles.borderTopStyle}get rightStyle(){return this.styles.borderRightStyle}get bottomStyle(){return this.styles.borderBottomStyle}get leftStyle(){return this.styles.borderLeftStyle}get topWidth(){return this.styles.borderTopWidth}get rightWidth(){return this.styles.borderRightWidth}get bottomWidth(){return this.styles.borderBottomWidth}get leftWidth(){return this.styles.borderLeftWidth}get topLeftRadius(){return this.styles.borderTopLeftRadius}get topRightRadius(){return this.styles.borderTopRightRadius}get bottomRightRadius(){return this.styles.borderBottomRightRadius}get bottomLeftRadius(){return this.styles.borderBottomLeftRadius}get imageSource(){return this.styles.borderImageSource}get imageSlice(){return this.styles.borderImageSlice}get imageRepeat(){return this.styles.borderImageRepeat}get boxShadow(){return this.styles.boxShadow}},gs=class{constructor(A){this.styles=A}get color(){return this.styles.backgroundColor}get image(){return this.styles.backgroundImage}get clip(){return this.styles.backgroundClip}get origin(){return this.styles.backgroundOrigin}get position(){return this.styles.backgroundPosition}get repeat(){return this.styles.backgroundRepeat}get size(){return this.styles.backgroundSize}get blendMode(){return this.styles.backgroundBlendMode}},hs=class{constructor(A){this.styles=A}get family(){return this.styles.fontFamily}get size(){return this.styles.fontSize}get style(){return this.styles.fontStyle}get variant(){return this.styles.fontVariant}get weight(){return this.styles.fontWeight}get ligatures(){return this.styles.fontVariantLigatures}get color(){return this.styles.color}get letterSpacing(){return this.styles.letterSpacing}get lineHeight(){return this.styles.lineHeight}get textAlign(){return this.styles.textAlign}get textTransform(){return this.styles.textTransform}get textOverflow(){return this.styles.textOverflow}get textShadow(){return this.styles.textShadow}get textDecorationColor(){return this.styles.textDecorationColor}get textDecorationLine(){return this.styles.textDecorationLine}get textDecorationStyle(){return this.styles.textDecorationStyle}get textDecorationThickness(){return this.styles.textDecorationThickness}get textUnderlineOffset(){return this.styles.textUnderlineOffset}get wordBreak(){return this.styles.wordBreak}get lineBreak(){return this.styles.lineBreak}get overflowWrap(){return this.styles.overflowWrap}get writingMode(){return this.styles.writingMode}get direction(){return this.styles.direction}get webkitTextStrokeColor(){return this.styles.webkitTextStrokeColor}get webkitTextStrokeWidth(){return this.styles.webkitTextStrokeWidth}get webkitLineClamp(){return this.styles.webkitLineClamp}get paintOrder(){return this.styles.paintOrder}},ds=class{constructor(A){this.styles=A}get display(){return this.styles.display}get position(){return this.styles.position}get float(){return this.styles.float}get zIndex(){return this.styles.zIndex}get marginTop(){return this.styles.marginTop}get marginRight(){return this.styles.marginRight}get marginBottom(){return this.styles.marginBottom}get marginLeft(){return this.styles.marginLeft}get paddingTop(){return this.styles.paddingTop}get paddingRight(){return this.styles.paddingRight}get paddingBottom(){return this.styles.paddingBottom}get paddingLeft(){return this.styles.paddingLeft}get overflowX(){return this.styles.overflowX}get overflowY(){return this.styles.overflowY}get opacity(){return this.styles.opacity}get visibility(){return this.styles.visibility}get transform(){return this.styles.transform}get transformOrigin(){return this.styles.transformOrigin}get rotate(){return this.styles.rotate}get zoom(){return this.styles.zoom}get clipPath(){return this.styles.clipPath}get mixBlendMode(){return this.styles.mixBlendMode}get filter(){return this.styles.filter}get imageRendering(){return this.styles.imageRendering}get objectFit(){return this.styles.objectFit}get objectPosition(){return this.styles.objectPosition}get boxDecorationBreak(){return this.styles.boxDecorationBreak}get listStyleImage(){return this.styles.listStyleImage}get listStylePosition(){return this.styles.listStylePosition}get listStyleType(){return this.styles.listStyleType}get animationDuration(){return this.styles.animationDuration}isVisible(){return this.styles.isVisible()}isTransparent(){return this.styles.isTransparent()}isTransformed(){return this.styles.isTransformed()}isPositioned(){return this.styles.isPositioned()}isPositionedWithZIndex(){return this.styles.isPositionedWithZIndex()}isFloating(){return this.styles.isFloating()}isInlineLevel(){return this.styles.isInlineLevel()}},ws=class A{get border(){return this._border??(this._border=new ls(this))}get background(){return this._background??(this._background=new gs(this))}get font(){return this._font??(this._font=new hs(this))}get layout(){return this._layout??(this._layout=new ds(this))}static{this.standardProps=[["animationDuration",On,"animationDuration"],["backgroundClip",Se,"backgroundClip"],["backgroundColor",De,"backgroundColor"],["backgroundImage",nr,"backgroundImage"],["backgroundOrigin",sr,"backgroundOrigin"],["backgroundPosition",or,"backgroundPosition"],["backgroundRepeat",ir,"backgroundRepeat"],["backgroundSize",cr,"backgroundSize"],["borderTopColor",gr,"borderTopColor"],["borderRightColor",hr,"borderRightColor"],["borderBottomColor",dr,"borderBottomColor"],["borderLeftColor",wr,"borderLeftColor"],["borderTopLeftRadius",Qr,"borderTopLeftRadius"],["borderTopRightRadius",pr,"borderTopRightRadius"],["borderBottomRightRadius",Cr,"borderBottomRightRadius"],["borderBottomLeftRadius",Ur,"borderBottomLeftRadius"],["borderTopStyle",Fr,"borderTopStyle"],["borderRightStyle",mr,"borderRightStyle"],["borderBottomStyle",yr,"borderBottomStyle"],["borderLeftStyle",Ir,"borderLeftStyle"],["borderTopWidth",Er,"borderTopWidth"],["borderRightWidth",br,"borderRightWidth"],["borderBottomWidth",xr,"borderBottomWidth"],["borderLeftWidth",vr,"borderLeftWidth"],["boxShadow",Nn,"boxShadow"],["clipPath",Dr,"clipPath"],["color",Mr,"color"],["direction",Tr,"direction"],["display",kr,"display"],["fontFamily",xn,"fontFamily"],["fontSize",vn,"fontSize"],["fontStyle",Sn,"fontStyle"],["fontVariant",Ln,"fontVariant"],["fontWeight",Kn,"fontWeight"],["letterSpacing",Vr,"letterSpacing"],["lineBreak",Nr,"lineBreak"],["lineHeight",Gr,"lineHeight"],["listStyleImage",Xr,"listStyleImage"],["listStylePosition",Jr,"listStylePosition"],["listStyleType",ue,"listStyleType"],["marginTop",Yr,"marginTop"],["marginRight",Zr,"marginRight"],["marginBottom",zr,"marginBottom"],["marginLeft",_r,"marginLeft"],["opacity",mn,"opacity"],["overflowWrap",jr,"overflowWrap"],["paddingTop",An,"paddingTop"],["paddingRight",tn,"paddingRight"],["paddingBottom",en,"paddingBottom"],["paddingLeft",rn,"paddingLeft"],["paintOrder",Gn,"paintOrder"],["position",sn,"position"],["textAlign",nn,"textAlign"],["textDecorationStyle",Hn,"textDecorationStyle"],["textDecorationThickness",En,"textDecorationThickness"],["textUnderlineOffset",bn,"textUnderlineOffset"],["textShadow",on,"textShadow"],["textTransform",an,"textTransform"],["textOverflow",Zn,"textOverflow"],["transform",cn,"transform"],["transformOrigin",hn,"transformOrigin"],["rotate",dn,"rotate"],["visibility",wn,"visibility"],["webkitTextStrokeColor",Pn,"webkitTextStrokeColor"],["webkitTextStrokeWidth",Xn,"webkitTextStrokeWidth"],["webkitLineClamp",Jn,"webkitLineClamp"],["wordBreak",un,"wordBreak"],["whiteSpace",Qn,"whiteSpace"],["writingMode",Un,"writingMode"],["zIndex",fn,"zIndex"],["objectFit",Wn,"objectFit"],["imageRendering",zn,"imageRendering"],["mixBlendMode",jn,"mixBlendMode"],["filter",$n,"filter"],["fontVariantLigatures",ts,"fontVariantLigatures"],["zoom",es,"zoom"],["objectPosition",rs,"objectPosition"],["backgroundBlendMode",ss,"backgroundBlendMode"],["borderImageSource",os,"borderImageSource"],["borderImageSlice",is,"borderImageSlice"],["borderImageRepeat",cs,"borderImageRepeat"],["boxDecorationBreak",Bs,"boxDecorationBreak"]]}constructor(t,e){const r=A.standardProps;if("none"===e.display){this.display=0;for(const[A,e]of r)"display"!==A&&(this[A]=Cs(t,e,void 0));this.float=Cs(t,Rr,void 0),this.textDecorationColor=Cs(t,yn,void 0),this.textDecorationLine=Cs(t,In,void 0);const A=Cs(t,qr,void 0);return this.overflowX=A[0],void(this.overflowY=A[A.length>1?1:0])}for(const[A,n,s]of r)this[A]=Cs(t,n,e[s]);this.float=Cs(t,Rr,e.cssFloat),this.textDecorationColor=Cs(t,yn,e.textDecorationColor??e.color),this.textDecorationLine=Cs(t,In,e.textDecorationLine??e.textDecoration);const n=Cs(t,qr,e.overflow);this.overflowX=n[0],this.overflowY=n[n.length>1?1:0]}isVisible(){return this.display>0&&this.opacity>0&&0===this.visibility}isTransparent(){return Ft(this.backgroundColor)}isTransformed(){return null!==this.transform||null!==this.rotate}isPositioned(){return 0!==this.position}isPositionedWithZIndex(){return this.isPositioned()&&!this.zIndex.auto}isFloating(){return 0!==this.float}isInlineLevel(){return Qe(this.display,4)||Qe(this.display,33554432)||Qe(this.display,268435456)||Qe(this.display,536870912)||Qe(this.display,67108864)||Qe(this.display,134217728)}},us=class{constructor(A,t){this.content=Cs(A,Dn,t.content),this.quotes=Cs(A,Rn,t.quotes)}},Qs=class{constructor(A,t){this.counterIncrement=Cs(A,Tn,t.counterIncrement),this.counterReset=Cs(A,kn,t.counterReset)}};const ps=new Map,Cs=(A,t,e)=>{let r=null!=e?e.toString():t.initialValue;""===r.trim()&&(r=t.initialValue);let n=ps.get(t);if(n){const A=n.get(r);if(void 0!==A)return n.delete(r),n.set(r,A),A}const s=VA.get();s.write(r);const o=new NA(s.read());VA.release(s);const i=(()=>{switch(t.type){case 2:{const e=o.parseComponentValue();return t.parse(A,XA(e)?e.value:t.initialValue)}case 0:return t.parse(A,o.parseComponentValue());case 1:return t.parse(A,o.parseComponentValues());case 4:return o.parseComponentValue();case 3:switch(t.format){case"angle":return pt(0,o.parseComponentValue());case"color":return Jt(A,o.parseComponentValue());case"image":return tr(A,o.parseComponentValue());case"length":{const A=o.parseComponentValue();return st(A)?A:lt}case"length-percentage":{const A=o.parseComponentValue();return ot(A)?A:lt}case"time":return Fn(0,o.parseComponentValue())}}})();if(n||(n=new Map,ps.set(t,n)),!(t.skipCache||3===t.type&&"image"===t.format)){if(n.size>=200){const A=n.keys().next().value;n.delete(A)}n.set(r,i)}return i},Us=(A,t)=>{const e=(A=>{if("function"!=typeof A.getAttribute)return 0;switch(A.getAttribute("data-html2canvas-debug")){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}})(A);return 1===e||t===e};var fs=class{constructor(A,t,e){this.cloneNodeFn=A,this.options=t,this.context=e}appendChildNode(A,t,e){this.safeAppendClonedChild(A,t,e)}cloneChildNodes(A,t,e){A.shadowRoot&&t.shadowRoot?(this.cloneShadowDOMChildren(A.shadowRoot,t.shadowRoot,e),this.cloneLightDOMChildren(A,t,e)):A.shadowRoot&&!t.shadowRoot?this.cloneShadowDOMAsLightDOM(A.shadowRoot,t,e):this.cloneLightDOMChildren(A,t,e)}shouldCloneChild(A){return!(Ae(A)&&(t=A,"SCRIPT"===t.tagName||A.hasAttribute("data-html2canvas-ignore")||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(A)));var t}shouldCloneStyleElement(A){return!this.options.copyStyles||!Ae(A)||!Be(A)}safeAppendClonedChild(A,t,e){this.shouldCloneChild(t)&&this.shouldCloneStyleElement(t)&&A.appendChild(this.cloneNodeFn(t,e))}cloneAssignedNodes(A,t,e){A.forEach(A=>{this.safeAppendClonedChild(t,A,e)})}cloneSlotFallbackContent(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)this.safeAppendClonedChild(t,r,e)}cloneSlotElement(A,t,e){if(!he(A))return;const r=A;if("function"!=typeof r.assignedNodes)return this.context.logger.warn("HTMLSlotElement.assignedNodes is not available",A),void this.cloneSlotFallbackContent(A,t,e);const n=r.assignedNodes();if(!n||!Array.isArray(n))return this.context.logger.warn("assignedNodes() did not return a valid array",A),void this.cloneSlotFallbackContent(A,t,e);n.length>0?this.cloneAssignedNodes(n,t,e):this.cloneSlotFallbackContent(A,t,e)}cloneShadowDOMChildren(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)Ae(r)&&he(r)?this.cloneSlotElement(r,t,e):this.safeAppendClonedChild(t,r,e)}cloneLightDOMChildren(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e)}cloneSlotElementAsLightDOM(A,t,e){if(!he(A))return;const r=A;if("function"!=typeof r.assignedNodes){for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e);return}const n=r.assignedNodes();if(n&&Array.isArray(n)&&n.length>0)n.forEach(A=>this.appendChildNode(t,A,e));else for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e)}cloneShadowDOMAsLightDOM(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)Ae(r)&&he(r)?this.cloneSlotElementAsLightDOM(r,t,e):this.appendChildNode(t,r,e)}},Fs=class{constructor(A,t,e){if(this.context=A,this.options=e,this.scrolledElements=[],this.referenceElement=t,this.counters=new pe,this.quoteDepth=0,this.slotCloner=new fs((A,t)=>this.cloneNode(A,t),{ignoreElements:e.ignoreElements,copyStyles:e.copyStyles??!0},A),!t.ownerDocument)throw new Error("Cloned element does not have an owner document");if(!this.options.iframeContainer){const A=(A=>{let t=A;for(;t;){if(t.parentNode&&t.parentNode.host)return t.parentNode;const A=t.getRootNode();if(A&&A!==t.ownerDocument&&A.host)return A;t=t.parentNode}return null})(t);A&&(this.options.iframeContainer=A)}this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}toIFrame(A,t){const e=ms(A,t,this.options.iframeContainer);if(!e.contentWindow)throw new Error("Unable to find iframe window");const r=A.defaultView.pageXOffset,n=A.defaultView.pageYOffset,s=e.contentWindow,o=s.document,i=Hs(e).then(async()=>{this.scrolledElements.forEach(Ks),s&&(s.scrollTo(t.left,t.top),!/AppleWebKit/g.test(navigator.userAgent)||s.scrollY===t.top&&s.scrollX===t.left||(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(s.scrollX-t.left,s.scrollY-t.top,0,0)));const A=this.options.onclone,r=this.clonedReferenceElement;if(void 0===r)throw new Error(`Error finding the ${this.referenceElement.nodeName} in the cloned document`);return o.fonts&&o.fonts.ready&&await o.fonts.ready,/(AppleWebKit)/g.test(navigator.userAgent)&&await Is(o),"function"==typeof A?Promise.resolve().then(()=>A(o,r)).then(()=>e):e}),a=A.baseURI;o.open();const c=xs(document.doctype)+"<html></html>";try{const A=this.referenceElement.ownerDocument?.defaultView,t=A&&A.trustedTypes;let e=t?.getPolicy?.("html2canvas-pro");!e&&t&&(e=t.createPolicy("html2canvas-pro",{createHTML:A=>A}));const r=e?e.createHTML(c):c;o.write(r)}catch(A){o.write(c)}vs(this.referenceElement.ownerDocument,r,n),o.close();const B=o.adoptNode(this.documentElement);return ks(B,a),o.replaceChild(B,o.documentElement),i}createElementClone(A){if(Us(A,2),oe(A))return this.createCanvasClone(A);if(ie(A))return this.createVideoClone(A);if(Be(A))return this.createStyleClone(A);const t=A.cloneNode(!1);return ae(t)&&(ae(A)&&A.currentSrc&&A.currentSrc!==A.src&&(t.src=A.currentSrc,t.srcset=""),"lazy"===t.loading&&(t.loading="eager")),de(t)&&!ee(t)?this.createCustomElementClone(A,t):t}createCustomElementClone(A,t){const e=document.createElement("div");e.className=t.className,bs(t.style,e);const r=t.attributes;for(let A=0;A<r.length;A++){const t=r[A];"class"!==t.name&&"style"!==t.name&&e.setAttribute(t.name,t.value)}if(A.shadowRoot)try{e.attachShadow({mode:"open"})}catch(A){this.context.logger.error("Failed to attach shadow root to custom element clone:",A)}return e}createStyleClone(A){try{const t=A.sheet;if(t&&t.cssRules){const e=[].slice.call(t.cssRules,0).reduce((A,t)=>t&&"string"==typeof t.cssText?A+t.cssText:A,""),r=A.cloneNode(!1);return r.textContent=e,this.options.cspNonce&&(r.nonce=this.options.cspNonce),r}}catch(A){if(this.context.logger.error("Unable to access cssRules property",A),"SecurityError"!==A.name)throw A}const t=A.cloneNode(!1);return this.options.cspNonce&&(t.nonce=this.options.cspNonce),t}createCanvasClone(A){if(this.options.inlineImages&&A.ownerDocument){const t=A.ownerDocument.createElement("img");try{return t.src=A.toDataURL(),t}catch(t){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",A)}}const t=A.cloneNode(!1);try{t.width=A.width,t.height=A.height;const e=A.getContext("2d"),r=t.getContext("2d",{willReadFrequently:!0});if(r)if(!this.options.allowTaint&&e)r.putImageData(e.getImageData(0,0,A.width,A.height),0,0);else{const t=A.getContext("webgl2")??A.getContext("webgl");t&&!1===t.getContextAttributes()?.preserveDrawingBuffer&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",A),r.drawImage(A,0,0)}return t}catch(t){this.context.logger.info("Unable to clone canvas as it is tainted",A)}return t}createVideoClone(A){const t=A.ownerDocument.createElement("canvas");t.width=A.offsetWidth,t.height=A.offsetHeight;const e=t.getContext("2d");try{return e&&(e.drawImage(A,0,0,t.width,t.height),this.options.allowTaint||e.getImageData(0,0,t.width,t.height)),t}catch(t){this.context.logger.info("Unable to clone video as it is tainted",A)}const r=A.ownerDocument.createElement("canvas");return r.width=A.offsetWidth,r.height=A.offsetHeight,r}appendChildNode(A,t,e){this.slotCloner.appendChildNode(A,t,e)}cloneChildNodes(A,t,e){this.slotCloner.cloneChildNodes(A,t,e)}cloneNode(A,t){if(te(A))return document.createTextNode(A.data);if(!A.ownerDocument)return A.cloneNode(!1);const e=A.ownerDocument.defaultView;if(e&&Ae(A)&&(re(A)||ee(A))){const n=this.createElementClone(A);n.style.transitionProperty="none";const s=e.getComputedStyle(A),o=!ee(r=A)&&!we.has(r.tagName);this.referenceElement===A&&re(n)&&(this.clonedReferenceElement=n),se(n)&&Ms(n,this.options.cspNonce);const i=this.counters.parse(new Qs(this.context,s));if(o){const t=e.getComputedStyle(A,":before"),r=this.resolvePseudoContent(A,n,t,0);r&&n.insertBefore(r,n.firstChild);const s=e.getComputedStyle(A,":after"),o=this.resolvePseudoContent(A,n,s,1);o&&n.appendChild(o)}return de(A)&&(t=!0),ie(A)||this.cloneChildNodes(A,n,t),this.counters.pop(i),(s&&(this.options.copyStyles||ee(A))&&!ce(A)||t)&&bs(s,n),0===A.scrollTop&&0===A.scrollLeft||this.scrolledElements.push([n,A.scrollLeft,A.scrollTop]),(le(A)||ge(A))&&(le(n)||ge(n))&&(n.value=A.value),n}var r;return A.cloneNode(!1)}resolvePseudoContent(A,t,e,r){if(!e)return;const n=e.content,s=t.ownerDocument;if(!s||!n||"none"===n||"-moz-alt-content"===n||"none"===e.display)return;this.counters.parse(new Qs(this.context,e));const o=new us(this.context,e),i=s.createElement("html2canvaspseudoelement");bs(e,i),o.content.forEach(t=>{if(0===t.type)i.appendChild(s.createTextNode(t.value));else if(22===t.type){const A=s.createElement("img");A.src=t.value,A.style.opacity="1",i.appendChild(A)}else if(18===t.type){if("attr"===t.name){const e=t.values.filter(XA);e.length&&i.appendChild(s.createTextNode(A.getAttribute(e[0].value)||""))}else if("counter"===t.name){const[A,e]=t.values.filter(ZA);if(A&&XA(A)){const t=this.counters.getCounterValue(A.value),r=e&&XA(e)?ue.parse(this.context,e.value):3;i.appendChild(s.createTextNode(Le(t,r,!1)))}}else if("counters"===t.name){const[A,e,r]=t.values.filter(ZA);if(A&&XA(A)){const t=this.counters.getCounterValues(A.value),n=r&&XA(r)?ue.parse(this.context,r.value):3,o=e&&0===e.type?e.value:"",a=t.map(A=>Le(A,n,!1)).join(o);i.appendChild(s.createTextNode(a))}}}else if(20===t.type)switch(t.value){case"open-quote":i.appendChild(s.createTextNode(Vn(o.quotes,this.quoteDepth++,!0)));break;case"close-quote":i.appendChild(s.createTextNode(Vn(o.quotes,--this.quoteDepth,!1)));break;default:i.appendChild(s.createTextNode(t.value))}}),i.className=`${Ls} ${Ss}`;const a=0===r?` ${Ls}`:` ${Ss}`;return ee(t)?t.className.baseValue+=a:t.className+=a,i}static destroy(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)}};const ms=(A,t,e)=>{const r=A.createElement("iframe");return r.className="html2canvas-container",r.style.visibility="hidden",r.style.position="fixed",r.style.left="-10000px",r.style.top="0px",r.style.border="0",r.width=t.width.toString(),r.height=t.height.toString(),r.scrolling="no",r.setAttribute("data-html2canvas-ignore","true"),(e||A.body).appendChild(r),r},ys=A=>new Promise(t=>{A.complete?t():A.src?(A.onload=t,A.onerror=t):t()}),Is=A=>Promise.all([].slice.call(A.images,0).map(ys)),Hs=A=>new Promise((t,e)=>{const r=A.contentWindow;if(!r)return e("No window assigned for iframe");const n=r.document;r.onload=A.onload=()=>{r.onload=A.onload=null;let e=0;const s=setInterval(()=>{e++,(n.body.childNodes.length>0&&"complete"===n.readyState||e>=600)&&(clearInterval(s),t(A))},50)}}),Es=["all","d","content"],bs=(A,t)=>{const e=[];for(let t=A.length-1;t>=0;t--){const r=A.item(t);if(-1===Es.indexOf(r)&&!r.startsWith("--")){const t=A.getPropertyValue(r);if(t){const n=A.getPropertyPriority(r);e.push(n?`${r}:${t} !${n}`:`${r}:${t}`)}}}return e.length>0&&(t.style.cssText=e.join(";")+";"),t},xs=A=>{let t="";return A&&(t+="<!DOCTYPE ",A.name&&(t+=A.name),A.internalSubset&&(t+=" "+A.internalSubset.replace(/"/g,"&quot;").replace(/>/g,"&gt;")),A.publicId?(t+=' PUBLIC "'+A.publicId.replace(/"/g,"&quot;")+'"',A.systemId&&(t+=' "'+A.systemId.replace(/"/g,"&quot;")+'"')):A.systemId&&(t+=' SYSTEM "'+A.systemId.replace(/"/g,"&quot;")+'"'),t+=">"),t},vs=(A,t,e)=>{A&&A.defaultView&&(t!==A.defaultView.pageXOffset||e!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(t,e)},Ks=([A,t,e])=>{A.scrollLeft=t,A.scrollTop=e},Ls="___html2canvas___pseudoelement_before",Ss="___html2canvas___pseudoelement_after",Ds='{\n content: "" !important;\n display: none !important;\n}',Ms=(A,t)=>{Ts(A,`.${Ls}:before${Ds}\n .${Ss}:after${Ds}`,t)},Ts=(A,t,e)=>{const r=A.ownerDocument;if(r){const n=r.createElement("style");n.textContent=t,e&&(n.nonce=e),A.appendChild(n)}},ks=(A,t)=>{const e=A.ownerDocument.createElement("base");e.href=t;const r=A.getElementsByTagName("head").item(0);r?.insertBefore(e,r?.firstChild??null)};for(var Os=class{static normalizeElement(A,t){const e={};return re(A)?(t.animationDuration.some(A=>A>0)&&(e.animationDuration=A.style.animationDuration,A.style.animationDuration="0s"),null!==t.transform&&(e.transform=A.style.transform,A.style.transform="translate(0, 0)"),null!==t.rotate&&(e.rotate=A.style.rotate,A.style.rotate="0deg",void 0===e.transform&&(e.transform=A.style.transform,A.style.transform="translate(0, 0)")),e):e}static restoreElement(A,t){re(A)&&(void 0!==t.animationDuration&&(A.style.animationDuration=t.animationDuration),void 0!==t.transform&&(A.style.transform=t.transform),void 0!==t.rotate&&(A.style.rotate=t.rotate))}},Rs=class{constructor(A,t,e={}){if(this.context=A,this.textNodes=[],this.elements=[],this.createsStackingContext=!1,this.createsRealStackingContext=!1,this.isListOwner=!1,this.debugRender=!1,Us(t,3),this.styles=new ws(A,A.config.window.getComputedStyle(t,null)),!1!==e.normalizeDom&&re(t)&&(this.originalStyles=Os.normalizeElement(t,this.styles),this.originalElement=t),this.bounds=s(this.context,t),"FIELDSET"===t.tagName){const A=t.querySelector(":scope > legend");if(A){const t=s(this.context,A);this.legendBounds=t;const e=t.top+t.height/2-this.styles.borderTopWidth/2;this.bounds=new n(this.bounds.left,e,this.bounds.width,this.bounds.height-(e-this.bounds.top))}}Us(t,4)&&(this.debugRender=!0)}restore(){this.originalStyles&&this.originalElement&&(Os.restoreElement(this.originalElement,this.originalStyles),this.originalStyles=void 0,this.originalElement=void 0)}restoreTree(){this.restore();for(const A of this.elements)A.restoreTree()}},Vs="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Ns=0;Ns<64;Ns++)Vs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Ns)]=Ns;for(var Gs=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),Ps=function(){function A(A,t,e,r,n,s){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=s}return A.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return this.data[t=((t=this.index[A>>5])<<2)+(31&A)];if(A<=65535)return this.data[t=((t=this.index[2048+(A-55296>>5)])<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],this.data[t=((t=this.index[t+=A>>5&63])<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),Xs="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Js=0;Js<64;Js++)Xs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Js)]=Js;var Ws=8,Ys=9,Zs=11,zs=12,_s=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,s="";++n<e;){var o=A[n];o<=65535?r.push(o):r.push(55296+((o-=65536)>>10),o%1024+56320),(n+1===e||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},qs=(()=>{var A,t,e,r=(A=>{var t,e,r,n,s,o=.75*A.length,i=A.length,a=0;"="===A[A.length-1]&&(o--,"="===A[A.length-2]&&o--);var c="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),B=Array.isArray(c)?c:new Uint8Array(c);for(t=0;t<i;t+=4)e=Vs[A.charCodeAt(t)],r=Vs[A.charCodeAt(t+1)],n=Vs[A.charCodeAt(t+2)],s=Vs[A.charCodeAt(t+3)],B[a++]=e<<2|r>>4,B[a++]=(15&r)<<4|n>>2,B[a++]=(3&n)<<6|63&s;return c})("AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="),n=Array.isArray(r)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(r):new Uint32Array(r),s=Array.isArray(r)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(r):new Uint16Array(r),o=Gs(s,12,n[4]/2),i=2===n[5]?Gs(s,(24+n[4])/2):(A=n,t=Math.ceil((24+n[4])/4),A.slice?A.slice(t,e):new Uint32Array(Array.prototype.slice.call(A,t,e)));return new Ps(n[0],n[1],n[2],n[3],o,i)})(),js="×",$s=A=>qs.get(A),Ao=(A,t,e)=>{var r=e-2,n=t[r],s=t[e-1],o=t[e];if(2===s&&3===o)return js;if(2===s||3===s||4===s)return"÷";if(2===o||3===o||4===o)return"÷";if(s===Ws&&-1!==[Ws,Ys,Zs,zs].indexOf(o))return js;if(!(s!==Zs&&s!==Ys||o!==Ys&&10!==o))return js;if((s===zs||10===s)&&10===o)return js;if(13===o||5===o)return js;if(7===o)return js;if(1===s)return js;if(13===s&&14===o){for(;5===n;)n=t[--r];if(14===n)return js}if(15===s&&15===o){for(var i=0;15===n;)i++,n=t[--r];if(i%2==0)return js}return"÷"};const to=A=>0===A[0]&&255===A[1]&&0===A[2]&&255===A[3],eo=(A,t,e,r,n)=>{const s="http://www.w3.org/2000/svg",o=document.createElementNS(s,"svg"),i=document.createElementNS(s,"foreignObject");return o.setAttributeNS(null,"width",A.toString()),o.setAttributeNS(null,"height",t.toString()),i.setAttributeNS(null,"width","100%"),i.setAttributeNS(null,"height","100%"),i.setAttributeNS(null,"x",e.toString()),i.setAttributeNS(null,"y",r.toString()),i.setAttributeNS(null,"externalResourcesRequired","true"),o.appendChild(i),i.appendChild(n),o},ro=A=>new Promise((t,e)=>{const r=new Image;r.onload=()=>t(r),r.onerror=e,r.src=`data:image/svg+xml;charset=utf-8,${encodeURIComponent((new XMLSerializer).serializeToString(A))}`}),no={get SUPPORT_RANGE_BOUNDS(){const A=(A=>{if(A.createRange){const t=A.createRange();if(t.getBoundingClientRect){const e=A.createElement("boundtest");e.style.height="123px",e.style.display="block",A.body.appendChild(e),t.selectNode(e);const r=t.getBoundingClientRect(),n=Math.round(r.height);if(A.body.removeChild(e),123===n)return!0}}return!1})(document);return Object.defineProperty(no,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){const A=no.SUPPORT_RANGE_BOUNDS&&(A=>{const t=A.createElement("boundtest");t.style.width="50px",t.style.display="block",t.style.fontSize="12px",t.style.letterSpacing="0px",t.style.wordSpacing="0px",A.body.appendChild(t);const e=A.createRange();t.innerHTML="function"==typeof"".repeat?"&#128104;".repeat(10):"";const r=t.firstChild,n=o(r.data).map(A=>i(A));let s=0,a={};const c=n.every((A,t)=>{e.setStart(r,s),e.setEnd(r,s+A.length);const n=e.getBoundingClientRect();s+=A.length;const o=n.x>a.x||n.y>a.y;return a=n,0===t||o});return A.body.removeChild(t),c})(document);return Object.defineProperty(no,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){const A=(A=>{const t=new Image,e=A.createElement("canvas"),r=e.getContext("2d");if(!r)return!1;t.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{r.drawImage(t,0,0),e.toDataURL()}catch(A){return!1}return!0})(document);return Object.defineProperty(no,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){const A="function"==typeof Array.from&&"function"==typeof window.fetch?(A=>{const t=A.createElement("canvas"),e=100;t.width=e,t.height=e;const r=t.getContext("2d");if(!r)return Promise.reject(new Error("Failed to get 2D rendering context"));r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,e,e);const n=new Image,s=t.toDataURL();n.src=s;const o=eo(e,e,0,0,n);return r.fillStyle="red",r.fillRect(0,0,e,e),ro(o).then(t=>{r.drawImage(t,0,0);const n=r.getImageData(0,0,e,e).data;r.fillStyle="red",r.fillRect(0,0,e,e);const o=A.createElement("div");return o.style.backgroundImage=`url(${s})`,o.style.height="100px",to(n)?ro(eo(e,e,0,0,o)):Promise.reject(new Error("ForeignObject rendering not supported"))}).then(A=>(r.drawImage(A,0,0),to(r.getImageData(0,0,e,e).data))).catch(()=>!1)})(document):Promise.resolve(!1);return Object.defineProperty(no,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){const A=void 0!==(new Image).crossOrigin;return Object.defineProperty(no,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){const A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(no,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){const A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(no,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){const A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(no,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}};var so=class{constructor(A,t){this.text=A,this.bounds=t}};const oo=(A,t,e)=>{const r=A.ownerDocument;if(!r)throw new Error("Node has no owner document");const n=r.createRange();return n.setStart(A,t),n.setEnd(A,t+e),n},io=A=>{if(no.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(t.segment(A)).map(A=>A.segment)}return(A=>{for(var t,e=(A=>{var t=(A=>{for(var t=[],e=0,r=A.length;e<r;){var n=A.charCodeAt(e++);if(n>=55296&&n<=56319&&e<r){var s=A.charCodeAt(e++);56320==(64512&s)?t.push(((1023&n)<<10)+(1023&s)+65536):(t.push(n),e--)}else t.push(n)}return t})(A),e=t.length,r=0,n=0,s=t.map($s);return{next:()=>{if(r>=e)return{done:!0,value:null};for(var A=js;r<e&&(A=Ao(0,s,++r))===js;);if(A!==js||r===e){var o=_s.apply(null,t.slice(n,r));return n=r,{value:o,done:!1}}return{done:!0,value:null}}}})(A),r=[];!(t=e.next()).done;)t.value&&r.push(t.value.slice());return r})(A)},ao=[32,160,4961,65792,65793,4153,4241],co=(A,t)=>{const e=((A,t)=>{var e=o(A),r=((A,t)=>{t||(t={lineBreak:"normal",wordBreak:"normal"});var e=((A,t)=>{void 0===t&&(t="strict");var e=[],r=[],n=[];return A.forEach((A,s)=>{var o=q.get(A);if(o>50?(n.push(!0),o-=50):n.push(!1),-1!==["normal","auto","loose"].indexOf(t)&&-1!==[8208,8211,12316,12448].indexOf(A))return r.push(s),e.push(16);if(4===o||11===o){if(0===s)return r.push(s),e.push(O);var i=e[s-1];return-1===eA.indexOf(i)?(r.push(r[s-1]),e.push(i)):(r.push(s),e.push(O))}return r.push(s),31===o?e.push("strict"===t?K:P):o===Y||29===o?e.push(O):43===o?e.push(A>=131072&&A<=196605||A>=196608&&A<=262141?P:O):void e.push(o)}),[r,e,n]})(A,t.lineBreak),r=e[0],n=e[1],s=e[2];"break-all"!==t.wordBreak&&"break-word"!==t.wordBreak||(n=n.map(A=>-1!==[D,O,Y].indexOf(A)?P:A));var o="keep-all"===t.wordBreak?s.map((t,e)=>t&&A[e]>=19968&&A[e]<=40959):void 0;return[r,n,o]})(e,t),n=r[0],s=r[1],i=r[2],a=e.length,c=0,B=0;return{next:()=>{if(B>=a)return{done:!0,value:null};for(var A=z;B<a&&(A=iA(e,s,n,++B,i))===z;);if(A!==z||B===a){var t=new aA(e,A,c,B);return c=B,{value:t,done:!1}}return{done:!0,value:null}}}})(A,{lineBreak:t.lineBreak,wordBreak:"break-word"===t.overflowWrap?"break-word":t.wordBreak}),r=[];let n;for(;!(n=e.next()).done;)if(n.value){const A=o(n.value.slice());let t="";A.forEach(A=>{-1===ao.indexOf(A)?t+=i(A):(t.length&&r.push(t),r.push(i(A)),t="")}),t.length&&r.push(t)}return r};var Bo=class{constructor(A,t,e){this.text=lo(t.data,e.textTransform),this.text.length!==t.data.length&&(t.data=this.text),this.textBounds=((A,t,e,r)=>{const o=((A,t)=>pn(t.writingMode)||0!==t.letterSpacing?io(A):((A,t)=>{if(no.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(A=>A.segment)}return co(A,t)})(A,t))(this.text,e),i=[];let a=0;return o.forEach(t=>{if(e.textDecorationLine.length||t.trim().length>0)if(no.SUPPORT_RANGE_BOUNDS){const e=oo(r,a,t.length).getClientRects();if(e.length>1){const e=io(t);let s=0;e.forEach(t=>{i.push(new so(t,n.fromDOMRectList(A,oo(r,s+a,t.length).getClientRects()))),s+=t.length})}else i.push(new so(t,n.fromDOMRectList(A,e)))}else{const e=r.splitText(t.length);i.push(new so(t,((A,t)=>{const e=t.ownerDocument;if(e){const r=e.createElement("html2canvaswrapper");r.appendChild(t.cloneNode(!0));const n=t.parentNode;if(n){n.replaceChild(r,t);const e=s(A,r);return r.firstChild&&n.replaceChild(r.firstChild,r),e}}return n.EMPTY})(A,r))),r=e}else no.SUPPORT_RANGE_BOUNDS||(r=r.splitText(t.length));a+=t.length}),i})(A,0,e,t)}};const lo=(A,t)=>{switch(t){case 1:return A.toLowerCase();case 3:return A.replace(go,ho);case 2:return A.toUpperCase();default:return A}},go=/(^|\s|:|-|\(|\))([a-z])/g,ho=(A,t,e)=>A.length>0?t+e.toUpperCase():A;var wo=class extends Rs{constructor(A,t){super(A,t),this.src=t.currentSrc||t.src,this.intrinsicWidth=t.naturalWidth,this.intrinsicHeight=t.naturalHeight,this.context.cache.addImage(this.src)}},uo=class extends Rs{constructor(A,t){super(A,t),this.canvas=t,this.intrinsicWidth=t.width,this.intrinsicHeight=t.height}},Qo=class extends Rs{constructor(A,t){super(A,t);const e=new XMLSerializer,r=s(A,t);t.setAttribute("width",`${r.width}px`),t.setAttribute("height",`${r.height}px`),this.svg=`data:image/svg+xml,${encodeURIComponent(e.serializeToString(t))}`,this.intrinsicWidth=t.width.baseVal.value,this.intrinsicHeight=t.height.baseVal.value,this.context.cache.addImage(this.svg)}},po=class extends Rs{constructor(A,t){super(A,t),this.value=t.value}},Co=class extends Rs{constructor(A,t){super(A,t),this.start=t.start,this.reversed="boolean"==typeof t.reversed&&!0===t.reversed}};const Uo=[{type:15,flags:0,unit:"px",number:3}],fo=[{type:16,flags:0,number:50}],Fo=707406591;var mo=class extends Rs{constructor(A,t){var e,r;switch(super(A,t),this.type=t.type.toLowerCase(),this.checked=t.checked,this.value=(A=>{const t="password"===A.type?new Array(A.value.length+1).join("•"):A.value;return 0===t.length?A.placeholder||"":t})(t),this.isPlaceholder=0===(e=t).value.length&&!!e.placeholder,"checkbox"!==this.type&&"radio"!==this.type||(this.styles.backgroundColor=3739148031,this.styles.borderTopColor=this.styles.borderRightColor=this.styles.borderBottomColor=this.styles.borderLeftColor=2779096575,this.styles.borderTopWidth=this.styles.borderRightWidth=this.styles.borderBottomWidth=this.styles.borderLeftWidth=1,this.styles.borderTopStyle=this.styles.borderRightStyle=this.styles.borderBottomStyle=this.styles.borderLeftStyle=1,this.styles.backgroundClip=[0],this.styles.backgroundOrigin=[0],this.bounds=(r=this.bounds).width>r.height?new n(r.left+(r.width-r.height)/2,r.top,r.height,r.height):r.width<r.height?new n(r.left,r.top+(r.height-r.width)/2,r.width,r.width):r),this.type){case"checkbox":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=Uo;break;case"radio":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=fo}}},yo=class extends Rs{constructor(A,t){super(A,t);const e=t.options[t.selectedIndex||0];this.value=e&&e.text||""}},Io=class extends Rs{constructor(A,t){super(A,t),this.value=t.value}},Ho=class extends Rs{constructor(A,t,e){super(A,t),this.src=t.src,this.width=parseInt(t.width,10)||0,this.height=parseInt(t.height,10)||0,this.backgroundColor=this.styles.backgroundColor,this.parseTreeFn=e;try{if(t.contentWindow&&t.contentWindow.document&&t.contentWindow.document.documentElement&&this.parseTreeFn){this.tree=this.parseTreeFn(A,t.contentWindow.document.documentElement);const e=t.contentWindow.document.documentElement?jt(A,getComputedStyle(t.contentWindow.document.documentElement).backgroundColor):$t.TRANSPARENT,r=t.contentWindow.document.body?jt(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):$t.TRANSPARENT;this.backgroundColor=Ft(e)?Ft(r)?this.styles.backgroundColor:r:e}}catch(A){}}};const Eo=["OL","UL","MENU"],bo=(A,t,e,r)=>{for(let n,s=t.firstChild;s;s=n)n=s.nextSibling,xo(A,s,e,r)},xo=(A,t,e,r)=>{if(te(t)&&t.data.length>0)e.textNodes.push(new Bo(A,t,e.styles));else if(Ae(t))if(he(t)&&t.assignedNodes)t.assignedNodes().forEach(t=>xo(A,t,e,r));else{const n=vo(A,t);n.styles.isVisible()&&(Lo(t,n,r)?n.createsRealStackingContext=!0:So(n.styles)&&(n.createsStackingContext=!0),-1!==Eo.indexOf(t.tagName)&&(n.isListOwner=!0),e.elements.push(n),t.shadowRoot?bo(A,t.shadowRoot,n,r):le(t)||ne(t)||ge(t)||bo(A,t,n,r))}},vo=(A,t)=>ae(t)?new wo(A,t):oe(t)?new uo(A,t):ne(t)?new Qo(A,t):"LI"===t.tagName?new po(A,t):"OL"===t.tagName?new Co(A,t):(A=>"INPUT"===A.tagName)(t)?new mo(A,t):ge(t)?new yo(A,t):le(t)?new Io(A,t):ce(t)?new Ho(A,t,Ko):new Rs(A,t),Ko=(A,t)=>{const e=vo(A,t);return e.createsRealStackingContext=!0,bo(A,t,e,e),e},Lo=(A,t,e)=>t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||se(A)&&e.styles.isTransparent(),So=A=>!(!A.isPositioned()&&!A.isFloating())||Qe(A.display,268435456)||Qe(A.display,33554432)||Qe(A.display,536870912)||Qe(A.display,134217728),Do=(A,t)=>A.length===t.length&&A.some((A,e)=>A===t[e]);var Mo=class A{constructor(A,t){this.type=0,this.x=A,this.y=t}add(t,e){return new A(this.x+t,this.y+e)}};const To=(A,t,e)=>new Mo(A.x+(t.x-A.x)*e,A.y+(t.y-A.y)*e);var ko=class A{constructor(A,t,e,r){this.type=1,this.start=A,this.startControl=t,this.endControl=e,this.end=r}subdivide(t,e){const r=To(this.start,this.startControl,t),n=To(this.startControl,this.endControl,t),s=To(this.endControl,this.end,t),o=To(r,n,t),i=To(n,s,t),a=To(o,i,t);return e?new A(this.start,r,o,a):new A(a,i,s,this.end)}add(t,e){return new A(this.start.add(t,e),this.startControl.add(t,e),this.endControl.add(t,e),this.end.add(t,e))}reverse(){return new A(this.end,this.endControl,this.startControl,this.start)}};const Oo=A=>1===A.type;var Ro=class{constructor(A){const t=A.styles,e=A.bounds;let[r,n]=dt(t.borderTopLeftRadius,e.width,e.height),[s,o]=dt(t.borderTopRightRadius,e.width,e.height),[i,a]=dt(t.borderBottomRightRadius,e.width,e.height),[c,B]=dt(t.borderBottomLeftRadius,e.width,e.height);const l=[];l.push((r+s)/e.width),l.push((c+i)/e.width),l.push((n+B)/e.height),l.push((o+a)/e.height);const g=Math.max(...l);g>1&&(r/=g,n/=g,s/=g,o/=g,i/=g,a/=g,c/=g,B/=g);const h=e.width-s,d=e.height-a,w=e.width-i,u=e.height-B,Q=t.borderTopWidth,p=t.borderRightWidth,C=t.borderBottomWidth,U=t.borderLeftWidth,f=wt(t.paddingTop,A.bounds.width),F=wt(t.paddingRight,A.bounds.width),m=wt(t.paddingBottom,A.bounds.width),y=wt(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=r>0||n>0?Vo(e.left+U/3,e.top+Q/3,r-U/3,n-Q/3,0):new Mo(e.left+U/3,e.top+Q/3),this.topRightBorderDoubleOuterBox=r>0||n>0?Vo(e.left+h,e.top+Q/3,s-p/3,o-Q/3,1):new Mo(e.left+e.width-p/3,e.top+Q/3),this.bottomRightBorderDoubleOuterBox=i>0||a>0?Vo(e.left+w,e.top+d,i-p/3,a-C/3,2):new Mo(e.left+e.width-p/3,e.top+e.height-C/3),this.bottomLeftBorderDoubleOuterBox=c>0||B>0?Vo(e.left+U/3,e.top+u,c-U/3,B-C/3,3):new Mo(e.left+U/3,e.top+e.height-C/3),this.topLeftBorderDoubleInnerBox=r>0||n>0?Vo(e.left+2*U/3,e.top+2*Q/3,r-2*U/3,n-2*Q/3,0):new Mo(e.left+2*U/3,e.top+2*Q/3),this.topRightBorderDoubleInnerBox=r>0||n>0?Vo(e.left+h,e.top+2*Q/3,s-2*p/3,o-2*Q/3,1):new Mo(e.left+e.width-2*p/3,e.top+2*Q/3),this.bottomRightBorderDoubleInnerBox=i>0||a>0?Vo(e.left+w,e.top+d,i-2*p/3,a-2*C/3,2):new Mo(e.left+e.width-2*p/3,e.top+e.height-2*C/3),this.bottomLeftBorderDoubleInnerBox=c>0||B>0?Vo(e.left+2*U/3,e.top+u,c-2*U/3,B-2*C/3,3):new Mo(e.left+2*U/3,e.top+e.height-2*C/3),this.topLeftBorderStroke=r>0||n>0?Vo(e.left+U/2,e.top+Q/2,r-U/2,n-Q/2,0):new Mo(e.left+U/2,e.top+Q/2),this.topRightBorderStroke=r>0||n>0?Vo(e.left+h,e.top+Q/2,s-p/2,o-Q/2,1):new Mo(e.left+e.width-p/2,e.top+Q/2),this.bottomRightBorderStroke=i>0||a>0?Vo(e.left+w,e.top+d,i-p/2,a-C/2,2):new Mo(e.left+e.width-p/2,e.top+e.height-C/2),this.bottomLeftBorderStroke=c>0||B>0?Vo(e.left+U/2,e.top+u,c-U/2,B-C/2,3):new Mo(e.left+U/2,e.top+e.height-C/2),this.topLeftBorderBox=r>0||n>0?Vo(e.left,e.top,r,n,0):new Mo(e.left,e.top),this.topRightBorderBox=s>0||o>0?Vo(e.left+h,e.top,s,o,1):new Mo(e.left+e.width,e.top),this.bottomRightBorderBox=i>0||a>0?Vo(e.left+w,e.top+d,i,a,2):new Mo(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=c>0||B>0?Vo(e.left,e.top+u,c,B,3):new Mo(e.left,e.top+e.height),this.topLeftPaddingBox=r>0||n>0?Vo(e.left+U,e.top+Q,Math.max(0,r-U),Math.max(0,n-Q),0):new Mo(e.left+U,e.top+Q),this.topRightPaddingBox=s>0||o>0?Vo(e.left+Math.min(h,e.width-p),e.top+Q,h>e.width+p?0:Math.max(0,s-p),Math.max(0,o-Q),1):new Mo(e.left+e.width-p,e.top+Q),this.bottomRightPaddingBox=i>0||a>0?Vo(e.left+Math.min(w,e.width-U),e.top+Math.min(d,e.height-C),Math.max(0,i-p),Math.max(0,a-C),2):new Mo(e.left+e.width-p,e.top+e.height-C),this.bottomLeftPaddingBox=c>0||B>0?Vo(e.left+U,e.top+Math.min(u,e.height-C),Math.max(0,c-U),Math.max(0,B-C),3):new Mo(e.left+U,e.top+e.height-C),this.topLeftContentBox=r>0||n>0?Vo(e.left+U+y,e.top+Q+f,Math.max(0,r-(U+y)),Math.max(0,n-(Q+f)),0):new Mo(e.left+U+y,e.top+Q+f),this.topRightContentBox=s>0||o>0?Vo(e.left+Math.min(h,e.width+U+y),e.top+Q+f,h>e.width+U+y?0:s-U+y,o-(Q+f),1):new Mo(e.left+e.width-(p+F),e.top+Q+f),this.bottomRightContentBox=i>0||a>0?Vo(e.left+Math.min(w,e.width-(U+y)),e.top+Math.min(d,e.height+Q+f),Math.max(0,i-(p+F)),a-(C+m),2):new Mo(e.left+e.width-(p+F),e.top+e.height-(C+m)),this.bottomLeftContentBox=c>0||B>0?Vo(e.left+U+y,e.top+u,Math.max(0,c-(U+y)),B-(C+m),3):new Mo(e.left+U+y,e.top+e.height-(C+m))}};const Vo=(A,t,e,r,n)=>{const s=(Math.sqrt(2)-1)/3*4,o=e*s,i=r*s,a=A+e,c=t+r;switch(n){case 0:return new ko(new Mo(A,c),new Mo(A,c-i),new Mo(a-o,t),new Mo(a,t));case 1:return new ko(new Mo(A,t),new Mo(A+o,t),new Mo(a,c-i),new Mo(a,c));case 2:return new ko(new Mo(a,t),new Mo(a,t+i),new Mo(A+o,c),new Mo(A,c));default:return new ko(new Mo(a,c),new Mo(a-o,c),new Mo(A,t+i),new Mo(A,t))}},No=A=>[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox],Go=A=>[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox];var Po=class{constructor(A,t,e){this.offsetX=A,this.offsetY=t,this.matrix=e,this.type=0,this.target=6}},Xo=class{constructor(A,t){this.path=A,this.target=t,this.type=1}},Jo=class{constructor(A){this.opacity=A,this.type=2,this.target=6}},Wo=class{constructor(A){this.applyClip=A,this.type=3,this.target=6}};const Yo={[_n.NORMAL]:"source-over",[_n.MULTIPLY]:"multiply",[_n.SCREEN]:"screen",[_n.OVERLAY]:"overlay",[_n.DARKEN]:"darken",[_n.LIGHTEN]:"lighten",[_n.COLOR_DODGE]:"color-dodge",[_n.COLOR_BURN]:"color-burn",[_n.HARD_LIGHT]:"hard-light",[_n.SOFT_LIGHT]:"soft-light",[_n.DIFFERENCE]:"difference",[_n.EXCLUSION]:"exclusion",[_n.HUE]:"hue",[_n.SATURATION]:"saturation",[_n.COLOR]:"color",[_n.LUMINOSITY]:"luminosity"};var Zo=class{constructor(A){this.mixBlendMode=A,this.type=4,this.target=6,this.compositeOperation=Yo[A]}},zo=class A{constructor(t){this.type=5,this.target=6;const e=A.parseDropShadow(t);this.shadow=e.shadow,this.safeFilterString=e.safeFilterString}static parseDropShadow(t){if(!t)return{safeFilterString:""};const e=A.findDropShadows(t);if(0===e.length)return{safeFilterString:t};const r=A.parseDropShadowBody(e[0].body);let n="",s=0;for(const A of e)n+=t.slice(s,A.start),s=A.end;return n+=t.slice(s),{shadow:r,safeFilterString:n.replace(/\s+/g," ").trim()}}static findDropShadows(A){const t=[],e=/drop-shadow\(/gi;let r;for(;null!==(r=e.exec(A));){const e=r.index+12-1,n=r.index;let s=1,o=e+1;for(;o<A.length&&s>0;){const t=A[o];"("===t?s++:")"===t&&s--,o++}if(0!==s)break;const i=A.slice(e+1,o-1);t.push({body:i,start:n,end:o})}return t}static parseDropShadowBody(t){const e=A.tokenizeFilterArgs(t.trim()),r=[];let n;for(const t of e)A.isCSSLength(t)?r.push(parseFloat(t)):t&&(n=t);if(!(r.length<2||r.length>3))return{offsetX:r[0],offsetY:r[1],blur:r[2]??0,color:n??"rgba(0,0,0,1)"}}static tokenizeFilterArgs(A){const t=[];let e="",r=0;for(let n=0;n<A.length;n++){const s=A[n];"("===s?(r++,e+=s):")"===s?(r--,e+=s):/\s/.test(s)?r>0?e+=s:e&&(t.push(e),e=""):e+=s}return e&&t.push(e),t}static isCSSLength(A){return/^-?[\d.]+(px|em|rem|pt|cm|mm|in|pc|ex|ch|vw|vh|vmin|vmax|%)?$/i.test(A)}};const _o=A=>0===A.type,qo=A=>1===A.type,jo=A=>3===A.type;var $o=class{constructor(A){this.element=A,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}},Ai=class{constructor(A,t){if(this.container=A,this.parent=t,this.effects=[],this.curves=new Ro(this.container),this.container.styles.opacity<1&&this.effects.push(new Jo(this.container.styles.opacity)),null!==this.container.styles.rotate){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height),r=this.container.styles.rotate*Math.PI/180,n=Math.cos(r),s=Math.sin(r);this.effects.push(new Po(t,e,[n,s,-s,n,0,0]))}if(null!==this.container.styles.transform){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height);this.effects.push(new Po(t,e,this.container.styles.transform))}if(ti(this.container.styles)){const A=No(this.curves),t=Go(this.curves);Do(A,t)?this.effects.push(new Xo(A,6)):(this.effects.push(new Xo(A,2)),this.effects.push(new Xo(t,4)))}if(0!==this.container.styles.clipPath.type){const A=ri(this.container.styles.clipPath,this.container.bounds);A&&this.effects.push(A)}if(this.container.styles.mixBlendMode!==_n.NORMAL&&this.effects.push(new Zo(this.container.styles.mixBlendMode)),null!==this.container.styles.filter&&this.effects.push(new zo(this.container.styles.filter)),1!==this.container.styles.zoom){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height),r=this.container.styles.zoom;this.effects.push(new Po(t,e,[r,0,0,r,0,0]))}}getEffects(A){let t=-1===[2,3].indexOf(this.container.styles.position),e=this.parent;const r=this.effects.slice(0);for(;e;){const A=e.effects.filter(A=>!qo(A));if(t||0!==e.container.styles.position||!e.parent){if(t=-1===[2,3].indexOf(e.container.styles.position),ti(e.container.styles)){const A=No(e.curves),t=Go(e.curves);Do(A,t)||r.unshift(new Xo(t,6))}r.unshift(...A)}else r.unshift(...A);e=e.parent}return r.filter(t=>Qe(t.target,A))}};const ti=A=>0!==A.overflowX||0!==A.overflowY,ei=(A,t,e,r,n)=>"closest-side"===A?Math.min(t-e,r-t):"farthest-side"===A?Math.max(t-e,r-t):wt(A,n),ri=(A,t)=>{const{left:e,top:r,width:n,height:s}=t;switch(A.type){case 1:{const t=wt(A.left,n),o=wt(A.top,s),i=e+t,a=r+o,c=Math.max(0,n-t-wt(A.right,n)),B=Math.max(0,s-o-wt(A.bottom,s));return new Wo(A=>{A.beginPath(),A.rect(i,a,c,B),A.clip()})}case 2:{const t=e+wt(A.cx,n),o=r+wt(A.cy,s);let i;return i="closest-side"===A.radius?Math.min(t-e,o-r,e+n-t,r+s-o):"farthest-side"===A.radius?Math.max(t-e,o-r,e+n-t,r+s-o):wt(A.radius,Math.sqrt(n*n+s*s)/Math.SQRT2),new Wo(A=>{A.beginPath(),A.arc(t,o,Math.max(0,i),0,2*Math.PI),A.clip()})}case 3:{const t=e+wt(A.cx,n),o=r+wt(A.cy,s),i=ei(A.rx,t,e,e+n,n),a=ei(A.ry,o,r,r+s,s);return new Wo(A=>{A.beginPath(),A.ellipse(t,o,Math.max(0,i),Math.max(0,a),0,0,2*Math.PI),A.clip()})}case 4:{const t=A.points.map(([A,t])=>[e+wt(A,n),r+wt(t,s)]);return new Wo(A=>{if(A.beginPath(),t.length>0){A.moveTo(t[0][0],t[0][1]);for(let e=1;e<t.length;e++)A.lineTo(t[e][0],t[e][1]);A.closePath()}A.clip()})}case 5:{const{d:t}=A;let n=null;return new Wo(A=>{try{n||(n=new Path2D(t));const s=A.getTransform();A.translate(e,r),A.clip(n),A.setTransform(s)}catch(A){}})}default:return null}},ni=(A,t,e,r)=>{A.container.elements.forEach(n=>{const s=n.createsRealStackingContext,o=n.createsStackingContext,i=new Ai(n,A);Qe(n.styles.display,2048)&&r.push(i);const a=n.isListOwner?[]:r;if(s||o){const A=s||n.styles.isPositioned()?e:t,r=new $o(i);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){const t=n.styles.zIndex.order;if(t<0){let e=0;A.negativeZIndex.some((A,r)=>t>A.element.container.styles.zIndex.order?(e=r,!1):e>0),A.negativeZIndex.splice(e,0,r)}else if(t>0){let e=0;A.positiveZIndex.some((A,r)=>t>=A.element.container.styles.zIndex.order?(e=r+1,!1):e>0),A.positiveZIndex.splice(e,0,r)}else A.zeroOrAutoZIndexOrTransformedOrOpacity.push(r)}else n.styles.isFloating()?A.nonPositionedFloats.push(r):A.nonPositionedInlineLevel.push(r);ni(i,r,s?r:e,a)}else n.styles.isInlineLevel()?t.inlineLevel.push(i):t.nonInlineLevel.push(i),ni(i,t,e,a);n.isListOwner&&si(n,a)})},si=(A,t)=>{let e=A instanceof Co?A.start:1;const r=A instanceof Co&&A.reversed;for(let A=0;A<t.length;A++){const n=t[A];n.container instanceof po&&"number"==typeof n.container.value&&0!==n.container.value&&(e=n.container.value),n.listValue=Le(e,n.container.styles.listStyleType,!0),e+=r?-1:1}},oi=A=>{const t=A.styles;return A.bounds.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},ii=A=>{const t=A.styles,e=A.bounds,r=wt(t.paddingLeft,e.width),n=wt(t.paddingRight,e.width),s=wt(t.paddingTop,e.width),o=wt(t.paddingBottom,e.width);return e.add(r+t.borderLeftWidth,s+t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth+r+n),-(t.borderTopWidth+t.borderBottomWidth+s+o))},ai=(A,t,e)=>{const r=((A,t)=>0===A?t.bounds:2===A?ii(t):oi(t))(gi(A.styles.backgroundOrigin,t),A),n=((A,t)=>0===A?t.bounds:2===A?ii(t):oi(t))(gi(A.styles.backgroundClip,t),A),s=li(gi(A.styles.backgroundSize,t),e,r);let[o,i]=s;const a=dt(gi(A.styles.backgroundPosition,t),r.width-o,r.height-i),c=hi(gi(A.styles.backgroundRepeat,t),a,s,r,n),B=Math.round(r.left+a[0]),l=Math.round(r.top+a[1]);return o=Math.max(1,o),i=Math.max(1,i),[c,B,l,o,i]},ci=A=>XA(A)&&"auto"===A.value,Bi=A=>"number"==typeof A,li=(A,[t,e,r],n)=>{const[s,o]=A;if(!s)return[0,0];if(ot(s)&&o&&ot(o))return[wt(s,n.width),wt(o,n.height)];const i=Bi(r);if(XA(s)&&("contain"===s.value||"cover"===s.value))return Bi(r)?n.width/n.height<r!=("cover"===s.value)?[n.width,n.width/r]:[n.height*r,n.height]:[n.width,n.height];const a=Bi(t),c=Bi(e),B=a||c;if(ci(s)&&(!o||ci(o)))return a&&c?[t,e]:i||B?B&&i?[a?t:e*r,c?e:t/r]:[a?t:n.width,c?e:n.height]:[n.width,n.height];if(i){let A=0,t=0;return ot(s)?A=wt(s,n.width):ot(o)&&(t=wt(o,n.height)),ci(s)?A=t*r:o&&!ci(o)||(t=A/r),[A,t]}let l=null,g=null;if(ot(s)?l=wt(s,n.width):o&&ot(o)&&(g=wt(o,n.height)),null===l||o&&!ci(o)||(g=a&&c?l/t*e:n.height),null!==g&&ci(s)&&(l=a&&c?g/e*t:n.width),null!==l&&null!==g)return[l,g];throw new Error("Unable to calculate background-size for element")},gi=(A,t)=>{const e=A[t];return void 0===e?A[0]:e},hi=(A,[t,e],[r,n],s,o)=>{switch(A){case 2:return[new Mo(Math.round(s.left),Math.round(s.top+e)),new Mo(Math.round(s.left+s.width),Math.round(s.top+e)),new Mo(Math.round(s.left+s.width),Math.round(n+s.top+e)),new Mo(Math.round(s.left),Math.round(n+s.top+e))];case 3:return[new Mo(Math.round(s.left+t),Math.round(s.top)),new Mo(Math.round(s.left+t+r),Math.round(s.top)),new Mo(Math.round(s.left+t+r),Math.round(s.height+s.top)),new Mo(Math.round(s.left+t),Math.round(s.height+s.top))];case 1:return[new Mo(Math.round(s.left+t),Math.round(s.top+e)),new Mo(Math.round(s.left+t+r),Math.round(s.top+e)),new Mo(Math.round(s.left+t+r),Math.round(s.top+e+n)),new Mo(Math.round(s.left+t),Math.round(s.top+e+n))];default:return[new Mo(Math.round(o.left),Math.round(o.top)),new Mo(Math.round(o.left+o.width),Math.round(o.top)),new Mo(Math.round(o.left+o.width),Math.round(o.height+o.top)),new Mo(Math.round(o.left),Math.round(o.height+o.top))]}};var di=class{constructor(A){this.ctx=A}render(A,t){this.ctx.fillStyle=mt(t.textDecorationColor||t.color);let e=1;"number"==typeof t.textDecorationThickness?e=t.textDecorationThickness:"from-font"===t.textDecorationThickness&&(e=Math.max(1,Math.floor(.05*t.fontSize.number)));let r=0;"number"==typeof t.textUnderlineOffset&&(r=t.textUnderlineOffset);const n=t.textDecorationStyle;t.textDecorationLine.forEach(t=>{let s=0;switch(t){case 1:s=A.top+A.height-e+r;break;case 2:s=A.top;break;case 3:s=A.top+(A.height/2-e/2);break;default:return}this.draw(A.left,s,A.width,e,n)})}draw(A,t,e,r,n){switch(n){case 0:default:this.ctx.fillRect(A,t,e,r);break;case 1:{const n=Math.max(1,r);this.ctx.fillRect(A,t,e,r),this.ctx.fillRect(A,t+r+n,e,r);break}case 2:this.drawPattern(A,t,e,r,[r,2*r]);break;case 3:this.drawPattern(A,t,e,r,[3*r,2*r]);break;case 4:this.drawWavy(A,t,e,r)}}drawPattern(A,t,e,r,n){this.ctx.save(),this.ctx.beginPath(),this.ctx.setLineDash(n),this.ctx.lineWidth=r,this.ctx.strokeStyle=this.ctx.fillStyle,this.ctx.moveTo(A,t+r/2),this.ctx.lineTo(A+e,t+r/2),this.ctx.stroke(),this.ctx.restore()}drawWavy(A,t,e,r){this.ctx.save(),this.ctx.beginPath(),this.ctx.lineWidth=r,this.ctx.strokeStyle=this.ctx.fillStyle;const n=2*r,s=4*r;let o=A;for(this.ctx.moveTo(o,t+r/2);o<A+e;){const i=Math.min(o+s/2,A+e);if(this.ctx.quadraticCurveTo(o+s/4,t+r/2-n,i,t+r/2),o=i,o<A+e){const i=Math.min(o+s/2,A+e);this.ctx.quadraticCurveTo(o+s/4,t+r/2+n,i,t+r/2),o=i}}this.ctx.stroke(),this.ctx.restore()}};const wi=(A,t)=>{const e=A.measureText("Mg"),r=e.fontBoundingBoxAscent,n=void 0===r||Number.isNaN(r)?e.actualBoundingBoxAscent:r;return void 0===n||Number.isNaN(n)?t:n},ui=["-apple-system","system-ui"],Qi=/[\u2E80-\u2FFF\u3000-\u30FF\u3400-\u4DBF\u4E00-\u9FFF\uAC00-\uD7AF\uF900-\uFAFF\uFF01-\uFFEF]/,pi=A=>Qi.test(A);var Ci=class{constructor(A){this.glyphWidthCache=null,this.ctx=A.ctx,this.options=A.options,this.decorationRenderer=new di(A.ctx)}cachedMeasureText(A,t){let e=this.glyphWidthCache;e||(e=new Map,this.glyphWidthCache=e);const r=A+t;let n=e.get(r);return void 0===n&&(n=this.ctx.measureText(A).width,e.set(r,n)),n}iterateLettersWithLetterSpacing(A,t,e,r,n){if(pn(r))return void this.iterateVerticalGlyphs(A,t,e,r,n);const s=io(A.text),o=A.bounds.top+e,i=this.ctx.font;let a=A.bounds.left;for(const A of s){if(pi(A)){const t=this.ctx.textBaseline;this.ctx.textBaseline="ideographic",n(A,a,o),this.ctx.textBaseline=t}else n(A,a,o);a+=this.cachedMeasureText(A,i)+t}}iterateVerticalGlyphs(A,t,e,r,n){const s=io(A.text),o=this.ctx.font,i=4===r?-Math.PI/2:Math.PI/2;let a=A.bounds.top;for(let c=0;c<s.length;){const B=s[c];if(!(Cn(r)||!pi(B)&&B.trim().length>0)){const r=this.ctx.textBaseline;pi(B)&&(this.ctx.textBaseline="ideographic"),n(B,A.bounds.left,a+e),this.ctx.textBaseline=r,a+=this.cachedMeasureText(B,o)+t,c++;continue}const l=c;for(;c<s.length;){const A=s[c];if(!Cn(r)&&!pi(A)&&0===A.trim().length)break;if(!(Cn(r)||!pi(A)&&A.trim().length>0))break;c++}this.ctx.save(),this.ctx.translate(A.bounds.left+e,a),this.ctx.rotate(i);let g=0;for(let A=l;A<c;A++)n(s[A],0,g),g+=this.cachedMeasureText(s[A],o)+t;this.ctx.restore(),a+=g}}renderTextWithLetterSpacing(A,t,e,r=0){this.renderFillText(A,t,e,r)}canRenderWholeText(A,t){return 0===A&&!pn(t)}renderFillText(A,t,e,r){this.canRenderWholeText(t,r)?this.ctx.fillText(A.text,A.bounds.left,A.bounds.top+e):this.iterateLettersWithLetterSpacing(A,t,e,r,(A,t,e)=>{this.ctx.fillText(A,t,e)})}renderStrokeText(A,t,e,r){this.canRenderWholeText(t,r)?this.ctx.strokeText(A.text,A.bounds.left,A.bounds.top+e):this.iterateLettersWithLetterSpacing(A,t,e,r,(A,t,e)=>{this.ctx.strokeText(A,t,e)})}renderTextStrokeWithStyle(A,t,e){t.webkitTextStrokeWidth&&A.text.trim().length&&(this.ctx.strokeStyle=mt(t.webkitTextStrokeColor),this.ctx.lineWidth=t.webkitTextStrokeWidth,this.ctx.lineJoin=("undefined"!=typeof window?window:void 0)?.chrome?"miter":"round",this.renderStrokeText(A,t.letterSpacing,e,t.writingMode),this.ctx.strokeStyle="",this.ctx.lineWidth=0,this.ctx.lineJoin="miter")}renderTextFillWithShadows(A,t,e){this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(A,t.letterSpacing,e,t.writingMode);const r=t.textShadow;r.length&&A.text.trim().length&&(r.slice(0).reverse().forEach(r=>{this.ctx.shadowColor=mt(r.color),this.ctx.shadowOffsetX=r.offsetX.number*this.options.scale,this.ctx.shadowOffsetY=r.offsetY.number*this.options.scale,this.ctx.shadowBlur=r.blur.number,this.renderTextWithLetterSpacing(A,t.letterSpacing,e,t.writingMode)}),this.ctx.shadowColor="",this.ctx.shadowOffsetX=0,this.ctx.shadowOffsetY=0,this.ctx.shadowBlur=0)}renderTextBoundWithPaintOrder(A,t,e,r){e.forEach(e=>{switch(e){case 0:this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(A,t.letterSpacing,r,t.writingMode);break;case 1:this.renderTextStrokeWithStyle(A,t,r)}})}renderTextDecoration(A,t){this.decorationRenderer.render(A,t)}truncateTextWithEllipsis(A,t,e){const r=this.ctx.measureText("…").width,n=io(A);if(0===e){const A=A=>this.ctx.measureText(n.slice(0,A).join("")).width+r<=t;let e=0,s=n.length;for(;e<s;){const t=e+s+1>>1;A(t)?e=t:s=t-1}return n.slice(0,e).join("")+"…"}{const A=this.ctx.font;let s=r;const o=[];for(const r of n){const n=this.cachedMeasureText(r,A);if(s+n>t)break;o.push(r),s+=n+e}return o.join("")+"…"}}createFontStyle(A){const t=A.fontVariant.filter(A=>"normal"===A||"small-caps"===A).join(""),e=(A=>{const t=(()=>{if("undefined"==typeof navigator)return null;const A=navigator.userAgent,t=/iPhone|iPad|iPod/.test(A),e=/Macintosh/.test(A)&&navigator.maxTouchPoints&&navigator.maxTouchPoints>1;if(!t&&!e)return null;for(const t of[/(?:iPhone|CPU(?:\siPhone)?)\sOS\s(\d+)[\._](\d+)/,/Version\/(\d+)\.(\d+)/]){const e=A.match(t);if(e&&e[1])return parseInt(e[1],10)}return null})();return null!==t&&t>=15&&t<17?A.map(A=>-1!==ui.indexOf(A)?'-apple-system, "Helvetica Neue", Arial, sans-serif':A):A})(A.fontFamily).join(", "),r=GA(A.fontSize)?`${A.fontSize.number}${A.fontSize.unit}`:`${A.fontSize.number}px`;return[[A.fontStyle,t,A.fontWeight,r,e].join(" "),e,r]}renderLineClampedText(A,t,e,r,n){const s=1.5*t.fontSize.number,o=[];let i=[],a=A.textBounds[0].bounds.top;A.textBounds.forEach(A=>{Math.abs(A.bounds.top-a)>=.5*s?(i.length>0&&o.push(i),i=[A],a=A.bounds.top):i.push(A)}),i.length>0&&o.push(i);const c=t.webkitLineClamp;if(o.length<=c)return!1;for(let A=0;A<c-1;A++)o[A].forEach(A=>this.renderTextBoundWithPaintOrder(A,t,e,r));const B=o[c-1];if(B?.length&&n){const A=B.map(A=>A.text).join(""),s=B[0],o=new so(this.truncateTextWithEllipsis(A,n.width-(s.bounds.left-n.left),t.letterSpacing),s.bounds);for(const A of e)0===A?(this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(o,t.letterSpacing,r,t.writingMode)):1===A&&this.renderTextStrokeWithStyle(o,t,r)}return!0}renderEllipsisText(A,t,e,r,n){const s=1.5*t.fontSize.number,o=A.textBounds[0].bounds.top;if(!A.textBounds.every(A=>Math.abs(A.bounds.top-o)<.5*s))return!1;let i=A.textBounds.map(A=>A.text).join("").replace(/\s+/g," ").trim();if(this.ctx.measureText(i).width<=n.width+1)return!1;const a=new so(this.truncateTextWithEllipsis(i,n.width,t.letterSpacing),A.textBounds[0].bounds);for(const A of e)0===A?this.renderTextFillWithShadows(a,t,r):1===A&&this.renderTextStrokeWithStyle(a,t,r);return!0}async renderTextNode(A,t,e){this.glyphWidthCache=null;const[r]=this.createFontStyle(t);this.ctx.font=r,this.ctx.direction=1===t.direction?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic";const n=t.paintOrder,s=wi(this.ctx,t.fontSize.number);t.webkitLineClamp>0&&2&t.display&&1===t.overflowY&&A.textBounds.length>0&&this.renderLineClampedText(A,t,n,s,e)||1===t.textOverflow&&e&&1===t.overflowX&&A.textBounds.length>0&&this.renderEllipsisText(A,t,n,s,e)||A.textBounds.forEach(A=>{n.forEach(e=>{0===e?(this.renderTextFillWithShadows(A,t,s),t.textDecorationLine.length&&this.renderTextDecoration(A.bounds,t)):1===e&&this.renderTextStrokeWithStyle(A,t,s)})})}};const Ui=(A,t)=>{t.forEach((t,e)=>{const r=Oo(t)?t.start:t;0===e?A.moveTo(r.x,r.y):A.lineTo(r.x,r.y),Oo(t)&&A.bezierCurveTo(t.startControl.x,t.startControl.y,t.endControl.x,t.endControl.y,t.end.x,t.end.y)})},fi=(A,t)=>{A.beginPath(),Ui(A,t),A.closePath()};var Fi=class{constructor(A){this.maxSize=A,this._map=new Map}get(A){if(!this._map.has(A))return;const t=this._map.get(A);return this._map.delete(A),this._map.set(A,t),t}set(A,t){if(this._map.has(A))this._map.delete(A);else if(this._map.size>=this.maxSize){const A=this._map.keys().next().value;void 0!==A&&this._map.delete(A)}this._map.set(A,t)}get size(){return this._map.size}clear(){this._map.clear()}},mi=class{constructor(A){this.patternCache=new Fi(50),this.ctx=A.ctx,this.context=A.context,this.canvas=A.canvas}async renderBackgroundImage(A){let t=A.styles.backgroundImage.length-1;const e=A.styles.backgroundBlendMode;let r=0;for(const n of A.styles.backgroundImage.slice(0).reverse()){if(r>0){const A=e[r]??e[0]??"normal";"normal"!==A&&(this.ctx.save(),this.ctx.globalCompositeOperation=A)}0===n.type?await this.renderBackgroundURLImage(A,n,t):je(n)?this.renderLinearGradient(A,n,t):Ar(n)?this.renderRepeatingLinearGradient(A,n,t):$e(n)&&this.renderRadialGradient(A,n,t),r>0&&"normal"!==(e[r]??e[0]??"normal")&&this.ctx.restore(),t--,r++}}async renderBackgroundURLImage(A,t,e){let r;const n=t.url;try{r=await this.context.cache.match(n)}catch(A){this.context.logger.error(`Error loading background-image ${n}`),this.context.onError?.(A instanceof Error?A:new Error(String(A)))}if(r){const t=isNaN(r.width)||0===r.width?1:r.width,s=isNaN(r.height)||0===r.height?1:r.height,[o,i,a,c,B]=ai(A,e,[t,s,t/s]),l=gi(A.styles.backgroundRepeat,e),g=1===l?"no-repeat":2===l?"repeat-x":3===l?"repeat-y":"repeat",h=`${n}|${Math.round(c)}x${Math.round(B)}|${A.styles.imageRendering}|${g}`;let d=this.patternCache.get(h);if(!d){const t=this.resizeImage(r,c,B,A.styles.imageRendering);d=this.ctx.createPattern(t,g),this.patternCache.set(h,d)}this.renderRepeat(o,d,i,a)}}renderRepeatingLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,c,B,l,g]=ke(t.angle,o,i),h=Te(t.stops,a||1),d=h[0],w=h[h.length-1].stop-d.stop;if(w<=0)return void this.renderLinearGradient(A,t,e);const u=B-c,Q=g-l,p=w/(Math.sqrt(u*u+Q*Q)||1),C=c,U=l,f=c+u*p,F=l+Q*p,m=this.canvas.ownerDocument??document,y=`rlg|${t.angle}|${Math.round(w)}|${JSON.stringify(t.stops)}`;let I=this.patternCache.get(y);if(!I){const A=m.createElement("canvas"),t=Math.max(1,Math.ceil(w));A.width=t,A.height=t;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(C-n,U-s,f-n,F-s);h.forEach(A=>{r.addColorStop((A.stop-d.stop)/w,mt(A.color))}),e.fillStyle=r,e.fillRect(0,0,t,t),t>0&&(I=this.ctx.createPattern(A,"repeat"),this.patternCache.set(y,I))}I&&this.renderRepeat(r,I,n,s)}renderLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,c,B,l,g]=ke(t.angle,o,i),h=`lg|${t.angle}|${Math.round(o)}x${Math.round(i)}|${JSON.stringify(t.stops)}`;let d=this.patternCache.get(h);if(!d){const A=(this.canvas.ownerDocument??document).createElement("canvas");A.width=o,A.height=i;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(c,l,B,g);Te(t.stops,a||1).forEach(A=>r.addColorStop(A.stop,mt(A.color))),e.fillStyle=r,e.fillRect(0,0,o,i),o>0&&i>0&&(d=this.ctx.createPattern(A,"repeat"),this.patternCache.set(h,d))}d&&this.renderRepeat(r,d,n,s)}renderRadialGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),a=0===t.position.length?[gt]:t.position,c=wt(a[0],o),B=wt(a[a.length-1],i);let[l,g]=((A,t,e,r,n)=>{let s=0,o=0;switch(A.size){case 0:0===A.shape?s=o=Math.min(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(s=Math.min(Math.abs(t),Math.abs(t-r)),o=Math.min(Math.abs(e),Math.abs(e-n)));break;case 2:if(0===A.shape)s=o=Math.min(Oe(t,e),Oe(t,e-n),Oe(t-r,e),Oe(t-r,e-n));else if(1===A.shape){const A=Math.min(Math.abs(e),Math.abs(e-n))/Math.min(Math.abs(t),Math.abs(t-r)),[i,a]=Re(r,n,t,e,!0);s=Oe(i-t,(a-e)/A),o=A*s}break;case 1:0===A.shape?s=o=Math.max(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(s=Math.max(Math.abs(t),Math.abs(t-r)),o=Math.max(Math.abs(e),Math.abs(e-n)));break;case 3:if(0===A.shape)s=o=Math.max(Oe(t,e),Oe(t,e-n),Oe(t-r,e),Oe(t-r,e-n));else if(1===A.shape){const A=Math.max(Math.abs(e),Math.abs(e-n))/Math.max(Math.abs(t),Math.abs(t-r)),[i,a]=Re(r,n,t,e,!1);s=Oe(i-t,(a-e)/A),o=A*s}}return Array.isArray(A.size)&&(s=wt(A.size[0],r),o=2===A.size.length?wt(A.size[1],n):s),[s,o]})(t,c,B,o,i);if(0!==l&&0!==g||(l=Math.max(l,.01),g=Math.max(g,.01)),l>0&&g>0){const A=`rg|${Math.round(c)}x${Math.round(B)}|${Math.round(l)}x${Math.round(g)}|${JSON.stringify(t.stops)}`;let e=this.patternCache.get(A);if(!e){const r=this.canvas.ownerDocument??document,n=Math.ceil(2*Math.max(l,g)),s=r.createElement("canvas");s.width=n,s.height=n;const o=s.getContext("2d");if(o){const r=Math.max(l,g),n=o.createRadialGradient(r,r,0,r,r,r);Te(t.stops,2*r).forEach(A=>n.addColorStop(A.stop,mt(A.color))),o.fillStyle=n,l!==g&&o.scale(1,g/l),o.fillRect(0,0,2*r,2*r),e=this.ctx.createPattern(s,"no-repeat"),this.patternCache.set(A,e)}}e&&(this.path(r),this.ctx.save(),this.ctx.clip(),this.ctx.translate(n+c-Math.max(l,g),s+B-Math.max(l,g)),this.ctx.fillStyle=e,this.ctx.fillRect(0,0,2*Math.max(l,g),2*Math.max(l,g)),this.ctx.restore())}}renderRepeat(A,t,e,r){this.path(A),this.ctx.fillStyle=t,this.ctx.translate(e,r),this.ctx.fill(),this.ctx.translate(-e,-r)}resizeImage(A,t,e,r){const n=(this.canvas.ownerDocument??document).createElement("canvas");n.width=Math.max(1,t),n.height=Math.max(1,e);const s=n.getContext("2d");return s?(2===r||1===r?(this.context.logger.debug("Disabling image smoothing for background image due to CSS image-rendering"),s.imageSmoothingEnabled=!1):3===r?(this.context.logger.debug("Enabling image smoothing for background image due to CSS image-rendering: smooth"),s.imageSmoothingEnabled=!0):s.imageSmoothingEnabled=this.ctx.imageSmoothingEnabled,this.ctx.imageSmoothingQuality&&(s.imageSmoothingQuality=this.ctx.imageSmoothingQuality),s.drawImage(A,0,0,A.width,A.height,0,0,t,e),n):A}path(A){fi(this.ctx,A)}};const yi=(A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return Hi(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return Hi(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return Hi(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Ii=(A,t)=>{const e=[];return Oo(A)?e.push(A.subdivide(.5,!1)):e.push(A),Oo(t)?e.push(t.subdivide(.5,!0)):e.push(t),e},Hi=(A,t,e,r)=>{const n=[];return Oo(A)?n.push(A.subdivide(.5,!1)):n.push(A),Oo(e)?n.push(e.subdivide(.5,!0)):n.push(e),Oo(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),Oo(t)?n.push(t.subdivide(.5,!1).reverse()):n.push(t),n};var Ei=class{constructor(A,t){this.ctx=A.ctx,this.pathCallbacks=t}async renderSolidBorder(A,t,e){this.pathCallbacks.path(yi(e,t)),this.ctx.fillStyle=mt(A),this.ctx.fill()}async renderDoubleBorder(A,t,e,r){if(t<3)return void await this.renderSolidBorder(A,e,r);const n=((A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return Hi(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return Hi(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return Hi(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}})(r,e);this.pathCallbacks.path(n),this.ctx.fillStyle=mt(A),this.ctx.fill();const s=((A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return Hi(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return Hi(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return Hi(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}})(r,e);this.pathCallbacks.path(s),this.ctx.fill()}async renderDashedDottedBorder(A,t,e,r,n){this.ctx.save();const s=((A,t)=>{switch(t){case 0:return Ii(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return Ii(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return Ii(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return Ii(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(r,e),o=yi(r,e);let i,a,c,B,l;2===n&&(this.pathCallbacks.path(o),this.ctx.clip()),Oo(o[0])?(i=o[0].start.x,a=o[0].start.y):(i=o[0].x,a=o[0].y),Oo(o[1])?(c=o[1].end.x,B=o[1].end.y):(c=o[1].x,B=o[1].y),l=0===e||2===e?Math.abs(i-c):Math.abs(a-B),this.ctx.beginPath(),this.pathCallbacks.formatPath(3===n?s:o.slice(0,2));let g=t<3?3*t:2*t,h=t<3?2*t:t;3===n&&(g=t,h=t);let d=!0;if(l<=2*g)d=!1;else if(l<=2*g+h){const A=l/(2*g+h);g*=A,h*=A}else{const A=Math.floor((l+h)/(g+h)),t=(l-A*g)/(A-1),e=(l-(A+1)*g)/A;h=e<=0||Math.abs(h-t)<Math.abs(h-e)?t:e}if(d&&this.ctx.setLineDash(3===n?[0,g+h]:[g,h]),3===n?(this.ctx.lineCap="round",this.ctx.lineWidth=t):this.ctx.lineWidth=2*t+1.1,this.ctx.strokeStyle=mt(A),this.ctx.stroke(),this.ctx.setLineDash([]),2===n){if(Oo(o[0])){const A=o[3],t=o[0];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Mo(A.end.x,A.end.y),new Mo(t.start.x,t.start.y)]),this.ctx.stroke()}if(Oo(o[1])){const A=o[1],t=o[2];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Mo(A.end.x,A.end.y),new Mo(t.start.x,t.start.y)]),this.ctx.stroke()}}this.ctx.restore()}},bi=class{constructor(A){this.ctx=A}renderBorderImage(A,t,e,r,n,s,o,i){const a=t.naturalWidth||t.width,c=t.naturalHeight||t.height;if(a<=0||c<=0)return;const B=Math.min("percent"===e.unit?e.top/100*c:Math.min(e.top,c),c),l=Math.min("percent"===e.unit?e.right/100*a:Math.min(e.right,a),a),g=Math.min("percent"===e.unit?e.bottom/100*c:Math.min(e.bottom,c),c),h=Math.min("percent"===e.unit?e.left/100*a:Math.min(e.left,a),a),{left:d,top:w,width:u,height:Q}=A;if(u<=0||Q<=0)return;const p=Math.min(n,Q),C=Math.min(s,u),U=Math.min(o,Q-p),f=Math.min(i,u-C);this.drawRegion(t,0,0,h,B,d,w,f,p),this.drawRegion(t,a-l,0,l,B,d+u-C,w,C,p),this.drawRegion(t,a-l,c-g,l,g,d+u-C,w+Q-U,C,U),this.drawRegion(t,0,c-g,h,g,d,w+Q-U,f,U);const F=[{sx:h,sy:0,sw:a-h-l,sh:B,dx:d+f,dy:w,dw:u-f-C,dh:p,repeat:r.horizontal},{sx:a-l,sy:B,sw:l,sh:c-B-g,dx:d+u-C,dy:w+p,dw:C,dh:Q-p-U,repeat:r.vertical},{sx:h,sy:c-g,sw:a-h-l,sh:g,dx:d+f,dy:w+Q-U,dw:u-f-C,dh:U,repeat:r.horizontal},{sx:0,sy:B,sw:h,sh:c-B-g,dx:d,dy:w+p,dw:f,dh:Q-p-U,repeat:r.vertical}];for(const A of F){if(A.sw<=0||A.sh<=0||A.dw<=0||A.dh<=0)continue;const e=A.dw>=A.dh;0===A.repeat?this.ctx.drawImage(t,A.sx,A.sy,A.sw,A.sh,A.dx,A.dy,A.dw,A.dh):1!==A.repeat&&2!==A.repeat||this.drawRepeatedEdge(t,A,e,2===A.repeat)}e.fill&&this.drawRegion(t,h,B,a-h-l,c-B-g,d+f,w+p,u-f-C,Q-p-U)}drawRegion(A,t,e,r,n,s,o,i,a){r>0&&n>0&&i>0&&a>0&&this.ctx.drawImage(A,t,e,r,n,s,o,i,a)}drawRepeatedEdge(A,t,e,r){const n=e?t.sw:t.sh,s=e?t.dw:t.dh;if(n<=0||s<=0)return;let o,i;r?(i=Math.max(1,Math.round(s/n)),o=s/i):(o=n,i=Math.ceil(s/o)),this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(t.dx,t.dy,t.dw,t.dh),this.ctx.clip();for(let r=0;r<i;r++){const n=r*o,i=Math.min(o,s-n);if(i<=0)break;e?this.ctx.drawImage(A,t.sx,t.sy,t.sw,t.sh,t.dx+n,t.dy,i,t.dh):this.ctx.drawImage(A,t.sx,t.sy,t.sw,t.sh,t.dx,t.dy+n,t.dw,i)}this.ctx.restore()}},xi=class{constructor(A,t){this.activeEffects=[],this.didSave=!1,this.saveAtDepth=-1,this.ctx=A.ctx,this.pathCallback=t}applyEffects(A){for(;this.activeEffects.length;)this.popEffect();this.didSave=!1,this.saveAtDepth=-1;const t=A=>_o(A)||qo(A)||jo(A),e=A.reduceRight((A,e,r)=>-1!==A?A:t(e)?r:-1,-1);for(let r=0;r<A.length;r++){const n=A[r];t(n)&&(this.didSave||(this.ctx.save(),this.didSave=!0),r===e&&(this.saveAtDepth=this.activeEffects.length)),this.applyEffect(n)}}applyEffect(A){_o(A)?(this.ctx.translate(A.offsetX,A.offsetY),this.ctx.transform(A.matrix[0],A.matrix[1],A.matrix[2],A.matrix[3],A.matrix[4],A.matrix[5]),this.ctx.translate(-A.offsetX,-A.offsetY)):qo(A)?(this.pathCallback.path(A.path),this.ctx.clip()):jo(A)?A.applyClip(this.ctx):(A=>2===A.type)(A)?this.ctx.globalAlpha*=A.opacity:(A=>4===A.type)(A)?this.ctx.globalCompositeOperation=A.compositeOperation:(A=>5===A.type)(A)&&(this.ctx.filter=A.safeFilterString||"none",A.shadow&&(this.ctx.shadowOffsetX=A.shadow.offsetX,this.ctx.shadowOffsetY=A.shadow.offsetY,this.ctx.shadowBlur=A.shadow.blur,this.ctx.shadowColor=A.shadow.color)),this.activeEffects.push(A)}popEffect(){0!==this.activeEffects.length&&(this.didSave&&this.activeEffects.length-1===this.saveAtDepth&&(this.ctx.restore(),this.didSave=!1,this.saveAtDepth=-1),this.activeEffects.pop(),this.didSave||0!==this.activeEffects.length||(this.ctx.globalAlpha=1,this.ctx.globalCompositeOperation="source-over",this.ctx.filter="none",this.ctx.shadowOffsetX=0,this.ctx.shadowOffsetY=0,this.ctx.shadowBlur=0,this.ctx.shadowColor="rgba(0, 0, 0, 0)"))}getActiveEffectCount(){return this.activeEffects.length}hasActiveEffects(){return this.activeEffects.length>0}};var vi=class A{constructor(A,t){this.context=A,this.options=t,this.canvas=t.canvas?t.canvas:document.createElement("canvas");const e=this.canvas.getContext("2d");if(!e)throw new Error("Failed to get 2D rendering context from canvas");this.ctx=e,t.canvas||(this.canvas.width=Math.floor(t.width*t.scale),this.canvas.height=Math.floor(t.height*t.scale),this.canvas.style.width=`${t.width}px`,this.canvas.style.height=`${t.height}px`),this.ctx.scale(this.options.scale,this.options.scale),this.ctx.translate(-t.x,-t.y),this.ctx.textBaseline="bottom",void 0!==t.imageSmoothing&&(this.ctx.imageSmoothingEnabled=t.imageSmoothing),t.imageSmoothingQuality&&(this.ctx.imageSmoothingQuality=t.imageSmoothingQuality),this.backgroundRenderer=new mi({ctx:this.ctx,context:this.context,canvas:this.canvas,options:{width:t.width,height:t.height,scale:t.scale}}),this.borderRenderer=new Ei({ctx:this.ctx},{path:A=>this.path(A),formatPath:A=>this.formatPath(A)}),this.borderImageRenderer=new bi(this.ctx),this.effectsRenderer=new xi({ctx:this.ctx},{path:A=>this.path(A)}),this.textRenderer=new Ci({ctx:this.ctx,options:{scale:t.scale}}),this.context.logger.debug(`Canvas renderer initialized (${t.width}x${t.height}) with scale ${t.scale}`)}async renderStack(A){A.element.container.styles.isVisible()&&await this.renderStackContent(A)}async renderNode(A){A.container.styles.isVisible()&&(await this.renderNodeBackgroundAndBorders(A),await this.renderNodeContent(A))}renderReplacedElement(A,t,e){const r=e.naturalWidth||A.intrinsicWidth,n=e.naturalHeight||A.intrinsicHeight;if(e&&r>0&&n>0){const s=ii(A),o=Go(t);this.path(o),this.ctx.save(),this.ctx.clip();const{sx:i,sy:a,sw:c,sh:B,dx:l,dy:g,dw:h,dh:d}=((A,t,e,r,n)=>{let s=0,o=0,i=A,a=t,c=e.left,B=e.top,l=e.width,g=e.height;const h=l/g,d=i/a,w=n?wt(n[0],1):.5,u=n?wt(n[1],1):.5;return 2===r?d>h?(g=l/d,B+=(e.height-g)*u):(l=g*d,c+=(e.width-l)*w):4===r?d>h?(i=a*h,s+=(A-i)*w):(a=i/h,o+=(t-a)*u):8===r?(i>l?(s+=(i-l)*w,i=l):(c+=(l-i)*w,l=i),a>g?(o+=(a-g)*u,a=g):(B+=(g-a)*u,g=a)):16===r&&((d>h?l:g*d)<(i>l?i:l)?d>h?(g=l/d,B+=(e.height-g)*u):(l=g*d,c+=(e.width-l)*w):(i>l?(s+=(i-l)*w,i=l):(c+=(l-i)*w,l=i),a>g?(o+=(a-g)*u,a=g):(B+=(g-a)*u,g=a))),{sx:s,sy:o,sw:i,sh:a,dx:c,dy:B,dw:l,dh:g}})(r,n,s,A.styles.objectFit,A.styles.objectPosition);this.ctx.drawImage(e,i,a,c,B,l,g,h,d),this.ctx.restore()}}async renderNodeContent(t){this.effectsRenderer.applyEffects(t.getEffects(4));const e=t.container,r=t.curves,s=e.styles,o=ii(e);for(const A of e.textNodes)await this.textRenderer.renderTextNode(A,s,o);await(async(t,e,r,n,s,o,i,a)=>{if(s instanceof wo)try{const A=await e.cache.match(s.src),r=t.imageSmoothingEnabled;2===i.imageRendering||1===i.imageRendering?t.imageSmoothingEnabled=!1:3===i.imageRendering&&(t.imageSmoothingEnabled=!0),a(s,o,A),t.imageSmoothingEnabled=r}catch(A){e.logger.error(`Error loading image ${s.src}`),e.onError?.(A instanceof Error?A:new Error(String(A)))}if(s instanceof uo&&a(s,o,s.canvas),s instanceof Qo)try{a(s,o,await e.cache.match(s.svg))}catch(A){e.logger.error(`Error loading svg ${s.svg.substring(0,255)}`),e.onError?.(A instanceof Error?A:new Error(String(A)))}if(s instanceof Ho&&s.tree){const n=await((t,e)=>new A(t,e))(e,{scale:r.scale,backgroundColor:s.backgroundColor,x:0,y:0,width:s.width,height:s.height}).render(s.tree);s.width&&s.height&&t.drawImage(n,0,0,s.width,s.height,s.bounds.left,s.bounds.top,s.bounds.width,s.bounds.height)}})(this.ctx,this.context,{scale:this.options.scale,backgroundColor:this.options.backgroundColor,x:this.options.x,y:this.options.y,width:this.options.width,height:this.options.height},0,e,r,s,(A,t,e)=>this.renderReplacedElement(A,t,e)),((A,t,e,r,s)=>{if(r instanceof mo){const t=Math.min(r.bounds.width,r.bounds.height);"checkbox"===r.type&&r.checked?(A.save(),e([new Mo(r.bounds.left+.39363*t,r.bounds.top+.79*t),new Mo(r.bounds.left+.16*t,r.bounds.top+.5549*t),new Mo(r.bounds.left+.27347*t,r.bounds.top+.44071*t),new Mo(r.bounds.left+.39694*t,r.bounds.top+.5649*t),new Mo(r.bounds.left+.72983*t,r.bounds.top+.23*t),new Mo(r.bounds.left+.84*t,r.bounds.top+.34085*t),new Mo(r.bounds.left+.39363*t,r.bounds.top+.79*t)]),A.fillStyle=mt(Fo),A.fill(),A.restore()):"radio"===r.type&&r.checked&&(A.save(),A.beginPath(),A.arc(r.bounds.left+t/2,r.bounds.top+t/2,t/4,0,2*Math.PI,!0),A.fillStyle=mt(Fo),A.fill(),A.restore())}if((A=>A instanceof Io||A instanceof yo||A instanceof mo&&"radio"!==A.type&&"checkbox"!==A.type)(r)&&r.value.length){const[o]=t.createFontStyle(s);A.font=o;const i=wi(A,wt(s.fontSize,0));A.fillStyle=mt(r instanceof mo&&r.isPlaceholder?1970632191:s.color),A.textBaseline="alphabetic",A.textAlign=(A=>{switch(A){case 1:return"center";case 2:return"right";default:return"left"}})(r.styles.textAlign);const a=ii(r);let c=0;switch(r.styles.textAlign){case 1:c+=a.width/2;break;case 2:c+=a.width}let B=0;if(r instanceof mo){const A=wt(s.fontSize,0);B=(a.height-A)/2}const l=a.add(c,B,0,0);A.save(),e([new Mo(a.left,a.top),new Mo(a.left+a.width,a.top),new Mo(a.left+a.width,a.top+a.height),new Mo(a.left,a.top+a.height)]),A.clip();const g=((A,t,e,r)=>{const n=[],s=t.split("\n");for(const t of s){if(r){n.push(t);continue}const s=t.split(/(\s+)/);let o="";for(const t of s){const r=o+t;A.measureText(r).width<=e||""===o?o=r:(n.push(o),o=t)}n.push(o)}return n})(A,r.value,a.width,"pre"===s.whiteSpace||"nowrap"===s.whiteSpace),h=wt(s.fontSize,0),d=Pr(s.lineHeight,h);g.forEach((e,r)=>{let o=l.left;const c=A.measureText(e).width;switch(s.textAlign){case 1:o+=(a.width-c)/2;break;case 2:o+=a.width-c}const B=new n(o,l.top+r*d,0,0);t.renderTextWithLetterSpacing(new so(e,B),s.letterSpacing,i,s.writingMode)}),A.restore(),A.textBaseline="alphabetic",A.textAlign="left"}})(this.ctx,this.textRenderer,this.path.bind(this),e,s),await(async(A,t,e,r,s,o)=>{if(Qe(s.styles.display,2048))if(null!==s.styles.listStyleImage){const e=s.styles.listStyleImage;if(0===e.type){const r=e.url;try{const e=await t.cache.match(r);A.drawImage(e,s.bounds.left-(e.width+10),s.bounds.top)}catch(A){t.logger.error(`Error loading list-style-image ${r}`),t.onError?.(A instanceof Error?A:new Error(String(A)))}}}else if(r.listValue&&-1!==s.styles.listStyleType){const[t]=e.createFontStyle(o);A.font=t,A.fillStyle=mt(o.color),A.textBaseline="middle",A.textAlign="right";const i=new n(s.bounds.left,s.bounds.top+wt(s.styles.paddingTop,s.bounds.width),s.bounds.width,Pr(o.lineHeight,o.fontSize.number)/2+1);e.renderTextWithLetterSpacing(new so(r.listValue,i),o.letterSpacing,Pr(o.lineHeight,o.fontSize.number)/2+2,o.writingMode),A.textBaseline="bottom",A.textAlign="left"}})(this.ctx,this.context,this.textRenderer,t,e,s)}async renderStackContent(A){const t=this.options.signal;await this.renderNodeBackgroundAndBorders(A.element);for(const e of A.negativeZIndex){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderNodeContent(A.element);for(const t of A.nonInlineLevel)await this.renderNode(t);for(const e of A.nonPositionedFloats){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const e of A.nonPositionedInlineLevel){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const t of A.inlineLevel)await this.renderNode(t);for(const e of A.zeroOrAutoZIndexOrTransformedOrOpacity){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const e of A.positiveZIndex){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}}mask(A){this.ctx.beginPath();const t=this.options.x,e=this.options.y;this.ctx.moveTo(t,e),this.ctx.lineTo(t+this.options.width,e),this.ctx.lineTo(t+this.options.width,e+this.options.height),this.ctx.lineTo(t,e+this.options.height),this.ctx.lineTo(t,e),this.formatPath(A.slice(0).reverse()),this.ctx.closePath()}path(A){fi(this.ctx,A)}formatPath(A){Ui(this.ctx,A)}async renderNodeBackgroundAndBorders(A){this.effectsRenderer.applyEffects(A.getEffects(2));const t=A.container.styles,e=!Ft(t.backgroundColor)||t.backgroundImage.length,r=Li(t),n=[{style:t.borderTopStyle,color:t.borderTopColor,width:t.borderTopWidth},{style:t.borderRightStyle,color:t.borderRightColor,width:t.borderRightWidth},{style:t.borderBottomStyle,color:t.borderBottomColor,width:t.borderBottomWidth},{style:t.borderLeftStyle,color:t.borderLeftColor,width:t.borderLeftWidth}],s=gi(t.backgroundClip,0),o=Ki(s,A.curves);if((e||t.boxShadow.length)&&(r&&A.container.textNodes.length>0?await this.renderTextClippedBackground(A):(this.ctx.save(),this.path(o),this.ctx.clip(),Ft(t.backgroundColor)||(this.ctx.fillStyle=mt(t.backgroundColor),this.ctx.fill()),await this.backgroundRenderer.renderBackgroundImage(A.container),this.ctx.restore()),t.boxShadow.slice(0).reverse().forEach(t=>{this.ctx.save();const e=No(A.curves),r=t.inset?0:1e4,n=(s=(t.inset?1:-1)*t.spread.number-r,o=(t.inset?1:-1)*t.spread.number,i=t.spread.number*(t.inset?-2:2),a=t.spread.number*(t.inset?-2:2),e.map((A,t)=>{switch(t){case 0:return A.add(s,o);case 1:return A.add(s+i,o);case 2:return A.add(s+i,o+a);case 3:return A.add(s,o+a)}return A}));var s,o,i,a;t.inset?(this.path(e),this.ctx.clip(),this.mask(n)):(this.mask(e),this.ctx.clip(),this.path(n)),this.ctx.shadowOffsetX=t.offsetX.number+r,this.ctx.shadowOffsetY=t.offsetY.number,this.ctx.shadowColor=mt(t.color),this.ctx.shadowBlur=t.blur.number,this.ctx.fillStyle=t.inset?mt(t.color):"rgba(0,0,0,1)",this.ctx.fill(),this.ctx.restore()})),t.borderImageSource){const e=t.borderImageSource;if(0===e.type){const r=e.url;try{const e=await this.context.cache.match(r);e&&this.borderImageRenderer.renderBorderImage(A.container.bounds,e,t.borderImageSlice,t.borderImageRepeat,Math.max(0,t.borderTopWidth),Math.max(0,t.borderRightWidth),Math.max(0,t.borderBottomWidth),Math.max(0,t.borderLeftWidth))}catch(A){this.context.logger.error(`Error loading border-image ${r}`)}}return}let i=0;for(const t of n){if(0!==t.style&&!Ft(t.color)&&t.width>0){const e=async()=>{2===t.style?await this.borderRenderer.renderDashedDottedBorder(t.color,t.width,i,A.curves,2):3===t.style?await this.borderRenderer.renderDashedDottedBorder(t.color,t.width,i,A.curves,3):4===t.style?await this.borderRenderer.renderDoubleBorder(t.color,t.width,i,A.curves):await this.borderRenderer.renderSolidBorder(t.color,i,A.curves)},r=A.container.legendBounds;if(0===i&&r){const t=A.container.bounds,n=r.left-t.left,s=r.left+r.width-t.left;n>0&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(t.left,t.top,n,t.height),this.ctx.clip(),await e(),this.ctx.restore());const o=t.left+s,i=t.width-s;i>0&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(o,t.top,i,t.height),this.ctx.clip(),await e(),this.ctx.restore())}else await e()}i++}}async render(A){this.options.backgroundColor&&(this.ctx.fillStyle=mt(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height));const t=(A=>{const t=new Ai(A,null),e=new $o(t),r=[];return ni(t,e,e,r),si(t.container,r),e})(A);return await this.renderStack(t),this.effectsRenderer.applyEffects([]),this.canvas}async renderTextClippedBackground(A){const t=A.container,e=t.styles,r=t.bounds;if(r.width<=0||r.height<=0)return;const n=(this.canvas.ownerDocument??document).createElement("canvas"),s=Math.ceil(r.width),o=Math.ceil(r.height);n.width=s,n.height=o;const i=n.getContext("2d");if(!i)return;const[a]=this.textRenderer.createFontStyle(e);i.font=a,i.textBaseline="alphabetic",i.textAlign="left",i.direction=1===e.direction?"rtl":"ltr";const c=wi(i,e.fontSize.number),B=new mi({ctx:i,context:this.context,canvas:n,options:{width:s,height:o,scale:1}});Ft(e.backgroundColor)||(i.fillStyle=mt(e.backgroundColor),i.fillRect(0,0,s,o)),i.save(),i.translate(-r.left,-r.top),await B.renderBackgroundImage(t),i.restore(),i.globalCompositeOperation="destination-in",i.fillStyle="#000";const l=e.writingMode,g=e.letterSpacing;for(const A of t.textNodes)for(const t of A.textBounds){const A=t.bounds.left-r.left,e=t.bounds.top-r.top+c;g>0?this.renderTextMaskWithLetterSpacing(i,t,g,A,e,l):i.fillText(t.text,A,e)}this.ctx.drawImage(n,r.left,r.top)}renderTextMaskWithLetterSpacing(A,t,e,r,n,s){const o=io(t.text);let i=r;for(const a of o){if(pn(s))return void A.fillText(t.text,r,n);A.fillText(a,i,n),i+=A.measureText(a).width+e}}};const Ki=(A,t)=>{switch(A){case 0:return No(t);case 2:return(A=>[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox])(t);default:return Go(t)}},Li=A=>A.backgroundClip.some(A=>3===A);var Si=class{constructor(A,t){this.context=A,this.options=t,this.canvas=t.canvas?t.canvas:document.createElement("canvas");const e=this.canvas.getContext("2d");if(!e)throw new Error("Failed to get 2D rendering context from canvas");this.ctx=e,this.canvas.width=Math.floor(t.width*t.scale),this.canvas.height=Math.floor(t.height*t.scale),this.canvas.style.width=`${t.width}px`,this.canvas.style.height=`${t.height}px`,this.ctx.scale(this.options.scale,this.options.scale),this.ctx.translate(-t.x,-t.y),this.context.logger.debug(`EXPERIMENTAL ForeignObject renderer initialized (${t.width}x${t.height} at ${t.x},${t.y}) with scale ${t.scale}`)}async render(A){if(this.options.signal?.aborted)throw new DOMException("The operation was aborted.","AbortError");const t=await ro(eo(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,A));return this.options.backgroundColor&&(this.ctx.fillStyle=mt(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(t,-this.options.x*this.options.scale,-this.options.y*this.options.scale),this.canvas}},Di=class{static{this.instances={}}constructor({id:A,enabled:t}){this.id=A,this.enabled=t,this.start=Date.now()}debug(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.debug?console.debug(this.id,`${this.getTime()}ms`,...A):this.info(...A))}getTime(){return Date.now()-this.start}info(...A){this.enabled&&"undefined"!=typeof window&&window.console&&"function"==typeof console.info&&console.info(this.id,`${this.getTime()}ms`,...A)}warn(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.warn?console.warn(this.id,`${this.getTime()}ms`,...A):this.info(...A))}error(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.error?console.error(this.id,`${this.getTime()}ms`,...A):this.info(...A))}},Mi=class{constructor(A,t){if(this.context=A,this._options=t,this._cache=new Map,this._pendingOperations=new Map,this._deferMode=!1,this._collectedUrls=new Set,this.maxSize=t.maxCacheSize??100,this.maxSize<1)throw new Error("Cache maxSize must be at least 1");this.maxSize>1e4&&this.context.logger.warn(`Cache maxSize ${this.maxSize} is very large and may cause memory issues. Consider using a smaller value (recommended: 100-1000).`)}startDefer(){this._deferMode=!0}async preloadAll(A=10){this._deferMode=!1;const t=Array.from(this._collectedUrls);if(this._collectedUrls.clear(),0===t.length)return;const e=Math.max(1,Math.min(A,100));this.context.logger.debug(`Preloading ${t.length} image(s) with concurrency ${e}`);for(let A=0;A<t.length;A+=e){const r=t.slice(A,A+e).map(A=>this._addImageWithPending(A));await Promise.allSettled(r)}}addImage(A){if(this._deferMode)return this.has(A)||!Gi(A)&&!Ri(A)||this._collectedUrls.add(A),Promise.resolve();const t=this._pendingOperations.get(A);if(t)return t;if(this.has(A)){const t=this._cache.get(A);return this._cache.delete(A),this._cache.set(A,t),Promise.resolve()}return Gi(A)||Ri(A)?this._addImageWithPending(A):Promise.resolve()}_addImageWithPending(A){const t=this._pendingOperations.get(A);if(t)return t;const e=this._addImageInternal(A);return this._pendingOperations.set(A,e),e.finally(()=>{this._pendingOperations.delete(A)}),e}async _addImageInternal(A){const t=this._options.imageTimeout??15e3,e=this.withTimeout(this.loadImage(A),t,`Timed out (${t}ms) loading image`);e.catch(t=>{this.context.logger.error(`Failed to load image ${A}: ${t instanceof Error?t.message:"Unknown error"}`)}),this.set(A,e)}withTimeout(A,t,e){if(t<=0)return A;let r;const n=new Promise((A,n)=>{r=setTimeout(()=>n(new Error(e)),t)});return Promise.race([A,n]).finally(()=>{void 0!==r&&clearTimeout(r)})}match(A){const t=this._cache.get(A);if(t)return this._cache.delete(A),this._cache.set(A,t),t.value}set(A,t){if(this._cache.has(A))this._cache.delete(A);else if(this._cache.size>=this.maxSize){const A=this._cache.keys().next().value;void 0!==A&&(this._cache.delete(A),this.context.logger.debug(`Cache: Evicted LRU entry: ${A}`))}this._cache.set(A,{value:t})}size(){return this._cache.size}getMaxSize(){return this.maxSize}clear(){this._cache.clear()}async loadImage(A){const t=this.context.originChecker,e=A=>t.isSameOrigin(A),r="function"==typeof this._options.customIsSameOrigin?await this._options.customIsSameOrigin(A,e):e(A),n=!r&&!1===this._options.allowTaint&&!Vi(A)&&!Gi(A)&&"string"!=typeof this._options.proxy,s=!Vi(A)&&(!0===this._options.useCORS||n)&&no.SUPPORT_CORS_IMAGES&&!r,o=!Vi(A)&&!r&&!Gi(A)&&"string"==typeof this._options.proxy&&no.SUPPORT_CORS_XHR&&!s;if(!(r||!1!==this._options.allowTaint||Vi(A)||Gi(A)||o||s))return;let i=A;return o&&(i=await this.proxy(i)),this.context.logger.debug(`Added image ${A.substring(0,256)}`),await new Promise((A,t)=>{const e=new Image;e.onload=()=>A(e),e.onerror=t,(Ni(i)||s)&&(e.crossOrigin="anonymous"),e.src=i,!0===e.complete&&setTimeout(()=>A(e),500)})}has(A){return this._cache.has(A)}keys(){return Promise.resolve(Array.from(this._cache.keys()))}proxy(A){const t=this._options.proxy;if(!t)throw new Error("No proxy defined");const e=A.substring(0,256);return new Promise((r,n)=>{const s=no.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=()=>{if(200===o.status)if("text"===s)r(o.response);else{const A=new FileReader;A.addEventListener("load",()=>r(A.result),!1),A.addEventListener("error",A=>n(A),!1),A.readAsDataURL(o.response)}else n(`Failed to proxy resource ${e} with status code ${o.status}`)},o.onerror=n;const i=t.indexOf("?")>-1?"&":"?";if(o.open("GET",`${t}${i}url=${encodeURIComponent(A)}&responseType=${s}`),"text"!==s&&o instanceof XMLHttpRequest&&(o.responseType=s),this._options.imageTimeout){const A=this._options.imageTimeout;o.timeout=A,o.ontimeout=()=>n(`Timed out (${A}ms) proxying ${e}`)}o.send()})}};const Ti=/^data:image\/svg\+xml/i,ki=/^data:image\/.*;base64,/i,Oi=/^data:image\/.*/i,Ri=A=>no.SUPPORT_SVG_DRAWING||!Pi(A),Vi=A=>Oi.test(A),Ni=A=>ki.test(A),Gi=A=>"blob"===A.substring(0,4),Pi=A=>"svg"===A.slice(-3).toLowerCase()||Ti.test(A);var Xi=class{constructor(A){if(!A||!A.document)throw new Error("Valid window object required for OriginChecker");if(!A.location||!A.location.href)throw new Error("Window object must have valid location");this.link=A.document.createElement("a"),this.origin=this.getOrigin(A.location.href)}getOrigin(A){return this.link.href=A,this.link.href=this.link.href,this.link.protocol+this.link.hostname+this.link.port}isSameOrigin(A){return this.getOrigin(A)===this.origin}getContextOrigin(){return this.origin}},Ji=class A{static{this.instanceCount=1}constructor(t,e,r){this.windowBounds=e,this.instanceName="#"+A.instanceCount++,this.config=r,this.logger=new Di({id:this.instanceName,enabled:t.logging}),this.originChecker=new Xi(r.window),this.cache=t.cache??r.cache??new Mi(this,t),this.onError=t.onError}};const Wi=A=>{if(A?.aborted)throw new DOMException("The operation was aborted.","AbortError")};function Yi(){const A=["availWidth","some","User agent: ","encodedBodySize","language","getEntriesByType","Timezone: ","inferred","Device geolocation: enabled","deviceorientation","onLine","DeviceOrientationEvent","addEventListener","14340007yUiHuo","type","°, γ ","saveData","platform","rtt","filter","slice","768002xFKfMW","122122yGykUY","toFixed","referrer","Local time: ","userAgentData","upright","1261320oFHlHl","enabled","charging","TTFB ~","cookieEnabled","width","padStart","TTFB","join","requestStart","21UqYoSM","12szMMsV","gamma","responseStart","yes"," | ","effectiveType","push","Languages: ",", maxTouchPoints ","Tilt: ","SW-controlled","Pointer/Touch: ","version","colorDepth","navigation","transferSize","Online: ","(display-mode: standalone)","number","no SW","rttMs","devicePixelRatio","fine","browser API"," ms","timeZone","mobile","undefined","Language: ","intent:geo","level","function","coarse","downlinkMbps","isFinite","abs","resource","maxTouchPoints","resolvedOptions","innerWidth","connection","startsWith","brand"," (β ",", orientation ","orientation","beta","userAgent","38615BviJVz","toString","Platform: ","n/a","84vtMRlC","getBattery","max","DateTimeFormat","8SwPgjg","Screen: ","entryType","356ZwYimR","isSecureContext","duration","; DNT: ","173878DMmKCE","Network: ","(pointer: fine)","round"," cores","downlink","removeEventListener","Viewport: ","hardwareConcurrency","CPU: "," (UTC","matches"," (mobile)","512361Ncohsm"," Mbps","controller","innerHeight","find","length","brands"];return(Yi=()=>A)()}function Zi(A,t){return A-=324,Yi()[A]}async function zi(){const A=Zi,t=(new(Intl[A(359)]))[A(342)]()[A(329)],e=(A=>{const t=Zi,e=A<=0?"+":"-",r=Math[t(339)](A);return""+e+String(Math.floor(r/60))[t(421)](2,"0")+":"+String(r%60)[t(421)](2,"0")})((new Date).getTimezoneOffset()),r=[];r.push(A(332)+navigator[A(391)]),navigator.languages?.[A(385)]&&r[A(432)](A(433)+navigator.languages[A(423)](", ")),r[A(432)](A(389)+navigator[A(351)]);const n=function(){const A=Zi;if(!(A=>{const t=Zi;return t(413)in A&&typeof A[t(413)]!==t(331)})(navigator))return;const t=navigator.userAgentData,e=Array.isArray(t[A(386)])?t[A(386)].map(t=>t[A(346)]+" "+t[A(438)])[A(423)](", "):void 0,r=t[A(404)]?""+t.platform+(t[A(330)]?A(379):""):void 0;return[e&&"UA brands: "+e,r&&A(354)+r][A(406)](Boolean)[A(423)](A(430))||void 0}();n&&r[A(432)](n),r[A(432)](A(393)+t+A(377)+e+")"),r[A(432)](A(412)+(new Date)[A(353)]());const s=window[A(325)]||1;r[A(432)](A(361)+screen[A(420)]+"x"+screen.height+" @"+s+"x (avail "+screen[A(387)]+"x"+screen.availHeight+", "+screen[A(439)]+"-bit)");const o=screen[A(349)]&&A(401)in screen[A(349)]?screen[A(349)][A(401)]:void 0;r[A(432)](A(374)+window[A(343)]+"x"+window[A(383)]+(o?A(348)+o:"")),r[A(432)](A(376)+navigator[A(375)]+A(371));const i=await async function(){const A=Zi,t=[];let e=A(327);if((A=>{const t=Zi;return"connection"in A&&typeof A[t(344)]!==t(331)})(navigator)){const e=navigator[A(344)];e?.effectiveType&&t[A(432)](e[A(431)]),typeof e?.[A(372)]===A(444)&&t[A(432)]("~"+e.downlink+" Mbps"),typeof e?.[A(405)]===A(444)&&t[A(432)](e.rtt+A(328)),e?.[A(403)]&&t.push("saveData")}else{const r=((A=20)=>{const t=Zi,e=performance[t(392)](t(440))[t(384)](A=>"navigation"===A[t(362)]),r=e?Math[t(358)](0,e[t(428)]-e[t(424)]):void 0,n=performance[t(392)](t(340))[t(406)](A=>A.entryType===t(340));let s=0,o=0;for(const e of n[t(407)](0,Math[t(358)](0,A))){const A=e[t(390)]>0?e[t(390)]:e[t(441)]>0?e[t(441)]:0,r=e[t(365)];A>0&&r>0&&Number[t(338)](r)&&(s+=A,o+=r)}const i=o>0?8*s/o:void 0;return{downlinkMbps:"number"==typeof i?i/1e3:void 0,rttMs:r}})();typeof r[A(337)]===A(444)&&t[A(432)]("~"+r[A(337)][A(410)](1)+A(381)),"number"==typeof r.rttMs&&t[A(432)](A(418)+Math[A(370)](r[A(324)])+" ms"),e=A(394)}const r=performance[A(392)]("navigation")[A(384)](A=>"navigation"===A.entryType);if(r){const e=Math[A(358)](0,r[A(428)]-r.requestStart);!t[A(388)](t=>t[A(345)](A(422)))&&t[A(432)](A(418)+Math[A(370)](e)+A(328))}return t[A(385)]?A(368)+t[A(423)](", ")+" ("+e+")":void 0}();i&&r[A(432)](i),r.push((()=>{const A=Zi,t="function"==typeof matchMedia&&matchMedia("(pointer: coarse)")[A(378)],e=typeof matchMedia===A(335)&&matchMedia(A(369))[A(378)],r=t?A(336):e?A(326):"unknown",n=navigator[A(341)];return A(437)+r+A(434)+n})());const a=await async function(){const A=Zi;var t;if("getBattery"in(t=navigator)&&typeof t.getBattery===Zi(335))try{const t=await navigator[A(357)](),e=Math[A(370)](100*t[A(334)]);return"Battery: "+[(Number[A(338)](e)?e:0)+"%",t[A(417)]?"charging":"not charging"].join(", ")}catch{}}();a&&r.push(a),r.push("CookiesEnabled: "+(navigator[A(419)]?A(429):"no")+A(366)+(navigator.doNotTrack??A(355))),r[A(432)](A(442)+(navigator[A(397)]?"yes":"no")),document[A(411)]&&r[A(432)]("Referrer: "+document[A(411)]),r.push((()=>{const A=Zi,t=typeof matchMedia===A(335)&&matchMedia(A(443))[A(378)],e=Boolean(navigator.serviceWorker?.[A(382)]);return"PWA: "+A(e?436:445)+", display-mode standalone: "+(t?"yes":"no")})());const c=await async function(A=400){const t=Zi;if(t(398)in window&&window[t(364)])return new Promise(e=>{const r=t;let n=!1;const s=A=>{const t=Zi,r=typeof A[t(350)]===t(444)?A[t(350)]:void 0,o=typeof A[t(427)]===t(444)?A[t(427)]:void 0;if(void 0===r||void 0===o)return;if(n)return;n=!0,window.removeEventListener(t(396),s);const i=((A,t)=>{const e=Zi,r=Math.abs(A),n=Math[e(339)](t);return r<15&&n<15?"flat":r>=60?e(414):"reclined"})(r,o);e(t(435)+i+t(347)+Math[t(370)](r)+t(402)+Math[t(370)](o)+"°)")};window.setTimeout(()=>{const A=Zi;n||(n=!0,window[A(373)](A(396),s),e(void 0))},A),window[r(399)]("deviceorientation",s,{passive:!0})})}();c&&r[A(432)](c);const B=localStorage.getItem(A(333))===A(416);return r.push(B?A(395):"Device geolocation: disabled"),r[A(423)](" | ")}function _i(){const A=["1915740npShRi","intent:data-base-url","intent:debug","1988382xdaUNK","https://intent.callimacus.ai","intent:data-capture-mode","1124426EBbYfo","intent:consent","intent:data-sid-max-age","intent:debug-panel","6702435JSTpGq","intent:data-ip","22825754yvpgxo","2855070sIMXhW","704132DxqxoD"];return(_i=()=>A)()}(A=>{const t=Zi,e=A();for(;;)try{if(935326==parseInt(t(408))/1+parseInt(t(367))/2*(parseInt(t(425))/3)+parseInt(t(363))/4*(parseInt(t(352))/5)+-parseInt(t(356))/6*(-parseInt(t(409))/7)+-parseInt(t(360))/8*(-parseInt(t(380))/9)+-parseInt(t(415))/10+-parseInt(t(400))/11*(parseInt(t(426))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Yi);const qi=oa;(A=>{const t=oa,e=A();for(;;)try{if(760112==parseInt(t(152))/1+-parseInt(t(149))/2+-parseInt(t(146))/3+-parseInt(t(145))/4+-parseInt(t(141))/5+-parseInt(t(144))/6+parseInt(t(143))/7)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(_i);const ji=qi(138),$i="intent:geo",Aa=qi(148),ta=qi(140),ea="intent:data-client-id",ra=qi(142),na=qi(147),sa=qi(139);function oa(A,t){return A-=138,_i()[A]}const ia=qi(151),aa=qi(150);(A=>{const t=Ba,e=A();for(;;)try{if(464283==-parseInt(t(458))/1*(parseInt(t(459))/2)+-parseInt(t(461))/3+parseInt(t(455))/4*(parseInt(t(457))/5)+-parseInt(t(450))/6*(parseInt(t(453))/7)+parseInt(t(462))/8+parseInt(t(451))/9+parseInt(t(449))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(la);const ca=2166136261;function Ba(A,t){return A-=449,la()[A]}function la(){const A=["4124800EuWEfH","8778610chSnli","24342DSlZwk","4821786QdqJwZ","length","1589Ypqpdx","imul","15116cdDrSl","toString","545oLomuA","664822UGAqdm","2BQxaMT","charCodeAt","873246xqsvxT"];return(la=()=>A)()}const ga=16777619;function ha(A,t){const e=Ba;let r=A;for(let A=0;A<t[e(452)];A++)r^=t[e(460)](A),r=Math[e(454)](r,ga);return r>>>0}function da(A,t){return Math[Ba(454)](A^t,ga)>>>0}const wa=[{seed:2166136261,prime:16777619},{seed:2654435761,prime:2246822507},{seed:3266489909,prime:668265263},{seed:374761393,prime:3266489955}];function ua(){const A=["now","postTask","innerText","map","enabled","1890315ELZIPq","3aSDBib","body","combobox","getAttribute","select","input",'[role="',"6632976vDZdNY","tagName","contenteditable","8wFTDKc","&gt;","textbox","clearTimeout","&lt;","has","true","string","10bIBQlt","toLowerCase","1834172NcRsBE","freeze","role","1846747MVWIfb","928518vIMbhO","1YqCaUg","replace","SELECT","textarea","plaintext-only","3426426cqEPEX","setTimeout","function","background","6ESsqjx","log","875941BMlalJ","undefined","TEXTAREA","searchbox","parentElement","host"];return(ua=()=>A)()}const Qa=Ia;function pa(A,t){let e=0;return(...r)=>{const n=Date[Ia(419)]();n-e>=t&&(e=n,A(...r))}}function Ca(...A){const t=Ia;try{typeof localStorage!==t(414)&&localStorage.getItem(Aa)===t(423)&&console[t(412)](...A)}catch{}}(A=>{const t=Ia,e=A();for(;;)try{if(365493==parseInt(t(450))/1*(-parseInt(t(449))/2)+-parseInt(t(425))/3*(-parseInt(t(445))/4)+-parseInt(t(424))/5+parseInt(t(411))/6*(-parseInt(t(448))/7)+parseInt(t(435))/8*(parseInt(t(407))/9)+parseInt(t(443))/10*(parseInt(t(413))/11)+parseInt(t(432))/12)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ua);const Ua=Object[Qa(446)](new Set([Qa(437),Qa(427),Qa(416)])),fa=[Qa(430),Qa(453),Qa(429),"[contenteditable]",...[...Ua][Qa(422)](A=>Qa(431)+A+'"]')].join(", ");function Fa(A){const t=Qa,e=A[t(433)];return"INPUT"===e||e===t(415)||e===t(452)}function ma(A){const t=Qa;if(Fa(A))return!0;const e=A[t(428)](t(434));if(""===e||e===t(441)||"plaintext-only"===e)return!0;const r=A[t(428)](t(447))?.[t(444)]();return!(!r||!Ua[t(440)](r))}function ya(A){const t=Qa,e=A[t(417)];if(e)return e;const{parentNode:r}=A;return r instanceof ShadowRoot&&r[t(418)]instanceof Element?r[t(418)]:void 0}function Ia(A,t){return A-=407,ua()[A]}function Ha(A){const t=Qa;if(Fa(A))return A.value;const e=A[t(421)];return typeof e===t(442)?e:A.textContent??""}function Ea(A){const t=Qa;return A[t(451)](/&/g,"&amp;")[t(451)](/</g,t(439))[t(451)](/>/g,t(436))[t(451)](/"/g,"&quot;")[t(451)](/'/g,"&#039;")}const ba=xa;function xa(A,t){return A-=339,La()[A]}(A=>{const t=xa,e=A();for(;;)try{if(696165==parseInt(t(437))/1+parseInt(t(389))/2+-parseInt(t(340))/3*(parseInt(t(383))/4)+parseInt(t(423))/5*(-parseInt(t(386))/6)+-parseInt(t(417))/7+-parseInt(t(436))/8*(-parseInt(t(358))/9)+parseInt(t(369))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(La);const va=ba(395),Ka=ba(416);function La(){const A=["birthdate-year","Cardholder name","address-line2","honorific-prefix","Redacted","5057381ckbyQp","cc-csc","bday-month","family-name","Name","cc-exp-month","412245dqxWbq","bday-day","Middle initial","postal-address-extended-postal-code","password-new","Postal code","postal-address-extended","Country code","name-middle-initial","cc-given-name","bday-year","name-given","Expiration date","392sshLVz","773021EnulOJ","Middle name","Birth day","cc-name","sms-otp","username","Expiration day","name-family","Username","15ZmkRiW","searchbox","cc-number","current-password","Address line 1","birthdate-full","cc-exp-day","First name","Expiration year","Address line 3","search","postal-address-locality","birthdate-month","address-level4","cc-family-name","Birthday","Job title","one-time-code","148734ZQmPLG","country-name","Security code","address-line3","given-name","District","username-new","Organization","password","Password","tel-national","10738090KngFer","trim","Name prefix","Address line 2","Last name","Birth year","Cardholder first name","gender","Sex","email","country","tel","Name suffix","address-level1","479152uztKOo","cc-middle-name","cc-exp","84amHuBi","Country name","Phone","1030540rxQDSY","name-suffix","birthdate-day","get","Nickname","address-line1","Sensitive","One-time code","Email","cc-exp-year","freeze","State/Province","name-prefix","Neighborhood","webauthn","nickname","address-level2","split","postal-code","Cardholder middle name","Birth month","cc-additional-name","City"];return(La=()=>A)()}Object[ba(399)](new Set([ba(341),ba(350)]));const Sa=new Map([["name",ba(421)],[ba(362),ba(347)],[ba(420),ba(373)],["additional-name","Middle name"],[ba(404),ba(393)],[ba(442),ba(339)],[ba(434),ba(347)],[ba(444),ba(373)],["name-middle",ba(438)],[ba(431),ba(425)],[ba(401),ba(371)],[ba(390),ba(381)],[ba(415),ba(371)],["honorific-suffix",ba(381)],[ba(364),ba(339)],[ba(366),ba(367)],[ba(427),ba(367)],[ba(343),"Password"],["new-password","Password"],[ba(357),ba(396)],[ba(441),ba(396)],[ba(403),"WebAuthn"],[ba(378),ba(397)],[ba(380),ba(388)],["tel-country-code","Phone country code"],[ba(368),ba(388)],["tel-device",ba(388)],["street-address","Street address"],[ba(394),ba(344)],[ba(414),ba(372)],[ba(361),ba(349)],[ba(382),ba(400)],[ba(405),ba(411)],["address-level3",ba(363)],[ba(353),ba(402)],[ba(407),"Postal code"],[ba(379),ba(430)],[ba(359),"Country name"],["postal-address","Street address"],["postal-address-country",ba(387)],[ba(429),ba(372)],[ba(426),ba(428)],[ba(351),ba(411)],["postal-address-region",ba(400)],[ba(440),ba(413)],[ba(432),ba(375)],[ba(354),"Cardholder last name"],[ba(410),ba(408)],[ba(384),ba(408)],[ba(342),"Card number"],[ba(385),ba(435)],[ba(346),ba(443)],[ba(422),"Expiration month"],[ba(398),ba(348)],[ba(418),ba(360)],["cc-type","Card type"],["bday",ba(355)],[ba(424),ba(439)],[ba(419),ba(409)],[ba(433),ba(374)],[ba(345),ba(355)],[ba(391),ba(439)],[ba(352),ba(409)],[ba(412),"Birth year"],["organization",ba(365)],["organization-title",ba(356)],["sex",ba(377)],[ba(376),ba(377)]]),Da=Object[ba(399)](new Set(Sa.keys()));function Ma(A){const t=ba;return A?A.toLowerCase()[t(370)]()[t(406)](/\s+/).filter(Boolean):[]}function Ta(A){return A.some(A=>Da.has(A))}function ka(A){const t=ba;for(const e of A){const A=Sa[t(392)](e);if(A)return A}}const Oa=_a;(A=>{const t=_a,e=A();for(;;)try{if(941426==parseInt(t(472))/1*(-parseInt(t(470))/2)+parseInt(t(487))/3*(parseInt(t(499))/4)+-parseInt(t(495))/5+-parseInt(t(479))/6*(-parseInt(t(471))/7)+parseInt(t(494))/8+-parseInt(t(507))/9*(parseInt(t(465))/10)+parseInt(t(467))/11*(parseInt(t(501))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Va);const Ra=Oa(481);function Va(){const A=["textContent","iframe","toLowerCase","ownerDocument","SELECT","setAttribute","ignore","search","14282390hekAvd","pop","6886CmsxbQ","date","Password","266DWXwtW","7vuWQPT","13173iXISxn","trim","contentDocument","has","stringify","matches","email","7862436UvidmX","length","data-intent-redact","time","hasAttribute","includes","tagName","clear","3mWmUtc","password","body","month","datetime-local","searchbox","get","4691576yURfHk","9384675aXxrKW","add","role","tel","2201832gMUKTP","querySelectorAll","68076TlHiEq","mask","autocomplete","getAttribute","data-html2canvas-ignore","type","9skaRGH","INPUT","shadowRoot","IFRAME","push","warn"];return(Va=()=>A)()}function Na(A){return"<"+(A=>{const t=Oa,e=(A[t(504)]?.("data-intent-redact-label")??"")[t(473)]();if(e)return e;const r=ma(A)?Ma(A[t(504)]?.(t(503))):[];if("INPUT"===A[t(485)]&&A.type===t(488))return t(469);const n=ka(r);if(n)return n;const s="INPUT"===A[t(485)]?ja[t(493)](A[t(506)]):void 0,o=s?ka([s]):void 0;if(o)return o;const i=A[t(504)]?.(Ra)?.[t(515)]();return i===t(502)?Ka:va})(A)+">"}function Ga(A){const t=Oa;return A[t(483)](t(505))||A[t(504)](Ra)?.[t(515)]()===t(463)}const Pa=new Set;function Xa(A){const t=Oa,e=A[t(504)](Ra);if(null===e)return!1;const r=e[t(515)]();return r!==t(463)&&(""!==e&&r!==t(502)&&(A=>{const t=Oa;if(Pa[t(475)](A))return;Pa[t(496)](A);const e="[intent] Unsupported data-intent-redact value "+JSON[t(476)](A)+'. Supported values are "" or "mask" (redact), "ignore" (exclude from capture). Treating as "mask" to prevent data leaks.';try{console[t(512)](e)}catch{}})(e),!0)}function Ja(A){const t=Oa;let e=A;for(;e&&e!==document[t(489)];){if(Ga(e))return!0;e=ya(e)}return!1}function Wa(A){const t=Oa;let e=A;for(;e&&e!==document[t(489)];){if(Xa(e))return e;e=ya(e)}}function Ya(A){return void 0!==Wa(A)}function Za(A){return Xa(A)||$a(A)?Na(A):Na(Wa(A)??A)}function za(A){return!Ja(A)&&(Ya(A)||$a(A))}function _a(A,t){return A-=460,Va()[A]}const qa=Object.freeze(new Set([Oa(492)])),ja=new Map([[Oa(478),"email"],["tel",Oa(498)]]);function $a(A){const t=Oa,e=A[t(485)],r=A[t(504)](t(497))?.[t(515)]();if(e===t(508)){const e=A;return e[t(506)]===t(488)||!(e[t(506)]===t(464)||r&&qa[t(475)](r))&&(!!ja[t(475)](e.type)||Ta(Ma(e[t(503)])))}return"TEXTAREA"===e||e===t(461)?Ta(Ma(A[t(503)])):!(!ma(A)||Fa(A))&&(!r||!qa[t(475)](r))&&Ta(Ma(A[t(504)](t(503))))}function Ac(A){return!(Ga(A)||!Xa(A)&&!$a(A))}function tc(A){const t=Oa;if(!Ja(A))if(Fa(A)){if(Ac(A)){if(A[t(485)]===t(508)){const e=A;[t(468),t(491),t(490),t(482),"week"][t(484)](e[t(506)])&&(e[t(506)]="text")}const e=Na(A);A.value=e,A[t(462)]("value",e)}}else ma(A)?Ac(A)&&(A[t(513)]=Na(A)):A.hasAttribute(Ra)&&Xa(A)&&(A[t(513)]=Na(A))}function ec(A,t){const e=Oa,r=[],n=[A];for(A instanceof Element&&A[e(509)]&&n[e(511)](A[e(509)]);n[e(480)]>0;){const A=n[e(466)]()[e(500)]("*");for(const s of A)s[e(477)](t)&&r[e(511)](s),s[e(509)]&&n[e(511)](s[e(509)])}return r}function rc(A,t=new Set){const e=Oa,r=A instanceof Document?A:A[e(460)];if(r){if(t[e(475)](r))return;t[e(496)](r)}A instanceof Element&&tc(A);for(const t of ec(A,fa))tc(t);for(const t of ec(A,"["+Ra+"]"))tc(t);for(const r of ec(A,e(514)))if(r[e(485)]===e(510))try{const A=r[e(474)];A&&rc(A,t)}catch{}}
10
- /*! js-cookie v3.0.8 | MIT */function nc(A){for(var t=1;t<arguments.length;t++){var e=arguments[t];for(var r in e)"__proto__"!==r&&(A[r]=e[r])}return A}var sc=function A(t,e){function r(A,r,n){if("undefined"!=typeof document){"number"==typeof(n=nc({},e,n)).expires&&(n.expires=new Date(Date.now()+864e5*n.expires)),n.expires&&(n.expires=n.expires.toUTCString()),A=encodeURIComponent(A).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var o in n)n[o]&&(s+="; "+o,!0!==n[o]&&(s+="="+n[o].split(";")[0]));return document.cookie=A+"="+t.write(r,A)+s}}return Object.create({set:r,get:function(A){if("undefined"!=typeof document&&(!arguments.length||A)){for(var e=document.cookie?document.cookie.split("; "):[],r={},n=0;n<e.length;n++){var s=e[n].split("="),o=s.slice(1).join("=");try{var i=decodeURIComponent(s[0]);if(i in r||(r[i]=t.read(o,i)),A===i)break}catch(A){}}return A?r[A]:r}},remove:(A,t)=>{r(A,"",nc({},t,{expires:-1}))},withAttributes:function(t){return A(this.converter,nc({},this.attributes,t))},withConverter:function(t){return A(nc({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(e)},converter:{value:Object.freeze(t)}})}({read:A=>('"'===A[0]&&(A=A.slice(1,-1)),A.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)),write:A=>encodeURIComponent(A).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)},{path:"/"});(A=>{const t=cc,e=A();for(;;)try{if(297301==parseInt(t(311))/1+-parseInt(t(313))/2+parseInt(t(310))/3*(parseInt(t(316))/4)+-parseInt(t(323))/5*(-parseInt(t(320))/6)+-parseInt(t(312))/7*(-parseInt(t(314))/8)+parseInt(t(325))/9*(-parseInt(t(329))/10)+-parseInt(t(326))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(lc);let oc="";function ic(){return oc}function ac(A){return sc[cc(321)](A)}function cc(A,t){return A-=310,lc()[A]}function Bc(A,t){const e=cc,r=localStorage.getItem(sa),n=null===r?void 0:Number(r),s=typeof t===e(315)&&Number.isFinite(t)?t:typeof n===e(315)&&Number.isFinite(n)?n:2592e3,o=window.location.protocol===e(319);sc[e(322)](e(318),A,{expires:s/86400,path:"/",sameSite:e(327),...o&&{secure:!0}})}function lc(){const A=["remove","1557jnJFiV","3501344ZekLcB","Lax","randomUUID","12490TKGUcT","1049223nLSUSy","83387urTeoS","1131214OPQLrX","865018eKGUpa","24SxVmWG","number","4WVBzsN","granted","intent_sid","https:","230838joekHL","get","set","45kOfoqW"];return(lc=()=>A)()}function gc(){const A=cc;sc[A(324)](A(318),{path:"/"})}function hc(){const A=cc,t=ac(A(318));if(!(()=>{const A=cc;return localStorage.getItem(ji)===A(317)})())return t&&gc(),void(oc="");t?oc=t:(oc=crypto[A(328)](),Bc(oc))}(A=>{const t=Uc,e=A();for(;;)try{if(938707==-parseInt(t(499))/1+-parseInt(t(509))/2*(parseInt(t(487))/3)+parseInt(t(505))/4*(-parseInt(t(498))/5)+parseInt(t(510))/6*(parseInt(t(492))/7)+-parseInt(t(500))/8*(parseInt(t(496))/9)+-parseInt(t(481))/10+-parseInt(t(473))/11*(-parseInt(t(471))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(fc);let dc=!1,wc=!1,uc=!1,Qc=!1,pc=!1;function Cc(){return"enabled"===localStorage[Uc(501)]($i)}function Uc(A,t){return A-=468,fc()[A]}function fc(){const A=["4032300sbqggy","hostname","coords","now","number","addEventListener","201dGSkkT","heading","TIMEOUT","message","longitude","648998NKvGPm","canRequest","removeEventListener","code","621moqwST","deviceGeoSent","2273505sLUpwb","754286Dbpvgc","147272DcZeti","getItem","isFinite","speed","altitude","8GaUZSe","hasFocus","geolocation","query","1060wQnQkH","36oMsSxv","UNKNOWN","isSecureContext","timestamp","96mXdDPw","PERMISSION_DENIED","5163224cVNSqs","geoEnabled","latitude","getCurrentPosition","pointerdown","altitudeAccuracy","protocol","permissions"];return(fc=()=>A)()}function Fc(){dc=!1,uc=!1,pc=!1}function mc(){return!dc&&Cc()&&!Qc&&pc}const yc=bc;(A=>{const t=bc,e=A();for(;;)try{if(638030==-parseInt(t(164))/1*(-parseInt(t(170))/2)+-parseInt(t(131))/3+-parseInt(t(212))/4*(parseInt(t(165))/5)+-parseInt(t(143))/6+-parseInt(t(209))/7*(-parseInt(t(124))/8)+-parseInt(t(136))/9+parseInt(t(163))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(xc);let Ic,Hc=[],Ec=!1;function bc(A,t){return A-=120,xc()[A]}function xc(){const A=["5675299oUwukX","target","stopPropagation","2103476fpmavU","none","display",'\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Bounding Box:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">',"html","querySelector","\n\t\tmax-width: 100%;\n\t\tmax-height: calc(95vh - 60px);\n\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.2));\n\t","toLocaleTimeString","#intent-debug-close","textContent","#intent-debug-header","8KlVgfT","Click anywhere or press ESC to close","setAttribute","ignore","event","readyState","</pre>\n\t\t\t\t</div>\n\t\t\t</details>\n\t\t</div>\n\t","2021727IiNMBG",'\n\t\t<div style="\n\t\t\tbackground: var(--solomei-color-card, white);\n\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\t\tpadding: 10px;\n\t\t\tmargin-bottom: 8px;\n\t\t">\n\t\t\t<div style="\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\talign-items: center;\n\t\t\t\tmargin-bottom: 8px;\n\t\t\t\tpadding-bottom: 8px;\n\t\t\t\tborder-bottom: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t">\n\t\t\t\t<div style="\n\t\t\t\t\tfont-weight: var(--solomei-font-weight-semibold, 600);\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t">',"style","enabled","random","6672708zrukZx","createElement","addEventListener","200px","innerWidth","bbox",'\n\t\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>HTML:</strong></div>\n\t\t\t\t\t\t<pre style="\n\t\t\t\t\t\t\tmargin: 0 0 8px 0;\n\t\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\t\twhite-space: pre-wrap;\n\t\t\t\t\t\t\tword-break: break-word;\n\t\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t\t">',"3357726HOBIYx","body",'" \n\t\t\t\t\t\tclass="intent-debug-screenshot" \n\t\t\t\t\t\tstyle="\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t" \n\t\t\t\t\t\ttitle="Click to view fullscreen"/>\n\t\t\t\t\t<div style="\n\t\t\t\t\t\tcolor: var(--solomei-color-text-secondary, #979797);\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t\tmargin-top: 4px;\n\t\t\t\t\t">Screenshot (~',"clientY",'\n\t\t\t\t<div style="margin-bottom: 8px;">\n\t\t\t\t\t<img src="',"mouseup","loading","push","flex","length","timestamp","button","cssText","div","DOMContentLoaded","getBoundingClientRect","classList","img","innerHTML","right","20921880rVUgEq","24aXrSHz","5BzkfrQ"," KB)</div>\n\t\t\t\t</div>\n\t\t\t","#intent-debug-minimize","max","tagName","19658uRVxRg","left","join","#intent-debug-count","mousedown","now","#intent-debug-content","stringify","src","clientX","click","</pre>\n\t\t\t\t\t","intent-debug-screenshot","removeEventListener","appendChild","offsetHeight","#intent-debug-events","min","data:image/","innerHeight"," event","key","firstElementChild","BUTTON","undefined","width","map","randomUUID","contains","props","getItem",'\n\t\t<div id="intent-debug-panel" data-intent-redact="ignore" style="\n\t\t\tposition: fixed;\n\t\t\ttop: 20px;\n\t\t\tright: 20px;\n\t\t\twidth: 400px;\n\t\t\tmax-height: 80vh;\n\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.15));\n\t\t\tz-index: 2147483647;\n\t\t\tfont-family: var(--solomei-font-primary, -apple-system, BlinkMacSystemFont, \'Segoe UI\', sans-serif);\n\t\t\tfont-size: var(--solomei-font-size-base, 15px);\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t">\n\t\t\t<div id="intent-debug-header" style="\n\t\t\t\tbackground: var(--solomei-color-primary, #262626);\n\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\tpadding: 12px 15px;\n\t\t\t\tborder-radius: var(--solomei-radius-lg, 10px) var(--solomei-radius-lg, 10px) 0 0;\n\t\t\t\tcursor: move;\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\talign-items: center;\n\t\t\t\tuser-select: none;\n\t\t\t">\n\t\t\t\t<div style="font-weight: var(--solomei-font-weight-semibold, 600); font-size: 14px;">Intent SDK Debug</div>\n\t\t\t\t<div style="display: flex; gap: 8px;">\n\t\t\t\t\t<button id="intent-debug-minimize" style="\n\t\t\t\t\t\tbackground: transparent;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 4px);\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t">−</button>\n\t\t\t\t\t<button id="intent-debug-close" style="\n\t\t\t\t\t\tbackground: transparent;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 4px);\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t">×</button>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div id="intent-debug-content" style="\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\toverflow: hidden;\n\t\t\t\tflex: 1;\n\t\t\t">\n\t\t\t\t<div style="\n\t\t\t\t\tpadding: 12px 15px;\n\t\t\t\t\tborder-bottom: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t">\n\t\t\t\t\t<div style="font-weight: var(--solomei-font-weight-semibold, 600); color: var(--solomei-color-foreground, #212121); margin-bottom: 8px;">Event Log</div>\n\t\t\t\t\t<div style="display: flex; gap: 8px; align-items: center;">\n\t\t\t\t\t\t<button id="intent-debug-clear" style="\n\t\t\t\t\t\t\tbackground: var(--solomei-color-primary, #262626);\n\t\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\t\tpadding: 6px 12px;\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-button, 20px);\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t\t\tfont-weight: var(--solomei-font-weight-regular, 500);\n\t\t\t\t\t\t">Clear</button>\n\t\t\t\t\t\t<span id="intent-debug-count" style="color: var(--solomei-color-text-secondary, #979797); font-size: 12px;">0 events</span>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div id="intent-debug-events" style="\n\t\t\t\t\tflex: 1;\n\t\t\t\t\toverflow-y: auto;\n\t\t\t\t\tpadding: 10px;\n\t\t\t\t">\n\t\t\t\t\t<div style="color: var(--solomei-color-muted-foreground, #979797); text-align: center; padding: 20px;">\n\t\t\t\t\t\tNo events captured yet. Interact with the page to see events.\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t',"Escape","top","intent-debug-fullscreen-modal","0 events","disabled","round","data-intent-redact"];return(xc=()=>A)()}function vc(){const A=bc;if(!Ic)return;const t=Ic[A(217)](A(186)),e=Ic[A(217)](A(173));if(!t||!e)return;if(0===Hc[A(152)])return t[A(161)]='\n\t\t\t<div style="color: var(--solomei-color-muted-foreground, #979797); text-align: center; padding: 20px;">\n\t\t\t\tNo events captured yet. Interact with the page to see events.\n\t\t\t</div>\n\t\t',void(e.textContent=A(205));const r=[...Hc].reverse();t[A(161)]=r[A(196)](A=>(A=>{const t=bc,e=new Date(A[t(153)])[t(120)](),r=A[t(160)]&&A[t(160)].length>0,n=r?Math[t(207)](.75*A[t(160)][t(152)]/1024):0,s=Ea(A[t(128)]),o=Ea(JSON[t(177)](A[t(199)],null,2)),i=Ea(A[t(216)]),a=Ea(JSON.stringify(A[t(141)],null,2));return t(132)+s+'</div>\n\t\t\t\t<div style="\n\t\t\t\t\tcolor: var(--solomei-color-text-secondary, #979797);\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t">'+e+"</div>\n\t\t\t</div>\n\t\t\t"+(r?t(147)+A.img+t(145)+n+t(166):"")+'\n\t\t\t<details style="margin-top: 8px;">\n\t\t\t\t<summary style="\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tfont-weight: var(--solomei-font-weight-regular, 500);\n\t\t\t\t\tuser-select: none;\n\t\t\t\t">View Details</summary>\n\t\t\t\t<div style="\n\t\t\t\t\tmargin-top: 8px;\n\t\t\t\t\tpadding: 8px;\n\t\t\t\t\tbackground: var(--solomei-color-secondary, #fafaf9);\n\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t">\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Properties:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0 0 8px 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\twhite-space: pre-wrap;\n\t\t\t\t\t\tword-break: break-word;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">'+o+"</pre>\n\t\t\t\t\t"+(A.html?t(142)+i+t(181):"")+t(215)+a+t(130)})(A))[A(172)](""),e[A(122)]=Hc[A(152)]+A(190)+(1===Hc[A(152)]?"":"s")}function Kc(){const A=bc;if(Ic)return void(Ic[A(133)][A(214)]=A(151));const t=document[A(137)](A(156));t[A(161)]=bc(201),Ic=t[A(192)],document[A(144)][A(184)](Ic);const e=Ic.querySelector(A(121)),r=Ic[A(217)](A(167)),n=Ic[A(217)]("#intent-debug-clear");e?.[A(138)]("click",()=>{!function(A){const t=bc;try{localStorage.setItem(ta,A?"enabled":t(206)),A?Kc():(()=>{const A=bc;Ic&&(Ic[A(133)][A(214)]="none")})()}catch{}}(!1)}),r?.addEventListener(A(180),()=>{(()=>{const A=bc;if(!Ic)return;const t=Ic.querySelector(A(176)),e=Ic[A(217)]("#intent-debug-minimize");t&&e&&(Ec=!Ec,Ec?(t[A(133)][A(214)]=A(213),Ic.style[A(195)]=A(139),e[A(122)]="+"):(t[A(133)][A(214)]="flex",Ic.style.width="400px",e.textContent="−"))})()}),n?.[A(138)](A(180),()=>{Hc=[],vc()}),(()=>{const A=bc;if(!Ic)return;const t=Ic.querySelector(A(123));if(!t)return;let e=!1,r=0,n=0,s=0,o=0;t[A(138)](A(174),t=>{const r=A;if(t[r(210)][r(169)]===r(193))return;e=!0;const n=Ic[r(158)]();s=t[r(179)]-n[r(171)],o=t[r(146)]-n[r(203)]}),document[A(138)]("mousemove",t=>{const i=A;if(!e||!Ic)return;t.preventDefault(),r=t[i(179)]-s,n=t[i(146)]-o;const a=window[i(140)]-Ic.offsetWidth,c=window[i(189)]-Ic[i(185)];r=Math[i(168)](0,Math.min(r,a)),n=Math.max(0,Math[i(187)](n,c)),Ic[i(133)][i(171)]=r+"px",Ic.style.top=n+"px",Ic[i(133)][i(162)]="auto"}),document.addEventListener(A(148),()=>{e=!1})})(),Ic[A(138)](A(180),t=>{const e=A,r=t[e(210)];if(r[e(159)][e(198)](e(182))){const A=r;A.src&&A[e(178)].startsWith(e(188))&&(A=>{const t=bc,e=document[t(137)]("div");e.id=t(204),e[t(126)](t(208),t(127)),e.style[t(155)]="\n\t\tposition: fixed;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tbackground: rgba(0, 0, 0, 0.95);\n\t\tz-index: 2147483646;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\tcursor: zoom-out;\n\t";const r=document.createElement("div");r[t(133)][t(155)]="\n\t\tmax-width: 95%;\n\t\tmax-height: 95%;\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\talign-items: center;\n\t";const n=document[t(137)](t(160));n[t(178)]=A,n.style.cssText=t(218);const s=document[t(137)](t(156));s[t(133)][t(155)]="\n\t\tmargin-top: 20px;\n\t\tdisplay: flex;\n\t\tgap: 20px;\n\t\talign-items: center;\n\t";const o=document[t(137)](t(154));o[t(122)]="✕ Close",o.style.cssText="\n\t\tpadding: 12px 24px;\n\t\tbackground: var(--solomei-color-primary-button-background, #262626);\n\t\tcolor: var(--solomei-color-primary-button-color, white);\n\t\tborder: none;\n\t\tborder-radius: var(--solomei-radius-button, 20px);\n\t\tfont-size: 14px;\n\t\tfont-weight: var(--solomei-font-weight-semibold, 600);\n\t\tcursor: pointer;\n\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.15));\n\t";const i=document.createElement("div");i.textContent=t(125),i[t(133)][t(155)]="\n\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\tfont-size: 13px;\n\t",s.appendChild(o),s[t(184)](i),r[t(184)](n),r[t(184)](s),e[t(184)](r);const a=()=>{const A=t;e.remove(),document[A(183)]("keydown",c)};e[t(138)](t(180),a),o.addEventListener(t(180),A=>{A[t(211)](),a()}),n[t(138)](t(180),A=>{A.stopPropagation()});const c=A=>{const e=t;A[e(191)]===e(202)&&a()};document[t(138)]("keydown",c),document[t(144)].appendChild(e)})(A[e(178)])}}),vc()}function Lc(){var A=["3083514feeZqZ","292458kkESQy","undefined","Use the debug build variant: @solomei-ai/intent/debug or intent.debug.umd.min.js","710932dJOaVh","104xQTjXi","1336977NtronN","logEventToDebugPanel","warn","493598wtlzpI","2sAwmeg","5VplAwJ","568030WZwBnG","319rmpNaY","715172sPxthA"];return(Lc=()=>A)()}function Sc(A,t){return A-=239,Lc()[A]}function Dc(){const A=["delete","1180180XeoLgA","kind","visibleSince","size","intersecting","now","generation","124kZraso","reconcile","[Ledger] abandoned an extraction pass the ledger was cleared under","rect","603720VMnQZu","632PQwaDO","[Ledger] extraction failed for ","dwellMs","node","visible","fingerprint","entries","ref","round","scheduleIdle","registered","closeDwell","2096658BQfPon","getOnScreen","has","options","ratio","registerVisible","log","digest","7136LMYjWu","set","length","[Ledger] dropped ","3699LTINrH","322QdNbEA","[Ledger] ","extract","push","values","get","25430aujicx","add","237560IItbqM","clear","pendingRegistrations"," registrations the ledger no longer describes"];return(Dc=()=>A)()}"undefined"!=typeof window&&function(){const A=bc;try{return localStorage[A(200)](ta)===A(134)}catch{return!1}}()&&(document[yc(129)]===yc(149)?document[yc(138)](yc(157),()=>{Kc()}):Kc()),Symbol,(A=>{for(var t=Sc,e=A();;)try{if(632076==parseInt(t(247))/1+parseInt(t(253))/2*(parseInt(t(243))/3)+-parseInt(t(242))/4*(parseInt(t(239))/5)+-parseInt(t(244))/6+parseInt(t(252))/7*(parseInt(t(248))/8)+-parseInt(t(249))/9+parseInt(t(240))/10*(-parseInt(t(241))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Lc);const Mc=Tc;function Tc(A,t){return A-=269,Dc()[A]}(A=>{const t=Tc,e=A();for(;;)try{if(212926==parseInt(t(313))/1+parseInt(t(280))/2*(parseInt(t(304))/3)+-parseInt(t(275))/4*(parseInt(t(311))/5)+-parseInt(t(279))/6+parseInt(t(305))/7*(-parseInt(t(300))/8)+-parseInt(t(292))/9+parseInt(t(318))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Dc);const kc={x:0,y:0,w:0,h:0};class Oc{[Mc(295)];[Mc(286)]=new Map;[Mc(315)]=[];[Mc(274)]=0;constructor(A){this[Mc(295)]=A}get size(){return this[Mc(286)].size}[Mc(310)](A){const t=Mc;return this[t(286)][t(310)](A)}[Mc(309)](){const A=Mc;return this[A(286)][A(309)]()}[Mc(276)](A,t){const e=Mc,r=new Set,n=[],s=[];for(const{node:t,kind:s,fingerprint:o}of A){r[e(312)](t);const A=this.entries.get(t);A?A.fingerprint!==o&&(A[e(285)]=o,A[e(269)]=s,A[e(290)]=!1,A[e(299)]=void 0):(this.entries[e(301)](t,{node:t,kind:s,intersecting:!1,visible:!1,ratio:0,rect:{...kc},dwellMs:0,registered:!1,fingerprint:o}),n[e(308)](t))}for(const[A,n]of this[e(286)])r[e(294)](A)&&(t?.(A)??1)||(this[e(291)](n),this[e(286)][e(317)](A),s[e(308)](A));return this[e(295)][e(298)]?.(e(306)+this[e(286)][e(271)]+" segments tracked"),{added:n,removed:s}}setGeometry(A,t){const e=Mc,r=this[e(286)].get(A);r&&(r.intersecting=t[e(272)],r[e(296)]=t[e(296)],r[e(278)]=t.rect)}refreshVisibility(A){const t=Mc,e=this[t(295)].now();for(const r of this.entries.values()){if(!r.intersecting){this[t(291)](r,e),r[t(284)]=!1;continue}const n=A?.(r[t(283)])??!0;n&&void 0===r.visibleSince?r.visibleSince=e:!n&&this.closeDwell(r,e),r[t(284)]=n}}async[Mc(297)](){const A=Mc,t=this[A(274)],e=[];for(const t of this[A(286)].values())t.visible&&!t[A(290)]&&e[A(308)](t);if(0===e[A(302)])return;for(const t of e)t[A(290)]=!0;let r,n=0;for(const s of e)try{if(await this.options[A(289)](),t!==this.generation)return void this[A(295)].log?.(A(277));const e=this.options[A(307)](s[A(283)],s[A(269)]);e&&(s[A(299)]=e,this[A(315)][A(308)](e))}catch(t){s[A(290)]=!1,n++,r=t}n>0&&this.options[A(298)]?.(A(281)+n+"/"+e[A(302)]+" segments: "+String(r))}[Mc(293)](){const A=Mc,t=this[A(295)][A(273)](),e=new Map;for(const r of this.entries.values()){if(!r[A(284)]||!r[A(299)])continue;const n=void 0===r[A(270)]?0:t-r[A(270)],s={ref:r[A(299)][A(287)],ratio:Math[A(288)](100*r[A(296)])/100,dwellMs:Math[A(288)](r[A(282)]+n),rect:r.rect},o=e.get(s[A(287)]);(!o||s[A(282)]>o[A(282)])&&e[A(301)](s.ref,s)}return[...e[A(309)]()]}drainRegistrations(){const A=Mc,t=new Set;for(const e of this[A(286)].values())e[A(299)]&&t[A(312)](e.digest.ref);const e=new Set,r=[];let n=0;for(const s of this[A(315)])e[A(294)](s[A(287)])||(t[A(294)](s.ref)?(e[A(312)](s[A(287)]),r.push(s)):n++);return this[A(315)]=[],n>0&&this.options.log?.(A(303)+n+A(316)),r}getCoverage(){const A=Mc;let t=0,e=0;for(const r of this[A(286)][A(309)]())r[A(284)]&&t++,r.digest&&e++;return{segments:this.entries[A(271)],onScreen:t,registered:e}}[Mc(314)](){const A=Mc;this.entries[A(314)](),this[A(315)]=[],this[A(274)]++}[Mc(291)](A,t=this[Mc(295)][Mc(273)]()){const e=Mc;void 0!==A.visibleSince&&(A[e(282)]+=t-A.visibleSince,A[e(270)]=void 0)}}function Rc(A,t){return A-=408,Nc()[A]}(A=>{const t=Rc,e=A();for(;;)try{if(140905==-parseInt(t(427))/1+parseInt(t(438))/2+-parseInt(t(408))/3+parseInt(t(439))/4+-parseInt(t(416))/5*(-parseInt(t(414))/6)+-parseInt(t(411))/7*(-parseInt(t(415))/8)+-parseInt(t(413))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Nc);const Vc={maxSegments:300,maxDepth:24,maxTextLength:1200,maxHeadings:1,maxInteractives:8,minTextLength:12,minDescentCoverage:.67};function Nc(){const A=["ownText","leaf","parent","marked","isUnit","isInteractive","interactives","length","textLength","contentHash","403404vZyLnw","1034284hWkPUm","children","heading","772638TVUtis","isSkipped","maxInteractives","29897BsStSO","maxTextLength","1798965jkEGrg","198EavRyZ","376nhXGvs","14285hQPauj","unit","maxHeadings","repeated","headings","get","mixDigestAttributes","minTextLength","set","push","signature","156955IhrwLs"];return(Nc=()=>A)()}const Gc=Pc;function Pc(A,t){return A-=473,Xc()[A]}function Xc(){const A=["row","startsWith","BLOCKQUOTE","option","155YiNZDN","gridcell","data-intent-redact","onclick","role","type","has","LABEL","aria-label","data:","hidden","searchbox","contenteditable:","children","IFRAME","redact:","tab","hasAttribute","SELECT","join","length","4923BIMDEq","menuitem","treeitem","slider","TEMPLATE","5943820XywBnT","aria-labelledby","TITLE","AREA","TEXTAREA","SUMMARY","data-html2canvas-ignore","12lwUUvT","14071431OioYfQ","href","291szfgHh","textbox","4HvOfBj","META","SCRIPT","toLowerCase","2768idiBBv","getAttribute","data-intent-redact-label","radio","from","BUTTON","AUDIO","redact:ignore-legacy","checkbox","currentSrc","FIGURE","12748tpxdfA","true","NOSCRIPT","STYLE","switch","DETAILS","VIDEO","listitem","SECTION","IMG","svg","HEAD","contenteditable","ARTICLE","37482ypGIHh","3667664EOqSUd","116078cQypwJ","combobox","nodeType","src","tagName"];return(Xc=()=>A)()}(A=>{const t=Pc,e=A();for(;;)try{if(299015==-parseInt(t(478))/1*(parseInt(t(509))/2)+-parseInt(t(476))/3*(-parseInt(t(493))/4)+-parseInt(t(518))/5*(-parseInt(t(507))/6)+parseInt(t(508))/7+parseInt(t(482))/8*(parseInt(t(539))/9)+parseInt(t(544))/10+-parseInt(t(474))/11*(parseInt(t(473))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Xc);const Jc=new Set([Gc(480),Gc(496),Gc(495),Gc(543),Gc(504),Gc(479),"LINK",Gc(546),"BR","HR",Gc(532),"CANVAS",Gc(503)]),Wc=new Set([Gc(506),Gc(501),"LI",Gc(492),Gc(516),"TR","DD",Gc(498)]),Yc=new Set(["article",Gc(500),Gc(517),Gc(514),Gc(519),Gc(534),Gc(541),"card"]),Zc=new Set(["H1","H2","H3","H4","H5","H6"]),zc=new Set(["A",Gc(487),"INPUT",Gc(536),"TEXTAREA",Gc(549),Gc(525),Gc(499),Gc(488)]),_c=new Set(["button","link","option",Gc(534),Gc(490),Gc(485),Gc(497),Gc(540),Gc(477),Gc(510),Gc(529),Gc(542)]),qc=[Gc(526),Gc(545),"title",Gc(522)],jc=Gc(520),$c=Gc(484),AB=Gc(550),tB=[Gc(523),"autocomplete"],eB={children:A=>A[Gc(531)],parent:A=>A.parentElement??void 0,ownText(A){const t=Gc;let e="";for(const r of A.childNodes)if(3===r[t(511)]){const A=(r.textContent??"").trim();A&&(e+=A)}return e},kind:A=>A[Gc(513)],isSkipped(A){const t=Gc;return!!Jc.has(A[t(513)])||A.hasAttribute(t(528))||A.getAttribute("aria-hidden")===t(494)},isUnit(A){const t=Gc;if(Wc.has(A[t(513)]))return!0;const e=A.getAttribute("role")?.[t(481)]();return Boolean(e&&Yc[t(524)](e))},isHeading:A=>Zc.has(A[Gc(513)]),isInteractive(A){const t=Gc;if(zc[t(524)](A[t(513)]))return!0;const e=A[t(483)](t(522))?.[t(481)]();return!(!e||!_c[t(524)](e))||A[t(535)](t(521))||A[t(535)](t(475))},isMarked:A=>A.hasAttribute("data-intent-item"),signature(A){const t=Gc,e=Array[t(486)](A.classList).sort()[t(537)](".");return A[t(513)]+"#"+e},mixDigestAttributes(A,t){const e=Gc;let r=A;const n=t.tagName;for(const A of qc){const n=t[e(483)](A);n&&(r=ha(r,A+":"+n))}const s=t[e(483)](jc);if(null!==s){r=ha(r,e(533)+s);const A=t[e(483)]($c);A&&(r=ha(r,A))}t[e(535)](AB)&&(r=ha(r,e(489)));const o=t[e(483)](e(505));if(null!==o&&(r=ha(r,e(530)+o)),"INPUT"===n||n===e(548)||n===e(536))for(const A of tB){const n=t[e(483)](A);null!==n&&(r=ha(r,A+":"+n))}if("A"===n||n===e(547)){const A=t[e(483)](e(475));A&&(r=ha(r,A))}else if(n===e(502)){const A=t[e(483)]("alt");A&&(r=ha(r,A));const n=t[e(491)]||t[e(483)](e(512));n&&(r=n[e(515)](e(527))?da(r,n[e(538)]):ha(r,n))}return r}};function rB(){const A=["39387NjqskY","30BvnAgR","1098970jePybg","map","name","length","actions","974611YtSBYN","kind","trim","fieldValue","label","push","68QfhMNL","alt","66hyohGz","type","heading","role","href","27mcOBgw","src","value","104038RfCqwu","35273riWAJR","83656edtPjn","643630TBnsuu","slice","images"];return(rB=()=>A)()}(A=>{const t=aB,e=A();for(;;)try{if(180709==parseInt(t(377))/1+parseInt(t(380))/2+parseInt(t(383))/3*(-parseInt(t(367))/4)+parseInt(t(385))/5+parseInt(t(369))/6*(parseInt(t(378))/7)+-parseInt(t(379))/8*(parseInt(t(374))/9)+parseInt(t(384))/10*(-parseInt(t(390))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(rB);const nB={text:400,actions:12,images:6,label:80,heading:120,fields:30,fieldValue:300};function sB(A,t){const e=aB;return A?A.replace(/\s+/g," ")[e(392)]()[e(381)](0,t):""}function oB(...A){const t=aB;let e="";for(const r of A)e+=r[t(388)]+":"+r;return e}function iB(A,t,e,r,n){const s=aB,o=oB(...r.map(A=>oB(A.label,A[s(372)]??"",A[s(373)]??""))),i=oB(...n[s(386)](A=>oB(A[s(368)]??"",A[s(375)]??"")));return(A=>{const t=Ba;let e="";for(const{seed:r,prime:n}of wa){let s=r>>>0;for(let e=0;e<A.length;e++){const r=A[t(460)](e);s=Math.imul(s^255&r,n)>>>0,s=Math[t(454)](s^r>>>8,n)>>>0}e+=s[t(456)](36).padStart(7,"0")}return e})(oB(A,t,e,o,i))}function aB(A,t){return A-=366,rB()[A]}const cB=pB;(A=>{const t=pB,e=A();for(;;)try{if(556267==-parseInt(t(493))/1*(parseInt(t(521))/2)+parseInt(t(510))/3+-parseInt(t(461))/4+-parseInt(t(472))/5*(-parseInt(t(476))/6)+-parseInt(t(463))/7+-parseInt(t(516))/8*(parseInt(t(514))/9)+parseInt(t(466))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(wB);const BB=cB(500),lB=cB(518);function gB(A,t=nB.text){const e=cB;if(Ja(A))return"";if(Ya(A))return sB(Za(A),t);const r=[];let n=t;const s=A=>{const t=pB;r.at(-1)!==A&&(r[t(467)](A),n-=A[t(486)])},o=A=>{const t=pB;if(!(n<=0||Ga(A))){if(ma(A)){const e=sB(Ac(A)?Na(A):Ha(A),n);return void(e&&(r[t(467)](e),n-=e.length))}if(Xa(A)){const e=sB(Na(A),n);return void(e&&(r[t(467)](e),n-=e[t(486)]))}for(const e of A[t(458)]){if(n<=0)return;if(e[t(513)]===Node.TEXT_NODE){const A=sB(e[t(512)],n);A&&s(A)}else e.nodeType===Node[t(455)]&&o(e)}}};return o(A),r[e(484)](" ")[e(523)](0,t)}const hB=new Set([cB(496),cB(509),cB(473),cB(494),cB(470),"file"]);function dB(A){const t=cB,e=A[t(507)](!0);for(const A of e[t(482)]("input, textarea, select, button, option"))A[t(505)]();return sB(e[t(512)],nB[t(483)])}function wB(){const A=["labels","href","remove","map","cloneNode","INPUT","button","23547RzRwKp","value","textContent","nodeType","54LOWWiO","text","478096Qggxqc","querySelector",'a[href], button, [role="button"], [role="link"], [role="option"], [role="tab"], input[type="submit"], input[type="button"]',"startsWith","from","838eVNJfd","toLowerCase","slice","ELEMENT_NODE","TEXTAREA","checkbox","childNodes","src","images","2180028IKLJlX","BUTTON","5414073jiASoG","closest","filter","23110630RBgLAz","push","alt","checked","hidden","matches","2065QaYAFP","reset","type","blob:","5598saImdn","tagName","name","actions","radio","disabled","querySelectorAll","label","join","link","length","aria-labelledby","role","getAttribute","aria-label","ownerDocument","SELECT","1124AhDCbs","image","find","submit","placeholder","has","trim",'h1, h2, h3, h4, h5, h6, [role="heading"]',"elements","heading"];return(wB=()=>A)()}function uB(A){const t=cB,e=sB(A.getAttribute("aria-label"),nB[t(483)]);if(e)return e;const r=A[t(503)]?.[0];if(r){const A=dB(r);if(A)return A}const n=A[t(464)](t(483));if(n){const A=dB(n);if(A)return A}return sB(A[t(489)](t(497)),nB[t(483)])}function QB(A,t){const e=cB;if(za(A))return Za(A);if(t===e(457)||t===e(480))return A[e(469)]?"checked":"unchecked";if("SELECT"===A[e(477)]){const t=A;return t.selectedOptions?.[0]?.textContent??t[e(511)]}return Ha(A)}function pB(A,t){return A-=455,wB()[A]}function CB(A){const t=cB;if(Ja(A))return"";if(Ya(A))return Za(A);const e=sB(A[t(489)](t(490)),nB[t(483)]);if(e)return e;const r=A.getAttribute(t(487));if(r){const e=r.split(/\s+/)[t(506)](e=>A[t(491)].getElementById(e))[t(465)](Boolean)[t(506)](A=>gB(A,nB[t(483)]))[t(484)](" ");if(e[t(499)]())return sB(e,nB.label)}const n=sB(A[t(489)]("title"),nB.label);if(n)return n;const s=gB(A,nB[t(483)]);if(s)return s;const o=A[t(517)]("img[alt]");return sB(o?.[t(489)]("alt"),nB[t(483)])}function UB(A){const t=cB,e=A.currentSrc||A[t(459)]||"";if(e&&!e.startsWith("data:")&&!e[t(519)](t(475)))return e[t(486)]>512?void 0:e}function fB(A){const t=cB,e=A[t(489)](t(488))?.[t(522)]();return e||("A"===A[t(477)]?t(485):A[t(477)]===t(462)||A[t(477)]===t(508)?t(509):A.tagName[t(522)]())}function FB(A,t){return A-=217,IB()[A]}let mB;function yB(){if(!mB)throw new Error("[intent] No platform host installed. Import @solomei-ai/intent (web) or @solomei-ai/intent/native before use.");return mB}function IB(){const A=["2377773vPbCsw","8CrdBqD","920OZnYjC","1411362ElorYu","386474QIfADx","2513154fsKAZS","8903708wYVnuT","556890vNmdJT","10oWjvEf","2tkyzUB","2764LFSopB"];return(IB=()=>A)()}(A=>{const t=FB,e=A();for(;;)try{if(224066==-parseInt(t(221))/1+-parseInt(t(226))/2*(parseInt(t(224))/3)+parseInt(t(227))/4*(parseInt(t(219))/5)+-parseInt(t(220))/6+parseInt(t(222))/7+-parseInt(t(218))/8*(parseInt(t(217))/9)+parseInt(t(225))/10*(parseInt(t(223))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(IB);const HB=xB;(A=>{const t=xB,e=A();for(;;)try{if(868497==-parseInt(t(386))/1*(parseInt(t(385))/2)+-parseInt(t(368))/3+parseInt(t(370))/4*(-parseInt(t(387))/5)+-parseInt(t(366))/6+parseInt(t(372))/7*(parseInt(t(383))/8)+-parseInt(t(388))/9*(-parseInt(t(369))/10)+parseInt(t(374))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(LB);let EB=!1;const bB={get(A){const t=xB;try{return localStorage[t(367)](A)??void 0}catch{return}},set(A,t){const e=xB;try{localStorage[e(365)](A,t)}catch{}},remove(A){const t=xB;try{localStorage[t(379)](A)}catch{}}};function xB(A,t){return A-=362,LB()[A]}const vB={platform:"web",now:()=>performance[HB(378)](),wallClock:()=>Date[HB(378)](),storage:bB,send:async(A,t,{beacon:e,byteLength:r})=>{const n=xB;if(e)return((A,t)=>{const e=xB;if(typeof navigator.sendBeacon!==e(384))return!1;try{return navigator[e(380)](A,new Blob([t],{type:e(364)}))}catch{return!1}})(A,t);const s=await(async A=>{const t=xB,e=globalThis[t(363)];if(EB&&typeof e===t(384))try{const r=new Blob([A])[t(373)]()[t(390)](new e(t(377)));return await new Response(r)[t(375)]()}catch{return}})(t),o={"Content-Type":n(364)},i=bB[n(362)](ea);i&&(o[n(389)]=i);const a=ic();a&&(o["x-intent-sid"]=a),s&&(o[n(381)]=n(377));const c=await fetch(A,{method:"POST",headers:o,body:s??t,keepalive:r<=6e4,credentials:"omit"});return!c.ok&&vB[n(371)]("[Transport] batch rejected with "+c.status),c.ok},scheduleIdle:async()=>{const A=Ia,{scheduler:t}=globalThis;if(t&&"function"==typeof t[A(420)])try{return void await t[A(420)](()=>{},{priority:A(410)})}catch{}typeof requestIdleCallback!==A(409)?await new Promise(A=>{setTimeout(A,0)}):await new Promise(A=>{requestIdleCallback(()=>{A()},{timeout:200})})},log(...A){const t=HB;try{typeof localStorage!==t(382)&&localStorage[t(367)](Aa)===t(376)&&console.log(...A)}catch{}}};function KB(){void 0===mB&&(mB=vB)}function LB(){const A=["40885YbYfvL","1314WnYVZg","x-sl-access-token","pipeThrough","get","CompressionStream","application/json","setItem","8609670udroIU","getItem","3400686ATlIIB","71810cBvlQm","12GpvoNV","log","7nqgkeR","stream","23431628JvtQHI","blob","enabled","gzip","now","removeItem","sendBeacon","Content-Encoding","undefined","5216984BWXSSx","function","738324KEHcHR","1JGdSbO"];return(LB=()=>A)()}const SB=Al;function DB(){const A=["parentElement","contenteditable","alt","3304bfVWWM","setGeometry","data-intent-redact-label","registerVisible","56645tRchbk","addEventListener","729372ylIXvv","round","29CqxPmH","scheduleIdle","then","unobserve","srcset","1323196SyUyWT","checkVisibility","clear","target","getOnScreen","25991810nXuqZa","isConnected","reconcile","title","removeEventListener","boundingClientRect","1625508eVKBJr","resegmentDebounceMs","resegmentMaxDelayMs","log","16584vEJCYg","aria-labelledby","resize","race","data-intent-redact","DOMContentLoaded","getCoverage","role","segmentOptions","src","map","observe","isIntersecting","type","now","20178UrYzOr","body","disconnect","function","intersectionRatio","prototype","336Kzqunr"];return(DB=()=>A)()}(A=>{const t=Al,e=A();for(;;)try{if(691502==-parseInt(t(298))/1*(parseInt(t(318))/2)+-parseInt(t(314))/3+parseInt(t(303))/4+-parseInt(t(294))/5*(parseInt(t(339))/6)+parseInt(t(296))/7+-parseInt(t(290))/8*(parseInt(t(333))/9)+parseInt(t(308))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(DB);const MB={visibilityIntervalMs:500,resegmentDebounceMs:700,resegmentMaxDelayMs:1500,segmentOptions:{}},TB=new Oc({now:()=>performance[SB(332)](),extract:(A,t)=>function(A,t){const e=cB;if(Ja(A))return;const r=Ya(A)?void 0:A.matches(BB)?A:[...A[e(482)](BB)][e(495)](A=>!Ja(A)&&!Ya(A)),n=r?sB(gB(r,nB[e(502)]),nB[e(502)]):"",s=[],o=A[e(471)](lB)?[A]:[...A.querySelectorAll(lB)];for(const A of o){if(s[e(486)]>=nB[e(479)])break;if(Ja(A))continue;if(Ya(A)){s[e(467)]({label:Za(A),role:fB(A)});continue}const t=CB(A);if(!t)continue;const r=A[e(489)](e(504))??void 0;s.push({label:t,role:fB(A),...r?{href:r}:{}})}const i=[];for(const t of A[e(482)]("img")){if(i[e(486)]>=nB[e(460)])break;if(Ja(t)||Ya(t))continue;const A=sB(t.getAttribute(e(468)),nB[e(483)]),r=UB(t);(A||r)&&i[e(467)]({...A?{alt:A}:{},...r?{src:r}:{}})}return(A=>{const t=aB,e=sB(A[t(371)],nB[t(371)]),r=sB(A.text,nB.text),n=[];for(const e of A.actions??[]){if(n[t(388)]>=nB[t(389)])break;const A=sB(e.label,nB[t(394)]);A&&n[t(366)]({label:A,role:e[t(372)],...e[t(373)]?{href:e[t(373)]}:{}})}const s=[];for(const e of A[t(382)]??[]){if(s[t(388)]>=nB.images)break;const A=sB(e[t(368)],nB[t(394)]),{src:r}=e;(A||r)&&s[t(366)]({...A?{alt:A}:{},...r?{src:r}:{}})}if(r||e||0!==n[t(388)]||0!==s.length)return{ref:iB(A[t(391)],e,r,n,s),kind:A[t(391)],...e?{heading:e}:{},text:r,actions:n,images:s}})({kind:t,heading:n,text:gB(A),actions:s,images:i})}(A,t),scheduleIdle:()=>vB[SB(299)](),log:A=>{vB[SB(317)](A)}});let kB,OB,RB,VB,NB,GB,PB,XB=MB,JB=!1;function WB(){GB?.(),GB=void 0}async function YB(A=2e3){const t=SB;PB&&await Promise[t(321)]([PB,new Promise(t=>{setTimeout(t,A)})])}function ZB(){const A=SB,t=(()=>{const A=SB;return typeof Element[A(338)][A(304)]===A(336)})();TB.refreshVisibility(e=>!t||e[A(304)]({opacityProperty:!0,visibilityProperty:!0,contentVisibilityAuto:!0}))}function zB(){const A=SB;ZB(),TB.registerVisible()[A(300)](WB)}function _B(A){const t=SB;for(const e of A){const{x:A,y:r,width:n,height:s}=e[t(313)];TB[t(291)](e[t(306)],{intersecting:e[t(330)],ratio:e[t(337)],rect:{x:Math[t(297)](A),y:Math[t(297)](r),w:Math[t(297)](n),h:Math[t(297)](s)}})}zB()}function qB(){const A=SB;if(!kB)return;const t=((A,t={})=>function(A,t,e={}){const r=Rc,n={...Vc,...e},s=((A,t)=>{const e=new Map,r=A=>{const n=Rc,s=t[n(428)](A),o={textLength:s[n(435)],headings:t.isHeading(A)?1:0,interactives:t[n(433)](A)?1:0,contentHash:t[n(422)](ha(ha(ca,s),t.kind(A)),A)};for(const e of t[n(440)](A)){if(t[n(409)](e))continue;const A=r(e);o[n(436)]+=A.textLength,o.headings+=A[n(420)],o[n(434)]+=A[n(434)],o.contentHash=da(o[n(437)],A[n(437)])}return e[n(424)](A,o),o};return r(A),e})(A,t),o=[],i=A=>s[r(421)](A)??{textLength:0,headings:0,interactives:0,contentHash:ca},a=(A,t)=>{const e=r,n=i(A);o[e(425)]({node:A,reason:t,textLength:n[e(436)],interactives:n.interactives,headings:n[e(420)],contentHash:n[e(437)]})},c=A=>{const t=r,e=i(A);return e[t(434)]>0||e[t(436)]>=n[t(423)]},B=(A,e)=>{const s=r;if(o[s(435)]>=n.maxSegments||t[s(409)](A))return!1;if(t.isMarked(A))return a(A,s(431)),!0;const l=i(A);if(e>=n.maxDepth)return!!c(A)&&(a(A,"depth"),!0);if(l[s(436)]<=n[s(412)]&&l[s(420)]<=n[s(418)]&&l.interactives<=n[s(410)]&&c(A)){if(t[s(432)](A))return a(A,s(417)),!0;if(((A,t)=>{const e=Rc,r=t[e(430)](A);if(void 0===r)return!1;const n=t[e(426)](A);let s=0;for(const A of t[e(440)](r))if(t[e(426)](A)===n&&(s++,s>=3))return!0;return!1})(A,t))return a(A,s(419)),!0;if(l[s(420)]>0)return a(A,s(441)),!0}const g=o.length;let h=!1;for(const r of t[s(440)](A))h=B(r,e+1)||h;return!h&&c(A)?(a(A,s(429)),!0):h&&l[s(436)]>0&&o.slice(g).reduce((A,t)=>A+t[s(436)],0)/l.textLength<n.minDescentCoverage&&c(A)?(o.length=g,a(A,"unit"),!0):h};for(const e of t[r(440)](A))B(e,0);return o}(A,eB,t))(document[A(334)],XB[A(326)]),{added:e,removed:r}=TB[A(310)](t[A(328)](({node:A,reason:t,contentHash:e})=>({node:A,kind:t,fingerprint:e})),t=>t[A(309)]);for(const t of e)kB[A(329)](t);for(const t of r)kB[A(301)](t)}function jB(){const A=SB;return void 0!==VB&&(clearTimeout(VB),VB=void 0),NB=void 0,vB[A(299)]()[A(300)](qB)}function $B(){const A=SB,t=performance[A(332)]();NB??=t,t-NB>=XB.resegmentMaxDelayMs?jB():(void 0!==VB&&clearTimeout(VB),VB=setTimeout(jB,XB[A(315)]))}function Al(A,t){return A-=290,DB()[A]}function tl(){return JB&&void 0!==NB?jB():Promise.resolve()}function el(A={}){const t=SB;JB||"undefined"==typeof IntersectionObserver||(document[t(334)]?(JB=!0,KB(),XB={...MB,...A},PB=new Promise(A=>{GB=A}),kB=new IntersectionObserver(_B,{threshold:[0,.25,.75]}),vB.scheduleIdle()[t(300)](qB),OB=new MutationObserver($B),OB.observe(document[t(334)],{childList:!0,subtree:!0,attributes:!0,attributeFilter:["href",t(327),t(302),"sizes",t(342),"aria-label",t(319),t(311),t(325),t(322),t(292),"data-html2canvas-ignore",t(331),"autocomplete",t(341)],characterData:!0}),window[t(295)](t(320),$B,{passive:!0}),RB=setInterval(zB,XB.visibilityIntervalMs)):document.addEventListener(t(323),()=>{el(A)},{once:!0}))}function rl(){return TB[SB(307)]()}const nl=()=>TB.drainRegistrations();function sl(){return TB[SB(324)]()}const ol=il;function il(A,t){return A-=204,ll()[A]}(A=>{const t=il,e=A();for(;;)try{if(605208==-parseInt(t(254))/1*(-parseInt(t(208))/2)+-parseInt(t(215))/3*(-parseInt(t(232))/4)+-parseInt(t(247))/5*(-parseInt(t(260))/6)+parseInt(t(220))/7*(-parseInt(t(205))/8)+-parseInt(t(250))/9+-parseInt(t(233))/10*(parseInt(t(229))/11)+parseInt(t(207))/12)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ll);const al={batchSize:20,flushIntervalMs:5e3,maxBuffered:200},cl=Object.freeze(new Set([ol(251),"input-submit",ol(211)]));function Bl(A){const t=ol;let e=0;for(let r=0;r<A[t(230)];r++){const t=A.charCodeAt(r);t<128?e+=1:t<2048?e+=2:t>=55296&&t<=56319?(e+=4,r++):e+=3}return e}function ll(){const A=["stats","has","event","attach","splice","flushIntervalMs","5iqleRF"," events undelivered (","stringify","747144LBIfqn","click","wallClock"," oldest events","11621UmUWMv","set","sent","flush","send","[Transport] took custody of a batch still in flight at teardown","3570222RWZryp","start","join","147040FYgoxa","maxBuffered","4872792wFJehR","206wxseMJ","dropped","generation","form-submit","[Transport] buffer full, dropped ","extras","entries","1994469PduQAT","schedule","flushOn","[Transport] dropped an in-flight batch discarded mid-request","inFlight","385sIcaEc","cancelTimer","persistInFlight","[Transport] replay failed","onTeardownBatch","replay","buffer","options","release","12801415qRSrfX","length","log","4vWehMn","10fgzHTZ","stop"," events failed to send","endpoint"," bytes, beacon=","failed","push","[Transport] "];return(ll=()=>A)()}class gl{[ol(227)];[ol(217)];[ol(226)]=[];extras={};[ol(221)];generation=0;inFlight=new Map;[ol(241)]={sent:0,failed:0,dropped:0};constructor(A){const t=ol;this[t(227)]=A,this[t(217)]=A[t(217)]??cl}getStats(){const A=ol;return{...this[A(241)],buffered:this[A(226)][A(230)]}}[ol(261)](){const A=ol;this[A(221)]??=this.options[A(216)](()=>{this[A(257)]()},this[A(227)][A(246)])}[ol(234)](){const A=ol;this.cancelTimer?.(),this[A(221)]=void 0,this.buffer=[],this.extras={},this[A(210)]++}discard(){const A=ol;this.buffer=[],this.extras={},this[A(210)]++}enqueue(A){const t=ol;if(this[t(226)].push(A),this[t(226)].length>this[t(227)][t(206)]){const A=this[t(226)][t(230)]-this[t(227)][t(206)];this[t(226)].splice(0,A),this[t(241)][t(209)]+=A,yB().log(t(212)+A+t(253))}(this[t(226)][t(230)]>=this[t(227)].batchSize||this[t(217)][t(242)](A[t(243)]))&&this[t(257)]()}[ol(244)](A,t){const e=ol;0!==t[e(230)]&&(this.extras[A]=[...this[e(213)][A]??[],...t])}async flush({beacon:A=!1}={}){const t=ol;if(A&&this.persistInFlight(),0===this.buffer[t(230)]&&0===Object.keys(this[t(213)])[t(230)])return;const e=yB(),r=this[t(226)],n=this[t(213)],s=this.generation;let o;try{o=JSON[t(249)]({...this[t(227)].context(),sentAt:e[t(252)](),events:r,...n})}catch(A){return this[t(226)]=[],this[t(213)]={},this.stats.failed+=r[t(230)],void e.log(t(240)+r.length+" events dropped, batch could not be serialised",A)}this[t(226)]=[],this[t(213)]={};const i=Bl(o);this[t(219)][t(255)](o,{generation:s,...A?{release:this[t(227)][t(224)]?.(o)}:{}});let a=!1;try{a=await e[t(258)](this[t(227)][t(236)](),o,{beacon:A,byteLength:i})}catch(A){e[t(231)](t(240)+r[t(230)]+t(235),A)}const c=this[t(219)].get(o)?.release;return this[t(219)].delete(o),a?(this[t(241)][t(256)]+=r[t(230)],void c?.()):(this[t(241)][t(238)]+=r[t(230)],e.log(t(240)+r[t(230)]+t(248)+i+t(237)+A+")"),s!==this[t(210)]?(e[t(231)](t(218)),void c?.()):void(A||this.restore(r,n)))}[ol(222)](){const A=ol;if(this[A(227)][A(224)])for(const[t,e]of this[A(219)])e[A(228)]||e.generation!==this[A(210)]||(e[A(228)]=this[A(227)][A(224)](t),yB()[A(231)](A(259)))}restore(A,t){const e=ol;for(const[A,r]of Object[e(214)](t))this.extras[A]=[...r,...this[e(213)][A]??[]];this[e(226)]=[...A,...this[e(226)]];const r=this[e(226)].length-this[e(227)][e(206)];r>0&&(this.buffer[e(245)](0,r),this[e(241)][e(209)]+=r,yB()[e(231)]("[Transport] buffer full after retry, dropped "+r+e(253)))}async[ol(225)](A){const t=ol,e=yB();try{return await e[t(258)](this[t(227)][t(236)](),A,{beacon:!1,byteLength:Bl(A)})}catch(A){return e[t(231)](t(223),A),!1}}}(A=>{const t=Ul,e=A();for(;;)try{if(639536==parseInt(t(244))/1+parseInt(t(247))/2*(-parseInt(t(256))/3)+parseInt(t(236))/4+-parseInt(t(235))/5*(-parseInt(t(241))/6)+-parseInt(t(237))/7*(parseInt(t(234))/8)+parseInt(t(245))/9*(parseInt(t(251))/10)+-parseInt(t(231))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(yl);const hl={...al,compress:!1};function dl(){const A=Ul;return(vB.storage[A(242)](na)??aa)+A(246)}function wl(){const A=Ul;return{clientId:vB[A(232)][A(242)](ea),sid:ic(),platform:A(252)}}function ul(A,t){const e=setInterval(A,t);return()=>{clearInterval(e)}}let Ql,pl=!1;function Cl(){return KB(),Ql??=new gl({...al,endpoint:dl,context:wl,schedule:ul}),Ql}function Ul(A,t){return A-=231,yl()[A]}async function fl(A={}){return Cl().flush(A)}function Fl(A){const t=Ul;Cl()[t(239)](A)}function ml(A,t){const e=Ul;Cl()[e(240)](A,t)}function yl(){const A=["1165gRHPiR","511772hhwSRi","569177paphMj","stop","enqueue","attach","24342QxJyKc","get","addEventListener","665605LrRHmA","270svpsvZ","/v2/events","1504974lNqHYu","discard","start","visibilitychange","422890PxkJDu","web","hidden","pagehide","getStats","3QQHGlw","15981394HsRXOp","storage","removeEventListener","16BeMwRo"];return(yl=()=>A)()}function Il(){document.visibilityState===Ul(253)&&fl({beacon:!0})}function Hl(){fl({beacon:!0})}const El=kl;(A=>{const t=kl,e=A();for(;;)try{if(156133==-parseInt(t(345))/1+-parseInt(t(311))/2*(-parseInt(t(388))/3)+parseInt(t(366))/4*(-parseInt(t(376))/5)+-parseInt(t(286))/6*(parseInt(t(356))/7)+-parseInt(t(386))/8+parseInt(t(374))/9+parseInt(t(365))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Vl);let bl,xl=0,vl=0;function Kl(A){const t=kl;try{return new Blob([A])[t(367)]}catch{return A[t(341)]}}let Ll,Sl=!1;const Dl="__intent__sdk__initialized__",Ml=[El(276),El(319),"a",El(313),El(337),El(312),El(348),"[onclick]"][El(328)](",");function Tl(){const A=El;return localStorage[A(305)](ji)===A(361)}function kl(A,t){return A-=260,Vl()[A]}function Ol(){return hc(),Tl()&&Boolean(ic())&&(()=>{const A=El;return Boolean(localStorage[A(305)](ea)?.[A(323)]().length)})()}function Rl(){return!Ol()||wc}function Vl(){const A=["getBoundingClientRect","textContent","has","status","number","getItem","page-focus","resize","input-submit","replaceState","hasAttribute","38DiPMVB",'[role="button"]','input[type="submit"]',"right"," — nothing new on screen","tagName","name"," newly on screen","a[href]","SELECT","toISOString","segments","trim","no-store","width","pathname","target","join","event","form-submit","/p.gif","filter","forEach","lat","height","html",'input[type="button"]',"hidden","documentElement","complete","length","page-blur","now","storage","169418VyqiFe","CONTENTEDITABLE","bottom",'[role="link"]',"hostname","innerHTML","pageview","search","map","newline","innerWidth","1029UjiMzR","docH","then","innerHeight","location","granted","intentEnter","img"," — ","4337730kpKzxA","691792iPUAbi","size","data-intent-redact","scrollX","pixel body fallback failed with ","top","/events","intent","2433996DxdKel","screenshot","5cmYbru","absolute","hasFocus","readyState","pointerdown","left","scrollY","digest","Enter","closest","2242088BBOvfh","entries","43638RvHvqQ","INPUT","[Timing] jpeg-encoding: ","querySelector","[Transmit] ","ref","TEXTAREA","blur","stringify","x-intent-sid","localhost","events endpoint returned ","context","scroll","dataset","key","image/jpeg","addEventListener","POST","setAttribute","toFixed","scrollHeight","href","attributes","role","[Transmit] DROPPED ","load","click","round","cloneNode","isSecureContext","value","referrer","button"," bytes), ","popstate","bbox","apply","input, textarea, select, [data-intent-redact]","device"," bytes) failed on /events, trying /p.gif","omit","visibilitychange","8238mnFoxh","lon","defineProperty","body","application/json","[Timing] html2canvas-pro: ","toLowerCase","[Digest] settled after ","getAttribute","title","contenteditable","toDataURL","<no visible label>","focus"];return(Vl=()=>A)()}async function Nl(A){for(;Ll;)await Ll;return Ll=(async()=>{const o=kl;try{const i=performance[o(343)](),a=performance[o(343)](),c=(A=>{const t=El;if(Ga(A))return"";const e=A[t(272)](!1);return Array.from(A[t(266)])[t(333)](({name:A,value:r})=>{e[t(262)](A,r)}),Fa(A)?Fa(e)&&(e[t(274)]=A[t(274)]):ma(A)?e[t(350)]=A.innerHTML:e[t(301)]=A[t(301)],rc(e),Fa(e)&&e[t(262)](t(274),e.value),e.outerHTML})(A);Ca("[Timing] serialize: "+(performance[o(343)]()-a).toFixed(2)+"ms");const B=A[o(300)](),l=performance[o(343)](),g={left:window[o(369)],top:window.scrollY,right:window[o(369)]+window[o(355)],bottom:window.scrollY+window[o(359)]},h=await((A,o={})=>(async(A,t,o)=>{if((A=>{["scale","width","height","imageTimeout","x","y","windowWidth","windowHeight","scrollX","scrollY"].forEach(t=>{const e=A[t];if(null!=e&&"number"!=typeof e){const r=Number(e);Number.isNaN(r)||(A[t]=r)}})})(t),!t.skipValidation){const r=t.validator||((A={})=>new e({allowDataUrls:!0,maxImageTimeout:3e5,...A}))(),n=r.validateElement(A);if(!n.valid)throw new Error(n.error);const s=r.validateOptions(t);if(!s.valid)throw new Error(`Invalid options: ${s.error}`)}if(!A||"object"!=typeof A)throw new Error("Invalid element provided as first argument");const i=A.ownerDocument;if(!i)throw new Error("Element is not attached to a Document");const a=i.defaultView;if(!a)throw new Error("Document is not attached to a Window");const c=((A,t,e)=>({logging:A.logging??!0,cache:A.cache??t.cache,...e}))(t,o,(A=>({allowTaint:A.allowTaint??!1,imageTimeout:A.imageTimeout??15e3,proxy:A.proxy,useCORS:A.useCORS??!1,customIsSameOrigin:A.customIsSameOrigin,maxCacheSize:A.maxCacheSize}))(t)),B=((A,t)=>({windowWidth:A.windowWidth??t.innerWidth??800,windowHeight:A.windowHeight??t.innerHeight??600,scrollX:A.scrollX??t.pageXOffset??0,scrollY:A.scrollY??t.pageYOffset??0}))(t,a),l=new n(B.scrollX,B.scrollY,B.windowWidth,B.windowHeight),g=new Ji(c,l,o),h=t.enablePerformanceMonitoring??t.logging??!1,d=new r(g,h);d.start("total",{width:B.windowWidth,height:B.windowHeight});const w=t.signal;Wi(w);const u=t.foreignObjectRendering??!1,Q=((A,t,e)=>({allowTaint:A.allowTaint??!1,onclone:A.onclone,ignoreElements:A.ignoreElements,iframeContainer:A.iframeContainer,inlineImages:e,copyStyles:e,cspNonce:A.cspNonce??t.cspNonce}))(t,o,u);g.logger.debug(`Starting document clone with size ${l.width}x${l.height} scrolled to ${-l.left},${-l.top}`),d.start("clone");const p=new Fs(g,A,Q),C=p.clonedReferenceElement;if(!C)throw new Error("Unable to find element in cloned iframe");const U=await p.toIFrame(i,l);d.end("clone"),w?.aborted&&((t.removeContainer??1)&&Fs.destroy(U),Wi(w));const{width:f,height:F,left:m,top:y}=se(C)||"HTML"===C.tagName?(A=>{const t=A.body,e=A.documentElement;if(!t||!e)throw new Error("Unable to get document size");return new n(0,0,Math.max(Math.max(t.scrollWidth,e.scrollWidth),Math.max(t.offsetWidth,e.offsetWidth),Math.max(t.clientWidth,e.clientWidth)),Math.max(Math.max(t.scrollHeight,e.scrollHeight),Math.max(t.offsetHeight,e.offsetHeight),Math.max(t.clientHeight,e.clientHeight)))})(C.ownerDocument):s(g,C),I=((A,t,e)=>{const r=t.ownerDocument,n=r.documentElement?jt(A,getComputedStyle(r.documentElement).backgroundColor):$t.TRANSPARENT,s=r.body?jt(A,getComputedStyle(r.body).backgroundColor):$t.TRANSPARENT,o="string"==typeof e?jt(A,e):null===e?$t.TRANSPARENT:4294967295;return t===r.documentElement?Ft(n)?Ft(s)?o:s:n:o})(g,C,t.backgroundColor),H=((A,t,e,r,n,s,o)=>({canvas:A.canvas,backgroundColor:t,signal:A.signal,scale:A.scale??o??1,x:(A.x??0)+e,y:(A.y??0)+r,width:A.width??Math.ceil(n),height:A.height??Math.ceil(s),imageSmoothing:A.imageSmoothing,imageSmoothingQuality:A.imageSmoothingQuality}))(t,I,m,y,f,F,a.devicePixelRatio??1);let E,b;try{return u?(g.logger.debug("Document cloned, using foreign object rendering"),d.start("render-foreignobject"),E=await new Si(g,H).render(C),d.end("render-foreignobject")):(g.logger.debug(`Document cloned, element located at ${m},${y} with size ${f}x${F} using computed rendering`),g.logger.debug("Starting DOM parsing"),d.start("parse"),Wi(w),g.cache.startDefer(),b=Ko(g,C),d.end("parse"),d.start("preload"),await g.cache.preloadAll(),d.end("preload"),I===b.styles.backgroundColor&&(b.styles.backgroundColor=$t.TRANSPARENT),g.logger.debug(`Starting renderer for element at ${H.x},${H.y} with size ${H.width}x${H.height}`),d.start("render"),Wi(w),E=await new vi(g,H).render(b),d.end("render")),d.start("cleanup"),(t.removeContainer??1)&&(Fs.destroy(U)||g.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),d.end("cleanup"),d.end("total"),g.logger.debug("Finished rendering"),h&&d.logSummary(),E}finally{b&&b.restoreTree()}})(A,o,t.fromElement(A,{cspNonce:o.cspNonce,cache:o.cache})))(document[o(289)],{useCORS:!0,x:window[o(369)],y:window[o(382)],width:window.innerWidth,height:window[o(359)],scale:.6,logging:!1,onclone(A){rc(A)},ignoreElements(A){const t=o;if(!(A instanceof Element))return!1;if(Ja(A))return!0;const e=A[t(300)](),r={left:e.left+window[t(369)],top:e.top+window[t(382)],right:e[t(314)]+window.scrollX,bottom:e[t(347)]+window[t(382)]},n=100,s=r[t(347)]<g.top-n,i=r[t(371)]>g[t(347)]+n,a=r[t(314)]<g[t(381)]-n,c=r.left>g[t(314)]+n;if(!(a||c||s||i))return!1;const{position:B}=window.getComputedStyle(A);let l;if("fixed"===B||B===t(377)){const A=500;l=r[t(314)]<g.left-A||r[t(381)]>g[t(314)]+A||r[t(347)]<g[t(371)]-A||r[t(371)]>g.bottom+A}else l=i;return!!l&&!(A.tagName===t(389)||"TEXTAREA"===A[t(316)]||A[t(316)]===t(320)||A[t(310)](t(368))||A[t(391)](t(281)))}}),d=performance.now()-l;Ca(o(291)+d[o(263)](2)+"ms");const w=performance[o(343)](),u=h[o(297)](o(404),.8),Q=performance[o(343)]()-w;Ca(o(390)+Q.toFixed(2)+"ms");return Ca("[Timing] capture-total: "+(performance[o(343)]()-i)[o(263)](2)+"ms"),{html:c,bbox:{x:B.x,y:B.y,w:B[o(325)],h:B[o(335)]},img:u,fullCanvas:h}}finally{Ll=void 0}})(),Ll}function Gl(){const A=El,t=localStorage.getItem(ea),e={"Content-Type":A(290)};t&&(e["x-sl-access-token"]=t);const r=ic();return r&&(e[A(397)]=r),e}function Pl(){const A=El;return localStorage.getItem(ia)!==A(375)}const Xl={w:0,h:0,scrollY:0,docH:0};function Jl(){const A=El;Xl.w=window[A(355)],Xl.h=window[A(359)],Xl.scrollY=Math[A(271)](window[A(382)]),Xl[A(357)]=document[A(339)][A(264)]}function Wl(){return{...Xl}}function Yl(A,t,e){const r=El;if(!Ol())return;const n=rl(),s=e instanceof HTMLFormElement?function(A){const t=cB;if(Ja(A))return;const e=[];for(const r of Array[t(520)](A[t(501)])){if(!ma(r)||r[t(481)])continue;const A=r[t(477)]===t(456)||r[t(477)]===t(492)?r[t(477)].toLowerCase():(r[t(489)](t(474))??t(515))[t(522)]();hB[t(498)](A)||Ja(r)||e[t(467)]({name:r[t(489)]("name")??r.id,label:uB(r),type:A,value:QB(r,A)})}return((A,t)=>{const e=aB,r=[];let n=!1;for(const A of t){if(r[e(388)]>=nB.fields){n=!0;break}const t=sB(A[e(387)],nB[e(394)]),s=sB(A[e(394)],nB.label),o=t||s;o&&r.push({name:o,...s&&s!==o?{label:s}:{},...A[e(370)]?{type:A[e(370)]}:{},value:sB(A[e(376)],nB[e(393)])})}if(0===r[e(388)])return;const s=sB(A,nB[e(394)]);return{...s?{name:s}:{},fields:r,...n?{truncated:!0}:{}}})(A.getAttribute(t(478))??A[t(489)](t(490))??(A.id||void 0)??void 0,e)}(e):void 0;let o;if(e!==document.body&&e!==document[r(339)]&&!Ja(e)){const A=(A=>{const t=SB;let e=A;for(;e;){const A=TB.get(e);if(A)return A;e=e[t(340)]??void 0}})(e);o={tag:e.tagName,label:e instanceof HTMLFormElement?s?.[r(317)]??"":CB(e),role:e[r(294)]("role")??void 0,ref:A?.[r(383)]?.[r(393)]},ma(e)&&(o.value=za(e)?Za(e):Ha(e))}Ca("[Digest] "+A+r(364)+n[r(341)]+" segments on screen"),ml(r(322),nl()),tl(),Fl({ts:Date[r(343)](),event:A,url:window.location[r(265)],props:{...t,localTime:(new Date)[r(321)]()},...o?{chosen:o}:{},...s?{form:s}:{},onScreen:n,viewport:Wl(),coverage:sl()}),cl[r(302)](A)&&((A,t,e)=>{const r=El;void 0!==_l&&clearTimeout(_l);const n=new Set(e[r(353)](A=>A.ref)),s=XB[SB(316)]+Zl,o=e=>{_l=void 0,(async()=>{const r=kl;if(!Ol())return;await(async()=>{const A=SB;JB&&(await tl(),ZB(),await TB[A(293)]())})();const s=rl()[r(332)](A=>!n[r(302)](A[r(393)]));if(0===s.length)return 0===e?void(_l=setTimeout(()=>o(1),zl)):void Ca(r(293)+A+r(315));Ca(r(293)+A+r(364)+s[r(341)]+r(318)),ml(r(322),nl()),Fl({ts:Date.now(),event:"settled",url:window[r(360)].href,props:{after:A,label:t,localTime:(new Date)[r(321)]()},onScreen:s,viewport:Wl(),coverage:sl()})})()};_l=setTimeout(()=>o(0),s)})(A,o?.label,n)}const Zl=400,zl=900;let _l;function ql(A,t,e,r){Pl()?Yl(A,t,e):jl(A,t,e,r)}async function jl(A,t,e,r){const n=El;if(!Ol())return;const s={...t,localTime:(new Date)[n(321)]()};ma(e)&&!Ja(e)&&(s[n(274)]=za(e)?Za(e):Ha(e));let o="",i={x:0,y:0,w:0,h:0},a="";const c=!(A===n(401)||A===n(342)||A===n(306)),B=Date.now(),l=B-xl>=300;let g=r;const h="click"===A||"input-submit"===A||A===n(351);c&&(h&&!g||!g&&l)&&(g=await Nl(e),xl=B),g&&(o=g[n(336)],i=g[n(279)],a=g[n(363)]);const d=A===n(342)||"page-focus"===A||A===n(351),w={ts:Date[n(343)](),event:A,url:window[n(360)][n(265)],props:s,html:d?"":o,bbox:i,img:a};await async function(A){const t=El,e=(localStorage[t(305)](na)??aa)+t(372),r=localStorage[t(305)](ea)??void 0,n=JSON[t(396)]({...A,clientId:r}),s=Kl(n);let o;try{const A=await fetch(e,{method:t(261),headers:Gl(),body:n,keepalive:s<=6e4,credentials:t(284)});if(A.ok)return;o=new Error(t(399)+A.status)}catch(A){o=A}Ca(t(392)+A[t(329)]+" ("+s+t(283),o);try{await(async A=>{const t=El,e=(localStorage.getItem(na)??aa)+t(331),r=JSON[t(396)](A),n=await fetch(e,{method:t(261),headers:Gl(),body:r,keepalive:Kl(r)<=6e4,credentials:t(284),cache:t(324)});if(!n.ok)throw new Error(t(370)+n[t(303)])})(A)}catch(e){vl++,Ca(t(268)+A[t(329)]+" ("+s+t(277)+vl+" total",e)}}(w)}hc();let $l=!1;function Ag(){$l&&Pl()&&Tl()&&(function(A={}){const t=Ul;if(pl)return;pl=!0,KB();const{compress:e,...r}={...hl,...A};EB=e,Ql=new gl({...r,endpoint:dl,context:wl,schedule:ul}),Ql[t(249)](),window[t(243)](t(254),Hl),document[t(243)](t(250),Il)}(),el())}let tg=!1;function eg(){const A=El;!tg&&Ol()&&(tg=!0,ql(A(351),{url:window[A(360)][A(265)],title:document.title,ref:document[A(275)]},document.body))}function rg(){void 0!==_l&&(clearTimeout(_l),_l=void 0),tg=!1,hc(),(()=>{const A=SB;kB?.[A(335)](),OB?.disconnect(),window[A(312)](A(320),$B),void 0!==RB&&clearInterval(RB),void 0!==VB&&clearTimeout(VB),kB=void 0,OB=void 0,RB=void 0,VB=void 0,NB=void 0,TB[A(305)](),WB(),PB=void 0,JB=!1})(),(()=>{const A=Ul;Ql?.[A(248)]()})()}function ng(){const A=El;hc(),Ag(),Pl()?YB()[A(358)](eg):eg()}async function sg(A={}){const t=El;if(!Ol())return;const e=typeof A[t(334)]===t(304)&&"number"==typeof A[t(287)];if(e&&dc)return;if(!e&&Sl)return;const r=localStorage[t(305)](ra),n={context:await zi()};r&&(n.ip=r);for(const[e,r]of Object[t(387)](A))n[e]=r;await jl(t(400),n,document[t(289)],{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),!e&&(Sl=!0)}async function og(){await(async(A,t)=>{const e=Uc,r={canRequest:t(),geoEnabled:Cc(),deviceGeoSent:dc};if(!r[e(493)]||!r[e(474)]||r[e(497)])return;if(!("geolocation"in navigator))return;if(Qc)return;Qc=!0,wc=!0;const n={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};Date[e(484)]();try{await(navigator[e(480)]?.[e(508)]({name:e(507)}))}catch(A){}await new Promise(A=>{let t=!1;const r=async(e,r,n)=>{const s=Uc;t||(t=!0,Number[s(502)](e)&&Number[s(502)](r)&&(await(async(A,t,e)=>{const r=kl;await sg({lat:A,lon:t,source:r(282),...e})})(e,r,n),dc=!0),Qc=!1,wc=!1,pc=!0,A())};navigator.geolocation[e(476)](A=>{const t=Uc,e=A[t(483)];r(e[t(475)],e[t(491)],{accuracy:e.accuracy,altitude:typeof e[t(504)]===t(485)?e.altitude:void 0,altitudeAccuracy:typeof e[t(478)]===t(485)?e[t(478)]:void 0,heading:typeof e[t(488)]===t(485)?e.heading:void 0,speed:typeof e[t(503)]===t(485)?e.speed:void 0,timestamp:A[t(470)],visibility:document.visibilityState,focused:document[t(506)]()})},A=>{const t=Uc,e=A?.[t(495)],n={error:{code:e,name:1===e?t(472):2===e?"POSITION_UNAVAILABLE":t(3===e?489:468),message:A?.[t(490)]??""},online:navigator.onLine,visibility:document.visibilityState,focused:document.hasFocus(),secure:window[t(469)],proto:location[t(479)],host:location[t(482)]};r(void 0,void 0,n)},n)})})(0,Ol)}function ig(){(A=>{const t=Uc;if(uc||!Cc()||dc)return;uc=!0;const e=()=>{const t=Uc;window[t(494)](t(477),e,!0),window[t(494)]("keydown",e,!0),A()};window[t(486)](t(477),e,!0),window[t(486)]("keydown",e,!0)})(og)}let ag=!document[El(338)]&&document[El(378)](),cg=document[El(378)]();function Bg(){const A=El;if(Rl())return;const t=!document[A(338)]&&document[A(378)]();t&&(cg=!0),cg||t?t!==ag&&(ag=t,ql(A(t?306:342),{},document[A(289)])):ag=t}function lg(A){const t=El;let e=!1;const r=()=>{e||(e=!0,A())};document[t(379)]!==t(340)?window.addEventListener(t(269),r,{once:!0}):r()}function gg(){const A=El;(()=>{const A=globalThis;return!A[Dl]&&(Object[El(288)](A,Dl,{value:!0,configurable:!1,enumerable:!1,writable:!1}),!0)})()&&(Jl(),window[A(260)](A(307),pa(Jl,200),{passive:!0}),window[A(260)]("scroll",pa(Jl,100),{passive:!0}),Pl()&&(function(){const A=El,t=()=>""+window[A(360)][A(326)]+window[A(360)][A(352)];let e=t();const r=()=>{const r=A;t()===e||Rl()||(e=t(),Jl(),tg=!0,ql("pageview",{url:window.location.href,title:document.title,ref:document[r(275)],spa:!0},document.body))};for(const t of["pushState",A(309)]){const e=history[t];history[t]=function(...t){const n=e[A(280)](this,t);return r(),n}}window.addEventListener(A(278),r)}(),$l=!0,Ag()),lg(()=>{const t=A;Ol()&&(sg(),(window[t(273)]||location[t(349)]===t(398))&&(Cc()&&ig(),window.addEventListener("focus",()=>{mc()&&og()}),document.addEventListener(t(285),()=>{!document[t(338)]&&mc()&&og()})))}),window.addEventListener(A(344),t=>{const e=A;t[e(403)]===ji&&((()=>{const A=El;return localStorage[A(305)](ji)===A(361)})()?(Sl=!1,ng(),sg(),Cc()&&ig()):(Sl=!1,Fc(),rg())),t[e(403)]===$i&&(Cc()?ig():Fc())}),lg(()=>{const t=A;Pl()?YB()[t(358)](eg):eg()}),addEventListener(A(380),pa(t=>{const e=A;if(Pl()||Rl())return;const r=t[e(327)]instanceof Element?t[e(327)].closest(Ml):null;if(!(r instanceof HTMLElement))return;const n=Date.now();n-xl<300?bl=void 0:(xl=n,bl=Nl(r))},50),{capture:!0,passive:!0}),addEventListener("click",async t=>{const e=A;if(Rl())return;if(!(t[e(327)]instanceof Element))return;const r=t[e(327)][e(385)](Ml);if(!(r instanceof HTMLElement))return;const n=Ja(s=r)?"":Ya(s)?Za(s):(A=>{const t=El,e=A.getAttribute("aria-label")?.[t(323)]();if(e)return e;const r=A[t(295)][t(323)]();if(r)return r;const n=A[t(301)]?.[t(323)]();return n||t(298)})(s);var s;Pl()?ql(e(270),{tag:r[e(316)],label:n},r):(async()=>{const A=e,t=bl?await bl:void 0;bl=void 0,ql(A(270),{tag:r[A(316)],label:n},r,t)})()},!0),addEventListener("keydown",t=>{const e=A;if(!Rl()&&t[e(403)]===e(384)){const A=t[e(327)];if(!(A instanceof HTMLElement))return;const r=A.tagName,n=Ja(A);if("INPUT"===r||r===e(394)){const t=A instanceof HTMLInputElement?A[e(317)]:void 0,s=A.id||void 0;ql(e(308),{tag:r,name:n?void 0:t??s},A)}else if(ma(A)){const t=(A=>{const t=Qa;let e=A;for(;e&&e!==document[t(426)];){const A=e.getAttribute(t(434));if(A===t(441)||""===A||A===t(454))return e;e=e.parentElement}return null})(A)??A;if(t[e(402)][e(362)]===e(354))return;const r=t[e(294)](e(267))?.[e(292)](),n=t.id||void 0,s=t[e(294)](e(317))||t.getAttribute("aria-label")||n;ql(e(308),{tag:e(346),role:r??e(296),name:Ja(t)?void 0:s},t)}}},{capture:!0}),addEventListener("submit",t=>{const e=A;!Rl()&&Pl()&&t.target instanceof HTMLFormElement&&ql(e(330),{},t[e(327)])},{capture:!0}),[A(299),A(395)][A(333)](t=>{window[A(260)](t,Bg)}),document[A(260)](A(285),Bg),window.addEventListener(A(401),(()=>{let t;return(...e)=>{const r=Ia;void 0!==t&&window[r(438)](t),t=window[r(408)](()=>{t=void 0,(()=>{const t=A;Rl()||ql(t(401),{scrollX:window[t(369)],scrollY:window[t(382)]},document[t(289)])})(...e)},250)}})(),{passive:!0}),window[A(373)]??={send(t,e){const r=A;Ol()&&ql(t,e,document[r(289)])}})}function hg(A,t){const e=dg;try{if(void 0===t)return;localStorage[e(275)](A,t?A===e(283)?e(288):e(278):e(259))}catch{}}function dg(A,t){return A-=259,wg()[A]}function wg(){const A=["67310PDTMYe","intent:debug","intent:consent","2692588yRhXhX","clientId","15347541UkHSvV","490568hAEGcV","granted","intent_sid","68232rfbRba","intent:data-ip","413GnUqHX","5POapnj","sidMaxAgeSeconds","undefined","geo","disabled","debugPanel","It exposes internal SDK behavior and should only be used during development.","intent:data-sid-max-age","80927lYBGbn","number","randomUUID","isFinite","589614qcOEYi","function","baseUrl","3foYxtu","warn","now","consent","intent:geo","setItem","intent:data-base-url","882AYnUgD","enabled","intent:data-client-id","[Intent SDK] ⚠️ Debug panel is enabled. This feature is NOT recommended for production use. "];return(wg=()=>A)()}(A=>{const t=dg,e=A();for(;;)try{if(337715==-parseInt(t(263))/1+-parseInt(t(287))/2+parseInt(t(270))/3*(-parseInt(t(284))/4)+-parseInt(t(293))/5*(-parseInt(t(267))/6)+parseInt(t(292))/7*(parseInt(t(290))/8)+-parseInt(t(277))/9*(parseInt(t(281))/10)+parseInt(t(286))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(wg),A.clearIntentSessionId=()=>{gc()},A.ensureIntentSessionId=()=>{hc()},A.getIntentSessionId=()=>ac(dg(289)),A.initIntent=(A={})=>{const t=dg;localStorage[t(275)](t(279),A[t(285)]??""),localStorage[t(275)](t(291),A.ip??""),localStorage[t(275)](t(276),A[t(269)]??"https://intent.callimacus.ai"),typeof A[t(294)]===t(264)&&localStorage.setItem(t(262),String(A[t(294)])),hg(t(283),A[t(273)]),hg("intent:geo",A[t(296)]),hg("intent:debug",A.debug),t(260),A[t(273)]&&(ac(t(289))||Bc(typeof crypto!==t(295)&&typeof crypto[t(265)]===t(268)?crypto[t(265)]():Date[t(272)]()+"-"+Math.random(),A[t(294)])),gg()},A.setConsent=A=>{hg(dg(283),A),A?ng():rg()},A.setDebug=A=>{hg(dg(282),A)},A.setDebugPanel=function(A){},A.setGeo=A=>{hg(dg(274),A)},A.setIntentSessionMaxAge=A=>{const t=dg;Number[t(266)](A)&&localStorage.setItem(t(262),String(A));const e=ac(t(289));e&&Bc(e,A)},Object.defineProperty(A,Symbol.toStringTag,{value:"Module"})});
9
+ */var t=class A{constructor(A={}){const t=A.window||("undefined"!=typeof window?window:void 0);if(!t)throw new Error("Window object is required but not available");this.window=t,this.cspNonce=A.cspNonce,this.cache=A.cache}static fromElement(t,e={}){const r=t.ownerDocument;if(!r)throw new Error("Element is not attached to a document");const n=r.defaultView;if(!n)throw new Error("Document is not attached to a window");return new A({window:n,...e})}clone(t={}){return new A({window:t.window||this.window,cspNonce:t.cspNonce??this.cspNonce,cache:t.cache??this.cache})}},e=class{constructor(A={}){this.config={maxImageTimeout:3e5,allowDataUrls:!0,...A}}validateUrl(A,t="general"){if(!A||"string"!=typeof A)return{valid:!1,error:"URL must be a non-empty string"};if(A.startsWith("data:"))return this.config.allowDataUrls?{valid:!0,sanitized:A}:{valid:!1,error:"Data URLs are not allowed"};if(A.startsWith("blob:"))return{valid:!0,sanitized:A};try{const e=new URL(A);if(!["http:","https:"].includes(e.protocol))return{valid:!1,error:`Protocol ${e.protocol} is not allowed. Only http and https are permitted.`};if("proxy"===t&&this.config.allowedProxyDomains&&this.config.allowedProxyDomains.length>0){const A=e.hostname.toLowerCase();if(!this.config.allowedProxyDomains.some(t=>{const e=t.toLowerCase();return A===e||A.endsWith("."+e)}))return{valid:!1,error:`Proxy domain ${e.hostname} is not in the allowed list`}}if("proxy"===t){if(!this.config.allowLocalhostProxy){const A=e.hostname.toLowerCase();if("localhost"===A||"127.0.0.1"===A||"::1"===A)return{valid:!1,error:"Localhost is not allowed for proxy URLs"};if(this.isPrivateIP(A))return{valid:!1,error:"Private IP addresses are not allowed for proxy URLs"};if(A.startsWith("169.254.")||A.startsWith("fe80:"))return{valid:!1,error:"Link-local addresses are not allowed for proxy URLs"}}return{valid:!0,sanitized:A,requiresRuntimeCheck:!0}}return{valid:!0,sanitized:A}}catch(A){return{valid:!1,error:`Invalid URL format: ${A instanceof Error?A.message:"Unknown error"}`}}}isPrivateIP(A){return!![/^0\./,/^10\./,/^100\.(6[4-9]|[7-9][0-9]|1[0-1][0-9]|12[0-7])\./,/^127\./,/^169\.254\./,/^172\.(1[6-9]|2[0-9]|3[0-1])\./,/^192\.0\.0\./,/^192\.0\.2\./,/^192\.168\./,/^198\.(1[8-9])\./,/^198\.51\.100\./,/^203\.0\.113\./,/^2(2[4-9]|3[0-9])\./,/^24[0-9]\./,/^255\.255\.255\.255$/].some(t=>t.test(A))||!!A.includes(":")&&this.isPrivateIPv6(A)}isPrivateIPv6(A){const t=A.toLowerCase().trim().replace(/^\[|\]$/g,"").split("%")[0];if(/^(0:){7}1$/.test(t)||"::1"===t)return!0;if(/^(0:){7}0$/.test(t)||"::"===t)return!0;const e=this.expandIPv6(t);if(!e)return this.isPrivateIPv6Prefix(t);const r=parseInt(e.substring(0,2),16);if(r>=252&&r<=253)return!0;if(254===r){const A=parseInt(e.substring(2,4),16);if(A>=128&&A<=191)return!0}return 255===r}expandIPv6(A){try{if(A.includes("::")){const t=A.split("::");if(t.length>2)return null;const e=t[0]?t[0].split(":"):[],r=t[1]?t[1].split(":"):[],n=8-e.length-r.length;if(n<0)return null;const s=Array(n).fill("0000");return[...e,...s,...r].map(A=>A.padStart(4,"0")).join(":")}{const t=A.split(":");return 8!==t.length?null:t.map(A=>A.padStart(4,"0")).join(":")}}catch{return null}}isPrivateIPv6Prefix(A){return!!(/^fc[0-9a-f]{0,2}:?/i.test(A)||/^fd[0-9a-f]{0,2}:?/i.test(A)||/^fe[89ab][0-9a-f]:?/i.test(A)||/^ff[0-9a-f]{0,2}:?/i.test(A))}validateCspNonce(A){return A&&"string"==typeof A?A.length<16?{valid:!1,error:"CSP nonce is too short (minimum 16 characters recommended)"}:/^[A-Za-z0-9+/=_-]+$/.test(A)?{valid:!0,sanitized:A}:{valid:!1,error:"CSP nonce contains invalid characters"}:{valid:!1,error:"CSP nonce must be a non-empty string"}}validateImageTimeout(A){return"number"!=typeof A||isNaN(A)?{valid:!1,error:"Image timeout must be a number"}:A<0?{valid:!1,error:"Image timeout cannot be negative"}:this.config.maxImageTimeout&&A>this.config.maxImageTimeout?{valid:!1,error:`Image timeout ${A}ms exceeds maximum allowed ${this.config.maxImageTimeout}ms`}:{valid:!0,sanitized:A}}validateDimensions(A,t){if("number"!=typeof A||"number"!=typeof t)return{valid:!1,error:"Dimensions must be numbers"};if(isNaN(A)||isNaN(t))return{valid:!1,error:"Dimensions cannot be NaN"};if(A<=0||t<=0)return{valid:!1,error:"Dimensions must be positive"};return A>32767||t>32767?{valid:!1,error:"Dimensions exceed maximum allowed (32767px)"}:{valid:!0,sanitized:{width:A,height:t}}}validateScale(A){return"number"!=typeof A||isNaN(A)?{valid:!1,error:"Scale must be a number"}:A<=0?{valid:!1,error:"Scale must be positive"}:A>10?{valid:!1,error:"Scale factor too large (maximum 10x)"}:{valid:!0,sanitized:A}}validateElement(A){return A?"object"!=typeof A?{valid:!1,error:"Element must be an object"}:"undefined"!=typeof HTMLElement&&A instanceof HTMLElement?A.ownerDocument?{valid:!0}:{valid:!1,error:"Element must be attached to a document"}:A.ownerDocument?A.ownerDocument.defaultView?{valid:!0}:{valid:!1,error:"Document must be attached to a window (ownerDocument.defaultView required)"}:{valid:!1,error:"Element must be attached to a document (ownerDocument required)"}:{valid:!1,error:"Element is required"}}validateOptions(A){const t=[],e=A.proxy;if(null!=e&&"string"==typeof e&&e.length>0){const A=this.validateUrl(e,"proxy");A.valid||t.push(`Proxy: ${A.error}`)}if(void 0!==A.imageTimeout){const e=this.validateImageTimeout(A.imageTimeout);e.valid||t.push(`Image timeout: ${e.error}`)}if(void 0!==A.width||void 0!==A.height){const e=this.validateDimensions(A.width??800,A.height??600);e.valid||t.push(`Dimensions: ${e.error}`)}if(void 0!==A.scale){const e=this.validateScale(A.scale);e.valid||t.push(`Scale: ${e.error}`)}if(void 0!==A.cspNonce){const e=this.validateCspNonce(A.cspNonce);e.valid||t.push(`CSP nonce: ${e.error}`)}if(this.config.customValidator){const e=this.config.customValidator(A,"options");e.valid||t.push(`Custom validation: ${e.error}`)}return t.length>0?{valid:!1,error:t.join("; ")}:{valid:!0}}},r=class{constructor(A,t=!0){this.context=A,this.activeMetrics=new Map,this.completedMetrics=[],this.enabled=t,this.getTime="undefined"!=typeof performance&&"function"==typeof performance.now?()=>performance.now():()=>Date.now()}start(A,t){this.enabled&&(this.activeMetrics.has(A)&&this.context?.logger.warn(`Performance metric '${A}' already started. Overwriting.`),this.activeMetrics.set(A,{name:A,startTime:this.getTime(),metadata:t}))}end(A){if(!this.enabled)return;const t=this.activeMetrics.get(A);if(t)return t.endTime=this.getTime(),t.duration=t.endTime-t.startTime,this.completedMetrics.push(t),this.activeMetrics.delete(A),this.context?.logger.debug(`⏱️ ${A}: ${t.duration.toFixed(2)}ms`,t.metadata),t;this.context?.logger.warn(`Performance metric '${A}' not found. Was start() called?`)}measure(A,t,e){this.start(A,e);try{const e=t();return this.end(A),e}catch(t){throw this.end(A),t}}async measureAsync(A,t,e){this.start(A,e);try{const e=await t();return this.end(A),e}catch(t){throw this.end(A),t}}getMetrics(){return[...this.completedMetrics]}getMetric(A){return this.completedMetrics.find(t=>t.name===A)}getSummary(){const A=this.completedMetrics.reduce((A,t)=>A+(t.duration||0),0),t=this.completedMetrics.map(t=>({name:t.name,duration:t.duration||0,percentage:A>0?((t.duration||0)/A*100).toFixed(1)+"%":"0%"}));return{totalDuration:A,metrics:this.getMetrics(),breakdown:t}}logSummary(){if(!this.enabled||0===this.completedMetrics.length||!this.context)return;const A=this.getSummary();this.context.logger.info(`\n📊 Performance Summary (Total: ${A.totalDuration.toFixed(2)}ms):`),A.breakdown.sort((A,t)=>t.duration-A.duration).forEach(A=>{this.context.logger.info(` ${A.name.padEnd(20)} ${A.duration.toFixed(2).padStart(8)}ms ${A.percentage.padStart(6)}`)})}clear(){this.activeMetrics.clear(),this.completedMetrics.splice(0)}isEnabled(){return this.enabled}getActiveMetrics(){return Array.from(this.activeMetrics.keys())}},n=class A{constructor(A,t,e,r){this.left=A,this.top=t,this.width=e,this.height=r}add(t,e,r,n){return new A(this.left+t,this.top+e,this.width+r,this.height+n)}static fromClientRect(t,e){return new A(e.left+t.windowBounds.left,e.top+t.windowBounds.top,e.width,e.height)}static fromDOMRectList(t,e){const r=Array.from(e);let n=r.find(A=>0!==A.width);return n||(n=r.find(A=>0!==A.height)),!n&&r.length>0&&(n=r[0]),n?new A(n.left+t.windowBounds.left,n.top+t.windowBounds.top,n.width,n.height):A.EMPTY}static{this.EMPTY=new A(0,0,0,0)}};const s=(A,t)=>n.fromClientRect(A,t.getBoundingClientRect());for(var o=A=>{for(var t=[],e=0,r=A.length;e<r;){var n=A.charCodeAt(e++);if(n>=55296&&n<=56319&&e<r){var s=A.charCodeAt(e++);56320==(64512&s)?t.push(((1023&n)<<10)+(1023&s)+65536):(t.push(n),e--)}else t.push(n)}return t},i=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,s="";++n<e;){var o=A[n];o<=65535?r.push(o):r.push(55296+((o-=65536)>>10),o%1024+56320),(n+1===e||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},a="undefined"==typeof Uint8Array?[]:new Uint8Array(256),c=0;c<64;c++)a["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(c)]=c;for(var B="undefined"==typeof Uint8Array?[]:new Uint8Array(256),l=0;l<64;l++)B["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(l)]=l;for(var g=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),h=function(){function A(A,t,e,r,n,s){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=s}return A.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return this.data[t=((t=this.index[A>>5])<<2)+(31&A)];if(A<=65535)return this.data[t=((t=this.index[2048+(A-55296>>5)])<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],this.data[t=((t=this.index[t+=A>>5&63])<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),d="undefined"==typeof Uint8Array?[]:new Uint8Array(256),w=0;w<64;w++)d["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(w)]=w;var u,Q,C,p,U,f,F,m,y=10,I=13,H=15,E=17,b=18,x=19,v=20,K=21,L=22,S=24,D=25,M=26,T=27,k=28,O=30,V=32,N=33,R=34,G=35,P=37,X=38,J=39,W=40,Y=42,Z=[9001,65288],z="×",_="÷",j=(p=(A=>{var t,e,r,n,s,o=.75*A.length,i=A.length,a=0;"="===A[A.length-1]&&(o--,"="===A[A.length-2]&&o--);var c="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),l=Array.isArray(c)?c:new Uint8Array(c);for(t=0;t<i;t+=4)e=B[A.charCodeAt(t)],r=B[A.charCodeAt(t+1)],n=B[A.charCodeAt(t+2)],s=B[A.charCodeAt(t+3)],l[a++]=e<<2|r>>4,l[a++]=(15&r)<<4|n>>2,l[a++]=(3&n)<<6|63&s;return c})("KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="),U=Array.isArray(p)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(p):new Uint32Array(p),f=Array.isArray(p)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(p):new Uint16Array(p),F=g(f,12,U[4]/2),m=2===U[5]?g(f,(24+U[4])/2):(u=U,Q=Math.ceil((24+U[4])/4),u.slice?u.slice(Q,C):new Uint32Array(Array.prototype.slice.call(u,Q,C))),new h(U[0],U[1],U[2],U[3],F,m)),q=[O,36],$=[1,2,3,5],AA=[y,8],tA=[T,M],eA=$.concat(AA),rA=[X,J,W,R,G],nA=[H,I],sA=(A,t,e,r)=>{var n=r[e];if(Array.isArray(A)?-1!==A.indexOf(n):A===n)for(var s=e;s<=r.length;){if((a=r[++s])===t)return!0;if(a!==y)break}if(n===y)for(s=e;s>0;){var o=r[--s];if(Array.isArray(A)?-1!==A.indexOf(o):A===o)for(var i=e;i<=r.length;){var a;if((a=r[++i])===t)return!0;if(a!==y)break}if(o!==y)break}return!1},oA=(A,t)=>{for(var e=A;e>=0;){var r=t[e];if(r!==y)return r;e--}return 0},iA=(A,t,e,r,n)=>{if(0===e[r])return z;var s=r-1;if(Array.isArray(n)&&!0===n[s])return z;var o=s-1,i=s+1,a=t[s],c=o>=0?t[o]:0,B=t[i];if(2===a&&3===B)return z;if(-1!==$.indexOf(a))return"!";if(-1!==$.indexOf(B))return z;if(-1!==AA.indexOf(B))return z;if(8===oA(s,t))return _;if(11===j.get(A[s]))return z;if((a===V||a===N)&&11===j.get(A[i]))return z;if(7===a||7===B)return z;if(9===a)return z;if(-1===[y,I,H].indexOf(a)&&9===B)return z;if(-1!==[E,b,x,S,k].indexOf(B))return z;if(oA(s,t)===L)return z;if(sA(23,L,s,t))return z;if(sA([E,b],K,s,t))return z;if(sA(12,12,s,t))return z;if(a===y)return _;if(23===a||23===B)return z;if(16===B||16===a)return _;if(-1!==[I,H,K].indexOf(B)||14===a)return z;if(36===c&&-1!==nA.indexOf(a))return z;if(a===k&&36===B)return z;if(B===v)return z;if(-1!==q.indexOf(B)&&a===D||-1!==q.indexOf(a)&&B===D)return z;if(a===T&&-1!==[P,V,N].indexOf(B)||-1!==[P,V,N].indexOf(a)&&B===M)return z;if(-1!==q.indexOf(a)&&-1!==tA.indexOf(B)||-1!==tA.indexOf(a)&&-1!==q.indexOf(B))return z;if(-1!==[T,M].indexOf(a)&&(B===D||-1!==[L,H].indexOf(B)&&t[i+1]===D)||-1!==[L,H].indexOf(a)&&B===D||a===D&&-1!==[D,k,S].indexOf(B))return z;if(-1!==[D,k,S,E,b].indexOf(B))for(var l=s;l>=0;){if((g=t[l])===D)return z;if(-1===[k,S].indexOf(g))break;l--}if(-1!==[T,M].indexOf(B))for(l=-1!==[E,b].indexOf(a)?o:s;l>=0;){var g;if((g=t[l])===D)return z;if(-1===[k,S].indexOf(g))break;l--}if(X===a&&-1!==[X,J,R,G].indexOf(B)||-1!==[J,R].indexOf(a)&&-1!==[J,W].indexOf(B)||-1!==[W,G].indexOf(a)&&B===W)return z;if(-1!==rA.indexOf(a)&&-1!==[v,M].indexOf(B)||-1!==rA.indexOf(B)&&a===T)return z;if(-1!==q.indexOf(a)&&-1!==q.indexOf(B))return z;if(a===S&&-1!==q.indexOf(B))return z;if(-1!==q.concat(D).indexOf(a)&&B===L&&-1===Z.indexOf(A[i])||-1!==q.concat(D).indexOf(B)&&a===b)return z;if(41===a&&41===B){for(var h=e[s],d=1;h>0&&41===t[--h];)d++;if(d%2!=0)return z}return a===V&&B===N?z:_},aA=function(){function A(A,t,e,r){this.codePoints=A,this.required="!"===t,this.start=e,this.end=r}return A.prototype.slice=function(){return i.apply(void 0,this.codePoints.slice(this.start,this.end))},A}();const cA=A=>A>=48&&A<=57,BA=A=>cA(A)||A>=65&&A<=70||A>=97&&A<=102,lA=A=>10===A||9===A||32===A,gA=A=>(A=>(A=>A>=97&&A<=122)(A)||(A=>A>=65&&A<=90)(A))(A)||(A=>A>=128)(A)||95===A,hA=A=>gA(A)||cA(A)||45===A,dA=A=>A>=0&&A<=8||11===A||A>=14&&A<=31||127===A,wA=(A,t)=>92===A&&10!==t,uA=(A,t,e)=>45===A?gA(t)||wA(t,e):!!gA(A)||!(92!==A||!wA(A,t)),QA=(A,t,e)=>43===A||45===A?!!cA(t)||46===t&&cA(e):cA(46===A?t:A),CA=A=>{let t=0,e=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(e=-1),t++);const r=[];for(;cA(A[t]);)r.push(A[t++]);const n=r.length?parseInt(i(...r),10):0;46===A[t]&&t++;const s=[];for(;cA(A[t]);)s.push(A[t++]);const o=s.length,a=o?parseInt(i(...s),10):0;69!==A[t]&&101!==A[t]||t++;let c=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(c=-1),t++);const B=[];for(;cA(A[t]);)B.push(A[t++]);const l=B.length?parseInt(i(...B),10):0;return e*(n+a*Math.pow(10,-o))*Math.pow(10,c*l)},pA={type:2},UA={type:3},fA={type:4},FA={type:13},mA={type:8},yA={type:21},IA={type:9},HA={type:10},EA={type:11},bA={type:12},xA={type:14},vA={type:23},KA={type:1},LA={type:25},SA={type:24},DA={type:26},MA={type:27},TA={type:28},kA={type:29},OA={type:31},VA={type:32};var NA=class A{static{this._pool=[]}static{this.MAX_POOL_SIZE=40}static get(){return A._pool.pop()||new A}static release(t){A._pool.length<A.MAX_POOL_SIZE&&(t._reset(),A._pool.push(t))}constructor(){this._value=[]}_reset(){this._value=[]}write(A){this._value=this._value.concat(o(A))}read(){const A=[];let t=this.consumeToken();for(;t!==VA;)A.push(t),t=this.consumeToken();return A}consumeToken(){const A=this.consumeCodePoint();switch(A){case 34:return this.consumeStringToken(34);case 35:{const A=this.peekCodePoint(0),t=this.peekCodePoint(1),e=this.peekCodePoint(2);if(hA(A)||wA(t,e)){const r=uA(A,t,e)?2:1;return{type:5,value:this.consumeName(),flags:r}}break}case 36:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),FA;break;case 39:return this.consumeStringToken(39);case 40:return pA;case 41:return UA;case 42:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),xA;break;case 43:if(QA(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 44:return fA;case 45:{const t=A,e=this.peekCodePoint(0),r=this.peekCodePoint(1);if(QA(t,e,r))return this.reconsumeCodePoint(A),this.consumeNumericToken();if(uA(t,e,r))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();if(45===e&&62===r)return this.consumeCodePoint(),this.consumeCodePoint(),SA;break}case 46:if(QA(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 47:if(42===this.peekCodePoint(0))for(this.consumeCodePoint();;){let A=this.consumeCodePoint();if(42===A&&(A=this.consumeCodePoint(),47===A))return this.consumeToken();if(-1===A)return this.consumeToken()}break;case 58:return DA;case 59:return MA;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),LA;break;case 64:if(uA(this.peekCodePoint(0),this.peekCodePoint(1),this.peekCodePoint(2)))return{type:7,value:this.consumeName()};break;case 91:return TA;case 92:if(wA(A,this.peekCodePoint(0)))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();break;case 93:return kA;case 61:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),mA;break;case 123:return EA;case 125:return bA;case 117:case 85:{const t=this.peekCodePoint(0),e=this.peekCodePoint(1);return 43!==t||!BA(e)&&63!==e||(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(A),this.consumeIdentLikeToken()}case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),IA;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),yA;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),HA;break;case-1:return VA}return lA(A)?(this.consumeWhiteSpace(),OA):cA(A)?(this.reconsumeCodePoint(A),this.consumeNumericToken()):gA(A)?(this.reconsumeCodePoint(A),this.consumeIdentLikeToken()):{type:6,value:i(A)}}consumeCodePoint(){const A=this._value.shift();return void 0===A?-1:A}reconsumeCodePoint(A){this._value.unshift(A)}peekCodePoint(A){return A>=this._value.length?-1:this._value[A]}consumeUnicodeRangeToken(){const A=[];let t=this.consumeCodePoint();for(;BA(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();let e=!1;for(;63===t&&A.length<6;)A.push(t),t=this.consumeCodePoint(),e=!0;if(e)return{type:30,start:parseInt(i(...A.map(A=>63===A?48:A)),16),end:parseInt(i(...A.map(A=>63===A?70:A)),16)};const r=parseInt(i(...A),16);if(45===this.peekCodePoint(0)&&BA(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();const A=[];for(;BA(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();return{type:30,start:r,end:parseInt(i(...A),16)}}return{type:30,start:r,end:r}}consumeIdentLikeToken(){const A=this.consumeName();return"url"===A.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:A}):{type:20,value:A}}consumeUrlToken(){const A=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};const t=this.peekCodePoint(0);if(39===t||34===t){const A=this.consumeStringToken(this.consumeCodePoint());return 0===A.type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:A.value}):(this.consumeBadUrlRemnants(),vA)}for(;;){const t=this.consumeCodePoint();if(-1===t||41===t)return{type:22,value:i(...A)};if(lA(t))return this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:22,value:i(...A)}):(this.consumeBadUrlRemnants(),vA);if(34===t||39===t||40===t||dA(t))return this.consumeBadUrlRemnants(),vA;if(92===t){if(!wA(t,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),vA;A.push(this.consumeEscapedCodePoint())}else A.push(t)}}consumeWhiteSpace(){for(;lA(this.peekCodePoint(0));)this.consumeCodePoint()}consumeBadUrlRemnants(){for(;;){const A=this.consumeCodePoint();if(41===A||-1===A)return;wA(A,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}}consumeStringSlice(A){let t="";for(;A>0;){const e=Math.min(5e4,A);t+=i(...this._value.splice(0,e)),A-=e}return this._value.shift(),t}consumeStringToken(A){let t="",e=0;for(;;){const r=this._value[e];if(-1===r||void 0===r||r===A)return t+=this.consumeStringSlice(e),{type:0,value:t};if(10===r)return this._value.splice(0,e),KA;if(92===r){const A=this._value[e+1];-1!==A&&void 0!==A&&(10===A?(t+=this.consumeStringSlice(e),e=-1,this._value.shift()):wA(r,A)&&(t+=this.consumeStringSlice(e),t+=i(this.consumeEscapedCodePoint()),e=-1))}e++}}consumeNumber(){const A=[];let t=4,e=this.peekCodePoint(0);for(43!==e&&45!==e||A.push(this.consumeCodePoint());cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0);let r=this.peekCodePoint(1);if(46===e&&cA(r))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0),r=this.peekCodePoint(1);const n=this.peekCodePoint(2);if((69===e||101===e)&&((43===r||45===r)&&cA(n)||cA(r)))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());return[CA(A),t]}consumeNumericToken(){const[A,t]=this.consumeNumber(),e=this.peekCodePoint(0);return uA(e,this.peekCodePoint(1),this.peekCodePoint(2))?{type:15,number:A,flags:t,unit:this.consumeName()}:37===e?(this.consumeCodePoint(),{type:16,number:A,flags:t}):{type:17,number:A,flags:t}}consumeEscapedCodePoint(){const A=this.consumeCodePoint();if(BA(A)){let t=i(A);for(;BA(this.peekCodePoint(0))&&t.length<6;)t+=i(this.consumeCodePoint());lA(this.peekCodePoint(0))&&this.consumeCodePoint();const e=parseInt(t,16);return 0===e||(A=>A>=55296&&A<=57343)(e)||e>1114111?65533:e}return-1===A?65533:A}consumeName(){let A="";for(;;){const t=this.consumeCodePoint();if(hA(t))A+=i(t);else{if(!wA(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),A;A+=i(this.consumeEscapedCodePoint())}}}},RA=class A{constructor(A){this._tokens=A}static create(t){const e=new NA;return e.write(t),new A(e.read())}static parseValue(t){return A.create(t).parseComponentValue()}static parseValues(t){return A.create(t).parseComponentValues()}parseComponentValue(){let A=this.consumeToken();for(;31===A.type;)A=this.consumeToken();if(32===A.type)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(A);const t=this.consumeComponentValue();do{A=this.consumeToken()}while(31===A.type);if(32===A.type)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")}parseComponentValues(){const A=[];for(;;){const t=this.consumeComponentValue();if(32===t.type)return A;A.push(t)}}consumeComponentValue(){const A=this.consumeToken();switch(A.type){case 11:case 28:case 2:return this.consumeSimpleBlock(A.type);case 19:return this.consumeFunction(A)}return A}consumeSimpleBlock(A){const t={type:A,values:[]};let e=this.consumeToken();for(;;){if(32===e.type||_A(e,A))return t;this.reconsumeToken(e),t.values.push(this.consumeComponentValue()),e=this.consumeToken()}}consumeFunction(A){const t={name:A.value,values:[],type:18};for(;;){const A=this.consumeToken();if(32===A.type||3===A.type)return t;this.reconsumeToken(A),t.values.push(this.consumeComponentValue())}}consumeToken(){const A=this._tokens.shift();return void 0===A?VA:A}reconsumeToken(A){this._tokens.unshift(A)}};const GA=A=>15===A.type,PA=A=>17===A.type,XA=A=>20===A.type,JA=A=>0===A.type,WA=(A,t)=>XA(A)&&A.value===t,YA=A=>31!==A.type,ZA=A=>31!==A.type&&4!==A.type,zA=A=>{const t=[];let e=[];return A.forEach(A=>{4!==A.type?31!==A.type&&e.push(A):e.length&&(t.push(e),e=[])}),e.length&&t.push(e),t},_A=(A,t)=>11===t&&12===A.type||28===t&&29===A.type||2===t&&3===A.type,jA=/(\d+(?:\.\d+)?|[+\-*/()])/g,qA=A=>{const t=A.match(jA);if(!t)return NaN;const e=[],r=[],n={"+":1,"-":1,"*":2,"/":2};for(const A of t)if(/^\d+(?:\.\d+)?$/.test(A))e.push(parseFloat(A));else if("("===A)r.push(A);else if(")"===A){for(;r.length&&"("!==r[r.length-1];)e.push(r.pop());if(!r.length)return NaN;r.pop()}else{for(;r.length&&n[r[r.length-1]]>=n[A];)e.push(r.pop());r.push(A)}for(;r.length;){const A=r.pop();if("("===A)return NaN;e.push(A)}const s=[];for(const A of e)if("number"==typeof A)s.push(A);else{const t=s.pop(),e=s.pop();if(void 0===e||void 0===t)return NaN;switch(A){case"+":s.push(e+t);break;case"-":s.push(e-t);break;case"*":s.push(e*t);break;case"/":s.push(0===t?NaN:e/t);break;default:return NaN}}return 1===s.length?s[0]:NaN},$A=(A,t,e)=>Math.min(Math.max(A,t),e),At=(A,t)=>[A[0]*t[0]+A[1]*t[1]+A[2]*t[2],A[3]*t[0]+A[4]*t[1]+A[5]*t[2],A[6]*t[0]+A[7]*t[1]+A[8]*t[2]],tt=A=>At([3.2409699419045226,-1.537383177570094,-.4986107602930034,-.9692436362808796,1.8759675015077202,.04155505740717559,.05563007969699366,-.20397695888897652,1.0569715142428786],A),et=A=>At([.41239079926595934,.357584339383878,.1804807884018343,.21263900587151027,.715168678767756,.07219231536073371,.01933081871559182,.11919477979462598,.9505321522496607],A),rt=A=>A.map(A=>{const t=A<0?-1:1,e=Math.abs(A);return e>.0031308?t*(1.055*e**(1/2.4)-.055):12.92*A}),nt=A=>A.map(A=>{const t=A<0?-1:1,e=Math.abs(A);return e<=.04045?A/12.92:t*((e+.055)/1.055)**2.4}),st=A=>17===A.type||15===A.type,ot=A=>16===A.type||st(A)||it(A),it=A=>17===A.type&&void 0!==A._calcPercentage,at=A=>{return 18===(t=A).type&&"calc"===t.name?(A=>{const t=ct(A,0);if(!t)return null;const e=ct(A,100);if(!e)return null;const r=t.number,n=e.number-r;return 0===n?t:{type:17,number:r,flags:4,_calcPercentage:n,_calcPixelOffset:r}})(A):ot(A)?A:null;var t},ct=(A,t=0)=>{const e=A=>{let r="";for(const n of A)if(31!==n.type)if(18===n.type){if("calc"!==n.name)return null;{const A=e(n.values);if(null===A)return null;r+=`(${A})`}}else if(17===n.type)r+=n.number.toString();else if(15===n.type)r+="px"===n.unit?n.number.toString():"rem"===n.unit||"em"===n.unit?(16*n.number).toString():n.number.toString();else if(16===n.type)r+=(n.number/100*t).toString();else if(6===n.type){const A=n.value;"+"===A||"-"===A||"*"===A||"/"===A?r+=` ${A} `:"("===A?r+="(":")"===A&&(r+=")")}return r};try{const t=e(A.values);if(null===t||""===t.trim())return null;const r=qA(t);if("number"==typeof r&&!isNaN(r))return{type:17,number:r,flags:4}}catch(A){return null}return null},Bt=A=>A.length>1?[A[0],A[1]]:[A[0]],lt={type:17,number:0,flags:4},gt={type:16,number:50,flags:4},ht={type:16,number:100,flags:4},dt=(A,t,e)=>{const[r,n]=A;return[wt(r,t),wt(void 0!==n?n:r,e)]},wt=(A,t)=>{if(it(A))return A._calcPercentage/100*t+A._calcPixelOffset;if(16===A.type)return A.number/100*t;if(GA(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},ut="grad",Qt="turn",Ct=(A,t)=>{if(15===t.type)switch(t.unit){case"deg":return Math.PI*t.number/180;case ut:return Math.PI/200*t.number;case"rad":return t.number;case Qt:return 2*Math.PI*t.number}throw new Error("Unsupported angle type")},pt=A=>15===A.type&&("deg"===A.unit||A.unit===ut||"rad"===A.unit||A.unit===Qt),Ut=A=>{switch(A.filter(XA).map(A=>A.value).join(" ")){case"to bottom right":case"to right bottom":case"left top":case"top left":return[lt,lt];case"to top":case"bottom":return ft(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[lt,ht];case"to right":case"left":return ft(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[ht,ht];case"to bottom":case"top":return ft(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[ht,lt];case"to left":case"right":return ft(270)}return 0},ft=A=>Math.PI*A/180,Ft=A=>!(255&A),mt=A=>{const t=255&A,e=255&A>>8,r=255&A>>16,n=255&A>>24;return t<255?`rgba(${n},${r},${e},${t/255})`:`rgb(${n},${r},${e})`},yt=(A,t,e,r)=>(A<<24|t<<16|e<<8|Math.round(255*r))>>>0,It=(A,t)=>{if(17===A.type)return A.number;if(16===A.type){const e=3===t?1:255;return 3===t?A.number/100*e:Math.round(A.number/100*e)}return 0},Ht=A=>"from"===(20===A[0].type?A[0].value:"unknown"),Et=([A,t,e,r])=>{const n=rt([A,t,e]);return yt($A(Math.round(255*n[0]),0,255),$A(Math.round(255*n[1]),0,255),$A(Math.round(255*n[2]),0,255),r)},bt=A=>{const t=tt([A[0],A[1],A[2]]);return Et([t[0],t[1],t[2],A[3]])},xt=(A,t)=>{const[e,r,n,s]=t.filter(ZA);return[(17===e.type?ft(e.number):Ct(0,e))/(2*Math.PI),ot(r)?r.number/100:0,ot(n)?n.number/100:0,void 0!==s&&ot(s)?wt(s,1):1]},vt=(A,t)=>{if(Ht(t))throw new Error("Relative color not supported for hsl()");const[e,r,n,s]=xt(0,t),o=kt([e,r,n]);return yt(255*o[0],255*o[1],255*o[2],0===r?1:s)},Kt=A=>{const t=A.filter(ZA);return[ot(t[0])?t[0].number:0,ot(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},Lt=A=>{const t=A.filter(ZA);return[16===t[0].type?t[0].number/100:PA(t[0])?t[0].number:0,16===t[1].type?t[1].number/100:PA(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},St=A=>{const t=A.filter(ZA);return[16===t[0].type?t[0].number/100:PA(t[0])?t[0].number:0,16===t[1].type?t[1].number/100:PA(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},Dt=A=>At([1.0479297925449969,.022946870601609652,-.05019226628920524,.02962780877005599,.9904344267538799,-.017073799063418826,-.009243040646204504,.015055191490298152,.7518742814281371],A),Mt=A=>At([.955473421488075,-.02309845494876471,.06325924320057072,-.0283697093338637,1.0099953980813041,.021041441191917323,.012314014864481998,-.020507649298898964,1.330365926242124],A),Tt=(A,t,e)=>(e<0&&(e+=1),e>=1&&(e-=1),e<1/6?(t-A)*e*6+A:e<.5?t:e<2/3?6*(t-A)*(2/3-e)+A:A),kt=([A,t,e])=>{if(0===t)return[255*e,255*e,255*e];const r=e<=.5?e*(t+1):e+t-e*t,n=2*e-r;return[Tt(n,r,A+1/3),Tt(n,r,A),Tt(n,r,A-1/3)]},Ot=([A,t,e])=>(t<0&&(t=0),isNaN(e)&&(e=0),[A,t*Math.cos(e*Math.PI/180),t*Math.sin(e*Math.PI/180)]),Vt=A=>At([1.2268798758459243,-.5578149944602171,.2813910456659647,-.0405757452148008,1.112286803280317,-.0717110580655164,-.0763729366746601,-.4214933324022432,1.5869240198367816],At([1,.3963377773761749,.2158037573099136,1,-.1055613458156586,-.0638541728258133,1,-.0894841775298119,-1.2914855480194092],A).map(A=>A**3)),Nt=A=>{const t=(A[0]+16)/116,e=A[1]/500+t,r=t-A[2]/200,n=24389/27,s=24/116,o=[.3457*(e>s?e**3:(116*e-16)/n)/.3585,A[0]>8?t**3:A[0]/n,.2958*(r>s?r**3:(116*r-16)/n)/.3585];return Mt([o[0],o[1],o[2]])},Rt=A=>A,Gt=A=>bt([A[0],A[1],A[2],A[3]]),Pt=1.09929682680944,Xt=.018053968510807,Jt=(A,t)=>{if(18===t.type){const e=jt[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported color function "${t.name}"`);return e(A,t.values)}if(5===t.type){const[A,e,r,n]=Wt(t);return yt(A,e,r,n)}if(20===t.type){const A=$t[t.value.toUpperCase()];if(void 0!==A)return A}return $t.TRANSPARENT},Wt=A=>{if(3===A.value.length){const t=A.value.substring(0,1),e=A.value.substring(1,2),r=A.value.substring(2,3);return[parseInt(t+t,16),parseInt(e+e,16),parseInt(r+r,16),1]}if(4===A.value.length){const t=A.value.substring(0,1),e=A.value.substring(1,2),r=A.value.substring(2,3),n=A.value.substring(3,4);return[parseInt(t+t,16),parseInt(e+e,16),parseInt(r+r,16),parseInt(n+n,16)/255]}if(6===A.value.length){const t=A.value.substring(0,2),e=A.value.substring(2,4),r=A.value.substring(4,6);return[parseInt(t,16),parseInt(e,16),parseInt(r,16),1]}if(8===A.value.length){const t=A.value.substring(0,2),e=A.value.substring(2,4),r=A.value.substring(4,6),n=A.value.substring(6,8);return[parseInt(t,16),parseInt(e,16),parseInt(r,16),parseInt(n,16)/255]}return[0,0,0,1]},Yt=(A,t)=>{const e=t.filter(ZA);if(Ht(e))throw new Error("Relative color not supported for rgb()");if(3===e.length){const[A,t,r]=e.map(It);return yt(A,t,r,1)}if(4===e.length){const[A,t,r,n]=e.map(It);return yt(A,t,r,n)}return 5===e.length&&6===e[3].type&&"/"===e[3].value?yt(It(e[0],0),It(e[1],1),It(e[2],2),It(e[4],3)):0},Zt={srgb:A=>yt($A(Math.round(255*A[0]),0,255),$A(Math.round(255*A[1]),0,255),$A(Math.round(255*A[2]),0,255),$A(A[3],0,1)),"srgb-linear":Et,"display-p3":A=>{const t=(A=>{const t=[A[0],A[1],A[2]].map(A=>{const t=A<0?-1:1;return A*t<=.04045?A/12.92:t*((A+.055)/1.055)**2.4||0});return At([.4865709486482162,.26566769316909306,.1982172852343625,.2289745640697488,.6917385218365064,.079286914093745,0,.04511338185890264,1.043944368900976],[t[0],t[1],t[2]])})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},"a98-rgb":A=>{const t=tt((e=(A=>{const t=A.map(A=>(A<0?-1:1)*Math.abs(A)**(563/256));return[t[0],t[1],t[2]]})([A[0],A[1],A[2]]),At([.5766690429101305,.1855582379065463,.1882286462349947,.29734497525053605,.6273635662554661,.0752914584939978,.02703136138641234,.07068885253582723,.9913375368376388],e)));var e;return Et([t[0],t[1],t[2],A[3]])},"prophoto-rgb":A=>{const t=(A=>{const t=[A[0],A[1],A[2]].map(A=>A<16/512?A/16:A**1.8);return Mt(At([.7977666449006423,.13518129740053308,.0313477341283922,.2880748288194013,.711835234241873,8993693872564e-17,0,0,.8251046025104602],[t[0],t[1],t[2]]))})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},xyz:Gt,"xyz-d50":A=>{const t=(A=>Mt([A[0],A[1],A[2]]))([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},"xyz-d65":Gt,rec2020:A=>{const t=(A=>{const t=(A=>A.map(A=>A<4.5*Xt?A/4.5:Math.pow((A+Pt-1)/Pt,1/.45)))([A[0],A[1],A[2]]);return At([.6369580483012914,.14461690358620832,.1688809751641721,.2627002120112671,.6779980715188708,.05930171646986196,0,.028072693049087428,1.060985057710791],[t[0],t[1],t[2]])})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])}},zt={rgb:(A,t)=>{const e=t.filter(ZA);if(3===e.length){const[A,t,r]=e.map(It),n=nt([A/255,t/255,r/255]),[s,o,i]=et([n[0],n[1],n[2]]);return[s,o,i,1]}if(4===e.length){const[A,t,r,n]=e.map(It),s=nt([A/255,t/255,r/255]),[o,i,a]=et([s[0],s[1],s[2]]);return[o,i,a,n]}return[0,0,0,1]},hsl:(A,t)=>{const[e,r,n,s]=xt(0,t),o=nt(kt([e,r,n])),[i,a,c]=et([o[0],o[1],o[2]]);return[i,a,c,s]},lab:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Nt([e,r,n]);return[o,i,a,s]},lch:(A,t)=>{const[e,r,n,s]=Kt(t),[o,i,a]=Nt(Ot([e,r,n]));return[o,i,a,s]},oklab:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Vt([e,r,n]);return[o,i,a,s]},oklch:(A,t)=>{const[e,r,n,s]=St(t),[o,i,a]=Vt(Ot([e,r,n]));return[o,i,a,s]}},_t={srgb:A=>{const[t,e,r]=rt(tt([A[0],A[1],A[2]]));return[t,e,r,A[3]]},"srgb-linear":A=>{const[t,e,r]=tt([A[0],A[1],A[2]]);return[$A(Math.round(255*t),0,255),$A(Math.round(255*e),0,255),$A(Math.round(255*r),0,255),A[3]]},"display-p3":A=>{const[t,e,r]=(n=At([2.493496911941425,-.9313836179191239,-.40271078445071684,-.8294889695615747,1.7626640603183463,.023624685841943577,.03584583024378447,-.07617238926804182,.9568845240076872],[A[0],A[1],A[2]]),rt(n));var n;return[t,e,r,A[3]]},"a98-rgb":A=>{const[t,e,r]=(A=>{const t=A.map(A=>(A<0?-1:1)*Math.abs(A)**(256/563));return[t[0],t[1],t[2]]})(At([2.0415879038107465,-.5650069742788596,-.34473135077832956,-.9692436362808795,1.8759675015077202,.04155505740717557,.013444280632031142,-.11836239223101838,1.0151749943912054],[A[0],A[1],A[2]]));return[t,e,r,A[3]]},"prophoto-rgb":A=>{const[t,e,r]=(n=Dt([A[0],A[1],A[2]]),At([1.3457868816471583,-.25557208737979464,-.05110186497554526,-.5446307051249019,1.5082477428451468,.02052744743642139,0,0,1.2119675456389452],n).map(A=>A>1/512?A**(1/1.8):16*A));var n;return[t,e,r,A[3]]},xyz:Rt,"xyz-d50":A=>{const[t,e,r]=Dt([A[0],A[2],A[3]]);return[t,e,r,A[3]]},"xyz-d65":Rt,rec2020:A=>{const[t,e,r]=(A=>A.map(A=>A>=Xt?Pt*Math.pow(A,.45)-(Pt-1):4.5*A))(At([1.716651187971268,-.355670783776392,-.25336628137366,-.666684351832489,1.616481236634939,.0157685458139111,.017639857445311,-.042770613257809,.942103121235474],[A[0],A[1],A[2]]));return[t,e,r,A[3]]}},jt={hsl:vt,hsla:vt,rgb:Yt,rgba:Yt,lch:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for lch()");const[e,r,n,s]=Kt(t),o=rt(tt(Nt(Ot([e,r,n]))));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},oklch:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for oklch()");const[e,r,n,s]=St(t),o=rt(tt(Vt(Ot([e,r,n]))));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},oklab:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for oklab()");const[e,r,n,s]=Lt(t),o=rt(tt(Vt([e,r,n])));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},lab:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for lab()");const[e,r,n,s]=Lt(t),o=rt(tt(Nt([e,r,n])));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},color:(A,t)=>{const e=t.filter(ZA),r=20===e[0].type?e[0].value:"unknown";if(Ht(e)){const t=(A,t)=>{if(PA(t))return t.number;if(XA(t))return A[e=t.value,"r"===e||"x"===e?0:"g"===e||"y"===e?1:2];var e;const r=A=>{const t=A.filter(ZA);let e="(";for(const A of t)e+=18===A.type&&"calc"===A.name?r(A.values):PA(A)?A.number:6===A.type||XA(A)?A.value:"";return e+=")",e};if(18===t.type){const e=t.values.filter(ZA);if("calc"===t.name)return qA(r(e).replace(/r|x/,A[0].toString()).replace(/g|y/,A[1].toString()).replace(/b|z/,A[2].toString()))}return null},r=18===e[1].type?e[1].name:XA(e[1])||5===e[1].type?"rgb":"unknown",n=XA(e[2])?e[2].value:"unknown";let s=18===e[1].type?e[1].values:XA(e[1])?[e[1]]:[];if(XA(e[1])){if(void 0===$t[e[1].value.toUpperCase()])throw new Error("Attempting to use unknown color in relative color 'from'");{const t=qt(A,e[1].value),r=255&t;s=[{type:17,number:255&t>>24,flags:1},{type:17,number:255&t>>16,flags:1},{type:17,number:255&t>>8,flags:1},{type:17,number:r>1?r/255:r,flags:1}]}}else if(5===e[1].type){const[A,t,r,n]=Wt(e[1]);s=[{type:17,number:A,flags:1},{type:17,number:t,flags:1},{type:17,number:r,flags:1},{type:17,number:n>1?n/255:n,flags:1}]}if(0===s.length)throw new Error("Attempting to use unknown color in relative color 'from'");if("unknown"===n)throw new Error("Attempting to use unknown colorspace in relative color 'to'");const o=zt[r],i=_t[n],a=Zt[n];if(void 0===o)throw new Error(`Attempting to parse an unsupported color space "${r}" for color() function`);if(void 0===i)throw new Error(`Attempting to parse an unsupported color space "${n}" for color() function`);const c=i(o(A,s)),B=t(c,e[3]),l=t(c,e[4]),g=t(c,e[5]),h=e.length>6&&6===e[6].type&&"/"===e[6].value&&PA(e[7])?e[7].number:1;if(null===B||null===l||null===g)throw new Error("Invalid relative color in color() function");return a([B,l,g,h])}{const A=Zt[r];if(void 0===A)throw new Error(`Attempting to parse an unsupported color space "${r}" for color() function`);return A([PA(e[1])?e[1].number:0,PA(e[2])?e[2].number:0,PA(e[3])?e[3].number:0,e.length>4&&6===e[4].type&&"/"===e[4].value&&PA(e[5])?e[5].number:1])}}},qt=(A,t)=>Jt(A,RA.create(t).parseComponentValue()),$t={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},Ae=A=>A.nodeType===Node.ELEMENT_NODE,te=A=>A.nodeType===Node.TEXT_NODE,ee=A=>"object"==typeof A.className,re=A=>Ae(A)&&void 0!==A.style&&!ee(A),ne=A=>"svg"===A.tagName,se=A=>"BODY"===A.tagName,oe=A=>"CANVAS"===A.tagName,ie=A=>"VIDEO"===A.tagName,ae=A=>"IMG"===A.tagName,ce=A=>"IFRAME"===A.tagName,Be=A=>"STYLE"===A.tagName,le=A=>"TEXTAREA"===A.tagName,ge=A=>"SELECT"===A.tagName,he=A=>"SLOT"===A.tagName,de=A=>!ee(A)&&A.tagName.indexOf("-")>0,we=new Set(["IMG","VIDEO","AUDIO","CANVAS","IFRAME","INPUT","TEXTAREA","SELECT","BR","HR","META","LINK","BASE","COL","SOURCE","TRACK","WBR","AREA","PARAM","EMBED","OBJECT"]),ue={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 52;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},Qe=(A,t)=>0!==(A&t);var Ce=class{constructor(){this.counters={}}getCounterValue(A){const t=this.counters[A];return t&&t.length?t[t.length-1]:1}getCounterValues(A){return this.counters[A]||[]}pop(A){A.forEach(A=>this.counters[A].pop())}parse(A){const t=A.counterIncrement,e=A.counterReset;let r=!0;null!==t&&t.forEach(A=>{const t=this.counters[A.counter];t&&0!==A.increment&&(r=!1,t.length||t.push(1),t[Math.max(0,t.length-1)]+=A.increment)});const n=[];return r&&e.forEach(A=>{let t=this.counters[A.counter];n.push(A.counter),t||(t=this.counters[A.counter]=[]),t.push(A.reset)}),n}};const pe={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},Ue={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},fe={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},Fe={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},me=(A,t,e,r,n,s)=>A<t||A>e?Le(A,n,s.length>0):r.integers.reduce((t,e,n)=>{for(;A>=e;)A-=e,t+=r.values[n];return t},"")+s,ye=(A,t,e,r)=>{let n="";do{e||A--,n=r(A)+n,A/=t}while(A*t>=t);return n},Ie=(A,t,e,r,n)=>{const s=e-t+1;return(A<0?"-":"")+(ye(Math.abs(A),s,r,A=>i(Math.floor(A%s)+t))+n)},He=(A,t,e=". ")=>{const r=t.length;return ye(Math.abs(A),r,!1,A=>t[Math.floor(A%r)])+e},Ee=(A,t,e,r,n,s)=>{if(A<-9999||A>9999)return Le(A,4,n.length>0);let o=Math.abs(A),i=n;if(0===o)return t[0]+i;for(let r=0;o>0&&r<=4;r++){const n=o%10;0===n&&Qe(s,1)&&""!==i?i=t[n]+i:n>1||1===n&&0===r||1===n&&1===r&&Qe(s,2)||1===n&&1===r&&Qe(s,4)&&A>100||1===n&&r>1&&Qe(s,8)?i=t[n]+(r>0?e[r-1]:"")+i:1===n&&r>0&&(i=e[r-1]+i),o=Math.floor(o/10)}return(A<0?r:"")+i},be="十百千萬",xe="拾佰仟萬",ve="マイナス",Ke="마이너스",Le=(A,t,e)=>{const r=e?". ":"",n=e?"、":"",s=e?", ":"",o=e?" ":"";switch(t){case 0:return"•"+o;case 1:return"◦"+o;case 2:return"◾"+o;case 5:const t=Ie(A,48,57,!0,r);return t.length<4?`0${t}`:t;case 4:return He(A,"〇一二三四五六七八九",n);case 6:return me(A,1,3999,pe,3,r).toLowerCase();case 7:return me(A,1,3999,pe,3,r);case 8:return Ie(A,945,969,!1,r);case 9:return Ie(A,97,122,!1,r);case 10:return Ie(A,65,90,!1,r);case 11:return Ie(A,1632,1641,!0,r);case 12:case 49:return me(A,1,9999,Ue,3,r);case 35:return me(A,1,9999,Ue,3,r).toLowerCase();case 13:return Ie(A,2534,2543,!0,r);case 14:case 30:return Ie(A,6112,6121,!0,r);case 15:return He(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return He(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return Ee(A,"零一二三四五六七八九",be,"負",n,14);case 47:return Ee(A,"零壹貳參肆伍陸柒捌玖",xe,"負",n,15);case 42:return Ee(A,"零一二三四五六七八九",be,"负",n,14);case 41:return Ee(A,"零壹贰叁肆伍陆柒捌玖",xe,"负",n,15);case 26:return Ee(A,"〇一二三四五六七八九","十百千万",ve,n,0);case 25:return Ee(A,"零壱弐参四伍六七八九","拾百千万",ve,n,7);case 31:return Ee(A,"영일이삼사오육칠팔구","십백천만",Ke,s,7);case 33:return Ee(A,"零一二三四五六七八九","十百千萬",Ke,s,0);case 32:return Ee(A,"零壹貳參四五六七八九","拾百千",Ke,s,7);case 18:return Ie(A,2406,2415,!0,r);case 20:return me(A,1,19999,Fe,3,r);case 21:return Ie(A,2790,2799,!0,r);case 22:return Ie(A,2662,2671,!0,r);case 52:return me(A,1,10999,fe,3,r);case 23:return He(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return He(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return Ie(A,3302,3311,!0,r);case 28:return He(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return He(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return Ie(A,3792,3801,!0,r);case 37:return Ie(A,6160,6169,!0,r);case 38:return Ie(A,4160,4169,!0,r);case 39:return Ie(A,2918,2927,!0,r);case 40:return Ie(A,1776,1785,!0,r);case 43:return Ie(A,3046,3055,!0,r);case 44:return Ie(A,3174,3183,!0,r);case 45:return Ie(A,3664,3673,!0,r);case 46:return Ie(A,3872,3881,!0,r);default:return Ie(A,48,57,!0,r)}},Se={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:(A,t)=>t.map(A=>{if(XA(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2;case"text":return 3}return 0})},De={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Me=(A,t)=>{const e=Jt(A,t[0]),r=t[1];return r&&ot(r)?{color:e,stop:r}:{color:e,stop:null}},Te=(A,t)=>{const e=A[0],r=A[A.length-1];null===e.stop&&(e.stop=lt),null===r.stop&&(r.stop=ht);const n=[];let s=0;for(let e=0;e<A.length;e++){const r=A[e].stop;if(null!==r){const A=wt(r,t);n.push(A>s?A:s),s=A}else n.push(null)}let o=null;for(let A=0;A<n.length;A++){const t=n[A];if(null===t)null===o&&(o=A);else if(null!==o){const e=A-o,r=(t-n[o-1])/(e+1);for(let A=1;A<=e;A++)n[o+A-1]=r*A;o=null}}return A.map(({color:A},e)=>({color:A,stop:Math.max(Math.min(1,n[e]/t),0)}))},ke=(A,t,e)=>{const r="number"==typeof A?A:((A,t,e)=>{const r=t/2,n=e/2,s=wt(A[0],t)-r,o=n-wt(A[1],e);return(Math.atan2(o,s)+2*Math.PI)%(2*Math.PI)})(A,t,e),n=Math.abs(t*Math.sin(r))+Math.abs(e*Math.cos(r)),s=t/2,o=e/2,i=n/2,a=Math.sin(r-Math.PI/2)*i,c=Math.cos(r-Math.PI/2)*i;return[n,s-c,s+c,o-a,o+a]},Oe=(A,t)=>Math.sqrt(A*A+t*t),Ve=(A,t,e,r,n)=>[[0,0],[0,t],[A,0],[A,t]].reduce((A,t)=>{const[s,o]=t,i=Oe(e-s,r-o);return(n?i<A.optimumDistance:i>A.optimumDistance)?{optimumCorner:t,optimumDistance:i}:A},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner,Ne=(A,t)=>{let e=ft(180);const r=[];return zA(t).forEach((t,n)=>{if(0===n){const A=t[0];if(20===A.type&&"to"===A.value)return void(e=Ut(t));if(pt(A))return void(e=Ct(0,A))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Re=(A,t)=>{let e=ft(180);const r=[];return zA(t).forEach((t,n)=>{if(0===n){const A=t[0];if(20===A.type&&-1!==["top","left","right","bottom"].indexOf(A.value))return void(e=Ut(t));if(pt(A))return void(e=(Ct(0,A)+ft(270))%ft(360))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Ge="closest-side",Pe="farthest-side",Xe="closest-corner",Je="farthest-corner",We="circle",Ye="ellipse",Ze="cover",ze="contain",_e=(A,t)=>{let e=0,r=3;const n=[],s=[];return zA(t).forEach((t,o)=>{let i=!0;if(0===o?i=t.reduce((A,t)=>{if(XA(t))switch(t.value){case"center":return s.push(gt),!1;case"top":case"left":return s.push(lt),!1;case"right":case"bottom":return s.push(ht),!1}else if(ot(t)||st(t))return s.push(t),!1;return A},i):1===o&&(i=t.reduce((A,t)=>{if(XA(t))switch(t.value){case We:return e=0,!1;case Ye:return e=1,!1;case ze:case Ge:return r=0,!1;case Pe:return r=1,!1;case Xe:return r=2,!1;case Ze:case Je:return r=3,!1}else if(st(t)||ot(t))return Array.isArray(r)||(r=[]),r.push(t),!1;return A},i)),i){const e=Me(A,t);n.push(e)}}),{size:r,shape:e,stops:n,position:s,type:2}},je=(A,t)=>({...Ne(A,t),type:3}),qe=A=>1===A.type,$e=A=>2===A.type,Ar=A=>3===A.type,tr=(A,t)=>{if(22===t.type){const e={url:t.value,type:0};return A.cache.addImage(t.value),e}if(18===t.type){const e=rr[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported image function "${t.name}"`);return e(A,t.values)}throw new Error(`Unsupported image type ${t.type}`)};function er(A){return!(20===A.type&&"none"===A.value||18===A.type&&!rr[A.name])}const rr={"linear-gradient":Ne,"-moz-linear-gradient":Re,"-ms-linear-gradient":Re,"-o-linear-gradient":Re,"-webkit-linear-gradient":Re,"radial-gradient":(A,t)=>{let e=0,r=3;const n=[],s=[];return zA(t).forEach((t,o)=>{let i=!0;if(0===o){let A=!1;i=t.reduce((t,n)=>{if(A)if(XA(n))switch(n.value){case"center":return s.push(gt),t;case"top":case"left":return s.push(lt),t;case"right":case"bottom":return s.push(ht),t}else(ot(n)||st(n))&&s.push(n);else if(XA(n))switch(n.value){case We:return e=0,!1;case Ye:return e=1,!1;case"at":return A=!0,!1;case Ge:return r=0,!1;case Ze:case Pe:return r=1,!1;case ze:case Xe:return r=2,!1;case Je:return r=3,!1}else if(st(n)||ot(n))return Array.isArray(r)||(r=[]),r.push(n),!1;return t},i)}if(i){const e=Me(A,t);n.push(e)}}),{size:r,shape:e,stops:n,position:s,type:2}},"-moz-radial-gradient":_e,"-ms-radial-gradient":_e,"-o-radial-gradient":_e,"-webkit-radial-gradient":_e,"-webkit-gradient":(A,t)=>{const e=ft(180),r=[];let n=1;return zA(t).forEach((t,e)=>{const s=t[0];if(0===e){if(XA(s)&&"linear"===s.value)return void(n=1);if(XA(s)&&"radial"===s.value)return void(n=2)}if(18===s.type)if("from"===s.name){const t=Jt(A,s.values[0]);r.push({stop:lt,color:t})}else if("to"===s.name){const t=Jt(A,s.values[0]);r.push({stop:ht,color:t})}else if("color-stop"===s.name){const t=s.values.filter(ZA);if(2===t.length){const e=Jt(A,t[1]),n=t[0];PA(n)&&r.push({stop:{type:16,number:100*n.number,flags:n.flags},color:e})}}}),1===n?{angle:(e+ft(180))%ft(360),stops:r,type:n}:{size:3,shape:0,stops:r,position:[],type:n}},"repeating-linear-gradient":je,"-webkit-repeating-linear-gradient":je,"-moz-repeating-linear-gradient":je,"-ms-repeating-linear-gradient":je,"-o-repeating-linear-gradient":je},nr={name:"background-image",initialValue:"none",type:1,prefix:!1,skipCache:!0,parse:(A,t)=>{if(0===t.length)return[];const e=t[0];return 20===e.type&&"none"===e.value?[]:t.filter(A=>ZA(A)&&er(A)).map(t=>tr(A,t))}},sr={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:(A,t)=>t.map(A=>{if(XA(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})},or={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:(A,t)=>zA(t).map(A=>A.map(at).filter(A=>null!==A)).map(Bt)},ir={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.filter(XA).map(A=>A.value).join(" ")).map(ar)},ar=A=>{switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},cr={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.map(A=>Br(A)?A:at(A)).filter(A=>null!==A))},Br=A=>XA(A)||ot(A),lr=A=>({name:`border-${A}-color`,initialValue:"transparent",prefix:!1,type:3,format:"color"}),gr=lr("top"),hr=lr("right"),dr=lr("bottom"),wr=lr("left"),ur=A=>({name:`border-${A}-radius`,initialValue:"0 0",prefix:!1,type:1,parse:(A,t)=>Bt(t.filter(ot))}),Qr=ur("top-left"),Cr=ur("top-right"),pr=ur("bottom-right"),Ur=ur("bottom-left"),fr=A=>({name:`border-${A}-style`,initialValue:"solid",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}),Fr=fr("top"),mr=fr("right"),yr=fr("bottom"),Ir=fr("left"),Hr=A=>({name:`border-${A}-width`,initialValue:"0",type:0,prefix:!1,parse:(A,t)=>GA(t)?t.number:0}),Er=Hr("top"),br=Hr("right"),xr=Hr("bottom"),vr=Hr("left"),Kr={type:0},Lr=A=>{const[t]=A;return t?XA(t)?"farthest-side"===t.value?"farthest-side":"closest-side":ot(t)?t:"closest-side":"closest-side"},Sr=A=>{let t=null,e=null;for(const r of A)if(XA(r))switch(r.value){case"left":t=lt;break;case"right":t=ht;break;case"top":e=lt;break;case"bottom":e=ht;break;case"center":null===t?t=gt:null===e&&(e=gt)}else ot(r)&&(null===t?t=r:null===e&&(e=r));return{cx:t??gt,cy:e??gt}},Dr={name:"clip-path",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>{if(XA(t)&&"none"===t.value)return Kr;if(18===t.type)switch(t.name){case"inset":return(A=>{const t=[];for(const e of A)if(31!==e.type){if(XA(e)&&"round"===e.value)break;ot(e)&&t.push(e)}const e=t[0]??lt,r=t[1]??e;return{type:1,top:e,right:r,bottom:t[2]??e,left:t[3]??r}})(t.values);case"circle":return(A=>{const t=A.filter(YA),e=t.findIndex(A=>WA(A,"at")),r=-1===e?t:t.slice(0,e),n=-1===e?[]:t.slice(e+1);return{type:2,radius:Lr(r),...Sr(n)}})(t.values);case"ellipse":return(A=>{const t=A.filter(YA),e=t.findIndex(A=>WA(A,"at")),r=-1===e?t:t.slice(0,e),n=-1===e?[]:t.slice(e+1);return{type:3,rx:Lr(r.slice(0,1)),ry:Lr(r.slice(1,2)),...Sr(n)}})(t.values);case"polygon":return(A=>{const t=zA(A),e=[];for(const A of t){if(1===A.length&&XA(A[0]))continue;const t=A.filter(ot);t.length>=2&&e.push([t[0],t[1]])}return{type:4,points:e}})(t.values);case"path":return(A=>{const t=A.find(A=>0===A.type);return t?{type:5,d:t.value}:Kr})(t.values)}return Kr}},Mr={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Tr={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:(A,t)=>"rtl"===t?1:0},kr={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Or(t.value),0)},Or=A=>{switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},Vr={name:"float",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},Nr={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"normal"===t.value?0:17===t.type||15===t.type?t.number:0},Rr={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"strict"===t?"strict":"normal"},Gr={name:"line-height",initialValue:"normal",prefix:!1,type:4},Pr=(A,t)=>XA(A)&&"normal"===A.value?1.2*t:17===A.type?t*A.number:ot(A)?wt(A,t):t,Xr={name:"list-style-image",initialValue:"none",type:0,prefix:!1,skipCache:!0,parse:(A,t)=>20===t.type&&"none"===t.value?null:tr(A,t)},Jr={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:(A,t)=>"inside"===t?0:1},Wr=A=>({name:`margin-${A}`,initialValue:"0",prefix:!1,type:4}),Yr=Wr("top"),Zr=Wr("right"),zr=Wr("bottom"),_r=Wr("left"),jr={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).map(A=>{switch(A.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})},qr={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"break-word"===t?"break-word":"normal"},$r=A=>({name:`padding-${A}`,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}),An=$r("top"),tn=$r("right"),en=$r("bottom"),rn=$r("left"),nn={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},sn={name:"position",initialValue:"static",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},on={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:zA(t).map(t=>{const e={color:$t.TRANSPARENT,offsetX:lt,offsetY:lt,blur:lt};let r=0;for(let n=0;n<t.length;n++){const s=t[n];st(s)?(0===r?e.offsetX=s:1===r?e.offsetY=s:e.blur=s,r++):e.color=Jt(A,s)}return e})},an={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},cn={name:"transform",initialValue:"none",prefix:!0,type:0,parse:(A,t)=>{if(20===t.type&&"none"===t.value)return null;if(18===t.type){const e=Bn[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported transform function "${t.name}"`);return e(A,t.values)}return null}},Bn={matrix:(A,t)=>{const e=t.filter(A=>17===A.type).map(A=>A.number);return 6===e.length?e:null},matrix3d:(A,t)=>{const e=t.filter(A=>17===A.type).map(A=>A.number),[r,n,{},{},s,o,{},{},{},{},{},{},i,a]=e;return 16===e.length?[r,n,s,o,i,a]:null},rotate:(A,t)=>{if(1!==t.length)return null;const e=t[0];let r=0;if(17===e.type&&0===e.number)r=0;else{if(15!==e.type)return null;r=Ct(0,e)}const n=Math.cos(r),s=Math.sin(r);return[n,s,-s,n,0,0]}},ln={type:16,number:50,flags:4},gn=[ln,ln],hn={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:(A,t)=>{const e=t.filter(ot);return 2!==e.length?gn:[e[0],e[1]]}},dn={name:"rotate",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?null:17===t.type&&0===t.number?0:15===t.type?180*Ct(0,t)/Math.PI:null},wn={name:"visibility",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"hidden":return 1;case"collapse":return 2;default:return 0}}},un={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"break-all":return"break-all";case"keep-all":return"keep-all";default:return"normal"}}},Qn={name:"white-space",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"pre":return"pre";case"nowrap":return"nowrap";case"pre-wrap":return"pre-wrap";case"pre-line":return"pre-line";default:return"normal"}}},Cn=A=>0!==A,pn=A=>3===A||4===A,Un={name:"writing-mode",initialValue:"horizontal-tb",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"vertical-rl":return 1;case"vertical-lr":return 2;case"sideways-rl":return 3;case"sideways-lr":return 4;default:return 0}}},fn={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>{if(20===t.type)return{auto:!0,order:0};if(PA(t))return{auto:!1,order:t.number};throw new Error("Invalid z-index number parsed")}},Fn=(A,t)=>{if(15===t.type)switch(t.unit.toLowerCase()){case"s":return 1e3*t.number;case"ms":return t.number}throw new Error("Unsupported time type")},mn={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:1},yn={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},In={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).map(A=>{switch(A.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(A=>0!==A)},Hn={name:"text-decoration-style",initialValue:"solid",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"double":return 1;case"dotted":return 2;case"dashed":return 3;case"wavy":return 4;default:return 0}}},En={name:"text-decoration-thickness",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>{if(XA(t))switch(t.value){case"auto":return"auto";case"from-font":return"from-font"}return GA(t)?t.number:"auto"}},bn={name:"text-underline-offset",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>XA(t)&&"auto"===t.value?"auto":GA(t)?t.number:"auto"},xn={name:"font-family",initialValue:"",prefix:!1,type:1,parse:(A,t)=>{const e=[],r=[];return t.forEach(A=>{switch(A.type){case 20:case 0:e.push(A.value);break;case 17:e.push(A.number.toString());break;case 4:r.push(e.join(" ")),e.length=0}}),e.length&&r.push(e.join(" ")),r.map(A=>-1===A.indexOf(" ")?A:`'${A}'`)}},vn={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Kn={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:XA(t)&&"bold"===t.value?700:400},Ln={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>t.filter(XA).map(A=>A.value)},Sn={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},Dn={name:"content",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>{if(0===t.length)return[];const e=t[0];return 20===e.type&&"none"===e.value?[]:t}},Mn=(A,t)=>{const e=[],r=A.filter(YA);for(let A=0;A<r.length;A++){const n=r[A],s=r[A+1];if(20===n.type){const A=s&&PA(s)?s.number:t;e.push([n.value,A])}}return e},Tn={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>{if(0===t.length)return null;const e=t[0];return 20===e.type&&"none"===e.value?null:Mn(t,1).map(([A,t])=>({counter:A,increment:t}))}},kn={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>0===t.length?[]:Mn(t,0).filter(([A])=>"none"!==A).map(([A,t])=>({counter:A,reset:t}))},On={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:(A,t)=>t.filter(GA).map(A=>Fn(0,A))},Vn={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>{if(0===t.length)return null;const e=t[0];if(20===e.type&&"none"===e.value)return null;const r=[],n=t.filter(JA);if(n.length%2!=0)return null;for(let A=0;A<n.length;A+=2)r.push({open:n[A].value,close:n[A+1].value});return r}},Nn=(A,t,e)=>{if(!A)return"";const r=A[Math.min(t,A.length-1)];return r?e?r.open:r.close:""},Rn={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:zA(t).map(t=>{const e={color:255,offsetX:lt,offsetY:lt,blur:lt,spread:lt,inset:!1};let r=0;for(let n=0;n<t.length;n++){const s=t[n];WA(s,"inset")?e.inset=!0:st(s)?(0===r?e.offsetX=s:1===r?e.offsetY=s:2===r?e.blur=s:e.spread=s,r++):e.color=Jt(A,s)}return e})},Gn={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:(A,t)=>{const e=[];return t.filter(XA).forEach(A=>{switch(A.value){case"stroke":e.push(1);break;case"fill":e.push(0);break;case"markers":e.push(2)}}),[0,1,2].forEach(A=>{-1===e.indexOf(A)&&e.push(A)}),e}},Pn={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Xn={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:(A,t)=>GA(t)?t.number:0},Jn={name:"-webkit-line-clamp",initialValue:"none",prefix:!0,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?0:17===t.type?Math.max(0,Math.floor(t.number)):0},Wn={name:"object-fit",initialValue:"fill",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Yn(t.value),0)},Yn=A=>{switch(A){case"contain":return 2;case"cover":return 4;case"none":return 8;case"scale-down":return 16}return 0},Zn={name:"text-overflow",initialValue:"clip",prefix:!1,type:2,parse:(A,t)=>"ellipsis"===t?1:0},zn={name:"image-rendering",initialValue:"auto",prefix:!1,type:2,parse:(A,t)=>{switch(t.toLowerCase()){case"crisp-edges":case"-webkit-crisp-edges":case"-moz-crisp-edges":return 1;case"pixelated":case"-webkit-optimize-contrast":return 2;case"smooth":case"high-quality":return 3;default:return 0}}},_n={NORMAL:"normal",MULTIPLY:"multiply",SCREEN:"screen",OVERLAY:"overlay",DARKEN:"darken",LIGHTEN:"lighten",COLOR_DODGE:"color-dodge",COLOR_BURN:"color-burn",HARD_LIGHT:"hard-light",SOFT_LIGHT:"soft-light",DIFFERENCE:"difference",EXCLUSION:"exclusion",HUE:"hue",SATURATION:"saturation",COLOR:"color",LUMINOSITY:"luminosity"},jn=new Set(Object.values(_n)),qn={name:"mix-blend-mode",initialValue:"normal",type:2,prefix:!1,parse:(A,t)=>jn.has(t)?t:_n.NORMAL},$n={name:"filter",initialValue:"none",prefix:!1,type:1,parse:(A,t)=>{if(1===t.length&&20===t[0].type&&"none"===t[0].value)return null;const e=[];for(const A of t)if(18===A.type){const t=A,r=As(t.values);switch(t.name){case"blur":e.push(`blur(${r}px)`);break;case"brightness":case"contrast":case"invert":case"opacity":case"saturate":case"sepia":e.push(`${t.name}(${r})`);break;case"grayscale":e.push(`grayscale(${r})`);break;case"hue-rotate":e.push(`hue-rotate(${r}deg)`);break;case"drop-shadow":e.push(`drop-shadow(${r})`)}}return e.length>0?e.join(" "):null}},As=A=>{const t=[];for(const e of A)31!==e.type&&(15===e.type?t.push(`${e.number}${e.unit}`):17===e.type?t.push(`${e.number}`):16===e.type?t.push(`${e.number}%`):20===e.type?t.push(e.value):5===e.type&&t.push(`#${e.value}`));return t.join(" ")},ts={name:"font-variant-ligatures",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"none":return 1;case"common-ligatures":return 2;case"no-common-ligatures":return 3;case"discretionary-ligatures":return 4;case"no-discretionary-ligatures":return 5;case"historical-ligatures":return 6;case"no-historical-ligatures":return 7;case"contextual":return 8;case"no-contextual":return 9;default:return 0}}},es={name:"zoom",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>16===t.type?Math.max(0,t.number/100):17===t.type?Math.max(0,t.number):1},rs={name:"object-position",initialValue:"50% 50%",prefix:!1,type:1,parse:(A,t)=>{const e=[];let r=0;for(;r<t.length&&e.length<2;){const A=t[r];if(XA(A))switch(A.value){case"left":case"top":e.push(lt);break;case"center":e.push(gt);break;case"right":case"bottom":e.push(ht)}else ot(A)&&e.push(A);r++}for(;e.length<2;)e.push(gt);return[e[0],e[1]]}},ns=new Set(Object.values({NORMAL:"normal",MULTIPLY:"multiply",SCREEN:"screen",OVERLAY:"overlay",DARKEN:"darken",LIGHTEN:"lighten",COLOR_DODGE:"color-dodge",COLOR_BURN:"color-burn",HARD_LIGHT:"hard-light",SOFT_LIGHT:"soft-light",DIFFERENCE:"difference",EXCLUSION:"exclusion",HUE:"hue",SATURATION:"saturation",COLOR:"color",LUMINOSITY:"luminosity"})),ss={name:"background-blend-mode",initialValue:"normal",prefix:!1,type:1,parse:(A,t)=>{const e=[],r=t.filter(ZA);for(const A of r)XA(A)&&ns.has(A.value)&&e.push(A.value);return e.length>0?e:["normal"]}},os={name:"border-image-source",initialValue:"none",prefix:!1,type:1,skipCache:!0,parse:(A,t)=>{if(0===t.length)return null;const e=t.filter(A=>ZA(A)&&er(A));return 0===e.length?null:tr(A,e[0])}},is={name:"border-image-slice",initialValue:"100%",prefix:!1,type:1,parse:(A,t)=>{const e=t.filter(YA),r=[];let n=!1,s="percent";for(const A of e)XA(A)&&"fill"===A.value?n=!0:17===A.type?(r.push(A.number),s="number"):16===A.type&&(r.push(A.number),s="percent");const[o,i,a,c]=(A=>{const t=[...A];return 1===t.length?t.push(t[0],t[0],t[0]):2===t.length?t.push(t[0],t[1]):3===t.length&&t.push(t[1]),t.slice(0,4)})(r.length>0?r:[100]);return{top:o,right:i,bottom:a,left:c,fill:n,unit:s}}},as=A=>{switch(A){case"repeat":return 1;case"round":return 2;case"space":return 3;default:return 0}},cs={name:"border-image-repeat",initialValue:"stretch",prefix:!1,type:1,parse:(A,t)=>{const e=t.filter(YA),r=[];for(const A of e)XA(A)&&r.push(as(A.value));const n=r[0]??0;return{horizontal:n,vertical:r[1]??n}}},Bs={name:"box-decoration-break",initialValue:"slice",prefix:!1,type:2,parse:(A,t)=>"clone"===t?1:0};var ls=class{constructor(A){this.styles=A}get topColor(){return this.styles.borderTopColor}get rightColor(){return this.styles.borderRightColor}get bottomColor(){return this.styles.borderBottomColor}get leftColor(){return this.styles.borderLeftColor}get topStyle(){return this.styles.borderTopStyle}get rightStyle(){return this.styles.borderRightStyle}get bottomStyle(){return this.styles.borderBottomStyle}get leftStyle(){return this.styles.borderLeftStyle}get topWidth(){return this.styles.borderTopWidth}get rightWidth(){return this.styles.borderRightWidth}get bottomWidth(){return this.styles.borderBottomWidth}get leftWidth(){return this.styles.borderLeftWidth}get topLeftRadius(){return this.styles.borderTopLeftRadius}get topRightRadius(){return this.styles.borderTopRightRadius}get bottomRightRadius(){return this.styles.borderBottomRightRadius}get bottomLeftRadius(){return this.styles.borderBottomLeftRadius}get imageSource(){return this.styles.borderImageSource}get imageSlice(){return this.styles.borderImageSlice}get imageRepeat(){return this.styles.borderImageRepeat}get boxShadow(){return this.styles.boxShadow}},gs=class{constructor(A){this.styles=A}get color(){return this.styles.backgroundColor}get image(){return this.styles.backgroundImage}get clip(){return this.styles.backgroundClip}get origin(){return this.styles.backgroundOrigin}get position(){return this.styles.backgroundPosition}get repeat(){return this.styles.backgroundRepeat}get size(){return this.styles.backgroundSize}get blendMode(){return this.styles.backgroundBlendMode}},hs=class{constructor(A){this.styles=A}get family(){return this.styles.fontFamily}get size(){return this.styles.fontSize}get style(){return this.styles.fontStyle}get variant(){return this.styles.fontVariant}get weight(){return this.styles.fontWeight}get ligatures(){return this.styles.fontVariantLigatures}get color(){return this.styles.color}get letterSpacing(){return this.styles.letterSpacing}get lineHeight(){return this.styles.lineHeight}get textAlign(){return this.styles.textAlign}get textTransform(){return this.styles.textTransform}get textOverflow(){return this.styles.textOverflow}get textShadow(){return this.styles.textShadow}get textDecorationColor(){return this.styles.textDecorationColor}get textDecorationLine(){return this.styles.textDecorationLine}get textDecorationStyle(){return this.styles.textDecorationStyle}get textDecorationThickness(){return this.styles.textDecorationThickness}get textUnderlineOffset(){return this.styles.textUnderlineOffset}get wordBreak(){return this.styles.wordBreak}get lineBreak(){return this.styles.lineBreak}get overflowWrap(){return this.styles.overflowWrap}get writingMode(){return this.styles.writingMode}get direction(){return this.styles.direction}get webkitTextStrokeColor(){return this.styles.webkitTextStrokeColor}get webkitTextStrokeWidth(){return this.styles.webkitTextStrokeWidth}get webkitLineClamp(){return this.styles.webkitLineClamp}get paintOrder(){return this.styles.paintOrder}},ds=class{constructor(A){this.styles=A}get display(){return this.styles.display}get position(){return this.styles.position}get float(){return this.styles.float}get zIndex(){return this.styles.zIndex}get marginTop(){return this.styles.marginTop}get marginRight(){return this.styles.marginRight}get marginBottom(){return this.styles.marginBottom}get marginLeft(){return this.styles.marginLeft}get paddingTop(){return this.styles.paddingTop}get paddingRight(){return this.styles.paddingRight}get paddingBottom(){return this.styles.paddingBottom}get paddingLeft(){return this.styles.paddingLeft}get overflowX(){return this.styles.overflowX}get overflowY(){return this.styles.overflowY}get opacity(){return this.styles.opacity}get visibility(){return this.styles.visibility}get transform(){return this.styles.transform}get transformOrigin(){return this.styles.transformOrigin}get rotate(){return this.styles.rotate}get zoom(){return this.styles.zoom}get clipPath(){return this.styles.clipPath}get mixBlendMode(){return this.styles.mixBlendMode}get filter(){return this.styles.filter}get imageRendering(){return this.styles.imageRendering}get objectFit(){return this.styles.objectFit}get objectPosition(){return this.styles.objectPosition}get boxDecorationBreak(){return this.styles.boxDecorationBreak}get listStyleImage(){return this.styles.listStyleImage}get listStylePosition(){return this.styles.listStylePosition}get listStyleType(){return this.styles.listStyleType}get animationDuration(){return this.styles.animationDuration}isVisible(){return this.styles.isVisible()}isTransparent(){return this.styles.isTransparent()}isTransformed(){return this.styles.isTransformed()}isPositioned(){return this.styles.isPositioned()}isPositionedWithZIndex(){return this.styles.isPositionedWithZIndex()}isFloating(){return this.styles.isFloating()}isInlineLevel(){return this.styles.isInlineLevel()}},ws=class A{get border(){return this._border??(this._border=new ls(this))}get background(){return this._background??(this._background=new gs(this))}get font(){return this._font??(this._font=new hs(this))}get layout(){return this._layout??(this._layout=new ds(this))}static{this.standardProps=[["animationDuration",On,"animationDuration"],["backgroundClip",Se,"backgroundClip"],["backgroundColor",De,"backgroundColor"],["backgroundImage",nr,"backgroundImage"],["backgroundOrigin",sr,"backgroundOrigin"],["backgroundPosition",or,"backgroundPosition"],["backgroundRepeat",ir,"backgroundRepeat"],["backgroundSize",cr,"backgroundSize"],["borderTopColor",gr,"borderTopColor"],["borderRightColor",hr,"borderRightColor"],["borderBottomColor",dr,"borderBottomColor"],["borderLeftColor",wr,"borderLeftColor"],["borderTopLeftRadius",Qr,"borderTopLeftRadius"],["borderTopRightRadius",Cr,"borderTopRightRadius"],["borderBottomRightRadius",pr,"borderBottomRightRadius"],["borderBottomLeftRadius",Ur,"borderBottomLeftRadius"],["borderTopStyle",Fr,"borderTopStyle"],["borderRightStyle",mr,"borderRightStyle"],["borderBottomStyle",yr,"borderBottomStyle"],["borderLeftStyle",Ir,"borderLeftStyle"],["borderTopWidth",Er,"borderTopWidth"],["borderRightWidth",br,"borderRightWidth"],["borderBottomWidth",xr,"borderBottomWidth"],["borderLeftWidth",vr,"borderLeftWidth"],["boxShadow",Rn,"boxShadow"],["clipPath",Dr,"clipPath"],["color",Mr,"color"],["direction",Tr,"direction"],["display",kr,"display"],["fontFamily",xn,"fontFamily"],["fontSize",vn,"fontSize"],["fontStyle",Sn,"fontStyle"],["fontVariant",Ln,"fontVariant"],["fontWeight",Kn,"fontWeight"],["letterSpacing",Nr,"letterSpacing"],["lineBreak",Rr,"lineBreak"],["lineHeight",Gr,"lineHeight"],["listStyleImage",Xr,"listStyleImage"],["listStylePosition",Jr,"listStylePosition"],["listStyleType",ue,"listStyleType"],["marginTop",Yr,"marginTop"],["marginRight",Zr,"marginRight"],["marginBottom",zr,"marginBottom"],["marginLeft",_r,"marginLeft"],["opacity",mn,"opacity"],["overflowWrap",qr,"overflowWrap"],["paddingTop",An,"paddingTop"],["paddingRight",tn,"paddingRight"],["paddingBottom",en,"paddingBottom"],["paddingLeft",rn,"paddingLeft"],["paintOrder",Gn,"paintOrder"],["position",sn,"position"],["textAlign",nn,"textAlign"],["textDecorationStyle",Hn,"textDecorationStyle"],["textDecorationThickness",En,"textDecorationThickness"],["textUnderlineOffset",bn,"textUnderlineOffset"],["textShadow",on,"textShadow"],["textTransform",an,"textTransform"],["textOverflow",Zn,"textOverflow"],["transform",cn,"transform"],["transformOrigin",hn,"transformOrigin"],["rotate",dn,"rotate"],["visibility",wn,"visibility"],["webkitTextStrokeColor",Pn,"webkitTextStrokeColor"],["webkitTextStrokeWidth",Xn,"webkitTextStrokeWidth"],["webkitLineClamp",Jn,"webkitLineClamp"],["wordBreak",un,"wordBreak"],["whiteSpace",Qn,"whiteSpace"],["writingMode",Un,"writingMode"],["zIndex",fn,"zIndex"],["objectFit",Wn,"objectFit"],["imageRendering",zn,"imageRendering"],["mixBlendMode",qn,"mixBlendMode"],["filter",$n,"filter"],["fontVariantLigatures",ts,"fontVariantLigatures"],["zoom",es,"zoom"],["objectPosition",rs,"objectPosition"],["backgroundBlendMode",ss,"backgroundBlendMode"],["borderImageSource",os,"borderImageSource"],["borderImageSlice",is,"borderImageSlice"],["borderImageRepeat",cs,"borderImageRepeat"],["boxDecorationBreak",Bs,"boxDecorationBreak"]]}constructor(t,e){const r=A.standardProps;if("none"===e.display){this.display=0;for(const[A,e]of r)"display"!==A&&(this[A]=ps(t,e,void 0));this.float=ps(t,Vr,void 0),this.textDecorationColor=ps(t,yn,void 0),this.textDecorationLine=ps(t,In,void 0);const A=ps(t,jr,void 0);return this.overflowX=A[0],void(this.overflowY=A[A.length>1?1:0])}for(const[A,n,s]of r)this[A]=ps(t,n,e[s]);this.float=ps(t,Vr,e.cssFloat),this.textDecorationColor=ps(t,yn,e.textDecorationColor??e.color),this.textDecorationLine=ps(t,In,e.textDecorationLine??e.textDecoration);const n=ps(t,jr,e.overflow);this.overflowX=n[0],this.overflowY=n[n.length>1?1:0]}isVisible(){return this.display>0&&this.opacity>0&&0===this.visibility}isTransparent(){return Ft(this.backgroundColor)}isTransformed(){return null!==this.transform||null!==this.rotate}isPositioned(){return 0!==this.position}isPositionedWithZIndex(){return this.isPositioned()&&!this.zIndex.auto}isFloating(){return 0!==this.float}isInlineLevel(){return Qe(this.display,4)||Qe(this.display,33554432)||Qe(this.display,268435456)||Qe(this.display,536870912)||Qe(this.display,67108864)||Qe(this.display,134217728)}},us=class{constructor(A,t){this.content=ps(A,Dn,t.content),this.quotes=ps(A,Vn,t.quotes)}},Qs=class{constructor(A,t){this.counterIncrement=ps(A,Tn,t.counterIncrement),this.counterReset=ps(A,kn,t.counterReset)}};const Cs=new Map,ps=(A,t,e)=>{let r=null!=e?e.toString():t.initialValue;""===r.trim()&&(r=t.initialValue);let n=Cs.get(t);if(n){const A=n.get(r);if(void 0!==A)return n.delete(r),n.set(r,A),A}const s=NA.get();s.write(r);const o=new RA(s.read());NA.release(s);const i=(()=>{switch(t.type){case 2:{const e=o.parseComponentValue();return t.parse(A,XA(e)?e.value:t.initialValue)}case 0:return t.parse(A,o.parseComponentValue());case 1:return t.parse(A,o.parseComponentValues());case 4:return o.parseComponentValue();case 3:switch(t.format){case"angle":return Ct(0,o.parseComponentValue());case"color":return Jt(A,o.parseComponentValue());case"image":return tr(A,o.parseComponentValue());case"length":{const A=o.parseComponentValue();return st(A)?A:lt}case"length-percentage":{const A=o.parseComponentValue();return ot(A)?A:lt}case"time":return Fn(0,o.parseComponentValue())}}})();if(n||(n=new Map,Cs.set(t,n)),!(t.skipCache||3===t.type&&"image"===t.format)){if(n.size>=200){const A=n.keys().next().value;n.delete(A)}n.set(r,i)}return i},Us=(A,t)=>{const e=(A=>{if("function"!=typeof A.getAttribute)return 0;switch(A.getAttribute("data-html2canvas-debug")){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}})(A);return 1===e||t===e};var fs=class{constructor(A,t,e){this.cloneNodeFn=A,this.options=t,this.context=e}appendChildNode(A,t,e){this.safeAppendClonedChild(A,t,e)}cloneChildNodes(A,t,e){A.shadowRoot&&t.shadowRoot?(this.cloneShadowDOMChildren(A.shadowRoot,t.shadowRoot,e),this.cloneLightDOMChildren(A,t,e)):A.shadowRoot&&!t.shadowRoot?this.cloneShadowDOMAsLightDOM(A.shadowRoot,t,e):this.cloneLightDOMChildren(A,t,e)}shouldCloneChild(A){return!(Ae(A)&&(t=A,"SCRIPT"===t.tagName||A.hasAttribute("data-html2canvas-ignore")||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(A)));var t}shouldCloneStyleElement(A){return!this.options.copyStyles||!Ae(A)||!Be(A)}safeAppendClonedChild(A,t,e){this.shouldCloneChild(t)&&this.shouldCloneStyleElement(t)&&A.appendChild(this.cloneNodeFn(t,e))}cloneAssignedNodes(A,t,e){A.forEach(A=>{this.safeAppendClonedChild(t,A,e)})}cloneSlotFallbackContent(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)this.safeAppendClonedChild(t,r,e)}cloneSlotElement(A,t,e){if(!he(A))return;const r=A;if("function"!=typeof r.assignedNodes)return this.context.logger.warn("HTMLSlotElement.assignedNodes is not available",A),void this.cloneSlotFallbackContent(A,t,e);const n=r.assignedNodes();if(!n||!Array.isArray(n))return this.context.logger.warn("assignedNodes() did not return a valid array",A),void this.cloneSlotFallbackContent(A,t,e);n.length>0?this.cloneAssignedNodes(n,t,e):this.cloneSlotFallbackContent(A,t,e)}cloneShadowDOMChildren(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)Ae(r)&&he(r)?this.cloneSlotElement(r,t,e):this.safeAppendClonedChild(t,r,e)}cloneLightDOMChildren(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e)}cloneSlotElementAsLightDOM(A,t,e){if(!he(A))return;const r=A;if("function"!=typeof r.assignedNodes){for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e);return}const n=r.assignedNodes();if(n&&Array.isArray(n)&&n.length>0)n.forEach(A=>this.appendChildNode(t,A,e));else for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e)}cloneShadowDOMAsLightDOM(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)Ae(r)&&he(r)?this.cloneSlotElementAsLightDOM(r,t,e):this.appendChildNode(t,r,e)}},Fs=class{constructor(A,t,e){if(this.context=A,this.options=e,this.scrolledElements=[],this.referenceElement=t,this.counters=new Ce,this.quoteDepth=0,this.slotCloner=new fs((A,t)=>this.cloneNode(A,t),{ignoreElements:e.ignoreElements,copyStyles:e.copyStyles??!0},A),!t.ownerDocument)throw new Error("Cloned element does not have an owner document");if(!this.options.iframeContainer){const A=(A=>{let t=A;for(;t;){if(t.parentNode&&t.parentNode.host)return t.parentNode;const A=t.getRootNode();if(A&&A!==t.ownerDocument&&A.host)return A;t=t.parentNode}return null})(t);A&&(this.options.iframeContainer=A)}this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}toIFrame(A,t){const e=ms(A,t,this.options.iframeContainer);if(!e.contentWindow)throw new Error("Unable to find iframe window");const r=A.defaultView.pageXOffset,n=A.defaultView.pageYOffset,s=e.contentWindow,o=s.document,i=Hs(e).then(async()=>{this.scrolledElements.forEach(Ks),s&&(s.scrollTo(t.left,t.top),!/AppleWebKit/g.test(navigator.userAgent)||s.scrollY===t.top&&s.scrollX===t.left||(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(s.scrollX-t.left,s.scrollY-t.top,0,0)));const A=this.options.onclone,r=this.clonedReferenceElement;if(void 0===r)throw new Error(`Error finding the ${this.referenceElement.nodeName} in the cloned document`);return o.fonts&&o.fonts.ready&&await o.fonts.ready,/(AppleWebKit)/g.test(navigator.userAgent)&&await Is(o),"function"==typeof A?Promise.resolve().then(()=>A(o,r)).then(()=>e):e}),a=A.baseURI;o.open();const c=xs(document.doctype)+"<html></html>";try{const A=this.referenceElement.ownerDocument?.defaultView,t=A&&A.trustedTypes;let e=t?.getPolicy?.("html2canvas-pro");!e&&t&&(e=t.createPolicy("html2canvas-pro",{createHTML:A=>A}));const r=e?e.createHTML(c):c;o.write(r)}catch(A){o.write(c)}vs(this.referenceElement.ownerDocument,r,n),o.close();const B=o.adoptNode(this.documentElement);return ks(B,a),o.replaceChild(B,o.documentElement),i}createElementClone(A){if(Us(A,2),oe(A))return this.createCanvasClone(A);if(ie(A))return this.createVideoClone(A);if(Be(A))return this.createStyleClone(A);const t=A.cloneNode(!1);return ae(t)&&(ae(A)&&A.currentSrc&&A.currentSrc!==A.src&&(t.src=A.currentSrc,t.srcset=""),"lazy"===t.loading&&(t.loading="eager")),de(t)&&!ee(t)?this.createCustomElementClone(A,t):t}createCustomElementClone(A,t){const e=document.createElement("div");e.className=t.className,bs(t.style,e);const r=t.attributes;for(let A=0;A<r.length;A++){const t=r[A];"class"!==t.name&&"style"!==t.name&&e.setAttribute(t.name,t.value)}if(A.shadowRoot)try{e.attachShadow({mode:"open"})}catch(A){this.context.logger.error("Failed to attach shadow root to custom element clone:",A)}return e}createStyleClone(A){try{const t=A.sheet;if(t&&t.cssRules){const e=[].slice.call(t.cssRules,0).reduce((A,t)=>t&&"string"==typeof t.cssText?A+t.cssText:A,""),r=A.cloneNode(!1);return r.textContent=e,this.options.cspNonce&&(r.nonce=this.options.cspNonce),r}}catch(A){if(this.context.logger.error("Unable to access cssRules property",A),"SecurityError"!==A.name)throw A}const t=A.cloneNode(!1);return this.options.cspNonce&&(t.nonce=this.options.cspNonce),t}createCanvasClone(A){if(this.options.inlineImages&&A.ownerDocument){const t=A.ownerDocument.createElement("img");try{return t.src=A.toDataURL(),t}catch(t){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",A)}}const t=A.cloneNode(!1);try{t.width=A.width,t.height=A.height;const e=A.getContext("2d"),r=t.getContext("2d",{willReadFrequently:!0});if(r)if(!this.options.allowTaint&&e)r.putImageData(e.getImageData(0,0,A.width,A.height),0,0);else{const t=A.getContext("webgl2")??A.getContext("webgl");t&&!1===t.getContextAttributes()?.preserveDrawingBuffer&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",A),r.drawImage(A,0,0)}return t}catch(t){this.context.logger.info("Unable to clone canvas as it is tainted",A)}return t}createVideoClone(A){const t=A.ownerDocument.createElement("canvas");t.width=A.offsetWidth,t.height=A.offsetHeight;const e=t.getContext("2d");try{return e&&(e.drawImage(A,0,0,t.width,t.height),this.options.allowTaint||e.getImageData(0,0,t.width,t.height)),t}catch(t){this.context.logger.info("Unable to clone video as it is tainted",A)}const r=A.ownerDocument.createElement("canvas");return r.width=A.offsetWidth,r.height=A.offsetHeight,r}appendChildNode(A,t,e){this.slotCloner.appendChildNode(A,t,e)}cloneChildNodes(A,t,e){this.slotCloner.cloneChildNodes(A,t,e)}cloneNode(A,t){if(te(A))return document.createTextNode(A.data);if(!A.ownerDocument)return A.cloneNode(!1);const e=A.ownerDocument.defaultView;if(e&&Ae(A)&&(re(A)||ee(A))){const n=this.createElementClone(A);n.style.transitionProperty="none";const s=e.getComputedStyle(A),o=!ee(r=A)&&!we.has(r.tagName);this.referenceElement===A&&re(n)&&(this.clonedReferenceElement=n),se(n)&&Ms(n,this.options.cspNonce);const i=this.counters.parse(new Qs(this.context,s));if(o){const t=e.getComputedStyle(A,":before"),r=this.resolvePseudoContent(A,n,t,0);r&&n.insertBefore(r,n.firstChild);const s=e.getComputedStyle(A,":after"),o=this.resolvePseudoContent(A,n,s,1);o&&n.appendChild(o)}return de(A)&&(t=!0),ie(A)||this.cloneChildNodes(A,n,t),this.counters.pop(i),(s&&(this.options.copyStyles||ee(A))&&!ce(A)||t)&&bs(s,n),0===A.scrollTop&&0===A.scrollLeft||this.scrolledElements.push([n,A.scrollLeft,A.scrollTop]),(le(A)||ge(A))&&(le(n)||ge(n))&&(n.value=A.value),n}var r;return A.cloneNode(!1)}resolvePseudoContent(A,t,e,r){if(!e)return;const n=e.content,s=t.ownerDocument;if(!s||!n||"none"===n||"-moz-alt-content"===n||"none"===e.display)return;this.counters.parse(new Qs(this.context,e));const o=new us(this.context,e),i=s.createElement("html2canvaspseudoelement");bs(e,i),o.content.forEach(t=>{if(0===t.type)i.appendChild(s.createTextNode(t.value));else if(22===t.type){const A=s.createElement("img");A.src=t.value,A.style.opacity="1",i.appendChild(A)}else if(18===t.type){if("attr"===t.name){const e=t.values.filter(XA);e.length&&i.appendChild(s.createTextNode(A.getAttribute(e[0].value)||""))}else if("counter"===t.name){const[A,e]=t.values.filter(ZA);if(A&&XA(A)){const t=this.counters.getCounterValue(A.value),r=e&&XA(e)?ue.parse(this.context,e.value):3;i.appendChild(s.createTextNode(Le(t,r,!1)))}}else if("counters"===t.name){const[A,e,r]=t.values.filter(ZA);if(A&&XA(A)){const t=this.counters.getCounterValues(A.value),n=r&&XA(r)?ue.parse(this.context,r.value):3,o=e&&0===e.type?e.value:"",a=t.map(A=>Le(A,n,!1)).join(o);i.appendChild(s.createTextNode(a))}}}else if(20===t.type)switch(t.value){case"open-quote":i.appendChild(s.createTextNode(Nn(o.quotes,this.quoteDepth++,!0)));break;case"close-quote":i.appendChild(s.createTextNode(Nn(o.quotes,--this.quoteDepth,!1)));break;default:i.appendChild(s.createTextNode(t.value))}}),i.className=`${Ls} ${Ss}`;const a=0===r?` ${Ls}`:` ${Ss}`;return ee(t)?t.className.baseValue+=a:t.className+=a,i}static destroy(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)}};const ms=(A,t,e)=>{const r=A.createElement("iframe");return r.className="html2canvas-container",r.style.visibility="hidden",r.style.position="fixed",r.style.left="-10000px",r.style.top="0px",r.style.border="0",r.width=t.width.toString(),r.height=t.height.toString(),r.scrolling="no",r.setAttribute("data-html2canvas-ignore","true"),(e||A.body).appendChild(r),r},ys=A=>new Promise(t=>{A.complete?t():A.src?(A.onload=t,A.onerror=t):t()}),Is=A=>Promise.all([].slice.call(A.images,0).map(ys)),Hs=A=>new Promise((t,e)=>{const r=A.contentWindow;if(!r)return e("No window assigned for iframe");const n=r.document;r.onload=A.onload=()=>{r.onload=A.onload=null;let e=0;const s=setInterval(()=>{e++,(n.body.childNodes.length>0&&"complete"===n.readyState||e>=600)&&(clearInterval(s),t(A))},50)}}),Es=["all","d","content"],bs=(A,t)=>{const e=[];for(let t=A.length-1;t>=0;t--){const r=A.item(t);if(-1===Es.indexOf(r)&&!r.startsWith("--")){const t=A.getPropertyValue(r);if(t){const n=A.getPropertyPriority(r);e.push(n?`${r}:${t} !${n}`:`${r}:${t}`)}}}return e.length>0&&(t.style.cssText=e.join(";")+";"),t},xs=A=>{let t="";return A&&(t+="<!DOCTYPE ",A.name&&(t+=A.name),A.internalSubset&&(t+=" "+A.internalSubset.replace(/"/g,"&quot;").replace(/>/g,"&gt;")),A.publicId?(t+=' PUBLIC "'+A.publicId.replace(/"/g,"&quot;")+'"',A.systemId&&(t+=' "'+A.systemId.replace(/"/g,"&quot;")+'"')):A.systemId&&(t+=' SYSTEM "'+A.systemId.replace(/"/g,"&quot;")+'"'),t+=">"),t},vs=(A,t,e)=>{A&&A.defaultView&&(t!==A.defaultView.pageXOffset||e!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(t,e)},Ks=([A,t,e])=>{A.scrollLeft=t,A.scrollTop=e},Ls="___html2canvas___pseudoelement_before",Ss="___html2canvas___pseudoelement_after",Ds='{\n content: "" !important;\n display: none !important;\n}',Ms=(A,t)=>{Ts(A,`.${Ls}:before${Ds}\n .${Ss}:after${Ds}`,t)},Ts=(A,t,e)=>{const r=A.ownerDocument;if(r){const n=r.createElement("style");n.textContent=t,e&&(n.nonce=e),A.appendChild(n)}},ks=(A,t)=>{const e=A.ownerDocument.createElement("base");e.href=t;const r=A.getElementsByTagName("head").item(0);r?.insertBefore(e,r?.firstChild??null)};for(var Os=class{static normalizeElement(A,t){const e={};return re(A)?(t.animationDuration.some(A=>A>0)&&(e.animationDuration=A.style.animationDuration,A.style.animationDuration="0s"),null!==t.transform&&(e.transform=A.style.transform,A.style.transform="translate(0, 0)"),null!==t.rotate&&(e.rotate=A.style.rotate,A.style.rotate="0deg",void 0===e.transform&&(e.transform=A.style.transform,A.style.transform="translate(0, 0)")),e):e}static restoreElement(A,t){re(A)&&(void 0!==t.animationDuration&&(A.style.animationDuration=t.animationDuration),void 0!==t.transform&&(A.style.transform=t.transform),void 0!==t.rotate&&(A.style.rotate=t.rotate))}},Vs=class{constructor(A,t,e={}){if(this.context=A,this.textNodes=[],this.elements=[],this.createsStackingContext=!1,this.createsRealStackingContext=!1,this.isListOwner=!1,this.debugRender=!1,Us(t,3),this.styles=new ws(A,A.config.window.getComputedStyle(t,null)),!1!==e.normalizeDom&&re(t)&&(this.originalStyles=Os.normalizeElement(t,this.styles),this.originalElement=t),this.bounds=s(this.context,t),"FIELDSET"===t.tagName){const A=t.querySelector(":scope > legend");if(A){const t=s(this.context,A);this.legendBounds=t;const e=t.top+t.height/2-this.styles.borderTopWidth/2;this.bounds=new n(this.bounds.left,e,this.bounds.width,this.bounds.height-(e-this.bounds.top))}}Us(t,4)&&(this.debugRender=!0)}restore(){this.originalStyles&&this.originalElement&&(Os.restoreElement(this.originalElement,this.originalStyles),this.originalStyles=void 0,this.originalElement=void 0)}restoreTree(){this.restore();for(const A of this.elements)A.restoreTree()}},Ns="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Rs=0;Rs<64;Rs++)Ns["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Rs)]=Rs;for(var Gs=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),Ps=function(){function A(A,t,e,r,n,s){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=s}return A.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return this.data[t=((t=this.index[A>>5])<<2)+(31&A)];if(A<=65535)return this.data[t=((t=this.index[2048+(A-55296>>5)])<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],this.data[t=((t=this.index[t+=A>>5&63])<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),Xs="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Js=0;Js<64;Js++)Xs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Js)]=Js;var Ws=8,Ys=9,Zs=11,zs=12,_s=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,s="";++n<e;){var o=A[n];o<=65535?r.push(o):r.push(55296+((o-=65536)>>10),o%1024+56320),(n+1===e||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},js=(()=>{var A,t,e,r=(A=>{var t,e,r,n,s,o=.75*A.length,i=A.length,a=0;"="===A[A.length-1]&&(o--,"="===A[A.length-2]&&o--);var c="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),B=Array.isArray(c)?c:new Uint8Array(c);for(t=0;t<i;t+=4)e=Ns[A.charCodeAt(t)],r=Ns[A.charCodeAt(t+1)],n=Ns[A.charCodeAt(t+2)],s=Ns[A.charCodeAt(t+3)],B[a++]=e<<2|r>>4,B[a++]=(15&r)<<4|n>>2,B[a++]=(3&n)<<6|63&s;return c})("AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="),n=Array.isArray(r)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(r):new Uint32Array(r),s=Array.isArray(r)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(r):new Uint16Array(r),o=Gs(s,12,n[4]/2),i=2===n[5]?Gs(s,(24+n[4])/2):(A=n,t=Math.ceil((24+n[4])/4),A.slice?A.slice(t,e):new Uint32Array(Array.prototype.slice.call(A,t,e)));return new Ps(n[0],n[1],n[2],n[3],o,i)})(),qs="×",$s=A=>js.get(A),Ao=(A,t,e)=>{var r=e-2,n=t[r],s=t[e-1],o=t[e];if(2===s&&3===o)return qs;if(2===s||3===s||4===s)return"÷";if(2===o||3===o||4===o)return"÷";if(s===Ws&&-1!==[Ws,Ys,Zs,zs].indexOf(o))return qs;if(!(s!==Zs&&s!==Ys||o!==Ys&&10!==o))return qs;if((s===zs||10===s)&&10===o)return qs;if(13===o||5===o)return qs;if(7===o)return qs;if(1===s)return qs;if(13===s&&14===o){for(;5===n;)n=t[--r];if(14===n)return qs}if(15===s&&15===o){for(var i=0;15===n;)i++,n=t[--r];if(i%2==0)return qs}return"÷"};const to=A=>0===A[0]&&255===A[1]&&0===A[2]&&255===A[3],eo=(A,t,e,r,n)=>{const s="http://www.w3.org/2000/svg",o=document.createElementNS(s,"svg"),i=document.createElementNS(s,"foreignObject");return o.setAttributeNS(null,"width",A.toString()),o.setAttributeNS(null,"height",t.toString()),i.setAttributeNS(null,"width","100%"),i.setAttributeNS(null,"height","100%"),i.setAttributeNS(null,"x",e.toString()),i.setAttributeNS(null,"y",r.toString()),i.setAttributeNS(null,"externalResourcesRequired","true"),o.appendChild(i),i.appendChild(n),o},ro=A=>new Promise((t,e)=>{const r=new Image;r.onload=()=>t(r),r.onerror=e,r.src=`data:image/svg+xml;charset=utf-8,${encodeURIComponent((new XMLSerializer).serializeToString(A))}`}),no={get SUPPORT_RANGE_BOUNDS(){const A=(A=>{if(A.createRange){const t=A.createRange();if(t.getBoundingClientRect){const e=A.createElement("boundtest");e.style.height="123px",e.style.display="block",A.body.appendChild(e),t.selectNode(e);const r=t.getBoundingClientRect(),n=Math.round(r.height);if(A.body.removeChild(e),123===n)return!0}}return!1})(document);return Object.defineProperty(no,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){const A=no.SUPPORT_RANGE_BOUNDS&&(A=>{const t=A.createElement("boundtest");t.style.width="50px",t.style.display="block",t.style.fontSize="12px",t.style.letterSpacing="0px",t.style.wordSpacing="0px",A.body.appendChild(t);const e=A.createRange();t.innerHTML="function"==typeof"".repeat?"&#128104;".repeat(10):"";const r=t.firstChild,n=o(r.data).map(A=>i(A));let s=0,a={};const c=n.every((A,t)=>{e.setStart(r,s),e.setEnd(r,s+A.length);const n=e.getBoundingClientRect();s+=A.length;const o=n.x>a.x||n.y>a.y;return a=n,0===t||o});return A.body.removeChild(t),c})(document);return Object.defineProperty(no,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){const A=(A=>{const t=new Image,e=A.createElement("canvas"),r=e.getContext("2d");if(!r)return!1;t.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{r.drawImage(t,0,0),e.toDataURL()}catch(A){return!1}return!0})(document);return Object.defineProperty(no,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){const A="function"==typeof Array.from&&"function"==typeof window.fetch?(A=>{const t=A.createElement("canvas"),e=100;t.width=e,t.height=e;const r=t.getContext("2d");if(!r)return Promise.reject(new Error("Failed to get 2D rendering context"));r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,e,e);const n=new Image,s=t.toDataURL();n.src=s;const o=eo(e,e,0,0,n);return r.fillStyle="red",r.fillRect(0,0,e,e),ro(o).then(t=>{r.drawImage(t,0,0);const n=r.getImageData(0,0,e,e).data;r.fillStyle="red",r.fillRect(0,0,e,e);const o=A.createElement("div");return o.style.backgroundImage=`url(${s})`,o.style.height="100px",to(n)?ro(eo(e,e,0,0,o)):Promise.reject(new Error("ForeignObject rendering not supported"))}).then(A=>(r.drawImage(A,0,0),to(r.getImageData(0,0,e,e).data))).catch(()=>!1)})(document):Promise.resolve(!1);return Object.defineProperty(no,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){const A=void 0!==(new Image).crossOrigin;return Object.defineProperty(no,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){const A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(no,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){const A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(no,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){const A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(no,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}};var so=class{constructor(A,t){this.text=A,this.bounds=t}};const oo=(A,t,e)=>{const r=A.ownerDocument;if(!r)throw new Error("Node has no owner document");const n=r.createRange();return n.setStart(A,t),n.setEnd(A,t+e),n},io=A=>{if(no.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(t.segment(A)).map(A=>A.segment)}return(A=>{for(var t,e=(A=>{var t=(A=>{for(var t=[],e=0,r=A.length;e<r;){var n=A.charCodeAt(e++);if(n>=55296&&n<=56319&&e<r){var s=A.charCodeAt(e++);56320==(64512&s)?t.push(((1023&n)<<10)+(1023&s)+65536):(t.push(n),e--)}else t.push(n)}return t})(A),e=t.length,r=0,n=0,s=t.map($s);return{next:()=>{if(r>=e)return{done:!0,value:null};for(var A=qs;r<e&&(A=Ao(0,s,++r))===qs;);if(A!==qs||r===e){var o=_s.apply(null,t.slice(n,r));return n=r,{value:o,done:!1}}return{done:!0,value:null}}}})(A),r=[];!(t=e.next()).done;)t.value&&r.push(t.value.slice());return r})(A)},ao=[32,160,4961,65792,65793,4153,4241],co=(A,t)=>{const e=((A,t)=>{var e=o(A),r=((A,t)=>{t||(t={lineBreak:"normal",wordBreak:"normal"});var e=((A,t)=>{void 0===t&&(t="strict");var e=[],r=[],n=[];return A.forEach((A,s)=>{var o=j.get(A);if(o>50?(n.push(!0),o-=50):n.push(!1),-1!==["normal","auto","loose"].indexOf(t)&&-1!==[8208,8211,12316,12448].indexOf(A))return r.push(s),e.push(16);if(4===o||11===o){if(0===s)return r.push(s),e.push(O);var i=e[s-1];return-1===eA.indexOf(i)?(r.push(r[s-1]),e.push(i)):(r.push(s),e.push(O))}return r.push(s),31===o?e.push("strict"===t?K:P):o===Y||29===o?e.push(O):43===o?e.push(A>=131072&&A<=196605||A>=196608&&A<=262141?P:O):void e.push(o)}),[r,e,n]})(A,t.lineBreak),r=e[0],n=e[1],s=e[2];"break-all"!==t.wordBreak&&"break-word"!==t.wordBreak||(n=n.map(A=>-1!==[D,O,Y].indexOf(A)?P:A));var o="keep-all"===t.wordBreak?s.map((t,e)=>t&&A[e]>=19968&&A[e]<=40959):void 0;return[r,n,o]})(e,t),n=r[0],s=r[1],i=r[2],a=e.length,c=0,B=0;return{next:()=>{if(B>=a)return{done:!0,value:null};for(var A=z;B<a&&(A=iA(e,s,n,++B,i))===z;);if(A!==z||B===a){var t=new aA(e,A,c,B);return c=B,{value:t,done:!1}}return{done:!0,value:null}}}})(A,{lineBreak:t.lineBreak,wordBreak:"break-word"===t.overflowWrap?"break-word":t.wordBreak}),r=[];let n;for(;!(n=e.next()).done;)if(n.value){const A=o(n.value.slice());let t="";A.forEach(A=>{-1===ao.indexOf(A)?t+=i(A):(t.length&&r.push(t),r.push(i(A)),t="")}),t.length&&r.push(t)}return r};var Bo=class{constructor(A,t,e){this.text=lo(t.data,e.textTransform),this.text.length!==t.data.length&&(t.data=this.text),this.textBounds=((A,t,e,r)=>{const o=((A,t)=>Cn(t.writingMode)||0!==t.letterSpacing?io(A):((A,t)=>{if(no.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(A=>A.segment)}return co(A,t)})(A,t))(this.text,e),i=[];let a=0;return o.forEach(t=>{if(e.textDecorationLine.length||t.trim().length>0)if(no.SUPPORT_RANGE_BOUNDS){const e=oo(r,a,t.length).getClientRects();if(e.length>1){const e=io(t);let s=0;e.forEach(t=>{i.push(new so(t,n.fromDOMRectList(A,oo(r,s+a,t.length).getClientRects()))),s+=t.length})}else i.push(new so(t,n.fromDOMRectList(A,e)))}else{const e=r.splitText(t.length);i.push(new so(t,((A,t)=>{const e=t.ownerDocument;if(e){const r=e.createElement("html2canvaswrapper");r.appendChild(t.cloneNode(!0));const n=t.parentNode;if(n){n.replaceChild(r,t);const e=s(A,r);return r.firstChild&&n.replaceChild(r.firstChild,r),e}}return n.EMPTY})(A,r))),r=e}else no.SUPPORT_RANGE_BOUNDS||(r=r.splitText(t.length));a+=t.length}),i})(A,0,e,t)}};const lo=(A,t)=>{switch(t){case 1:return A.toLowerCase();case 3:return A.replace(go,ho);case 2:return A.toUpperCase();default:return A}},go=/(^|\s|:|-|\(|\))([a-z])/g,ho=(A,t,e)=>A.length>0?t+e.toUpperCase():A;var wo=class extends Vs{constructor(A,t){super(A,t),this.src=t.currentSrc||t.src,this.intrinsicWidth=t.naturalWidth,this.intrinsicHeight=t.naturalHeight,this.context.cache.addImage(this.src)}},uo=class extends Vs{constructor(A,t){super(A,t),this.canvas=t,this.intrinsicWidth=t.width,this.intrinsicHeight=t.height}},Qo=class extends Vs{constructor(A,t){super(A,t);const e=new XMLSerializer,r=s(A,t);t.setAttribute("width",`${r.width}px`),t.setAttribute("height",`${r.height}px`),this.svg=`data:image/svg+xml,${encodeURIComponent(e.serializeToString(t))}`,this.intrinsicWidth=t.width.baseVal.value,this.intrinsicHeight=t.height.baseVal.value,this.context.cache.addImage(this.svg)}},Co=class extends Vs{constructor(A,t){super(A,t),this.value=t.value}},po=class extends Vs{constructor(A,t){super(A,t),this.start=t.start,this.reversed="boolean"==typeof t.reversed&&!0===t.reversed}};const Uo=[{type:15,flags:0,unit:"px",number:3}],fo=[{type:16,flags:0,number:50}],Fo=707406591;var mo=class extends Vs{constructor(A,t){var e,r;switch(super(A,t),this.type=t.type.toLowerCase(),this.checked=t.checked,this.value=(A=>{const t="password"===A.type?new Array(A.value.length+1).join("•"):A.value;return 0===t.length?A.placeholder||"":t})(t),this.isPlaceholder=0===(e=t).value.length&&!!e.placeholder,"checkbox"!==this.type&&"radio"!==this.type||(this.styles.backgroundColor=3739148031,this.styles.borderTopColor=this.styles.borderRightColor=this.styles.borderBottomColor=this.styles.borderLeftColor=2779096575,this.styles.borderTopWidth=this.styles.borderRightWidth=this.styles.borderBottomWidth=this.styles.borderLeftWidth=1,this.styles.borderTopStyle=this.styles.borderRightStyle=this.styles.borderBottomStyle=this.styles.borderLeftStyle=1,this.styles.backgroundClip=[0],this.styles.backgroundOrigin=[0],this.bounds=(r=this.bounds).width>r.height?new n(r.left+(r.width-r.height)/2,r.top,r.height,r.height):r.width<r.height?new n(r.left,r.top+(r.height-r.width)/2,r.width,r.width):r),this.type){case"checkbox":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=Uo;break;case"radio":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=fo}}},yo=class extends Vs{constructor(A,t){super(A,t);const e=t.options[t.selectedIndex||0];this.value=e&&e.text||""}},Io=class extends Vs{constructor(A,t){super(A,t),this.value=t.value}},Ho=class extends Vs{constructor(A,t,e){super(A,t),this.src=t.src,this.width=parseInt(t.width,10)||0,this.height=parseInt(t.height,10)||0,this.backgroundColor=this.styles.backgroundColor,this.parseTreeFn=e;try{if(t.contentWindow&&t.contentWindow.document&&t.contentWindow.document.documentElement&&this.parseTreeFn){this.tree=this.parseTreeFn(A,t.contentWindow.document.documentElement);const e=t.contentWindow.document.documentElement?qt(A,getComputedStyle(t.contentWindow.document.documentElement).backgroundColor):$t.TRANSPARENT,r=t.contentWindow.document.body?qt(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):$t.TRANSPARENT;this.backgroundColor=Ft(e)?Ft(r)?this.styles.backgroundColor:r:e}}catch(A){}}};const Eo=["OL","UL","MENU"],bo=(A,t,e,r)=>{for(let n,s=t.firstChild;s;s=n)n=s.nextSibling,xo(A,s,e,r)},xo=(A,t,e,r)=>{if(te(t)&&t.data.length>0)e.textNodes.push(new Bo(A,t,e.styles));else if(Ae(t))if(he(t)&&t.assignedNodes)t.assignedNodes().forEach(t=>xo(A,t,e,r));else{const n=vo(A,t);n.styles.isVisible()&&(Lo(t,n,r)?n.createsRealStackingContext=!0:So(n.styles)&&(n.createsStackingContext=!0),-1!==Eo.indexOf(t.tagName)&&(n.isListOwner=!0),e.elements.push(n),t.shadowRoot?bo(A,t.shadowRoot,n,r):le(t)||ne(t)||ge(t)||bo(A,t,n,r))}},vo=(A,t)=>ae(t)?new wo(A,t):oe(t)?new uo(A,t):ne(t)?new Qo(A,t):"LI"===t.tagName?new Co(A,t):"OL"===t.tagName?new po(A,t):(A=>"INPUT"===A.tagName)(t)?new mo(A,t):ge(t)?new yo(A,t):le(t)?new Io(A,t):ce(t)?new Ho(A,t,Ko):new Vs(A,t),Ko=(A,t)=>{const e=vo(A,t);return e.createsRealStackingContext=!0,bo(A,t,e,e),e},Lo=(A,t,e)=>t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||se(A)&&e.styles.isTransparent(),So=A=>!(!A.isPositioned()&&!A.isFloating())||Qe(A.display,268435456)||Qe(A.display,33554432)||Qe(A.display,536870912)||Qe(A.display,134217728),Do=(A,t)=>A.length===t.length&&A.some((A,e)=>A===t[e]);var Mo=class A{constructor(A,t){this.type=0,this.x=A,this.y=t}add(t,e){return new A(this.x+t,this.y+e)}};const To=(A,t,e)=>new Mo(A.x+(t.x-A.x)*e,A.y+(t.y-A.y)*e);var ko=class A{constructor(A,t,e,r){this.type=1,this.start=A,this.startControl=t,this.endControl=e,this.end=r}subdivide(t,e){const r=To(this.start,this.startControl,t),n=To(this.startControl,this.endControl,t),s=To(this.endControl,this.end,t),o=To(r,n,t),i=To(n,s,t),a=To(o,i,t);return e?new A(this.start,r,o,a):new A(a,i,s,this.end)}add(t,e){return new A(this.start.add(t,e),this.startControl.add(t,e),this.endControl.add(t,e),this.end.add(t,e))}reverse(){return new A(this.end,this.endControl,this.startControl,this.start)}};const Oo=A=>1===A.type;var Vo=class{constructor(A){const t=A.styles,e=A.bounds;let[r,n]=dt(t.borderTopLeftRadius,e.width,e.height),[s,o]=dt(t.borderTopRightRadius,e.width,e.height),[i,a]=dt(t.borderBottomRightRadius,e.width,e.height),[c,B]=dt(t.borderBottomLeftRadius,e.width,e.height);const l=[];l.push((r+s)/e.width),l.push((c+i)/e.width),l.push((n+B)/e.height),l.push((o+a)/e.height);const g=Math.max(...l);g>1&&(r/=g,n/=g,s/=g,o/=g,i/=g,a/=g,c/=g,B/=g);const h=e.width-s,d=e.height-a,w=e.width-i,u=e.height-B,Q=t.borderTopWidth,C=t.borderRightWidth,p=t.borderBottomWidth,U=t.borderLeftWidth,f=wt(t.paddingTop,A.bounds.width),F=wt(t.paddingRight,A.bounds.width),m=wt(t.paddingBottom,A.bounds.width),y=wt(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=r>0||n>0?No(e.left+U/3,e.top+Q/3,r-U/3,n-Q/3,0):new Mo(e.left+U/3,e.top+Q/3),this.topRightBorderDoubleOuterBox=r>0||n>0?No(e.left+h,e.top+Q/3,s-C/3,o-Q/3,1):new Mo(e.left+e.width-C/3,e.top+Q/3),this.bottomRightBorderDoubleOuterBox=i>0||a>0?No(e.left+w,e.top+d,i-C/3,a-p/3,2):new Mo(e.left+e.width-C/3,e.top+e.height-p/3),this.bottomLeftBorderDoubleOuterBox=c>0||B>0?No(e.left+U/3,e.top+u,c-U/3,B-p/3,3):new Mo(e.left+U/3,e.top+e.height-p/3),this.topLeftBorderDoubleInnerBox=r>0||n>0?No(e.left+2*U/3,e.top+2*Q/3,r-2*U/3,n-2*Q/3,0):new Mo(e.left+2*U/3,e.top+2*Q/3),this.topRightBorderDoubleInnerBox=r>0||n>0?No(e.left+h,e.top+2*Q/3,s-2*C/3,o-2*Q/3,1):new Mo(e.left+e.width-2*C/3,e.top+2*Q/3),this.bottomRightBorderDoubleInnerBox=i>0||a>0?No(e.left+w,e.top+d,i-2*C/3,a-2*p/3,2):new Mo(e.left+e.width-2*C/3,e.top+e.height-2*p/3),this.bottomLeftBorderDoubleInnerBox=c>0||B>0?No(e.left+2*U/3,e.top+u,c-2*U/3,B-2*p/3,3):new Mo(e.left+2*U/3,e.top+e.height-2*p/3),this.topLeftBorderStroke=r>0||n>0?No(e.left+U/2,e.top+Q/2,r-U/2,n-Q/2,0):new Mo(e.left+U/2,e.top+Q/2),this.topRightBorderStroke=r>0||n>0?No(e.left+h,e.top+Q/2,s-C/2,o-Q/2,1):new Mo(e.left+e.width-C/2,e.top+Q/2),this.bottomRightBorderStroke=i>0||a>0?No(e.left+w,e.top+d,i-C/2,a-p/2,2):new Mo(e.left+e.width-C/2,e.top+e.height-p/2),this.bottomLeftBorderStroke=c>0||B>0?No(e.left+U/2,e.top+u,c-U/2,B-p/2,3):new Mo(e.left+U/2,e.top+e.height-p/2),this.topLeftBorderBox=r>0||n>0?No(e.left,e.top,r,n,0):new Mo(e.left,e.top),this.topRightBorderBox=s>0||o>0?No(e.left+h,e.top,s,o,1):new Mo(e.left+e.width,e.top),this.bottomRightBorderBox=i>0||a>0?No(e.left+w,e.top+d,i,a,2):new Mo(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=c>0||B>0?No(e.left,e.top+u,c,B,3):new Mo(e.left,e.top+e.height),this.topLeftPaddingBox=r>0||n>0?No(e.left+U,e.top+Q,Math.max(0,r-U),Math.max(0,n-Q),0):new Mo(e.left+U,e.top+Q),this.topRightPaddingBox=s>0||o>0?No(e.left+Math.min(h,e.width-C),e.top+Q,h>e.width+C?0:Math.max(0,s-C),Math.max(0,o-Q),1):new Mo(e.left+e.width-C,e.top+Q),this.bottomRightPaddingBox=i>0||a>0?No(e.left+Math.min(w,e.width-U),e.top+Math.min(d,e.height-p),Math.max(0,i-C),Math.max(0,a-p),2):new Mo(e.left+e.width-C,e.top+e.height-p),this.bottomLeftPaddingBox=c>0||B>0?No(e.left+U,e.top+Math.min(u,e.height-p),Math.max(0,c-U),Math.max(0,B-p),3):new Mo(e.left+U,e.top+e.height-p),this.topLeftContentBox=r>0||n>0?No(e.left+U+y,e.top+Q+f,Math.max(0,r-(U+y)),Math.max(0,n-(Q+f)),0):new Mo(e.left+U+y,e.top+Q+f),this.topRightContentBox=s>0||o>0?No(e.left+Math.min(h,e.width+U+y),e.top+Q+f,h>e.width+U+y?0:s-U+y,o-(Q+f),1):new Mo(e.left+e.width-(C+F),e.top+Q+f),this.bottomRightContentBox=i>0||a>0?No(e.left+Math.min(w,e.width-(U+y)),e.top+Math.min(d,e.height+Q+f),Math.max(0,i-(C+F)),a-(p+m),2):new Mo(e.left+e.width-(C+F),e.top+e.height-(p+m)),this.bottomLeftContentBox=c>0||B>0?No(e.left+U+y,e.top+u,Math.max(0,c-(U+y)),B-(p+m),3):new Mo(e.left+U+y,e.top+e.height-(p+m))}};const No=(A,t,e,r,n)=>{const s=(Math.sqrt(2)-1)/3*4,o=e*s,i=r*s,a=A+e,c=t+r;switch(n){case 0:return new ko(new Mo(A,c),new Mo(A,c-i),new Mo(a-o,t),new Mo(a,t));case 1:return new ko(new Mo(A,t),new Mo(A+o,t),new Mo(a,c-i),new Mo(a,c));case 2:return new ko(new Mo(a,t),new Mo(a,t+i),new Mo(A+o,c),new Mo(A,c));default:return new ko(new Mo(a,c),new Mo(a-o,c),new Mo(A,t+i),new Mo(A,t))}},Ro=A=>[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox],Go=A=>[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox];var Po=class{constructor(A,t,e){this.offsetX=A,this.offsetY=t,this.matrix=e,this.type=0,this.target=6}},Xo=class{constructor(A,t){this.path=A,this.target=t,this.type=1}},Jo=class{constructor(A){this.opacity=A,this.type=2,this.target=6}},Wo=class{constructor(A){this.applyClip=A,this.type=3,this.target=6}};const Yo={[_n.NORMAL]:"source-over",[_n.MULTIPLY]:"multiply",[_n.SCREEN]:"screen",[_n.OVERLAY]:"overlay",[_n.DARKEN]:"darken",[_n.LIGHTEN]:"lighten",[_n.COLOR_DODGE]:"color-dodge",[_n.COLOR_BURN]:"color-burn",[_n.HARD_LIGHT]:"hard-light",[_n.SOFT_LIGHT]:"soft-light",[_n.DIFFERENCE]:"difference",[_n.EXCLUSION]:"exclusion",[_n.HUE]:"hue",[_n.SATURATION]:"saturation",[_n.COLOR]:"color",[_n.LUMINOSITY]:"luminosity"};var Zo=class{constructor(A){this.mixBlendMode=A,this.type=4,this.target=6,this.compositeOperation=Yo[A]}},zo=class A{constructor(t){this.type=5,this.target=6;const e=A.parseDropShadow(t);this.shadow=e.shadow,this.safeFilterString=e.safeFilterString}static parseDropShadow(t){if(!t)return{safeFilterString:""};const e=A.findDropShadows(t);if(0===e.length)return{safeFilterString:t};const r=A.parseDropShadowBody(e[0].body);let n="",s=0;for(const A of e)n+=t.slice(s,A.start),s=A.end;return n+=t.slice(s),{shadow:r,safeFilterString:n.replace(/\s+/g," ").trim()}}static findDropShadows(A){const t=[],e=/drop-shadow\(/gi;let r;for(;null!==(r=e.exec(A));){const e=r.index+12-1,n=r.index;let s=1,o=e+1;for(;o<A.length&&s>0;){const t=A[o];"("===t?s++:")"===t&&s--,o++}if(0!==s)break;const i=A.slice(e+1,o-1);t.push({body:i,start:n,end:o})}return t}static parseDropShadowBody(t){const e=A.tokenizeFilterArgs(t.trim()),r=[];let n;for(const t of e)A.isCSSLength(t)?r.push(parseFloat(t)):t&&(n=t);if(!(r.length<2||r.length>3))return{offsetX:r[0],offsetY:r[1],blur:r[2]??0,color:n??"rgba(0,0,0,1)"}}static tokenizeFilterArgs(A){const t=[];let e="",r=0;for(let n=0;n<A.length;n++){const s=A[n];"("===s?(r++,e+=s):")"===s?(r--,e+=s):/\s/.test(s)?r>0?e+=s:e&&(t.push(e),e=""):e+=s}return e&&t.push(e),t}static isCSSLength(A){return/^-?[\d.]+(px|em|rem|pt|cm|mm|in|pc|ex|ch|vw|vh|vmin|vmax|%)?$/i.test(A)}};const _o=A=>0===A.type,jo=A=>1===A.type,qo=A=>3===A.type;var $o=class{constructor(A){this.element=A,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}},Ai=class{constructor(A,t){if(this.container=A,this.parent=t,this.effects=[],this.curves=new Vo(this.container),this.container.styles.opacity<1&&this.effects.push(new Jo(this.container.styles.opacity)),null!==this.container.styles.rotate){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height),r=this.container.styles.rotate*Math.PI/180,n=Math.cos(r),s=Math.sin(r);this.effects.push(new Po(t,e,[n,s,-s,n,0,0]))}if(null!==this.container.styles.transform){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height);this.effects.push(new Po(t,e,this.container.styles.transform))}if(ti(this.container.styles)){const A=Ro(this.curves),t=Go(this.curves);Do(A,t)?this.effects.push(new Xo(A,6)):(this.effects.push(new Xo(A,2)),this.effects.push(new Xo(t,4)))}if(0!==this.container.styles.clipPath.type){const A=ri(this.container.styles.clipPath,this.container.bounds);A&&this.effects.push(A)}if(this.container.styles.mixBlendMode!==_n.NORMAL&&this.effects.push(new Zo(this.container.styles.mixBlendMode)),null!==this.container.styles.filter&&this.effects.push(new zo(this.container.styles.filter)),1!==this.container.styles.zoom){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height),r=this.container.styles.zoom;this.effects.push(new Po(t,e,[r,0,0,r,0,0]))}}getEffects(A){let t=-1===[2,3].indexOf(this.container.styles.position),e=this.parent;const r=this.effects.slice(0);for(;e;){const A=e.effects.filter(A=>!jo(A));if(t||0!==e.container.styles.position||!e.parent){if(t=-1===[2,3].indexOf(e.container.styles.position),ti(e.container.styles)){const A=Ro(e.curves),t=Go(e.curves);Do(A,t)||r.unshift(new Xo(t,6))}r.unshift(...A)}else r.unshift(...A);e=e.parent}return r.filter(t=>Qe(t.target,A))}};const ti=A=>0!==A.overflowX||0!==A.overflowY,ei=(A,t,e,r,n)=>"closest-side"===A?Math.min(t-e,r-t):"farthest-side"===A?Math.max(t-e,r-t):wt(A,n),ri=(A,t)=>{const{left:e,top:r,width:n,height:s}=t;switch(A.type){case 1:{const t=wt(A.left,n),o=wt(A.top,s),i=e+t,a=r+o,c=Math.max(0,n-t-wt(A.right,n)),B=Math.max(0,s-o-wt(A.bottom,s));return new Wo(A=>{A.beginPath(),A.rect(i,a,c,B),A.clip()})}case 2:{const t=e+wt(A.cx,n),o=r+wt(A.cy,s);let i;return i="closest-side"===A.radius?Math.min(t-e,o-r,e+n-t,r+s-o):"farthest-side"===A.radius?Math.max(t-e,o-r,e+n-t,r+s-o):wt(A.radius,Math.sqrt(n*n+s*s)/Math.SQRT2),new Wo(A=>{A.beginPath(),A.arc(t,o,Math.max(0,i),0,2*Math.PI),A.clip()})}case 3:{const t=e+wt(A.cx,n),o=r+wt(A.cy,s),i=ei(A.rx,t,e,e+n,n),a=ei(A.ry,o,r,r+s,s);return new Wo(A=>{A.beginPath(),A.ellipse(t,o,Math.max(0,i),Math.max(0,a),0,0,2*Math.PI),A.clip()})}case 4:{const t=A.points.map(([A,t])=>[e+wt(A,n),r+wt(t,s)]);return new Wo(A=>{if(A.beginPath(),t.length>0){A.moveTo(t[0][0],t[0][1]);for(let e=1;e<t.length;e++)A.lineTo(t[e][0],t[e][1]);A.closePath()}A.clip()})}case 5:{const{d:t}=A;let n=null;return new Wo(A=>{try{n||(n=new Path2D(t));const s=A.getTransform();A.translate(e,r),A.clip(n),A.setTransform(s)}catch(A){}})}default:return null}},ni=(A,t,e,r)=>{A.container.elements.forEach(n=>{const s=n.createsRealStackingContext,o=n.createsStackingContext,i=new Ai(n,A);Qe(n.styles.display,2048)&&r.push(i);const a=n.isListOwner?[]:r;if(s||o){const A=s||n.styles.isPositioned()?e:t,r=new $o(i);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){const t=n.styles.zIndex.order;if(t<0){let e=0;A.negativeZIndex.some((A,r)=>t>A.element.container.styles.zIndex.order?(e=r,!1):e>0),A.negativeZIndex.splice(e,0,r)}else if(t>0){let e=0;A.positiveZIndex.some((A,r)=>t>=A.element.container.styles.zIndex.order?(e=r+1,!1):e>0),A.positiveZIndex.splice(e,0,r)}else A.zeroOrAutoZIndexOrTransformedOrOpacity.push(r)}else n.styles.isFloating()?A.nonPositionedFloats.push(r):A.nonPositionedInlineLevel.push(r);ni(i,r,s?r:e,a)}else n.styles.isInlineLevel()?t.inlineLevel.push(i):t.nonInlineLevel.push(i),ni(i,t,e,a);n.isListOwner&&si(n,a)})},si=(A,t)=>{let e=A instanceof po?A.start:1;const r=A instanceof po&&A.reversed;for(let A=0;A<t.length;A++){const n=t[A];n.container instanceof Co&&"number"==typeof n.container.value&&0!==n.container.value&&(e=n.container.value),n.listValue=Le(e,n.container.styles.listStyleType,!0),e+=r?-1:1}},oi=A=>{const t=A.styles;return A.bounds.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},ii=A=>{const t=A.styles,e=A.bounds,r=wt(t.paddingLeft,e.width),n=wt(t.paddingRight,e.width),s=wt(t.paddingTop,e.width),o=wt(t.paddingBottom,e.width);return e.add(r+t.borderLeftWidth,s+t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth+r+n),-(t.borderTopWidth+t.borderBottomWidth+s+o))},ai=(A,t,e)=>{const r=((A,t)=>0===A?t.bounds:2===A?ii(t):oi(t))(gi(A.styles.backgroundOrigin,t),A),n=((A,t)=>0===A?t.bounds:2===A?ii(t):oi(t))(gi(A.styles.backgroundClip,t),A),s=li(gi(A.styles.backgroundSize,t),e,r);let[o,i]=s;const a=dt(gi(A.styles.backgroundPosition,t),r.width-o,r.height-i),c=hi(gi(A.styles.backgroundRepeat,t),a,s,r,n),B=Math.round(r.left+a[0]),l=Math.round(r.top+a[1]);return o=Math.max(1,o),i=Math.max(1,i),[c,B,l,o,i]},ci=A=>XA(A)&&"auto"===A.value,Bi=A=>"number"==typeof A,li=(A,[t,e,r],n)=>{const[s,o]=A;if(!s)return[0,0];if(ot(s)&&o&&ot(o))return[wt(s,n.width),wt(o,n.height)];const i=Bi(r);if(XA(s)&&("contain"===s.value||"cover"===s.value))return Bi(r)?n.width/n.height<r!=("cover"===s.value)?[n.width,n.width/r]:[n.height*r,n.height]:[n.width,n.height];const a=Bi(t),c=Bi(e),B=a||c;if(ci(s)&&(!o||ci(o)))return a&&c?[t,e]:i||B?B&&i?[a?t:e*r,c?e:t/r]:[a?t:n.width,c?e:n.height]:[n.width,n.height];if(i){let A=0,t=0;return ot(s)?A=wt(s,n.width):ot(o)&&(t=wt(o,n.height)),ci(s)?A=t*r:o&&!ci(o)||(t=A/r),[A,t]}let l=null,g=null;if(ot(s)?l=wt(s,n.width):o&&ot(o)&&(g=wt(o,n.height)),null===l||o&&!ci(o)||(g=a&&c?l/t*e:n.height),null!==g&&ci(s)&&(l=a&&c?g/e*t:n.width),null!==l&&null!==g)return[l,g];throw new Error("Unable to calculate background-size for element")},gi=(A,t)=>{const e=A[t];return void 0===e?A[0]:e},hi=(A,[t,e],[r,n],s,o)=>{switch(A){case 2:return[new Mo(Math.round(s.left),Math.round(s.top+e)),new Mo(Math.round(s.left+s.width),Math.round(s.top+e)),new Mo(Math.round(s.left+s.width),Math.round(n+s.top+e)),new Mo(Math.round(s.left),Math.round(n+s.top+e))];case 3:return[new Mo(Math.round(s.left+t),Math.round(s.top)),new Mo(Math.round(s.left+t+r),Math.round(s.top)),new Mo(Math.round(s.left+t+r),Math.round(s.height+s.top)),new Mo(Math.round(s.left+t),Math.round(s.height+s.top))];case 1:return[new Mo(Math.round(s.left+t),Math.round(s.top+e)),new Mo(Math.round(s.left+t+r),Math.round(s.top+e)),new Mo(Math.round(s.left+t+r),Math.round(s.top+e+n)),new Mo(Math.round(s.left+t),Math.round(s.top+e+n))];default:return[new Mo(Math.round(o.left),Math.round(o.top)),new Mo(Math.round(o.left+o.width),Math.round(o.top)),new Mo(Math.round(o.left+o.width),Math.round(o.height+o.top)),new Mo(Math.round(o.left),Math.round(o.height+o.top))]}};var di=class{constructor(A){this.ctx=A}render(A,t){this.ctx.fillStyle=mt(t.textDecorationColor||t.color);let e=1;"number"==typeof t.textDecorationThickness?e=t.textDecorationThickness:"from-font"===t.textDecorationThickness&&(e=Math.max(1,Math.floor(.05*t.fontSize.number)));let r=0;"number"==typeof t.textUnderlineOffset&&(r=t.textUnderlineOffset);const n=t.textDecorationStyle;t.textDecorationLine.forEach(t=>{let s=0;switch(t){case 1:s=A.top+A.height-e+r;break;case 2:s=A.top;break;case 3:s=A.top+(A.height/2-e/2);break;default:return}this.draw(A.left,s,A.width,e,n)})}draw(A,t,e,r,n){switch(n){case 0:default:this.ctx.fillRect(A,t,e,r);break;case 1:{const n=Math.max(1,r);this.ctx.fillRect(A,t,e,r),this.ctx.fillRect(A,t+r+n,e,r);break}case 2:this.drawPattern(A,t,e,r,[r,2*r]);break;case 3:this.drawPattern(A,t,e,r,[3*r,2*r]);break;case 4:this.drawWavy(A,t,e,r)}}drawPattern(A,t,e,r,n){this.ctx.save(),this.ctx.beginPath(),this.ctx.setLineDash(n),this.ctx.lineWidth=r,this.ctx.strokeStyle=this.ctx.fillStyle,this.ctx.moveTo(A,t+r/2),this.ctx.lineTo(A+e,t+r/2),this.ctx.stroke(),this.ctx.restore()}drawWavy(A,t,e,r){this.ctx.save(),this.ctx.beginPath(),this.ctx.lineWidth=r,this.ctx.strokeStyle=this.ctx.fillStyle;const n=2*r,s=4*r;let o=A;for(this.ctx.moveTo(o,t+r/2);o<A+e;){const i=Math.min(o+s/2,A+e);if(this.ctx.quadraticCurveTo(o+s/4,t+r/2-n,i,t+r/2),o=i,o<A+e){const i=Math.min(o+s/2,A+e);this.ctx.quadraticCurveTo(o+s/4,t+r/2+n,i,t+r/2),o=i}}this.ctx.stroke(),this.ctx.restore()}};const wi=(A,t)=>{const e=A.measureText("Mg"),r=e.fontBoundingBoxAscent,n=void 0===r||Number.isNaN(r)?e.actualBoundingBoxAscent:r;return void 0===n||Number.isNaN(n)?t:n},ui=["-apple-system","system-ui"],Qi=/[\u2E80-\u2FFF\u3000-\u30FF\u3400-\u4DBF\u4E00-\u9FFF\uAC00-\uD7AF\uF900-\uFAFF\uFF01-\uFFEF]/,Ci=A=>Qi.test(A);var pi=class{constructor(A){this.glyphWidthCache=null,this.ctx=A.ctx,this.options=A.options,this.decorationRenderer=new di(A.ctx)}cachedMeasureText(A,t){let e=this.glyphWidthCache;e||(e=new Map,this.glyphWidthCache=e);const r=A+t;let n=e.get(r);return void 0===n&&(n=this.ctx.measureText(A).width,e.set(r,n)),n}iterateLettersWithLetterSpacing(A,t,e,r,n){if(Cn(r))return void this.iterateVerticalGlyphs(A,t,e,r,n);const s=io(A.text),o=A.bounds.top+e,i=this.ctx.font;let a=A.bounds.left;for(const A of s){if(Ci(A)){const t=this.ctx.textBaseline;this.ctx.textBaseline="ideographic",n(A,a,o),this.ctx.textBaseline=t}else n(A,a,o);a+=this.cachedMeasureText(A,i)+t}}iterateVerticalGlyphs(A,t,e,r,n){const s=io(A.text),o=this.ctx.font,i=4===r?-Math.PI/2:Math.PI/2;let a=A.bounds.top;for(let c=0;c<s.length;){const B=s[c];if(!(pn(r)||!Ci(B)&&B.trim().length>0)){const r=this.ctx.textBaseline;Ci(B)&&(this.ctx.textBaseline="ideographic"),n(B,A.bounds.left,a+e),this.ctx.textBaseline=r,a+=this.cachedMeasureText(B,o)+t,c++;continue}const l=c;for(;c<s.length;){const A=s[c];if(!pn(r)&&!Ci(A)&&0===A.trim().length)break;if(!(pn(r)||!Ci(A)&&A.trim().length>0))break;c++}this.ctx.save(),this.ctx.translate(A.bounds.left+e,a),this.ctx.rotate(i);let g=0;for(let A=l;A<c;A++)n(s[A],0,g),g+=this.cachedMeasureText(s[A],o)+t;this.ctx.restore(),a+=g}}renderTextWithLetterSpacing(A,t,e,r=0){this.renderFillText(A,t,e,r)}canRenderWholeText(A,t){return 0===A&&!Cn(t)}renderFillText(A,t,e,r){this.canRenderWholeText(t,r)?this.ctx.fillText(A.text,A.bounds.left,A.bounds.top+e):this.iterateLettersWithLetterSpacing(A,t,e,r,(A,t,e)=>{this.ctx.fillText(A,t,e)})}renderStrokeText(A,t,e,r){this.canRenderWholeText(t,r)?this.ctx.strokeText(A.text,A.bounds.left,A.bounds.top+e):this.iterateLettersWithLetterSpacing(A,t,e,r,(A,t,e)=>{this.ctx.strokeText(A,t,e)})}renderTextStrokeWithStyle(A,t,e){t.webkitTextStrokeWidth&&A.text.trim().length&&(this.ctx.strokeStyle=mt(t.webkitTextStrokeColor),this.ctx.lineWidth=t.webkitTextStrokeWidth,this.ctx.lineJoin=("undefined"!=typeof window?window:void 0)?.chrome?"miter":"round",this.renderStrokeText(A,t.letterSpacing,e,t.writingMode),this.ctx.strokeStyle="",this.ctx.lineWidth=0,this.ctx.lineJoin="miter")}renderTextFillWithShadows(A,t,e){this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(A,t.letterSpacing,e,t.writingMode);const r=t.textShadow;r.length&&A.text.trim().length&&(r.slice(0).reverse().forEach(r=>{this.ctx.shadowColor=mt(r.color),this.ctx.shadowOffsetX=r.offsetX.number*this.options.scale,this.ctx.shadowOffsetY=r.offsetY.number*this.options.scale,this.ctx.shadowBlur=r.blur.number,this.renderTextWithLetterSpacing(A,t.letterSpacing,e,t.writingMode)}),this.ctx.shadowColor="",this.ctx.shadowOffsetX=0,this.ctx.shadowOffsetY=0,this.ctx.shadowBlur=0)}renderTextBoundWithPaintOrder(A,t,e,r){e.forEach(e=>{switch(e){case 0:this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(A,t.letterSpacing,r,t.writingMode);break;case 1:this.renderTextStrokeWithStyle(A,t,r)}})}renderTextDecoration(A,t){this.decorationRenderer.render(A,t)}truncateTextWithEllipsis(A,t,e){const r=this.ctx.measureText("…").width,n=io(A);if(0===e){const A=A=>this.ctx.measureText(n.slice(0,A).join("")).width+r<=t;let e=0,s=n.length;for(;e<s;){const t=e+s+1>>1;A(t)?e=t:s=t-1}return n.slice(0,e).join("")+"…"}{const A=this.ctx.font;let s=r;const o=[];for(const r of n){const n=this.cachedMeasureText(r,A);if(s+n>t)break;o.push(r),s+=n+e}return o.join("")+"…"}}createFontStyle(A){const t=A.fontVariant.filter(A=>"normal"===A||"small-caps"===A).join(""),e=(A=>{const t=(()=>{if("undefined"==typeof navigator)return null;const A=navigator.userAgent,t=/iPhone|iPad|iPod/.test(A),e=/Macintosh/.test(A)&&navigator.maxTouchPoints&&navigator.maxTouchPoints>1;if(!t&&!e)return null;for(const t of[/(?:iPhone|CPU(?:\siPhone)?)\sOS\s(\d+)[\._](\d+)/,/Version\/(\d+)\.(\d+)/]){const e=A.match(t);if(e&&e[1])return parseInt(e[1],10)}return null})();return null!==t&&t>=15&&t<17?A.map(A=>-1!==ui.indexOf(A)?'-apple-system, "Helvetica Neue", Arial, sans-serif':A):A})(A.fontFamily).join(", "),r=GA(A.fontSize)?`${A.fontSize.number}${A.fontSize.unit}`:`${A.fontSize.number}px`;return[[A.fontStyle,t,A.fontWeight,r,e].join(" "),e,r]}renderLineClampedText(A,t,e,r,n){const s=1.5*t.fontSize.number,o=[];let i=[],a=A.textBounds[0].bounds.top;A.textBounds.forEach(A=>{Math.abs(A.bounds.top-a)>=.5*s?(i.length>0&&o.push(i),i=[A],a=A.bounds.top):i.push(A)}),i.length>0&&o.push(i);const c=t.webkitLineClamp;if(o.length<=c)return!1;for(let A=0;A<c-1;A++)o[A].forEach(A=>this.renderTextBoundWithPaintOrder(A,t,e,r));const B=o[c-1];if(B?.length&&n){const A=B.map(A=>A.text).join(""),s=B[0],o=new so(this.truncateTextWithEllipsis(A,n.width-(s.bounds.left-n.left),t.letterSpacing),s.bounds);for(const A of e)0===A?(this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(o,t.letterSpacing,r,t.writingMode)):1===A&&this.renderTextStrokeWithStyle(o,t,r)}return!0}renderEllipsisText(A,t,e,r,n){const s=1.5*t.fontSize.number,o=A.textBounds[0].bounds.top;if(!A.textBounds.every(A=>Math.abs(A.bounds.top-o)<.5*s))return!1;let i=A.textBounds.map(A=>A.text).join("").replace(/\s+/g," ").trim();if(this.ctx.measureText(i).width<=n.width+1)return!1;const a=new so(this.truncateTextWithEllipsis(i,n.width,t.letterSpacing),A.textBounds[0].bounds);for(const A of e)0===A?this.renderTextFillWithShadows(a,t,r):1===A&&this.renderTextStrokeWithStyle(a,t,r);return!0}async renderTextNode(A,t,e){this.glyphWidthCache=null;const[r]=this.createFontStyle(t);this.ctx.font=r,this.ctx.direction=1===t.direction?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic";const n=t.paintOrder,s=wi(this.ctx,t.fontSize.number);t.webkitLineClamp>0&&2&t.display&&1===t.overflowY&&A.textBounds.length>0&&this.renderLineClampedText(A,t,n,s,e)||1===t.textOverflow&&e&&1===t.overflowX&&A.textBounds.length>0&&this.renderEllipsisText(A,t,n,s,e)||A.textBounds.forEach(A=>{n.forEach(e=>{0===e?(this.renderTextFillWithShadows(A,t,s),t.textDecorationLine.length&&this.renderTextDecoration(A.bounds,t)):1===e&&this.renderTextStrokeWithStyle(A,t,s)})})}};const Ui=(A,t)=>{t.forEach((t,e)=>{const r=Oo(t)?t.start:t;0===e?A.moveTo(r.x,r.y):A.lineTo(r.x,r.y),Oo(t)&&A.bezierCurveTo(t.startControl.x,t.startControl.y,t.endControl.x,t.endControl.y,t.end.x,t.end.y)})},fi=(A,t)=>{A.beginPath(),Ui(A,t),A.closePath()};var Fi=class{constructor(A){this.maxSize=A,this._map=new Map}get(A){if(!this._map.has(A))return;const t=this._map.get(A);return this._map.delete(A),this._map.set(A,t),t}set(A,t){if(this._map.has(A))this._map.delete(A);else if(this._map.size>=this.maxSize){const A=this._map.keys().next().value;void 0!==A&&this._map.delete(A)}this._map.set(A,t)}get size(){return this._map.size}clear(){this._map.clear()}},mi=class{constructor(A){this.patternCache=new Fi(50),this.ctx=A.ctx,this.context=A.context,this.canvas=A.canvas}async renderBackgroundImage(A){let t=A.styles.backgroundImage.length-1;const e=A.styles.backgroundBlendMode;let r=0;for(const n of A.styles.backgroundImage.slice(0).reverse()){if(r>0){const A=e[r]??e[0]??"normal";"normal"!==A&&(this.ctx.save(),this.ctx.globalCompositeOperation=A)}0===n.type?await this.renderBackgroundURLImage(A,n,t):qe(n)?this.renderLinearGradient(A,n,t):Ar(n)?this.renderRepeatingLinearGradient(A,n,t):$e(n)&&this.renderRadialGradient(A,n,t),r>0&&"normal"!==(e[r]??e[0]??"normal")&&this.ctx.restore(),t--,r++}}async renderBackgroundURLImage(A,t,e){let r;const n=t.url;try{r=await this.context.cache.match(n)}catch(A){this.context.logger.error(`Error loading background-image ${n}`),this.context.onError?.(A instanceof Error?A:new Error(String(A)))}if(r){const t=isNaN(r.width)||0===r.width?1:r.width,s=isNaN(r.height)||0===r.height?1:r.height,[o,i,a,c,B]=ai(A,e,[t,s,t/s]),l=gi(A.styles.backgroundRepeat,e),g=1===l?"no-repeat":2===l?"repeat-x":3===l?"repeat-y":"repeat",h=`${n}|${Math.round(c)}x${Math.round(B)}|${A.styles.imageRendering}|${g}`;let d=this.patternCache.get(h);if(!d){const t=this.resizeImage(r,c,B,A.styles.imageRendering);d=this.ctx.createPattern(t,g),this.patternCache.set(h,d)}this.renderRepeat(o,d,i,a)}}renderRepeatingLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,c,B,l,g]=ke(t.angle,o,i),h=Te(t.stops,a||1),d=h[0],w=h[h.length-1].stop-d.stop;if(w<=0)return void this.renderLinearGradient(A,t,e);const u=B-c,Q=g-l,C=w/(Math.sqrt(u*u+Q*Q)||1),p=c,U=l,f=c+u*C,F=l+Q*C,m=this.canvas.ownerDocument??document,y=`rlg|${t.angle}|${Math.round(w)}|${JSON.stringify(t.stops)}`;let I=this.patternCache.get(y);if(!I){const A=m.createElement("canvas"),t=Math.max(1,Math.ceil(w));A.width=t,A.height=t;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(p-n,U-s,f-n,F-s);h.forEach(A=>{r.addColorStop((A.stop-d.stop)/w,mt(A.color))}),e.fillStyle=r,e.fillRect(0,0,t,t),t>0&&(I=this.ctx.createPattern(A,"repeat"),this.patternCache.set(y,I))}I&&this.renderRepeat(r,I,n,s)}renderLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,c,B,l,g]=ke(t.angle,o,i),h=`lg|${t.angle}|${Math.round(o)}x${Math.round(i)}|${JSON.stringify(t.stops)}`;let d=this.patternCache.get(h);if(!d){const A=(this.canvas.ownerDocument??document).createElement("canvas");A.width=o,A.height=i;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(c,l,B,g);Te(t.stops,a||1).forEach(A=>r.addColorStop(A.stop,mt(A.color))),e.fillStyle=r,e.fillRect(0,0,o,i),o>0&&i>0&&(d=this.ctx.createPattern(A,"repeat"),this.patternCache.set(h,d))}d&&this.renderRepeat(r,d,n,s)}renderRadialGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),a=0===t.position.length?[gt]:t.position,c=wt(a[0],o),B=wt(a[a.length-1],i);let[l,g]=((A,t,e,r,n)=>{let s=0,o=0;switch(A.size){case 0:0===A.shape?s=o=Math.min(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(s=Math.min(Math.abs(t),Math.abs(t-r)),o=Math.min(Math.abs(e),Math.abs(e-n)));break;case 2:if(0===A.shape)s=o=Math.min(Oe(t,e),Oe(t,e-n),Oe(t-r,e),Oe(t-r,e-n));else if(1===A.shape){const A=Math.min(Math.abs(e),Math.abs(e-n))/Math.min(Math.abs(t),Math.abs(t-r)),[i,a]=Ve(r,n,t,e,!0);s=Oe(i-t,(a-e)/A),o=A*s}break;case 1:0===A.shape?s=o=Math.max(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(s=Math.max(Math.abs(t),Math.abs(t-r)),o=Math.max(Math.abs(e),Math.abs(e-n)));break;case 3:if(0===A.shape)s=o=Math.max(Oe(t,e),Oe(t,e-n),Oe(t-r,e),Oe(t-r,e-n));else if(1===A.shape){const A=Math.max(Math.abs(e),Math.abs(e-n))/Math.max(Math.abs(t),Math.abs(t-r)),[i,a]=Ve(r,n,t,e,!1);s=Oe(i-t,(a-e)/A),o=A*s}}return Array.isArray(A.size)&&(s=wt(A.size[0],r),o=2===A.size.length?wt(A.size[1],n):s),[s,o]})(t,c,B,o,i);if(0!==l&&0!==g||(l=Math.max(l,.01),g=Math.max(g,.01)),l>0&&g>0){const A=`rg|${Math.round(c)}x${Math.round(B)}|${Math.round(l)}x${Math.round(g)}|${JSON.stringify(t.stops)}`;let e=this.patternCache.get(A);if(!e){const r=this.canvas.ownerDocument??document,n=Math.ceil(2*Math.max(l,g)),s=r.createElement("canvas");s.width=n,s.height=n;const o=s.getContext("2d");if(o){const r=Math.max(l,g),n=o.createRadialGradient(r,r,0,r,r,r);Te(t.stops,2*r).forEach(A=>n.addColorStop(A.stop,mt(A.color))),o.fillStyle=n,l!==g&&o.scale(1,g/l),o.fillRect(0,0,2*r,2*r),e=this.ctx.createPattern(s,"no-repeat"),this.patternCache.set(A,e)}}e&&(this.path(r),this.ctx.save(),this.ctx.clip(),this.ctx.translate(n+c-Math.max(l,g),s+B-Math.max(l,g)),this.ctx.fillStyle=e,this.ctx.fillRect(0,0,2*Math.max(l,g),2*Math.max(l,g)),this.ctx.restore())}}renderRepeat(A,t,e,r){this.path(A),this.ctx.fillStyle=t,this.ctx.translate(e,r),this.ctx.fill(),this.ctx.translate(-e,-r)}resizeImage(A,t,e,r){const n=(this.canvas.ownerDocument??document).createElement("canvas");n.width=Math.max(1,t),n.height=Math.max(1,e);const s=n.getContext("2d");return s?(2===r||1===r?(this.context.logger.debug("Disabling image smoothing for background image due to CSS image-rendering"),s.imageSmoothingEnabled=!1):3===r?(this.context.logger.debug("Enabling image smoothing for background image due to CSS image-rendering: smooth"),s.imageSmoothingEnabled=!0):s.imageSmoothingEnabled=this.ctx.imageSmoothingEnabled,this.ctx.imageSmoothingQuality&&(s.imageSmoothingQuality=this.ctx.imageSmoothingQuality),s.drawImage(A,0,0,A.width,A.height,0,0,t,e),n):A}path(A){fi(this.ctx,A)}};const yi=(A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return Hi(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return Hi(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return Hi(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Ii=(A,t)=>{const e=[];return Oo(A)?e.push(A.subdivide(.5,!1)):e.push(A),Oo(t)?e.push(t.subdivide(.5,!0)):e.push(t),e},Hi=(A,t,e,r)=>{const n=[];return Oo(A)?n.push(A.subdivide(.5,!1)):n.push(A),Oo(e)?n.push(e.subdivide(.5,!0)):n.push(e),Oo(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),Oo(t)?n.push(t.subdivide(.5,!1).reverse()):n.push(t),n};var Ei=class{constructor(A,t){this.ctx=A.ctx,this.pathCallbacks=t}async renderSolidBorder(A,t,e){this.pathCallbacks.path(yi(e,t)),this.ctx.fillStyle=mt(A),this.ctx.fill()}async renderDoubleBorder(A,t,e,r){if(t<3)return void await this.renderSolidBorder(A,e,r);const n=((A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return Hi(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return Hi(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return Hi(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}})(r,e);this.pathCallbacks.path(n),this.ctx.fillStyle=mt(A),this.ctx.fill();const s=((A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return Hi(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return Hi(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return Hi(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}})(r,e);this.pathCallbacks.path(s),this.ctx.fill()}async renderDashedDottedBorder(A,t,e,r,n){this.ctx.save();const s=((A,t)=>{switch(t){case 0:return Ii(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return Ii(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return Ii(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return Ii(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(r,e),o=yi(r,e);let i,a,c,B,l;2===n&&(this.pathCallbacks.path(o),this.ctx.clip()),Oo(o[0])?(i=o[0].start.x,a=o[0].start.y):(i=o[0].x,a=o[0].y),Oo(o[1])?(c=o[1].end.x,B=o[1].end.y):(c=o[1].x,B=o[1].y),l=0===e||2===e?Math.abs(i-c):Math.abs(a-B),this.ctx.beginPath(),this.pathCallbacks.formatPath(3===n?s:o.slice(0,2));let g=t<3?3*t:2*t,h=t<3?2*t:t;3===n&&(g=t,h=t);let d=!0;if(l<=2*g)d=!1;else if(l<=2*g+h){const A=l/(2*g+h);g*=A,h*=A}else{const A=Math.floor((l+h)/(g+h)),t=(l-A*g)/(A-1),e=(l-(A+1)*g)/A;h=e<=0||Math.abs(h-t)<Math.abs(h-e)?t:e}if(d&&this.ctx.setLineDash(3===n?[0,g+h]:[g,h]),3===n?(this.ctx.lineCap="round",this.ctx.lineWidth=t):this.ctx.lineWidth=2*t+1.1,this.ctx.strokeStyle=mt(A),this.ctx.stroke(),this.ctx.setLineDash([]),2===n){if(Oo(o[0])){const A=o[3],t=o[0];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Mo(A.end.x,A.end.y),new Mo(t.start.x,t.start.y)]),this.ctx.stroke()}if(Oo(o[1])){const A=o[1],t=o[2];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Mo(A.end.x,A.end.y),new Mo(t.start.x,t.start.y)]),this.ctx.stroke()}}this.ctx.restore()}},bi=class{constructor(A){this.ctx=A}renderBorderImage(A,t,e,r,n,s,o,i){const a=t.naturalWidth||t.width,c=t.naturalHeight||t.height;if(a<=0||c<=0)return;const B=Math.min("percent"===e.unit?e.top/100*c:Math.min(e.top,c),c),l=Math.min("percent"===e.unit?e.right/100*a:Math.min(e.right,a),a),g=Math.min("percent"===e.unit?e.bottom/100*c:Math.min(e.bottom,c),c),h=Math.min("percent"===e.unit?e.left/100*a:Math.min(e.left,a),a),{left:d,top:w,width:u,height:Q}=A;if(u<=0||Q<=0)return;const C=Math.min(n,Q),p=Math.min(s,u),U=Math.min(o,Q-C),f=Math.min(i,u-p);this.drawRegion(t,0,0,h,B,d,w,f,C),this.drawRegion(t,a-l,0,l,B,d+u-p,w,p,C),this.drawRegion(t,a-l,c-g,l,g,d+u-p,w+Q-U,p,U),this.drawRegion(t,0,c-g,h,g,d,w+Q-U,f,U);const F=[{sx:h,sy:0,sw:a-h-l,sh:B,dx:d+f,dy:w,dw:u-f-p,dh:C,repeat:r.horizontal},{sx:a-l,sy:B,sw:l,sh:c-B-g,dx:d+u-p,dy:w+C,dw:p,dh:Q-C-U,repeat:r.vertical},{sx:h,sy:c-g,sw:a-h-l,sh:g,dx:d+f,dy:w+Q-U,dw:u-f-p,dh:U,repeat:r.horizontal},{sx:0,sy:B,sw:h,sh:c-B-g,dx:d,dy:w+C,dw:f,dh:Q-C-U,repeat:r.vertical}];for(const A of F){if(A.sw<=0||A.sh<=0||A.dw<=0||A.dh<=0)continue;const e=A.dw>=A.dh;0===A.repeat?this.ctx.drawImage(t,A.sx,A.sy,A.sw,A.sh,A.dx,A.dy,A.dw,A.dh):1!==A.repeat&&2!==A.repeat||this.drawRepeatedEdge(t,A,e,2===A.repeat)}e.fill&&this.drawRegion(t,h,B,a-h-l,c-B-g,d+f,w+C,u-f-p,Q-C-U)}drawRegion(A,t,e,r,n,s,o,i,a){r>0&&n>0&&i>0&&a>0&&this.ctx.drawImage(A,t,e,r,n,s,o,i,a)}drawRepeatedEdge(A,t,e,r){const n=e?t.sw:t.sh,s=e?t.dw:t.dh;if(n<=0||s<=0)return;let o,i;r?(i=Math.max(1,Math.round(s/n)),o=s/i):(o=n,i=Math.ceil(s/o)),this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(t.dx,t.dy,t.dw,t.dh),this.ctx.clip();for(let r=0;r<i;r++){const n=r*o,i=Math.min(o,s-n);if(i<=0)break;e?this.ctx.drawImage(A,t.sx,t.sy,t.sw,t.sh,t.dx+n,t.dy,i,t.dh):this.ctx.drawImage(A,t.sx,t.sy,t.sw,t.sh,t.dx,t.dy+n,t.dw,i)}this.ctx.restore()}},xi=class{constructor(A,t){this.activeEffects=[],this.didSave=!1,this.saveAtDepth=-1,this.ctx=A.ctx,this.pathCallback=t}applyEffects(A){for(;this.activeEffects.length;)this.popEffect();this.didSave=!1,this.saveAtDepth=-1;const t=A=>_o(A)||jo(A)||qo(A),e=A.reduceRight((A,e,r)=>-1!==A?A:t(e)?r:-1,-1);for(let r=0;r<A.length;r++){const n=A[r];t(n)&&(this.didSave||(this.ctx.save(),this.didSave=!0),r===e&&(this.saveAtDepth=this.activeEffects.length)),this.applyEffect(n)}}applyEffect(A){_o(A)?(this.ctx.translate(A.offsetX,A.offsetY),this.ctx.transform(A.matrix[0],A.matrix[1],A.matrix[2],A.matrix[3],A.matrix[4],A.matrix[5]),this.ctx.translate(-A.offsetX,-A.offsetY)):jo(A)?(this.pathCallback.path(A.path),this.ctx.clip()):qo(A)?A.applyClip(this.ctx):(A=>2===A.type)(A)?this.ctx.globalAlpha*=A.opacity:(A=>4===A.type)(A)?this.ctx.globalCompositeOperation=A.compositeOperation:(A=>5===A.type)(A)&&(this.ctx.filter=A.safeFilterString||"none",A.shadow&&(this.ctx.shadowOffsetX=A.shadow.offsetX,this.ctx.shadowOffsetY=A.shadow.offsetY,this.ctx.shadowBlur=A.shadow.blur,this.ctx.shadowColor=A.shadow.color)),this.activeEffects.push(A)}popEffect(){0!==this.activeEffects.length&&(this.didSave&&this.activeEffects.length-1===this.saveAtDepth&&(this.ctx.restore(),this.didSave=!1,this.saveAtDepth=-1),this.activeEffects.pop(),this.didSave||0!==this.activeEffects.length||(this.ctx.globalAlpha=1,this.ctx.globalCompositeOperation="source-over",this.ctx.filter="none",this.ctx.shadowOffsetX=0,this.ctx.shadowOffsetY=0,this.ctx.shadowBlur=0,this.ctx.shadowColor="rgba(0, 0, 0, 0)"))}getActiveEffectCount(){return this.activeEffects.length}hasActiveEffects(){return this.activeEffects.length>0}};var vi=class A{constructor(A,t){this.context=A,this.options=t,this.canvas=t.canvas?t.canvas:document.createElement("canvas");const e=this.canvas.getContext("2d");if(!e)throw new Error("Failed to get 2D rendering context from canvas");this.ctx=e,t.canvas||(this.canvas.width=Math.floor(t.width*t.scale),this.canvas.height=Math.floor(t.height*t.scale),this.canvas.style.width=`${t.width}px`,this.canvas.style.height=`${t.height}px`),this.ctx.scale(this.options.scale,this.options.scale),this.ctx.translate(-t.x,-t.y),this.ctx.textBaseline="bottom",void 0!==t.imageSmoothing&&(this.ctx.imageSmoothingEnabled=t.imageSmoothing),t.imageSmoothingQuality&&(this.ctx.imageSmoothingQuality=t.imageSmoothingQuality),this.backgroundRenderer=new mi({ctx:this.ctx,context:this.context,canvas:this.canvas,options:{width:t.width,height:t.height,scale:t.scale}}),this.borderRenderer=new Ei({ctx:this.ctx},{path:A=>this.path(A),formatPath:A=>this.formatPath(A)}),this.borderImageRenderer=new bi(this.ctx),this.effectsRenderer=new xi({ctx:this.ctx},{path:A=>this.path(A)}),this.textRenderer=new pi({ctx:this.ctx,options:{scale:t.scale}}),this.context.logger.debug(`Canvas renderer initialized (${t.width}x${t.height}) with scale ${t.scale}`)}async renderStack(A){A.element.container.styles.isVisible()&&await this.renderStackContent(A)}async renderNode(A){A.container.styles.isVisible()&&(await this.renderNodeBackgroundAndBorders(A),await this.renderNodeContent(A))}renderReplacedElement(A,t,e){const r=e.naturalWidth||A.intrinsicWidth,n=e.naturalHeight||A.intrinsicHeight;if(e&&r>0&&n>0){const s=ii(A),o=Go(t);this.path(o),this.ctx.save(),this.ctx.clip();const{sx:i,sy:a,sw:c,sh:B,dx:l,dy:g,dw:h,dh:d}=((A,t,e,r,n)=>{let s=0,o=0,i=A,a=t,c=e.left,B=e.top,l=e.width,g=e.height;const h=l/g,d=i/a,w=n?wt(n[0],1):.5,u=n?wt(n[1],1):.5;return 2===r?d>h?(g=l/d,B+=(e.height-g)*u):(l=g*d,c+=(e.width-l)*w):4===r?d>h?(i=a*h,s+=(A-i)*w):(a=i/h,o+=(t-a)*u):8===r?(i>l?(s+=(i-l)*w,i=l):(c+=(l-i)*w,l=i),a>g?(o+=(a-g)*u,a=g):(B+=(g-a)*u,g=a)):16===r&&((d>h?l:g*d)<(i>l?i:l)?d>h?(g=l/d,B+=(e.height-g)*u):(l=g*d,c+=(e.width-l)*w):(i>l?(s+=(i-l)*w,i=l):(c+=(l-i)*w,l=i),a>g?(o+=(a-g)*u,a=g):(B+=(g-a)*u,g=a))),{sx:s,sy:o,sw:i,sh:a,dx:c,dy:B,dw:l,dh:g}})(r,n,s,A.styles.objectFit,A.styles.objectPosition);this.ctx.drawImage(e,i,a,c,B,l,g,h,d),this.ctx.restore()}}async renderNodeContent(t){this.effectsRenderer.applyEffects(t.getEffects(4));const e=t.container,r=t.curves,s=e.styles,o=ii(e);for(const A of e.textNodes)await this.textRenderer.renderTextNode(A,s,o);await(async(t,e,r,n,s,o,i,a)=>{if(s instanceof wo)try{const A=await e.cache.match(s.src),r=t.imageSmoothingEnabled;2===i.imageRendering||1===i.imageRendering?t.imageSmoothingEnabled=!1:3===i.imageRendering&&(t.imageSmoothingEnabled=!0),a(s,o,A),t.imageSmoothingEnabled=r}catch(A){e.logger.error(`Error loading image ${s.src}`),e.onError?.(A instanceof Error?A:new Error(String(A)))}if(s instanceof uo&&a(s,o,s.canvas),s instanceof Qo)try{a(s,o,await e.cache.match(s.svg))}catch(A){e.logger.error(`Error loading svg ${s.svg.substring(0,255)}`),e.onError?.(A instanceof Error?A:new Error(String(A)))}if(s instanceof Ho&&s.tree){const n=await((t,e)=>new A(t,e))(e,{scale:r.scale,backgroundColor:s.backgroundColor,x:0,y:0,width:s.width,height:s.height}).render(s.tree);s.width&&s.height&&t.drawImage(n,0,0,s.width,s.height,s.bounds.left,s.bounds.top,s.bounds.width,s.bounds.height)}})(this.ctx,this.context,{scale:this.options.scale,backgroundColor:this.options.backgroundColor,x:this.options.x,y:this.options.y,width:this.options.width,height:this.options.height},0,e,r,s,(A,t,e)=>this.renderReplacedElement(A,t,e)),((A,t,e,r,s)=>{if(r instanceof mo){const t=Math.min(r.bounds.width,r.bounds.height);"checkbox"===r.type&&r.checked?(A.save(),e([new Mo(r.bounds.left+.39363*t,r.bounds.top+.79*t),new Mo(r.bounds.left+.16*t,r.bounds.top+.5549*t),new Mo(r.bounds.left+.27347*t,r.bounds.top+.44071*t),new Mo(r.bounds.left+.39694*t,r.bounds.top+.5649*t),new Mo(r.bounds.left+.72983*t,r.bounds.top+.23*t),new Mo(r.bounds.left+.84*t,r.bounds.top+.34085*t),new Mo(r.bounds.left+.39363*t,r.bounds.top+.79*t)]),A.fillStyle=mt(Fo),A.fill(),A.restore()):"radio"===r.type&&r.checked&&(A.save(),A.beginPath(),A.arc(r.bounds.left+t/2,r.bounds.top+t/2,t/4,0,2*Math.PI,!0),A.fillStyle=mt(Fo),A.fill(),A.restore())}if((A=>A instanceof Io||A instanceof yo||A instanceof mo&&"radio"!==A.type&&"checkbox"!==A.type)(r)&&r.value.length){const[o]=t.createFontStyle(s);A.font=o;const i=wi(A,wt(s.fontSize,0));A.fillStyle=mt(r instanceof mo&&r.isPlaceholder?1970632191:s.color),A.textBaseline="alphabetic",A.textAlign=(A=>{switch(A){case 1:return"center";case 2:return"right";default:return"left"}})(r.styles.textAlign);const a=ii(r);let c=0;switch(r.styles.textAlign){case 1:c+=a.width/2;break;case 2:c+=a.width}let B=0;if(r instanceof mo){const A=wt(s.fontSize,0);B=(a.height-A)/2}const l=a.add(c,B,0,0);A.save(),e([new Mo(a.left,a.top),new Mo(a.left+a.width,a.top),new Mo(a.left+a.width,a.top+a.height),new Mo(a.left,a.top+a.height)]),A.clip();const g=((A,t,e,r)=>{const n=[],s=t.split("\n");for(const t of s){if(r){n.push(t);continue}const s=t.split(/(\s+)/);let o="";for(const t of s){const r=o+t;A.measureText(r).width<=e||""===o?o=r:(n.push(o),o=t)}n.push(o)}return n})(A,r.value,a.width,"pre"===s.whiteSpace||"nowrap"===s.whiteSpace),h=wt(s.fontSize,0),d=Pr(s.lineHeight,h);g.forEach((e,r)=>{let o=l.left;const c=A.measureText(e).width;switch(s.textAlign){case 1:o+=(a.width-c)/2;break;case 2:o+=a.width-c}const B=new n(o,l.top+r*d,0,0);t.renderTextWithLetterSpacing(new so(e,B),s.letterSpacing,i,s.writingMode)}),A.restore(),A.textBaseline="alphabetic",A.textAlign="left"}})(this.ctx,this.textRenderer,this.path.bind(this),e,s),await(async(A,t,e,r,s,o)=>{if(Qe(s.styles.display,2048))if(null!==s.styles.listStyleImage){const e=s.styles.listStyleImage;if(0===e.type){const r=e.url;try{const e=await t.cache.match(r);A.drawImage(e,s.bounds.left-(e.width+10),s.bounds.top)}catch(A){t.logger.error(`Error loading list-style-image ${r}`),t.onError?.(A instanceof Error?A:new Error(String(A)))}}}else if(r.listValue&&-1!==s.styles.listStyleType){const[t]=e.createFontStyle(o);A.font=t,A.fillStyle=mt(o.color),A.textBaseline="middle",A.textAlign="right";const i=new n(s.bounds.left,s.bounds.top+wt(s.styles.paddingTop,s.bounds.width),s.bounds.width,Pr(o.lineHeight,o.fontSize.number)/2+1);e.renderTextWithLetterSpacing(new so(r.listValue,i),o.letterSpacing,Pr(o.lineHeight,o.fontSize.number)/2+2,o.writingMode),A.textBaseline="bottom",A.textAlign="left"}})(this.ctx,this.context,this.textRenderer,t,e,s)}async renderStackContent(A){const t=this.options.signal;await this.renderNodeBackgroundAndBorders(A.element);for(const e of A.negativeZIndex){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderNodeContent(A.element);for(const t of A.nonInlineLevel)await this.renderNode(t);for(const e of A.nonPositionedFloats){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const e of A.nonPositionedInlineLevel){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const t of A.inlineLevel)await this.renderNode(t);for(const e of A.zeroOrAutoZIndexOrTransformedOrOpacity){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const e of A.positiveZIndex){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}}mask(A){this.ctx.beginPath();const t=this.options.x,e=this.options.y;this.ctx.moveTo(t,e),this.ctx.lineTo(t+this.options.width,e),this.ctx.lineTo(t+this.options.width,e+this.options.height),this.ctx.lineTo(t,e+this.options.height),this.ctx.lineTo(t,e),this.formatPath(A.slice(0).reverse()),this.ctx.closePath()}path(A){fi(this.ctx,A)}formatPath(A){Ui(this.ctx,A)}async renderNodeBackgroundAndBorders(A){this.effectsRenderer.applyEffects(A.getEffects(2));const t=A.container.styles,e=!Ft(t.backgroundColor)||t.backgroundImage.length,r=Li(t),n=[{style:t.borderTopStyle,color:t.borderTopColor,width:t.borderTopWidth},{style:t.borderRightStyle,color:t.borderRightColor,width:t.borderRightWidth},{style:t.borderBottomStyle,color:t.borderBottomColor,width:t.borderBottomWidth},{style:t.borderLeftStyle,color:t.borderLeftColor,width:t.borderLeftWidth}],s=gi(t.backgroundClip,0),o=Ki(s,A.curves);if((e||t.boxShadow.length)&&(r&&A.container.textNodes.length>0?await this.renderTextClippedBackground(A):(this.ctx.save(),this.path(o),this.ctx.clip(),Ft(t.backgroundColor)||(this.ctx.fillStyle=mt(t.backgroundColor),this.ctx.fill()),await this.backgroundRenderer.renderBackgroundImage(A.container),this.ctx.restore()),t.boxShadow.slice(0).reverse().forEach(t=>{this.ctx.save();const e=Ro(A.curves),r=t.inset?0:1e4,n=(s=(t.inset?1:-1)*t.spread.number-r,o=(t.inset?1:-1)*t.spread.number,i=t.spread.number*(t.inset?-2:2),a=t.spread.number*(t.inset?-2:2),e.map((A,t)=>{switch(t){case 0:return A.add(s,o);case 1:return A.add(s+i,o);case 2:return A.add(s+i,o+a);case 3:return A.add(s,o+a)}return A}));var s,o,i,a;t.inset?(this.path(e),this.ctx.clip(),this.mask(n)):(this.mask(e),this.ctx.clip(),this.path(n)),this.ctx.shadowOffsetX=t.offsetX.number+r,this.ctx.shadowOffsetY=t.offsetY.number,this.ctx.shadowColor=mt(t.color),this.ctx.shadowBlur=t.blur.number,this.ctx.fillStyle=t.inset?mt(t.color):"rgba(0,0,0,1)",this.ctx.fill(),this.ctx.restore()})),t.borderImageSource){const e=t.borderImageSource;if(0===e.type){const r=e.url;try{const e=await this.context.cache.match(r);e&&this.borderImageRenderer.renderBorderImage(A.container.bounds,e,t.borderImageSlice,t.borderImageRepeat,Math.max(0,t.borderTopWidth),Math.max(0,t.borderRightWidth),Math.max(0,t.borderBottomWidth),Math.max(0,t.borderLeftWidth))}catch(A){this.context.logger.error(`Error loading border-image ${r}`)}}return}let i=0;for(const t of n){if(0!==t.style&&!Ft(t.color)&&t.width>0){const e=async()=>{2===t.style?await this.borderRenderer.renderDashedDottedBorder(t.color,t.width,i,A.curves,2):3===t.style?await this.borderRenderer.renderDashedDottedBorder(t.color,t.width,i,A.curves,3):4===t.style?await this.borderRenderer.renderDoubleBorder(t.color,t.width,i,A.curves):await this.borderRenderer.renderSolidBorder(t.color,i,A.curves)},r=A.container.legendBounds;if(0===i&&r){const t=A.container.bounds,n=r.left-t.left,s=r.left+r.width-t.left;n>0&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(t.left,t.top,n,t.height),this.ctx.clip(),await e(),this.ctx.restore());const o=t.left+s,i=t.width-s;i>0&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(o,t.top,i,t.height),this.ctx.clip(),await e(),this.ctx.restore())}else await e()}i++}}async render(A){this.options.backgroundColor&&(this.ctx.fillStyle=mt(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height));const t=(A=>{const t=new Ai(A,null),e=new $o(t),r=[];return ni(t,e,e,r),si(t.container,r),e})(A);return await this.renderStack(t),this.effectsRenderer.applyEffects([]),this.canvas}async renderTextClippedBackground(A){const t=A.container,e=t.styles,r=t.bounds;if(r.width<=0||r.height<=0)return;const n=(this.canvas.ownerDocument??document).createElement("canvas"),s=Math.ceil(r.width),o=Math.ceil(r.height);n.width=s,n.height=o;const i=n.getContext("2d");if(!i)return;const[a]=this.textRenderer.createFontStyle(e);i.font=a,i.textBaseline="alphabetic",i.textAlign="left",i.direction=1===e.direction?"rtl":"ltr";const c=wi(i,e.fontSize.number),B=new mi({ctx:i,context:this.context,canvas:n,options:{width:s,height:o,scale:1}});Ft(e.backgroundColor)||(i.fillStyle=mt(e.backgroundColor),i.fillRect(0,0,s,o)),i.save(),i.translate(-r.left,-r.top),await B.renderBackgroundImage(t),i.restore(),i.globalCompositeOperation="destination-in",i.fillStyle="#000";const l=e.writingMode,g=e.letterSpacing;for(const A of t.textNodes)for(const t of A.textBounds){const A=t.bounds.left-r.left,e=t.bounds.top-r.top+c;g>0?this.renderTextMaskWithLetterSpacing(i,t,g,A,e,l):i.fillText(t.text,A,e)}this.ctx.drawImage(n,r.left,r.top)}renderTextMaskWithLetterSpacing(A,t,e,r,n,s){const o=io(t.text);let i=r;for(const a of o){if(Cn(s))return void A.fillText(t.text,r,n);A.fillText(a,i,n),i+=A.measureText(a).width+e}}};const Ki=(A,t)=>{switch(A){case 0:return Ro(t);case 2:return(A=>[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox])(t);default:return Go(t)}},Li=A=>A.backgroundClip.some(A=>3===A);var Si=class{constructor(A,t){this.context=A,this.options=t,this.canvas=t.canvas?t.canvas:document.createElement("canvas");const e=this.canvas.getContext("2d");if(!e)throw new Error("Failed to get 2D rendering context from canvas");this.ctx=e,this.canvas.width=Math.floor(t.width*t.scale),this.canvas.height=Math.floor(t.height*t.scale),this.canvas.style.width=`${t.width}px`,this.canvas.style.height=`${t.height}px`,this.ctx.scale(this.options.scale,this.options.scale),this.ctx.translate(-t.x,-t.y),this.context.logger.debug(`EXPERIMENTAL ForeignObject renderer initialized (${t.width}x${t.height} at ${t.x},${t.y}) with scale ${t.scale}`)}async render(A){if(this.options.signal?.aborted)throw new DOMException("The operation was aborted.","AbortError");const t=await ro(eo(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,A));return this.options.backgroundColor&&(this.ctx.fillStyle=mt(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(t,-this.options.x*this.options.scale,-this.options.y*this.options.scale),this.canvas}},Di=class{static{this.instances={}}constructor({id:A,enabled:t}){this.id=A,this.enabled=t,this.start=Date.now()}debug(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.debug?console.debug(this.id,`${this.getTime()}ms`,...A):this.info(...A))}getTime(){return Date.now()-this.start}info(...A){this.enabled&&"undefined"!=typeof window&&window.console&&"function"==typeof console.info&&console.info(this.id,`${this.getTime()}ms`,...A)}warn(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.warn?console.warn(this.id,`${this.getTime()}ms`,...A):this.info(...A))}error(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.error?console.error(this.id,`${this.getTime()}ms`,...A):this.info(...A))}},Mi=class{constructor(A,t){if(this.context=A,this._options=t,this._cache=new Map,this._pendingOperations=new Map,this._deferMode=!1,this._collectedUrls=new Set,this.maxSize=t.maxCacheSize??100,this.maxSize<1)throw new Error("Cache maxSize must be at least 1");this.maxSize>1e4&&this.context.logger.warn(`Cache maxSize ${this.maxSize} is very large and may cause memory issues. Consider using a smaller value (recommended: 100-1000).`)}startDefer(){this._deferMode=!0}async preloadAll(A=10){this._deferMode=!1;const t=Array.from(this._collectedUrls);if(this._collectedUrls.clear(),0===t.length)return;const e=Math.max(1,Math.min(A,100));this.context.logger.debug(`Preloading ${t.length} image(s) with concurrency ${e}`);for(let A=0;A<t.length;A+=e){const r=t.slice(A,A+e).map(A=>this._addImageWithPending(A));await Promise.allSettled(r)}}addImage(A){if(this._deferMode)return this.has(A)||!Gi(A)&&!Vi(A)||this._collectedUrls.add(A),Promise.resolve();const t=this._pendingOperations.get(A);if(t)return t;if(this.has(A)){const t=this._cache.get(A);return this._cache.delete(A),this._cache.set(A,t),Promise.resolve()}return Gi(A)||Vi(A)?this._addImageWithPending(A):Promise.resolve()}_addImageWithPending(A){const t=this._pendingOperations.get(A);if(t)return t;const e=this._addImageInternal(A);return this._pendingOperations.set(A,e),e.finally(()=>{this._pendingOperations.delete(A)}),e}async _addImageInternal(A){const t=this._options.imageTimeout??15e3,e=this.withTimeout(this.loadImage(A),t,`Timed out (${t}ms) loading image`);e.catch(t=>{this.context.logger.error(`Failed to load image ${A}: ${t instanceof Error?t.message:"Unknown error"}`)}),this.set(A,e)}withTimeout(A,t,e){if(t<=0)return A;let r;const n=new Promise((A,n)=>{r=setTimeout(()=>n(new Error(e)),t)});return Promise.race([A,n]).finally(()=>{void 0!==r&&clearTimeout(r)})}match(A){const t=this._cache.get(A);if(t)return this._cache.delete(A),this._cache.set(A,t),t.value}set(A,t){if(this._cache.has(A))this._cache.delete(A);else if(this._cache.size>=this.maxSize){const A=this._cache.keys().next().value;void 0!==A&&(this._cache.delete(A),this.context.logger.debug(`Cache: Evicted LRU entry: ${A}`))}this._cache.set(A,{value:t})}size(){return this._cache.size}getMaxSize(){return this.maxSize}clear(){this._cache.clear()}async loadImage(A){const t=this.context.originChecker,e=A=>t.isSameOrigin(A),r="function"==typeof this._options.customIsSameOrigin?await this._options.customIsSameOrigin(A,e):e(A),n=!r&&!1===this._options.allowTaint&&!Ni(A)&&!Gi(A)&&"string"!=typeof this._options.proxy,s=!Ni(A)&&(!0===this._options.useCORS||n)&&no.SUPPORT_CORS_IMAGES&&!r,o=!Ni(A)&&!r&&!Gi(A)&&"string"==typeof this._options.proxy&&no.SUPPORT_CORS_XHR&&!s;if(!(r||!1!==this._options.allowTaint||Ni(A)||Gi(A)||o||s))return;let i=A;return o&&(i=await this.proxy(i)),this.context.logger.debug(`Added image ${A.substring(0,256)}`),await new Promise((A,t)=>{const e=new Image;e.onload=()=>A(e),e.onerror=t,(Ri(i)||s)&&(e.crossOrigin="anonymous"),e.src=i,!0===e.complete&&setTimeout(()=>A(e),500)})}has(A){return this._cache.has(A)}keys(){return Promise.resolve(Array.from(this._cache.keys()))}proxy(A){const t=this._options.proxy;if(!t)throw new Error("No proxy defined");const e=A.substring(0,256);return new Promise((r,n)=>{const s=no.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=()=>{if(200===o.status)if("text"===s)r(o.response);else{const A=new FileReader;A.addEventListener("load",()=>r(A.result),!1),A.addEventListener("error",A=>n(A),!1),A.readAsDataURL(o.response)}else n(`Failed to proxy resource ${e} with status code ${o.status}`)},o.onerror=n;const i=t.indexOf("?")>-1?"&":"?";if(o.open("GET",`${t}${i}url=${encodeURIComponent(A)}&responseType=${s}`),"text"!==s&&o instanceof XMLHttpRequest&&(o.responseType=s),this._options.imageTimeout){const A=this._options.imageTimeout;o.timeout=A,o.ontimeout=()=>n(`Timed out (${A}ms) proxying ${e}`)}o.send()})}};const Ti=/^data:image\/svg\+xml/i,ki=/^data:image\/.*;base64,/i,Oi=/^data:image\/.*/i,Vi=A=>no.SUPPORT_SVG_DRAWING||!Pi(A),Ni=A=>Oi.test(A),Ri=A=>ki.test(A),Gi=A=>"blob"===A.substring(0,4),Pi=A=>"svg"===A.slice(-3).toLowerCase()||Ti.test(A);var Xi=class{constructor(A){if(!A||!A.document)throw new Error("Valid window object required for OriginChecker");if(!A.location||!A.location.href)throw new Error("Window object must have valid location");this.link=A.document.createElement("a"),this.origin=this.getOrigin(A.location.href)}getOrigin(A){return this.link.href=A,this.link.href=this.link.href,this.link.protocol+this.link.hostname+this.link.port}isSameOrigin(A){return this.getOrigin(A)===this.origin}getContextOrigin(){return this.origin}},Ji=class A{static{this.instanceCount=1}constructor(t,e,r){this.windowBounds=e,this.instanceName="#"+A.instanceCount++,this.config=r,this.logger=new Di({id:this.instanceName,enabled:t.logging}),this.originChecker=new Xi(r.window),this.cache=t.cache??r.cache??new Mi(this,t),this.onError=t.onError}};const Wi=A=>{if(A?.aborted)throw new DOMException("The operation was aborted.","AbortError")};function Yi(A,t){return A-=408,Zi()[A]}function Zi(){const A=["setTimeout","flat","join","6XaTJVj","CPU: ","SW-controlled","mobile","x (avail ",", maxTouchPoints ","DateTimeFormat","157642fvbqdX","isFinite","beta","max","removeEventListener","maxTouchPoints","Online: ","startsWith","yes","n/a","(pointer: fine)","encodedBodySize","deviceorientation","undefined","upright","languages","slice","CookiesEnabled: ","floor","unknown","navigation","platform"," | ","210ekNQpN"," Mbps","(display-mode: standalone)","browser API","map","brands","12qUXSJb","duration","version","enabled","onLine","Screen: ","Languages: ","requestStart","DeviceOrientationEvent","downlink","charging","addEventListener","TTFB ~","intent:geo","innerHeight","availHeight","entryType","getBattery","613212NFEHvB","number"," (β ","resource","type","-bit)","getEntriesByType","7704BpVgPB","isSecureContext","Referrer: ","connection","transferSize"," (mobile)","15929849qxUqOX","userAgent","width","5SqCVmO","orientation","2358YDTEwY","brand","Network: ","getItem","referrer","filter","toFixed","push"," cores","matches","doNotTrack","3040158lHDxGo","4NncolU","hardwareConcurrency","padStart","rttMs","; DNT: "," ms","colorDepth","gamma","Pointer/Touch: ","cookieEnabled","abs","function","UA brands: ","length","inferred","3071075LBBpBc","Viewport: ","158917wOoTOH","availWidth","controller","not charging","responseStart","userAgentData","saveData","°, γ ","isArray","round","find","innerWidth"];return(Zi=()=>A)()}async function zi(){const A=Yi,t=(new(Intl[A(499)])).resolvedOptions().timeZone,e=(A=>{const t=Yi,e=A<=0?"+":"-",r=Math[t(471)](A);return""+e+String(Math[t(518)](r/60)).padStart(2,"0")+":"+String(r%60)[t(463)](2,"0")})((new Date).getTimezoneOffset()),r=[];r.push("Language: "+navigator.language),navigator[A(515)]?.[A(474)]&&r[A(456)](A(419)+navigator[A(515)][A(492)](", ")),r[A(456)]("User agent: "+navigator[A(445)]);const n=function(){const A=Yi;if(!(A=>{const t=Yi;return t(483)in A&&void 0!==A[t(483)]})(navigator))return;const t=navigator.userAgentData,e=Array[A(486)](t[A(412)])?t[A(412)][A(411)](t=>t[A(450)]+" "+t[A(415)])[A(492)](", "):void 0,r=t.platform?""+t[A(521)]+(t[A(496)]?A(443):""):void 0;return[e&&A(473)+e,r&&"Platform: "+r].filter(Boolean)[A(492)](A(522))||void 0}();n&&r[A(456)](n),r.push("Timezone: "+t+" (UTC"+e+")"),r.push("Local time: "+(new Date).toString());const s=window.devicePixelRatio||1;r[A(456)](A(418)+screen[A(446)]+"x"+screen.height+" @"+s+A(497)+screen[A(479)]+"x"+screen[A(428)]+", "+screen[A(467)]+A(436));const o=screen[A(448)]&&A(435)in screen[A(448)]?screen.orientation[A(435)]:void 0;r[A(456)](A(477)+window[A(489)]+"x"+window[A(427)]+(o?", orientation "+o:"")),r[A(456)](A(494)+navigator[A(462)]+A(457));const i=await async function(){const A=Yi,t=[];let e=A(410);if((A=>{const t=Yi;return t(441)in A&&typeof A[t(441)]!==t(513)})(navigator)){const e=navigator[A(441)];e?.effectiveType&&t[A(456)](e.effectiveType),typeof e?.[A(422)]===A(432)&&t.push("~"+e[A(422)]+A(408)),"number"==typeof e?.rtt&&t[A(456)](e.rtt+" ms"),e?.[A(484)]&&t[A(456)]("saveData")}else{const r=((A=20)=>{const t=Yi,e=performance[t(437)](t(520))[t(488)](A=>A[t(429)]===t(520)),r=e?Math[t(503)](0,e[t(482)]-e[t(420)]):void 0,n=performance.getEntriesByType(t(434))[t(454)](A=>A[t(429)]===t(434));let s=0,o=0;for(const e of n[t(516)](0,Math.max(0,A))){const A=e[t(511)]>0?e.encodedBodySize:e[t(442)]>0?e[t(442)]:0,r=e[t(414)];A>0&&r>0&&Number[t(501)](r)&&(s+=A,o+=r)}const i=o>0?8*s/o:void 0;return{downlinkMbps:"number"==typeof i?i/1e3:void 0,rttMs:r}})();"number"==typeof r.downlinkMbps&&t[A(456)]("~"+r.downlinkMbps[A(455)](1)+A(408)),typeof r[A(464)]===A(432)&&t[A(456)](A(425)+Math[A(487)](r[A(464)])+A(466)),e=A(475)}const r=performance.getEntriesByType(A(520))[A(488)](t=>t[A(429)]===A(520));if(r){const e=Math[A(503)](0,r.responseStart-r[A(420)]);!t.some(t=>t[A(507)]("TTFB"))&&t[A(456)](A(425)+Math[A(487)](e)+A(466))}return t[A(474)]?A(451)+t[A(492)](", ")+" ("+e+")":void 0}();i&&r[A(456)](i),r[A(456)]((()=>{const A=Yi,t=typeof matchMedia===A(472)&&matchMedia("(pointer: coarse)")[A(458)],e=typeof matchMedia===A(472)&&matchMedia(A(510)).matches,r=t?"coarse":e?"fine":A(519),n=navigator[A(505)];return A(469)+r+A(498)+n})());const a=await async function(){const A=Yi;if((A=>{const t=Yi;return"getBattery"in A&&typeof A[t(430)]===t(472)})(navigator))try{const t=await navigator[A(430)](),e=Math[A(487)](100*t.level);return"Battery: "+[(Number[A(501)](e)?e:0)+"%",t[A(423)]?"charging":A(481)][A(492)](", ")}catch{}}();a&&r.push(a),r[A(456)](A(517)+(navigator[A(470)]?A(508):"no")+A(465)+(navigator[A(459)]??A(509))),r[A(456)](A(506)+(navigator[A(417)]?A(508):"no")),document.referrer&&r[A(456)](A(440)+document[A(453)]),r[A(456)]((()=>{const A=Yi,t="function"==typeof matchMedia&&matchMedia(A(409))[A(458)];return"PWA: "+(Boolean(navigator.serviceWorker?.[A(480)])?A(495):"no SW")+", display-mode standalone: "+(t?A(508):"no")})());const c=await async function(A=400){const t=Yi;if(t(421)in window&&window[t(439)])return new Promise(e=>{const r=t;let n=!1;const s=A=>{const t=Yi,r=typeof A[t(502)]===t(432)?A[t(502)]:void 0,o=typeof A[t(468)]===t(432)?A.gamma:void 0;if(void 0===r||void 0===o)return;if(n)return;n=!0,window[t(504)](t(512),s);const i=((A,t)=>{const e=Yi,r=Math[e(471)](A),n=Math.abs(t);return r<15&&n<15?e(491):r>=60?e(514):"reclined"})(r,o);e("Tilt: "+i+t(433)+Math[t(487)](r)+t(485)+Math[t(487)](o)+"°)")};window[r(490)](()=>{const A=r;n||(n=!0,window[A(504)](A(512),s),e(void 0))},A),window[r(424)](r(512),s,{passive:!0})})}();c&&r[A(456)](c);const B=localStorage[A(452)](A(426))===A(416);return r[A(456)](B?"Device geolocation: enabled":"Device geolocation: disabled"),r[A(492)](A(522))}(A=>{const t=Yi,e=A();for(;;)try{if(469126==-parseInt(t(493))/1*(parseInt(t(500))/2)+-parseInt(t(431))/3*(-parseInt(t(461))/4)+parseInt(t(447))/5*(parseInt(t(460))/6)+-parseInt(t(476))/7+parseInt(t(438))/8*(-parseInt(t(449))/9)+parseInt(t(523))/10*(-parseInt(t(478))/11)+-parseInt(t(413))/12*(-parseInt(t(444))/13))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Zi);const _i=na;(A=>{const t=na,e=A();for(;;)try{if(630513==-parseInt(t(475))/1*(parseInt(t(481))/2)+-parseInt(t(482))/3+-parseInt(t(489))/4+parseInt(t(477))/5*(parseInt(t(488))/6)+parseInt(t(486))/7*(parseInt(t(490))/8)+-parseInt(t(484))/9+parseInt(t(483))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ta);const ji="intent:consent",qi=_i(479),$i="intent:debug",Aa=_i(485);function ta(){const A=["7011174taZSHV","1397492ElDhCu","942568NkQPYN","intent:data-sid-max-age","12THNass","intent:data-client-id","5HujyAA","intent:data-capture-mode","intent:geo","intent:data-ip","2278nIWxBK","3445239anpBJb","5343870AIDxsO","5592042xpqLbT","intent:debug-panel","63jbiMdB","intent:data-base-url"];return(ta=()=>A)()}const ea=_i(476),ra=_i(480);function na(A,t){return A-=474,ta()[A]}const sa=_i(487),oa=_i(474),ia=_i(478),aa="https://intent.callimacus.ai";(A=>{const t=ga,e=A();for(;;)try{if(947926==-parseInt(t(437))/1*(parseInt(t(434))/2)+parseInt(t(448))/3+parseInt(t(443))/4+-parseInt(t(442))/5*(parseInt(t(438))/6)+parseInt(t(447))/7+-parseInt(t(444))/8+parseInt(t(440))/9*(-parseInt(t(436))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(wa);const ca=2166136261,Ba=16777619;function la(A,t){const e=ga;let r=A;for(let A=0;A<t[e(446)];A++)r^=t[e(441)](A),r=Math.imul(r,Ba);return r>>>0}function ga(A,t){return A-=434,wa()[A]}function ha(A,t){return Math[ga(439)](A^t,Ba)>>>0}const da=[{seed:2166136261,prime:16777619},{seed:2654435761,prime:2246822507},{seed:3266489909,prime:668265263},{seed:374761393,prime:3266489955}];function wa(){const A=["padStart","length","11865714TnWFoA","5009910vonvbE","4VcsYHd","toString","30xCRNRE","104798DIuJlG","6hqqOQp","imul","6082524Nzghip","charCodeAt","3017380qrJhfC","6150308QTEUWE","8913144CfJWTd"];return(wa=()=>A)()}const ua=fa;function Qa(A,t){let e=0;return(...r)=>{const n=Date[fa(212)]();n-e>=t&&(e=n,A(...r))}}function Ca(...A){const t=fa;try{"undefined"!=typeof localStorage&&localStorage[t(238)]($i)===t(243)&&console[t(204)](...A)}catch{}}(A=>{const t=fa,e=A();for(;;)try{if(610936==-parseInt(t(220))/1*(-parseInt(t(213))/2)+parseInt(t(203))/3+-parseInt(t(240))/4+parseInt(t(239))/5*(parseInt(t(228))/6)+-parseInt(t(231))/7*(parseInt(t(227))/8)+-parseInt(t(230))/9+-parseInt(t(208))/10*(parseInt(t(222))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ya);const pa=Object.freeze(new Set([ua(216),ua(232),ua(244)])),Ua=[ua(211),"textarea","select",ua(236),...[...pa].map(A=>'[role="'+A+'"]')][ua(226)](", ");function fa(A,t){return A-=203,ya()[A]}function Fa(A){const t=ua,e=A[t(205)];return"INPUT"===e||"TEXTAREA"===e||e===t(234)}function ma(A){const t=ua;if(Fa(A))return!0;const e=A[t(219)]("contenteditable");if(""===e||"true"===e||e===t(221))return!0;const r=A[t(219)]("role")?.[t(224)]();return!(!r||!pa[t(242)](r))}function ya(){const A=["join","111032PvOALN","473262XzVBit","value","2579931EPzEWl","28OzoSoY","combobox","&#039;","SELECT","host","[contenteditable]","postTask","getItem","55ONEqFY","3143772vTMAAX","body","has","enabled","searchbox","&gt;","&lt;","2521350PvYVTD","log","tagName","string","contenteditable","2927170acQpyD","true","&amp;","input","now","26plJPkS","innerText","setTimeout","textbox","replace","function","getAttribute","24898zyarsU","plaintext-only","11aLinSC","parentElement","toLowerCase","&quot;"];return(ya=()=>A)()}function Ia(A){const t=ua,e=A[t(223)];if(e)return e;const{parentNode:r}=A;return r instanceof ShadowRoot&&r[t(235)]instanceof Element?r[t(235)]:void 0}function Ha(A){const t=ua;if(Fa(A))return A[t(229)];const e=A[t(214)];return typeof e===t(206)?e:A.textContent??""}function Ea(A){const t=ua;return A[t(217)](/&/g,t(210))[t(217)](/</g,t(246))[t(217)](/>/g,t(245)).replace(/"/g,t(225)).replace(/'/g,t(233))}const ba=Sa;(A=>{const t=Sa,e=A();for(;;)try{if(217615==-parseInt(t(445))/1*(parseInt(t(456))/2)+parseInt(t(390))/3+parseInt(t(362))/4*(-parseInt(t(435))/5)+-parseInt(t(382))/6+parseInt(t(432))/7+-parseInt(t(415))/8*(parseInt(t(381))/9)+parseInt(t(460))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ka);const xa=ba(417),va=ba(446);Object[ba(356)](new Set([ba(400),"search"]));const Ka=new Map([[ba(412),ba(426)],[ba(369),ba(405)],["family-name","Last name"],[ba(367),"Middle name"],[ba(371),"Nickname"],[ba(402),ba(376)],[ba(387),ba(405)],[ba(468),"Last name"],[ba(457),"Middle name"],["name-middle-initial",ba(437)],[ba(386),ba(419)],[ba(389),ba(471)],[ba(436),ba(419)],[ba(377),ba(471)],[ba(467),ba(376)],[ba(449),ba(458)],[ba(411),"Password"],["current-password","Password"],[ba(391),"Password"],[ba(395),ba(383)],[ba(462),"One-time code"],[ba(375),ba(365)],[ba(406),ba(407)],["tel",ba(455)],[ba(357),ba(431)],[ba(379),"Phone"],[ba(461),"Phone"],[ba(420),ba(364)],[ba(428),ba(429)],[ba(373),"Address line 2"],[ba(448),ba(444)],[ba(440),ba(408)],[ba(452),ba(427)],[ba(368),ba(469)],[ba(450),ba(394)],["postal-code",ba(463)],[ba(447),ba(414)],[ba(413),ba(433)],[ba(403),"Street address"],[ba(430),ba(433)],[ba(404),ba(434)],[ba(384),ba(463)],[ba(424),ba(427)],[ba(370),"State/Province"],[ba(385),ba(374)],[ba(398),ba(470)],[ba(372),ba(418)],["cc-additional-name",ba(392)],[ba(441),"Cardholder middle name"],[ba(466),ba(396)],[ba(442),ba(397)],[ba(421),"Expiration day"],[ba(388),ba(454)],[ba(410),ba(360)],[ba(443),ba(401)],[ba(464),ba(363)],["bday",ba(378)],[ba(453),"Birth day"],["bday-month",ba(465)],[ba(359),"Birth year"],["birthdate-full","Birthday"],["birthdate-day",ba(409)],[ba(399),ba(465)],[ba(439),"Birth year"],[ba(393),ba(459)],["organization-title",ba(423)],[ba(425),ba(422)],["gender",ba(422)]]),La=Object[ba(356)](new Set(Ka[ba(380)]()));function Sa(A,t){return A-=356,ka()[A]}function Da(A){const t=ba;return A?A[t(366)]()[t(361)]()[t(358)](/\s+/)[t(416)](Boolean):[]}function Ma(A){const t=ba;return A.some(A=>La[t(438)](A))}function Ta(A){const t=ba;for(const e of A){const A=Ka[t(451)](e);if(A)return A}}function ka(){const A=["Street address","WebAuthn","toLowerCase","additional-name","address-level3","given-name","postal-address-region","nickname","cc-family-name","address-line2","Cardholder name","webauthn","Username","honorific-suffix","Birthday","tel-national","keys","1008BnyVsq","1064814hWphAD","One-time code","postal-address-extended-postal-code","cc-name","name-prefix","name-given","cc-exp-month","name-suffix","727605JDcowq","new-password","Cardholder middle name","organization","Neighborhood","one-time-code","Card number","Expiration date","cc-given-name","birthdate-month","searchbox","Security code","username","postal-address","postal-address-extended","First name","email","Email","State/Province","Birth day","cc-exp-year","password-new","name","country-name","Country code","24872TGLkiJ","filter","Sensitive","Cardholder last name","Name prefix","street-address","cc-exp-day","Sex","Job title","postal-address-locality","sex","Name","City","address-line1","Address line 1","postal-address-country","Phone country code","2231103GzWGVY","Country name","Address line 2","80fKQtGg","honorific-prefix","Middle initial","has","birthdate-year","address-level1","cc-middle-name","cc-exp","cc-csc","Address line 3","19ZLjILq","Redacted","country","address-line3","password","address-level4","get","address-level2","bday-day","Expiration month","Phone","3464DdLabN","name-middle","Password","Organization","2201200pfdSiF","tel-device","sms-otp","Postal code","cc-type","Birth month","cc-number","username-new","name-family","District","Cardholder first name","Name suffix","freeze","tel-country-code","split","bday-year","Expiration year","trim","1296SmeFVs","Card type"];return(ka=()=>A)()}const Oa=Va;function Va(A,t){return A-=455,Wa()[A]}(A=>{const t=Va,e=A();for(;;)try{if(243746==-parseInt(t(473))/1+-parseInt(t(468))/2*(parseInt(t(482))/3)+parseInt(t(477))/4+parseInt(t(458))/5*(-parseInt(t(457))/6)+-parseInt(t(460))/7*(-parseInt(t(483))/8)+parseInt(t(474))/9*(-parseInt(t(462))/10)+parseInt(t(478))/11*(parseInt(t(495))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Wa);const Na=Oa(489),Ra=Oa(502);function Ga(A){return"<"+(A=>{const t=Oa,e=(A[t(459)]?.(Ra)??"").trim();if(e)return e;const r=ma(A)?Da(A[t(459)]?.(t(467))):[];if(A[t(500)]===t(481)&&A[t(466)]===t(456))return"Password";const n=Ta(r);if(n)return n;const s="INPUT"===A[t(500)]?$a[t(472)](A[t(466)]):void 0,o=s?Ta([s]):void 0;if(o)return o;const i=A.getAttribute?.(Na)?.[t(487)]();return i===t(493)?va:xa})(A)+">"}function Pa(A){const t=Oa;return A.hasAttribute("data-html2canvas-ignore")||"ignore"===A[t(459)](Na)?.[t(487)]()}const Xa=new Set;function Ja(A){const t=Oa,e=A[t(459)](Na);if(null===e)return!1;const r=e[t(487)]();return r!==t(504)&&(""!==e&&"mask"!==r&&(A=>{const t=Oa;if(Xa[t(471)](A))return;Xa[t(501)](A);const e=JSON[t(492)](A),r=t(503),n="[intent] Unsupported data-intent-redact value "+e+t(497)+r+t(476);try{console[t(491)](n)}catch{}})(e),!0)}function Wa(){const A=["setAttribute","password","402RDojjc","22565udYtKh","getAttribute","133YBjAHb","month","20zZJVUn","length","iframe","textContent","type","autocomplete","95010BEmooX","IFRAME","freeze","has","get","43930iKEkfw","886419aCcJye","datetime-local",'. Treating as "mask" to prevent data leaks.',"1745204UYXKUm","661221PPjiRt","TEXTAREA","shadowRoot","INPUT","15JGfDRp","121136xolzxH","SELECT","email","week","toLowerCase","push","data-intent-redact","contentDocument","warn","stringify","mask","value","60cHeDxK","time",". Supported values are ","tel","hasAttribute","tagName","add","data-intent-redact-label",'"" or "mask" (redact), "ignore" (exclude from capture)',"ignore"];return(Wa=()=>A)()}function Ya(A){let t=A;for(;t&&t!==document.body;){if(Pa(t))return!0;t=Ia(t)}return!1}function Za(A){let t=A;for(;t&&t!==document.body;){if(Ja(t))return t;t=Ia(t)}}function za(A){return void 0!==Za(A)}function _a(A){return Ja(A)||Ac(A)?Ga(A):Ga(Za(A)??A)}function ja(A){return!Ya(A)&&(za(A)||Ac(A))}const qa=Object[Oa(470)](new Set(["searchbox"])),$a=new Map([["email",Oa(485)],[Oa(498),Oa(498)]]);function Ac(A){const t=Oa,e=A.tagName,r=A.getAttribute("role")?.[t(487)]();if(e===t(481)){const e=A;return e[t(466)]===t(456)||!("search"===e[t(466)]||r&&qa[t(471)](r))&&(!!$a[t(471)](e[t(466)])||Ma(Da(e[t(467)])))}return e===t(479)||e===t(484)?Ma(Da(A.autocomplete)):!(!ma(A)||Fa(A))&&(!r||!qa.has(r))&&Ma(Da(A.getAttribute(t(467))))}function tc(A){return!(Pa(A)||!Ja(A)&&!Ac(A))}function ec(A){const t=Oa;if(!Ya(A))if(Fa(A)){if(tc(A)){if("INPUT"===A[t(500)]){const e=A;["date",t(475),t(461),t(496),t(486)].includes(e[t(466)])&&(e[t(466)]="text")}const e=Ga(A);A.value=e,A[t(455)](t(494),e)}}else ma(A)?tc(A)&&(A[t(465)]=Ga(A)):A[t(499)](Na)&&Ja(A)&&(A[t(465)]=Ga(A))}function rc(A,t){const e=Oa,r=[],n=[A];for(A instanceof Element&&A[e(480)]&&n[e(488)](A[e(480)]);n[e(463)]>0;){const A=n.pop().querySelectorAll("*");for(const s of A)s.matches(t)&&r[e(488)](s),s[e(480)]&&n[e(488)](s[e(480)])}return r}function nc(A,t=new Set){const e=Oa,r=A instanceof Document?A:A.ownerDocument;if(r){if(t[e(471)](r))return;t[e(501)](r)}A instanceof Element&&ec(A);for(const t of rc(A,Ua))ec(t);for(const t of rc(A,"["+Na+"]"))ec(t);for(const r of rc(A,e(464)))if(r[e(500)]===e(469))try{const A=r[e(490)];A&&nc(A,t)}catch{}}
10
+ /*! js-cookie v3.0.8 | MIT */function sc(A){for(var t=1;t<arguments.length;t++){var e=arguments[t];for(var r in e)"__proto__"!==r&&(A[r]=e[r])}return A}var oc=function A(t,e){function r(A,r,n){if("undefined"!=typeof document){"number"==typeof(n=sc({},e,n)).expires&&(n.expires=new Date(Date.now()+864e5*n.expires)),n.expires&&(n.expires=n.expires.toUTCString()),A=encodeURIComponent(A).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var o in n)n[o]&&(s+="; "+o,!0!==n[o]&&(s+="="+n[o].split(";")[0]));return document.cookie=A+"="+t.write(r,A)+s}}return Object.create({set:r,get:function(A){if("undefined"!=typeof document&&(!arguments.length||A)){for(var e=document.cookie?document.cookie.split("; "):[],r={},n=0;n<e.length;n++){var s=e[n].split("="),o=s.slice(1).join("=");try{var i=decodeURIComponent(s[0]);if(i in r||(r[i]=t.read(o,i)),A===i)break}catch(A){}}return A?r[A]:r}},remove:(A,t)=>{r(A,"",sc({},t,{expires:-1}))},withAttributes:function(t){return A(this.converter,sc({},this.attributes,t))},withConverter:function(t){return A(sc({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(e)},converter:{value:Object.freeze(t)}})}({read:A=>('"'===A[0]&&(A=A.slice(1,-1)),A.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)),write:A=>encodeURIComponent(A).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)},{path:"/"});function ic(A,t){return A-=216,lc()[A]}(A=>{const t=ic,e=A();for(;;)try{if(639378==-parseInt(t(223))/1+-parseInt(t(227))/2*(parseInt(t(233))/3)+parseInt(t(230))/4+-parseInt(t(236))/5*(-parseInt(t(225))/6)+parseInt(t(220))/7+parseInt(t(235))/8+-parseInt(t(228))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(lc);let ac="";function cc(){return ac}function Bc(A){return oc[ic(216)](A)}function lc(){const A=["2367052btyYRs","randomUUID","protocol","60kXJCxO","Lax","9489912lXgfSk","735FrzkxP","get","location","number","granted","1399986YehPHb","https:","getItem","1156423stiTEL","remove","26502JrNAnE","isFinite","37078PujvsJ","4146462WCeEHx","set"];return(lc=()=>A)()}function gc(A,t){const e=ic,r=localStorage[e(222)](oa),n=null===r?void 0:Number(r),s=typeof t===e(218)&&Number[e(226)](t)?t:typeof n===e(218)&&Number[e(226)](n)?n:2592e3,o=window[e(217)][e(232)]===e(221);oc[e(229)]("intent_sid",A,{expires:s/86400,path:"/",sameSite:e(234),...o&&{secure:!0}})}function hc(){oc[ic(224)]("intent_sid",{path:"/"})}function dc(){const A=ic,t=Bc("intent_sid");if(!(()=>{const A=ic;return localStorage.getItem(ji)===A(219)})())return t&&hc(),void(ac="");t?ac=t:(ac=crypto[A(231)](),gc(ac))}(A=>{const t=Fc,e=A();for(;;)try{if(292309==parseInt(t(378))/1+parseInt(t(365))/2*(parseInt(t(361))/3)+parseInt(t(362))/4*(-parseInt(t(366))/5)+parseInt(t(355))/6+-parseInt(t(359))/7+parseInt(t(374))/8*(parseInt(t(380))/9)+-parseInt(t(376))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(fc);let wc=!1,uc=!1,Qc=!1,Cc=!1,pc=!1;function Uc(){const A=Fc;return localStorage[A(369)](qi)===A(371)}function fc(){const A=["226gTiIGX","85615QSmufz","keydown","altitude","getItem","geoEnabled","enabled","query","geolocation","16qiywof","isFinite","3555900evDlas","speed","540229uPAtxn","hasFocus","1142397gItYVn","deviceGeoSent","code","altitudeAccuracy","permissions","PERMISSION_DENIED","onLine","heading","latitude","now","canRequest","addEventListener","visibilityState","timestamp","1815234rbPfym","protocol","number","getCurrentPosition","3044300vnlAgj","pointerdown","5997QpfHBh","56ZMuHgI","isSecureContext","TIMEOUT"];return(fc=()=>A)()}function Fc(A,t){return A-=349,fc()[A]}function mc(){wc=!1,Qc=!1,pc=!1}function yc(){return!wc&&Uc()&&!Cc&&pc}const Ic=Hc;function Hc(A,t){return A-=209,Kc()[A]}(A=>{const t=Hc,e=A();for(;;)try{if(925939==parseInt(t(258))/1*(parseInt(t(255))/2)+parseInt(t(210))/3+parseInt(t(283))/4*(parseInt(t(264))/5)+-parseInt(t(215))/6+-parseInt(t(228))/7+-parseInt(t(234))/8+-parseInt(t(248))/9*(-parseInt(t(291))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Kc);let Ec,bc=[],xc=!1;function vc(){const A=Hc;if(!Ec)return;const t=Ec[A(236)]("#intent-debug-events"),e=Ec[A(236)]("#intent-debug-count");if(!t||!e)return;if(0===bc[A(287)])return t[A(238)]=A(230),void(e[A(245)]="0 events");const r=[...bc].reverse();t.innerHTML=r.map(A=>(A=>{const t=Hc,e=new Date(A[t(270)]).toLocaleTimeString(),r=A.img&&A.img[t(287)]>0,n=r?Math[t(263)](.75*A[t(235)][t(287)]/1024):0,s=Ea(A[t(266)]),o=Ea(JSON.stringify(A.props,null,2)),i=Ea(A[t(281)]),a=Ea(JSON.stringify(A[t(254)],null,2));return t(219)+s+t(304)+e+t(221)+(r?t(300)+A[t(235)]+'" \n\t\t\t\t\t\tclass="intent-debug-screenshot" \n\t\t\t\t\t\tstyle="\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t" \n\t\t\t\t\t\ttitle="Click to view fullscreen"/>\n\t\t\t\t\t<div style="\n\t\t\t\t\t\tcolor: var(--solomei-color-text-secondary, #979797);\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t\tmargin-top: 4px;\n\t\t\t\t\t">Screenshot (~'+n+t(226):"")+t(286)+o+t(229)+(A[t(281)]?t(214)+i+t(229):"")+'\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Bounding Box:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">'+a+t(257)})(A))[A(223)](""),e[A(245)]=bc[A(287)]+A(272)+(1===bc[A(287)]?"":"s")}function Kc(){const A=["bbox","1304wvpQEd","\n\t\tposition: fixed;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tbackground: rgba(0, 0, 0, 0.95);\n\t\tz-index: 2147483646;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\tcursor: zoom-out;\n\t","</pre>\n\t\t\t\t</div>\n\t\t\t</details>\n\t\t</div>\n\t","2220XbkKuu","display","function","getItem","\n\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\tfont-size: 13px;\n\t","round","5435zRjtom","data-intent-redact","event","innerWidth","mousedown","preventDefault","timestamp","src"," event","min","target","click","\n\t\tmax-width: 95%;\n\t\tmax-height: 95%;\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\talign-items: center;\n\t","button","cssText","offsetWidth","flex","html","random","184qStMCY","disabled","clientY",'\n\t\t\t<details style="margin-top: 8px;">\n\t\t\t\t<summary style="\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tfont-weight: var(--solomei-font-weight-regular, 500);\n\t\t\t\t\tuser-select: none;\n\t\t\t\t">View Details</summary>\n\t\t\t\t<div style="\n\t\t\t\t\tmargin-top: 8px;\n\t\t\t\t\tpadding: 8px;\n\t\t\t\t\tbackground: var(--solomei-color-secondary, #fafaf9);\n\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t">\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Properties:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0 0 8px 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\twhite-space: pre-wrap;\n\t\t\t\t\t\tword-break: break-word;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">',"length","setAttribute","none","intent-debug-screenshot","10KnVhrK","body","✕ Close","readyState","max","key",'\n\t\t<div id="intent-debug-panel" data-intent-redact="ignore" style="\n\t\t\tposition: fixed;\n\t\t\ttop: 20px;\n\t\t\tright: 20px;\n\t\t\twidth: 400px;\n\t\t\tmax-height: 80vh;\n\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.15));\n\t\t\tz-index: 2147483647;\n\t\t\tfont-family: var(--solomei-font-primary, -apple-system, BlinkMacSystemFont, \'Segoe UI\', sans-serif);\n\t\t\tfont-size: var(--solomei-font-size-base, 15px);\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t">\n\t\t\t<div id="intent-debug-header" style="\n\t\t\t\tbackground: var(--solomei-color-primary, #262626);\n\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\tpadding: 12px 15px;\n\t\t\t\tborder-radius: var(--solomei-radius-lg, 10px) var(--solomei-radius-lg, 10px) 0 0;\n\t\t\t\tcursor: move;\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\talign-items: center;\n\t\t\t\tuser-select: none;\n\t\t\t">\n\t\t\t\t<div style="font-weight: var(--solomei-font-weight-semibold, 600); font-size: 14px;">Intent SDK Debug</div>\n\t\t\t\t<div style="display: flex; gap: 8px;">\n\t\t\t\t\t<button id="intent-debug-minimize" style="\n\t\t\t\t\t\tbackground: transparent;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 4px);\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t">−</button>\n\t\t\t\t\t<button id="intent-debug-close" style="\n\t\t\t\t\t\tbackground: transparent;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 4px);\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t">×</button>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div id="intent-debug-content" style="\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\toverflow: hidden;\n\t\t\t\tflex: 1;\n\t\t\t">\n\t\t\t\t<div style="\n\t\t\t\t\tpadding: 12px 15px;\n\t\t\t\t\tborder-bottom: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t">\n\t\t\t\t\t<div style="font-weight: var(--solomei-font-weight-semibold, 600); color: var(--solomei-color-foreground, #212121); margin-bottom: 8px;">Event Log</div>\n\t\t\t\t\t<div style="display: flex; gap: 8px; align-items: center;">\n\t\t\t\t\t\t<button id="intent-debug-clear" style="\n\t\t\t\t\t\t\tbackground: var(--solomei-color-primary, #262626);\n\t\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\t\tpadding: 6px 12px;\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-button, 20px);\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t\t\tfont-weight: var(--solomei-font-weight-regular, 500);\n\t\t\t\t\t\t">Clear</button>\n\t\t\t\t\t\t<span id="intent-debug-count" style="color: var(--solomei-color-text-secondary, #979797); font-size: 12px;">0 events</span>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div id="intent-debug-events" style="\n\t\t\t\t\tflex: 1;\n\t\t\t\t\toverflow-y: auto;\n\t\t\t\t\tpadding: 10px;\n\t\t\t\t">\n\t\t\t\t\t<div style="color: var(--solomei-color-muted-foreground, #979797); text-align: center; padding: 20px;">\n\t\t\t\t\t\tNo events captured yet. Interact with the page to see events.\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t',"appendChild","shift",'\n\t\t\t\t<div style="margin-bottom: 8px;">\n\t\t\t\t\t<img src="',"offsetHeight","width","#intent-debug-content",'</div>\n\t\t\t\t<div style="\n\t\t\t\t\tcolor: var(--solomei-color-text-secondary, #979797);\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t">',"ignore","4302147PKWRSs","startsWith","left","contains",'\n\t\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>HTML:</strong></div>\n\t\t\t\t\t\t<pre style="\n\t\t\t\t\t\t\tmargin: 0 0 8px 0;\n\t\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\t\twhite-space: pre-wrap;\n\t\t\t\t\t\t\tword-break: break-word;\n\t\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t\t">',"7739412LmTvas","tagName","randomUUID","enabled",'\n\t\t<div style="\n\t\t\tbackground: var(--solomei-color-card, white);\n\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\t\tpadding: 10px;\n\t\t\tmargin-bottom: 8px;\n\t\t">\n\t\t\t<div style="\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\talign-items: center;\n\t\t\t\tmargin-bottom: 8px;\n\t\t\t\tpadding-bottom: 8px;\n\t\t\t\tborder-bottom: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t">\n\t\t\t\t<div style="\n\t\t\t\t\tfont-weight: var(--solomei-font-weight-semibold, 600);\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t">',"div","</div>\n\t\t\t</div>\n\t\t\t","top","join","undefined","style"," KB)</div>\n\t\t\t\t</div>\n\t\t\t","keydown","4324145ylFJxF","</pre>\n\t\t\t\t\t",'\n\t\t\t<div style="color: var(--solomei-color-muted-foreground, #979797); text-align: center; padding: 20px;">\n\t\t\t\tNo events captured yet. Interact with the page to see events.\n\t\t\t</div>\n\t\t',"setItem","now","auto","13849600uzbFnj","img","querySelector","stopPropagation","innerHTML","remove","innerHeight","addEventListener","Escape","right","getBoundingClientRect","textContent","\n\t\tmax-width: 100%;\n\t\tmax-height: calc(95vh - 60px);\n\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.2));\n\t","data:image/","14699565oZUAwJ","mousemove","\n\t\tpadding: 12px 24px;\n\t\tbackground: var(--solomei-color-primary-button-background, #262626);\n\t\tcolor: var(--solomei-color-primary-button-color, white);\n\t\tborder: none;\n\t\tborder-radius: var(--solomei-radius-button, 20px);\n\t\tfont-size: 14px;\n\t\tfont-weight: var(--solomei-font-weight-semibold, 600);\n\t\tcursor: pointer;\n\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.15));\n\t","#intent-debug-clear","firstElementChild","createElement"];return(Kc=()=>A)()}function Lc(){const A=Hc;if(Ec)return void(Ec[A(225)][A(259)]=A(280));const t=document[A(253)](A(220));t.innerHTML=Hc(297),Ec=t[A(252)],document.body[A(298)](Ec);const e=Ec.querySelector("#intent-debug-close"),r=Ec[A(236)]("#intent-debug-minimize"),n=Ec.querySelector(A(251));e?.[A(241)](A(275),()=>{!function(A){const t=Hc;try{localStorage[t(231)](Aa,t(A?218:284)),A?Lc():(()=>{const A=Hc;Ec&&(Ec[A(225)][A(259)]=A(289))})()}catch{}}(!1)}),r?.[A(241)]("click",()=>{(()=>{const A=Hc;if(!Ec)return;const t=Ec[A(236)](A(303)),e=Ec.querySelector("#intent-debug-minimize");t&&e&&(xc=!xc,xc?(t[A(225)].display="none",Ec[A(225)][A(302)]="200px",e[A(245)]="+"):(t[A(225)][A(259)]="flex",Ec[A(225)][A(302)]="400px",e[A(245)]="−"))})()}),n?.addEventListener(A(275),()=>{bc=[],vc()}),(()=>{const A=Hc;if(!Ec)return;const t=Ec[A(236)]("#intent-debug-header");if(!t)return;let e=!1,r=0,n=0,s=0,o=0;t.addEventListener(A(268),t=>{const r=A;if("BUTTON"===t[r(274)][r(216)])return;e=!0;const n=Ec[r(244)]();s=t.clientX-n[r(212)],o=t.clientY-n[r(222)]}),document.addEventListener(A(249),t=>{const i=A;if(!e||!Ec)return;t[i(269)](),r=t.clientX-s,n=t[i(285)]-o;const a=window[i(267)]-Ec[i(279)],c=window[i(240)]-Ec[i(301)];r=Math[i(295)](0,Math[i(273)](r,a)),n=Math[i(295)](0,Math[i(273)](n,c)),Ec[i(225)][i(212)]=r+"px",Ec[i(225)][i(222)]=n+"px",Ec[i(225)][i(243)]=i(233)}),document.addEventListener("mouseup",()=>{e=!1})})(),Ec.addEventListener(A(275),t=>{const e=A,r=t[e(274)];if(r.classList[e(213)](e(290))){const A=r;A[e(271)]&&A[e(271)][e(211)](e(247))&&(A=>{const t=Hc,e=document[t(253)](t(220));e.id="intent-debug-fullscreen-modal",e[t(288)](t(265),t(209)),e[t(225)].cssText=t(256);const r=document[t(253)]("div");r[t(225)][t(278)]=t(276);const n=document[t(253)](t(235));n.src=A,n.style[t(278)]=t(246);const s=document[t(253)](t(220));s[t(225)][t(278)]="\n\t\tmargin-top: 20px;\n\t\tdisplay: flex;\n\t\tgap: 20px;\n\t\talign-items: center;\n\t";const o=document[t(253)](t(277));o[t(245)]=t(293),o[t(225)][t(278)]=t(250);const i=document[t(253)](t(220));i[t(245)]="Click anywhere or press ESC to close",i.style[t(278)]=t(262),s.appendChild(o),s[t(298)](i),r[t(298)](n),r[t(298)](s),e[t(298)](r);const a=()=>{const A=t;e[A(239)](),document.removeEventListener(A(227),c)};e[t(241)]("click",a),o.addEventListener(t(275),A=>{A[t(237)](),a()}),n.addEventListener(t(275),A=>{A[t(237)]()});const c=A=>{const e=t;A[e(296)]===e(242)&&a()};document.addEventListener(t(227),c),document[t(292)][t(298)](e)})(A[e(271)])}}),vc()}function Sc(){var A=["warn","676868yOldAl","256EerUiV","23809977LbxFwz","5659235cXuarr","1582860YZUBVK","2653528ZMqRsc","3UIcwEZ","setDebugPanel","logEventToDebugPanel","Use the debug build variant: @solomei-ai/intent/debug or intent.debug.umd.min.js","3265318fSfpGH","[Intent SDK] Debug panel is not available in this build. ","358SZeusE"];return(Sc=()=>A)()}function Dc(A,t){return A-=207,Sc()[A]}"undefined"!=typeof window&&function(){const A=Hc;try{return localStorage[A(261)](Aa)===A(218)}catch{return!1}}()&&("loading"===document[Ic(294)]?document[Ic(241)]("DOMContentLoaded",()=>{Lc()}):Lc()),Symbol,(A=>{for(var t=Dc,e=A();;)try{if(666772==parseInt(t(220))/1*(parseInt(t(209))/2)+parseInt(t(214))/3*(parseInt(t(208))/4)+-parseInt(t(211))/5+-parseInt(t(212))/6+-parseInt(t(218))/7+-parseInt(t(213))/8+parseInt(t(210))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Sc);const Mc=kc;(A=>{const t=kc,e=A();for(;;)try{if(532543==parseInt(t(197))/1*(parseInt(t(188))/2)+-parseInt(t(202))/3*(parseInt(t(207))/4)+parseInt(t(185))/5+parseInt(t(204))/6*(-parseInt(t(155))/7)+parseInt(t(191))/8+-parseInt(t(183))/9*(parseInt(t(164))/10)+-parseInt(t(195))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Vc);const Tc={x:0,y:0,w:0,h:0};function kc(A,t){return A-=155,Vc()[A]}class Oc{[Mc(171)];entries=new Map;pendingRegistrations=[];generation=0;constructor(A){this[Mc(171)]=A}get[Mc(176)](){const A=Mc;return this[A(182)][A(176)]}[Mc(178)](A){const t=Mc;return this[t(182)][t(178)](A)}values(){return this[Mc(182)].values()}[Mc(198)](A,t){const e=Mc,r=new Set,n=[],s=[];for(const{node:t,kind:s,fingerprint:o}of A){r[e(187)](t);const A=this.entries[e(178)](t);A?A[e(186)]!==o&&(A.fingerprint=o,A[e(181)]=s,A[e(205)]=!1,A[e(180)]=void 0):(this[e(182)].set(t,{node:t,kind:s,intersecting:!1,visible:!1,ratio:0,rect:{...Tc},dwellMs:0,registered:!1,fingerprint:o}),n[e(199)](t))}for(const[A,n]of this[e(182)])r[e(161)](A)&&(t?.(A)??!0)||(this[e(179)](n),this[e(182)][e(156)](A),s[e(199)](A));return this.options[e(201)]?.(e(159)+this[e(182)].size+e(174)),{added:n,removed:s}}[Mc(193)](A,t){const e=Mc,r=this[e(182)][e(178)](A);r&&(r.intersecting=t[e(206)],r[e(196)]=t[e(196)],r[e(162)]=t[e(162)])}[Mc(167)](A){const t=Mc,e=this[t(171)][t(166)]();for(const r of this[t(182)][t(175)]()){if(!r[t(206)]){this[t(179)](r,e),r[t(194)]=!1;continue}const n=A?.(r.node)??!0;n&&void 0===r.visibleSince?r.visibleSince=e:!n&&this.closeDwell(r,e),r[t(194)]=n}}async registerVisible(){const A=Mc,t=this[A(189)],e=[];for(const t of this[A(182)].values())t[A(194)]&&!t[A(205)]&&e[A(199)](t);if(0===e[A(200)])return;for(const t of e)t[A(205)]=!0;let r,n=0;for(const s of e)try{if(await this[A(171)][A(163)](),t!==this[A(189)])return void this[A(171)][A(201)]?.(A(208));const e=this[A(171)][A(177)](s.node,s[A(181)]);e&&(s.digest=e,this[A(192)][A(199)](e))}catch(A){s.registered=!1,n++,r=A}n>0&&this.options[A(201)]?.(A(172)+n+"/"+e.length+A(190)+String(r))}[Mc(173)](){const A=Mc,t=this[A(171)].now(),e=new Map;for(const r of this[A(182)][A(175)]()){if(!r[A(194)]||!r[A(180)])continue;const n=void 0===r.visibleSince?0:t-r[A(157)],s={ref:r[A(180)].ref,ratio:Math[A(203)](100*r[A(196)])/100,dwellMs:Math[A(203)](r[A(168)]+n),rect:r[A(162)]},o=e[A(178)](s[A(169)]);(!o||s[A(168)]>o[A(168)])&&e.set(s[A(169)],s)}return[...e[A(175)]()]}[Mc(158)](){const A=Mc,t=new Set;for(const e of this[A(182)][A(175)]())e.digest&&t.add(e[A(180)][A(169)]);const e=new Set,r=[];let n=0;for(const s of this[A(192)])e[A(161)](s[A(169)])||(t[A(161)](s[A(169)])?(e.add(s[A(169)]),r[A(199)](s)):n++);return this[A(192)]=[],n>0&&this[A(171)].log?.(A(165)+n+A(170)),r}[Mc(184)](){const A=Mc;let t=0,e=0;for(const r of this[A(182)].values())r.visible&&t++,r[A(180)]&&e++;return{segments:this[A(182)][A(176)],onScreen:t,registered:e}}[Mc(160)](){const A=Mc;this[A(182)].clear(),this.pendingRegistrations=[],this[A(189)]++}[Mc(179)](A,t=this[Mc(171)].now()){const e=Mc;void 0!==A[e(157)]&&(A[e(168)]+=t-A[e(157)],A[e(157)]=void 0)}}function Vc(){const A=["push","length","log","156495DXQdfh","round","211242PXXeaW","registered","intersecting","52EuOgCT","[Ledger] abandoned an extraction pass the ledger was cleared under","7tCxkDC","delete","visibleSince","drainRegistrations","[Ledger] ","clear","has","rect","scheduleIdle","1390jDpWxS","[Ledger] dropped ","now","refreshVisibility","dwellMs","ref"," registrations the ledger no longer describes","options","[Ledger] extraction failed for ","getOnScreen"," segments tracked","values","size","extract","get","closeDwell","digest","kind","entries","306BcljpK","getCoverage","3745715iNnxzJ","fingerprint","add","1252234XXxKNA","generation"," segments: ","5469656jxZmsk","pendingRegistrations","setGeometry","visible","8891806fSvmQf","ratio","1bSMnzz","reconcile"];return(Vc=()=>A)()}function Nc(A,t){return A-=440,Gc()[A]}(A=>{const t=Nc,e=A();for(;;)try{if(837011==parseInt(t(440))/1+parseInt(t(449))/2+parseInt(t(461))/3+-parseInt(t(445))/4*(parseInt(t(452))/5)+-parseInt(t(451))/6*(-parseInt(t(460))/7)+-parseInt(t(463))/8+parseInt(t(472))/9*(-parseInt(t(450))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Gc);const Rc={maxSegments:300,maxDepth:24,maxTextLength:1200,maxHeadings:1,maxInteractives:8,minTextLength:12,minDescentCoverage:.67};function Gc(){const A=["isSkipped","minTextLength","parent","contentHash","interactives","153eCkwwU","isMarked","maxSegments","children","mixDigestAttributes","heading","push","minDescentCoverage","764281FYuxOJ","unit","isInteractive","marked","kind","52IeMscF","depth","textLength","set","761004UHPCCe","112990fmmtsv","18phHWvo","238285AFAgyc","slice","headings","maxDepth","signature","maxInteractives","reduce","get","3465483aDNcXO","900900seiXew","length","10253240XLaGKj","isUnit","repeated","ownText"];return(Gc=()=>A)()}const Pc=_c;(A=>{const t=_c,e=A();for(;;)try{if(346714==parseInt(t(411))/1*(parseInt(t(427))/2)+-parseInt(t(429))/3+parseInt(t(472))/4+-parseInt(t(415))/5+-parseInt(t(469))/6*(-parseInt(t(407))/7)+-parseInt(t(435))/8+parseInt(t(439))/9*(-parseInt(t(434))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(jc);const Xc=new Set([Pc(416),Pc(410),Pc(438),Pc(445),Pc(417),"META",Pc(432),"TITLE","BR","HR",Pc(452),Pc(460),Pc(420)]),Jc=new Set([Pc(446),Pc(419),"LI",Pc(442),Pc(464),"TR","DD",Pc(424)]),Wc=new Set([Pc(401),Pc(451),"option",Pc(473),Pc(465),Pc(462),Pc(457),"card"]),Yc=new Set(["H1","H2","H3","H4","H5","H6"]),Zc=new Set(["A",Pc(471),Pc(453),Pc(409),Pc(466),Pc(437),"LABEL","VIDEO",Pc(440)]),zc=new Set([Pc(423),"link",Pc(459),Pc(462),"checkbox",Pc(456),Pc(448),Pc(421),Pc(447),"combobox","searchbox",Pc(404)]);function _c(A,t){return A-=399,jc()[A]}function jc(){const A=["data-intent-redact-label","1448010srOkmV","SCRIPT","HEAD","childNodes","SECTION","svg","menuitem","data-intent-redact","button","DETAILS","href","onclick","2Qvptmn","redact:ignore-legacy","573198UZyHJX","has","aria-labelledby","LINK","type","199460XzAgar","671984WvfDAt","classList","SUMMARY","NOSCRIPT","189WnXZNW","AUDIO","data:","FIGURE","textContent","hidden","TEMPLATE","ARTICLE","textbox","switch","toLowerCase","sort","listitem","IFRAME","INPUT","redact:","join","radio","treeitem","tagName","option","CANVAS","role","tab","alt","BLOCKQUOTE","gridcell","TEXTAREA","hasAttribute","data-html2canvas-ignore","6MkJjqS","getAttribute","BUTTON","1888728nURWwq","row","autocomplete","data-intent-item","article","aria-hidden","children","slider","contenteditable","currentSrc","1415519zuVfhl","aria-label","SELECT","STYLE","655847UuOHPA","startsWith","src"];return(jc=()=>A)()}const qc=Pc(400),$c=[Pc(408),Pc(431),"title","role"],AB=Pc(422),tB=Pc(414),eB=Pc(468),rB=[Pc(433),Pc(399)],nB={children:A=>A[Pc(403)],parent:A=>A.parentElement??void 0,ownText(A){const t=Pc;let e="";for(const r of A[t(418)])if(3===r.nodeType){const A=(r[t(443)]??"").trim();A&&(e+=A)}return e},kind:A=>A[Pc(458)],isSkipped(A){const t=Pc;return!!Xc[t(430)](A[t(458)])||A.hasAttribute(t(444))||"true"===A[t(470)](t(402))},isUnit(A){const t=Pc;if(Jc[t(430)](A.tagName))return!0;const e=A[t(470)](t(461))?.[t(449)]();return Boolean(e&&Wc[t(430)](e))},isHeading(A){const t=Pc;return Yc[t(430)](A[t(458)])},isInteractive(A){const t=Pc;if(Zc[t(430)](A[t(458)]))return!0;const e=A.getAttribute(t(461))?.[t(449)]();return!(!e||!zc[t(430)](e))||A.hasAttribute(t(426))||A[t(467)](t(425))},isMarked:A=>A[Pc(467)](qc),signature(A){const t=Pc,e=Array.from(A[t(436)])[t(450)]()[t(455)](".");return A[t(458)]+"#"+e},mixDigestAttributes(A,t){const e=Pc;let r=A;const n=t[e(458)];for(const A of $c){const n=t[e(470)](A);n&&(r=la(r,A+":"+n))}const s=t.getAttribute(AB);if(null!==s){r=la(r,e(454)+s);const A=t[e(470)](tB);A&&(r=la(r,A))}t[e(467)](eB)&&(r=la(r,e(428)));const o=t[e(470)](e(405));if(null!==o&&(r=la(r,"contenteditable:"+o)),n===e(453)||n===e(466)||n===e(409))for(const A of rB){const e=t.getAttribute(A);null!==e&&(r=la(r,A+":"+e))}if("A"===n||"AREA"===n){const A=t.getAttribute(e(425));A&&(r=la(r,A))}else if("IMG"===n){const A=t[e(470)](e(463));A&&(r=la(r,A));const n=t[e(406)]||t[e(470)](e(413));n&&(r=n[e(412)](e(441))?ha(r,n.length):la(r,n))}return r}};function sB(){const A=["length","kind","14885OstlVP","fields","label","34356eypSEt","4674015QVYocN","text","actions","map","alt","name","vbscript:","4040nphalZ","javascript:","href","startsWith","type","655641RfYseT","496mwHydY","replace","22mOfwLT","20185YjNNKM","toLowerCase","data:","some","trim","15rdQmMT","images","slice","src","push","109332EWmGfu","2456796shvatU","role"];return(sB=()=>A)()}const oB=aB;(A=>{const t=aB,e=A();for(;;)try{if(342326==parseInt(t(426))/1*(-parseInt(t(445))/2)+parseInt(t(442))/3+-parseInt(t(422))/4+-parseInt(t(416))/5*(parseInt(t(421))/6)+-parseInt(t(429))/7*(parseInt(t(443))/8)+parseInt(t(430))/9+-parseInt(t(437))/10*(-parseInt(t(411))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(sB);const iB={text:400,actions:12,images:6,label:80,heading:120,fields:30,fieldValue:300};function aB(A,t){return A-=411,sB()[A]}function cB(A,t){const e=aB;return A?A.replace(/\s+/g," ")[e(415)]()[e(418)](0,t):""}function BB(...A){const t=aB;let e="";for(const r of A)e+=r[t(424)]+":"+r;return e}const lB=[oB(438),oB(436),oB(413),"about:"];function gB(A){const t=oB;if(!A)return;const e=A.replace(/[\t\n\r]/g,"")[t(444)](/^[\u0000-\u0020]+|[\u0000-\u0020]+$/g,"");if(!e||"#"===e)return;const r=e[t(412)]();return lB[t(414)](A=>r[t(440)](A))?void 0:A}function hB(A,t,e,r,n){const s=oB,o=BB(...r[s(433)](A=>BB(A[s(428)],A[s(423)]??"",A[s(439)]??""))),i=BB(...n[s(433)](A=>BB(A[s(434)]??"",A[s(419)]??"")));return(A=>{const t=ga;let e="";for(const{seed:r,prime:n}of da){let s=r>>>0;for(let e=0;e<A[t(446)];e++){const r=A[t(441)](e);s=Math.imul(s^255&r,n)>>>0,s=Math.imul(s^r>>>8,n)>>>0}e+=s[t(435)](36)[t(445)](7,"0")}return e})(BB(A,t,e,o,i))}const dB=pB;(A=>{const t=pB,e=A();for(;;)try{if(179275==-parseInt(t(486))/1*(-parseInt(t(516))/2)+parseInt(t(508))/3*(-parseInt(t(510))/4)+parseInt(t(530))/5+parseInt(t(485))/6*(-parseInt(t(499))/7)+parseInt(t(489))/8+parseInt(t(548))/9+-parseInt(t(524))/10*(parseInt(t(509))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(mB);const wB='h1, h2, h3, h4, h5, h6, [role="heading"]',uB=dB(495);function QB(A,t=iB[dB(513)]){const e=dB;if(Ya(A))return"";if(za(A))return cB(_a(A),t);const r=[];let n=t;const s=A=>{const t=pB;r.at(-1)!==A&&(r[t(515)](A),n-=A[t(526)])},o=A=>{const t=pB;if(!(n<=0||Pa(A))){if(ma(A)){const e=cB(tc(A)?Ga(A):Ha(A),n);return void(e&&(r.push(e),n-=e[t(526)]))}if(Ja(A)){const e=cB(Ga(A),n);return void(e&&(r[t(515)](e),n-=e[t(526)]))}for(const e of A[t(491)]){if(n<=0)return;if(e[t(532)]===Node[t(512)]){const A=cB(e[t(549)],n);A&&s(A)}else e.nodeType===Node.ELEMENT_NODE&&o(e)}}};return o(A),r[e(546)](" ")[e(498)](0,t)}const CB=new Set([dB(503),dB(534),dB(511),dB(502),dB(507),dB(517)]);function pB(A,t){return A-=485,mB()[A]}function UB(A){const t=dB,e=A.cloneNode(!0);for(const A of e.querySelectorAll("input, textarea, select, button, option"))A[t(494)]();return cB(e[t(549)],iB[t(514)])}function fB(A){const t=dB,e=cB(A[t(541)](t(501)),iB[t(514)]);if(e)return e;const r=A[t(500)]?.[0];if(r){const A=UB(r);if(A)return A}const n=A[t(539)]("label");if(n){const A=UB(n);if(A)return A}return cB(A.getAttribute(t(506)),iB[t(514)])}function FB(A,t){const e=dB;if(ja(A))return _a(A);if(t===e(493)||t===e(492))return A.checked?e(540):"unchecked";if(A[e(537)]===e(487)){const t=A;return t.selectedOptions?.[0]?.textContent??t.value}return Ha(A)}function mB(){const A=["checkbox","remove",'a[href], button, [role="button"], [role="link"], [role="option"], [role="tab"], input[type="submit"], input[type="button"]',"querySelector","querySelectorAll","slice","61663hSaVam","labels","aria-label","image","submit","ownerDocument","role","placeholder","hidden","774goLpBK","14267znnysl","544JoCdfc","reset","TEXT_NODE","text","label","push","146OWYUsY","file","split","filter","disabled","name","src","startsWith","2170tUqUQU","data:","length","currentSrc","actions","aria-labelledby","622115FvJLtv","alt","nodeType","map","button","has","images","tagName","link","closest","checked","getAttribute","from","type","toLowerCase","matches","join","heading","2344320dtSspb","textContent","114rIMCrk","2194LDzfMS","SELECT","img","944944TElqHG","blob:","childNodes","radio"];return(mB=()=>A)()}function yB(A){const t=dB;if(Ya(A))return"";if(za(A))return _a(A);const e=cB(A[t(541)](t(501)),iB[t(514)]);if(e)return e;const r=A[t(541)](t(529));if(r){const e=r[t(518)](/\s+/).map(e=>A[t(504)].getElementById(e))[t(519)](Boolean)[t(533)](A=>QB(A,iB[t(514)]))[t(546)](" ");if(e.trim())return cB(e,iB[t(514)])}const n=cB(A[t(541)]("title"),iB[t(514)]);if(n)return n;const s=QB(A,iB.label);if(s)return s;const o=A[t(496)]("img[alt]");return cB(o?.[t(541)](t(531)),iB[t(514)])}function IB(A){const t=dB,e=A[t(527)]||A[t(522)]||"";if(e&&!e[t(523)](t(525))&&!e[t(523)](t(490)))return e[t(526)]>512?void 0:e}function HB(A){const t=dB,e=A[t(541)](t(505))?.[t(544)]();return e||("A"===A[t(537)]?t(538):"BUTTON"===A.tagName||"INPUT"===A[t(537)]?t(534):A[t(537)].toLowerCase())}let EB;function bB(A,t){return A-=353,vB()[A]}function xB(){if(!EB)throw new Error(bB(354));return EB}function vB(){const A=["1231675UbzwJH","1414847poSHvd","300562CEHeEA","132306QCaOjN","[intent] No platform host installed. Import @solomei-ai/intent (web) or @solomei-ai/intent/native before use.","114ydQWqo","5595vyjaOs","8aAzheH","1230381JnUuMy","430888SHZylU"];return(vB=()=>A)()}(A=>{const t=bB,e=A();for(;;)try{if(156979==parseInt(t(362))/1+parseInt(t(355))/2*(-parseInt(t(356))/3)+-parseInt(t(359))/4+-parseInt(t(360))/5+-parseInt(t(353))/6+parseInt(t(361))/7+parseInt(t(357))/8*(parseInt(t(358))/9))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(vB);const KB=LB;function LB(A,t){return A-=272,TB()[A]}(A=>{const t=LB,e=A();for(;;)try{if(923796==-parseInt(t(278))/1+-parseInt(t(272))/2+-parseInt(t(289))/3*(parseInt(t(282))/4)+-parseInt(t(295))/5+parseInt(t(286))/6+parseInt(t(277))/7+parseInt(t(279))/8*(parseInt(t(283))/9))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(TB);let SB=!1;const DB={get(A){const t=LB;try{return localStorage[t(290)](A)??void 0}catch{return}},set(A,t){const e=LB;try{localStorage[e(274)](A,t)}catch{}},remove(A){const t=LB;try{localStorage[t(285)](A)}catch{}}},MB={platform:KB(284),now:()=>performance.now(),wallClock:()=>Date[KB(273)](),storage:DB,send:async(A,t,{beacon:e,byteLength:r})=>{const n=LB;if(e)return((A,t)=>{const e=LB;if(typeof navigator[e(292)]!==e(302))return!1;try{return navigator[e(292)](A,new Blob([t],{type:e(281)}))}catch{return!1}})(A,t);const s=await(async A=>{const t=LB,e=globalThis[t(301)];if(SB&&typeof e===t(302))try{const r=new Blob([A])[t(298)]()[t(299)](new e("gzip"));return await new Response(r)[t(275)]()}catch{return}})(t),o={"Content-Type":n(281)},i=DB[n(276)](ea);i&&(o["x-sl-access-token"]=i);const a=cc();a&&(o[n(291)]=a),s&&(o[n(297)]=n(288));const c=await fetch(A,{method:"POST",headers:o,body:s??t,keepalive:r<=6e4,credentials:n(294)});return!c.ok&&MB.log(n(296)+c[n(287)]),c.ok},scheduleIdle:async()=>{const A=fa,{scheduler:t}=globalThis;if(t&&typeof t.postTask===A(218))try{return void await t[A(237)](()=>{},{priority:"background"})}catch{}typeof requestIdleCallback!==A(218)?await new Promise(A=>{setTimeout(A,0)}):await new Promise(A=>{requestIdleCallback(()=>{A()},{timeout:200})})},log(...A){const t=KB;try{typeof localStorage!==t(280)&&localStorage[t(290)]($i)===t(293)&&console[t(300)](...A)}catch{}}};function TB(){const A=["2947675FbzSKh","[Transport] batch rejected with ","Content-Encoding","stream","pipeThrough","log","CompressionStream","function","1527304mkalcY","now","setItem","blob","get","6863360ruRtMw","795272eXxJYq","48ktmEIB","undefined","application/json","38724BzXpEI","1890675gzsAJc","web","removeItem","10041432UVsCUs","status","gzip","261YKLxLH","getItem","x-intent-sid","sendBeacon","enabled","omit"];return(TB=()=>A)()}function kB(){void 0===EB&&(EB=MB)}const OB=tl;(A=>{const t=tl,e=A();for(;;)try{if(568111==parseInt(t(137))/1+parseInt(t(154))/2+-parseInt(t(138))/3+parseInt(t(179))/4*(-parseInt(t(158))/5)+-parseInt(t(148))/6+-parseInt(t(136))/7*(parseInt(t(145))/8)+-parseInt(t(175))/9*(-parseInt(t(164))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Bl);const VB={visibilityIntervalMs:500,resegmentDebounceMs:700,resegmentMaxDelayMs:1500,segmentOptions:{}},NB=new Oc({now:()=>performance[OB(150)](),extract:(A,t)=>function(A,t){const e=dB;if(Ya(A))return;const r=za(A)?void 0:A[e(545)](wB)?A:[...A[e(497)](wB)].find(A=>!Ya(A)&&!za(A)),n=r?cB(QB(r,iB[e(547)]),iB[e(547)]):"",s=[],o=A[e(545)](uB)?[A]:[...A[e(497)](uB)];for(const A of o){if(s.length>=iB[e(528)])break;if(Ya(A))continue;if(za(A)){s[e(515)]({label:_a(A),role:HB(A)});continue}const t=yB(A);if(!t)continue;const r=A.getAttribute("href")??void 0;s.push({label:t,role:HB(A),...r?{href:r}:{}})}const i=[];for(const t of A[e(497)](e(488))){if(i[e(526)]>=iB[e(536)])break;if(Ya(t)||za(t))continue;const A=cB(t[e(541)](e(531)),iB[e(514)]),r=IB(t);(A||r)&&i[e(515)]({...A?{alt:A}:{},...r?{src:r}:{}})}return(A=>{const t=oB,e=cB(A.heading,iB.heading),r=cB(A[t(431)],iB[t(431)]),n=[];for(const e of A[t(432)]??[]){if(n[t(424)]>=iB[t(432)])break;const A=cB(e[t(428)],iB[t(428)]);if(!A)continue;const r=gB(e[t(439)]);n[t(420)]({label:A,role:e[t(423)],...r?{href:r}:{}})}const s=[];for(const e of A[t(417)]??[]){if(s[t(424)]>=iB[t(417)])break;const A=cB(e.alt,iB.label),{src:r}=e;(A||r)&&s.push({...A?{alt:A}:{},...r?{src:r}:{}})}if(r||e||0!==n[t(424)]||0!==s.length)return{ref:hB(A[t(425)],e,r,n,s),kind:A[t(425)],...e?{heading:e}:{},text:r,actions:n,images:s}})({kind:t,heading:n,text:QB(A),actions:s,images:i})}(A,t),scheduleIdle:()=>MB[OB(182)](),log:A=>{MB.log(A)}});let RB,GB,PB,XB,JB,WB,YB,ZB=VB,zB=!1;function _B(){WB?.(),WB=void 0}async function jB(A=2e3){const t=OB;YB&&await Promise[t(143)]([YB,new Promise(t=>{setTimeout(t,A)})])}function qB(){const A=OB,t=(()=>{const A=OB;return typeof Element.prototype[A(184)]===A(140)})();NB[A(146)](A=>!t||A.checkVisibility({opacityProperty:!0,visibilityProperty:!0,contentVisibilityAuto:!0}))}function $B(){const A=OB;qB(),NB[A(159)]()[A(165)](_B)}function Al(A){const t=OB;for(const e of A){const{x:A,y:r,width:n,height:s}=e[t(141)];NB.setGeometry(e[t(147)],{intersecting:e.isIntersecting,ratio:e[t(144)],rect:{x:Math.round(A),y:Math[t(181)](r),w:Math.round(n),h:Math[t(181)](s)}})}$B()}function tl(A,t){return A-=136,Bl()[A]}function el(){const A=OB;if(!RB)return;const t=((A,t={})=>function(A,t,e={}){const r=Nc,n={...Rc,...e},s=((A,t)=>{const e=new Map,r=A=>{const n=Nc,s=t[n(466)](A),o={textLength:s[n(462)],headings:t.isHeading(A)?1:0,interactives:t[n(442)](A)?1:0,contentHash:t[n(476)](la(la(ca,s),t[n(444)](A)),A)};for(const e of t.children(A)){if(t.isSkipped(e))continue;const A=r(e);o[n(447)]+=A[n(447)],o.headings+=A[n(454)],o[n(471)]+=A[n(471)],o[n(470)]=ha(o[n(470)],A[n(470)])}return e[n(448)](A,o),o};return r(A),e})(A,t),o=[],i=A=>s[r(459)](A)??{textLength:0,headings:0,interactives:0,contentHash:ca},a=(A,t)=>{const e=r,n=i(A);o[e(478)]({node:A,reason:t,textLength:n[e(447)],interactives:n[e(471)],headings:n[e(454)],contentHash:n.contentHash})},c=A=>{const t=r,e=i(A);return e[t(471)]>0||e[t(447)]>=n[t(468)]},B=(A,e)=>{const s=r;if(o[s(462)]>=n[s(474)]||t[s(467)](A))return!1;if(t[s(473)](A))return a(A,s(443)),!0;const l=i(A);if(e>=n[s(455)])return!!c(A)&&(a(A,s(446)),!0);if(l.textLength<=n.maxTextLength&&l[s(454)]<=n.maxHeadings&&l[s(471)]<=n[s(457)]&&c(A)){if(t[s(464)](A))return a(A,s(441)),!0;if(((A,t)=>{const e=Nc,r=t[e(469)](A);if(void 0===r)return!1;const n=t[e(456)](A);let s=0;for(const A of t.children(r))if(t[e(456)](A)===n&&(s++,s>=3))return!0;return!1})(A,t))return a(A,s(465)),!0;if(l[s(454)]>0)return a(A,s(477)),!0}const g=o[s(462)];let h=!1;for(const r of t[s(475)](A))h=B(r,e+1)||h;return!h&&c(A)?(a(A,"leaf"),!0):h&&l[s(447)]>0&&o[s(453)](g)[s(458)]((A,t)=>A+t[s(447)],0)/l.textLength<n[s(479)]&&c(A)?(o[s(462)]=g,a(A,s(441)),!0):h};for(const e of t.children(A))B(e,0);return o}(A,nB,t))(document[A(151)],ZB[A(176)]),{added:e,removed:r}=NB.reconcile(t[A(178)](({node:A,reason:t,contentHash:e})=>({node:A,kind:t,fingerprint:e})),t=>t[A(167)]);for(const t of e)RB[A(185)](t);for(const t of r)RB[A(180)](t)}function rl(){const A=OB;return void 0!==XB&&(clearTimeout(XB),XB=void 0),JB=void 0,MB.scheduleIdle()[A(165)](el)}function nl(){const A=OB,t=performance[A(150)]();JB??=t,t-JB>=ZB[A(139)]?rl():(void 0!==XB&&clearTimeout(XB),XB=setTimeout(rl,ZB[A(183)]))}function sl(){const A=OB;return zB&&void 0!==JB?rl():Promise[A(166)]()}function ol(A={}){const t=OB;zB||typeof IntersectionObserver===t(186)||(document.body?(zB=!0,kB(),ZB={...VB,...A},YB=new Promise(A=>{WB=A}),RB=new IntersectionObserver(Al,{threshold:[0,.25,.75]}),MB.scheduleIdle()[t(165)](el),GB=new MutationObserver(nl),GB[t(185)](document[t(151)],{childList:!0,subtree:!0,attributes:!0,attributeFilter:[t(172),t(173),t(169),"sizes",t(142),t(156),t(177),"title",t(163),t(171),"data-intent-redact-label",t(157),"type",t(188),"contenteditable"],characterData:!0}),window[t(152)](t(162),nl,{passive:!0}),PB=setInterval($B,ZB[t(174)])):document[t(152)](t(155),()=>{ol(A)},{once:!0}))}function il(){return NB[OB(170)]()}const al=()=>NB[OB(161)]();function cl(){return NB[OB(189)]()}function Bl(){const A=["data-html2canvas-ignore","5ZpkDHF","registerVisible","disconnect","drainRegistrations","resize","role","10DVwWUy","then","resolve","isConnected","removeEventListener","srcset","getOnScreen","data-intent-redact","href","src","visibilityIntervalMs","19236987wCVtaU","segmentOptions","aria-labelledby","map","2649452JajPhU","unobserve","round","scheduleIdle","resegmentDebounceMs","checkVisibility","observe","undefined","size","autocomplete","getCoverage","7HINeBG","94000zwgdzy","261189kSFSgh","resegmentMaxDelayMs","function","boundingClientRect","alt","race","intersectionRatio","6249512JiueCF","refreshVisibility","target","5192448CcLgEX","parentElement","now","body","addEventListener","clear","1465382QEZcko","DOMContentLoaded","aria-label"];return(Bl=()=>A)()}const ll=gl;function gl(A,t){return A-=484,wl()[A]}(A=>{const t=gl,e=A();for(;;)try{if(882441==-parseInt(t(496))/1+parseInt(t(536))/2*(parseInt(t(526))/3)+-parseInt(t(538))/4+-parseInt(t(519))/5+parseInt(t(533))/6+parseInt(t(491))/7+parseInt(t(539))/8*(parseInt(t(543))/9))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(wl);const hl={batchSize:20,flushIntervalMs:5e3,maxBuffered:200},dl=Object.freeze(new Set([ll(489),ll(506),"form-submit"]));function wl(){const A=["onTeardownBatch","join","dropped","[Transport] buffer full, dropped ","108qppAYv","maxBuffered","release","[Transport] dropped an in-flight batch discarded mid-request","wallClock","options"," events dropped, batch could not be serialised","3843852OUOIvI","[Transport] buffer full after retry, dropped "," bytes, beacon=","25468aPIYeC","schedule","1782548AySVOx","32KjmHYA","buffer","send","attach","5192523WTwuDe","[Transport] ","batchSize","splice"," oldest events","stop","push","getStats","click","set","1721825YcDPCD","restore"," events undelivered (","entries","charCodeAt","684266WdGant","[Transport] replay failed","context","inFlight","stats","cancelTimer","log","flushOn","generation","discard","input-submit","delete","start","sent","endpoint","length","event","flush","failed","replay"," events failed to send","extras","get","8202425UQTpMw","has","persistInFlight"];return(wl=()=>A)()}function ul(A){const t=ll;let e=0;for(let r=0;r<A.length;r++){const n=A[t(495)](r);n<128?e+=1:n<2048?e+=2:n>=55296&&n<=56319?(e+=4,r++):e+=3}return e}class Ql{options;[ll(503)];[ll(540)]=[];[ll(517)]={};cancelTimer;generation=0;[ll(499)]=new Map;stats={sent:0,failed:0,dropped:0};constructor(A){const t=ll;this.options=A,this[t(503)]=A[t(503)]??dl}[ll(488)](){const A=ll;return{...this[A(500)],buffered:this.buffer[A(511)]}}[ll(508)](){const A=ll;this[A(501)]??=this[A(531)][A(537)](()=>{this[A(513)]()},this.options.flushIntervalMs)}[ll(486)](){const A=ll;this[A(501)]?.(),this.cancelTimer=void 0,this[A(540)]=[],this[A(517)]={},this[A(504)]++}[ll(505)](){const A=ll;this.buffer=[],this[A(517)]={},this[A(504)]++}enqueue(A){const t=ll;if(this[t(540)].push(A),this.buffer[t(511)]>this[t(531)][t(527)]){const A=this[t(540)].length-this[t(531)][t(527)];this[t(540)].splice(0,A),this.stats[t(524)]+=A,xB().log(t(525)+A+t(485))}(this[t(540)].length>=this.options[t(545)]||this[t(503)][t(520)](A[t(512)]))&&this[t(513)]()}[ll(542)](A,t){const e=ll;0!==t[e(511)]&&(this[e(517)][A]=[...this[e(517)][A]??[],...t])}async[ll(513)]({beacon:A=!1}={}){const t=ll;if(A&&this[t(521)](),0===this[t(540)][t(511)]&&0===Object.keys(this[t(517)])[t(511)])return;const e=xB(),r=this.buffer,n=this[t(517)],s=this.generation;let o;try{o=JSON.stringify({...this[t(531)][t(498)](),sentAt:e[t(530)](),events:r,...n})}catch(A){return this[t(540)]=[],this[t(517)]={},this.stats[t(514)]+=r[t(511)],void e[t(502)](t(544)+r.length+t(532),A)}this[t(540)]=[],this[t(517)]={};const i=ul(o);this.inFlight[t(490)](o,{generation:s,...A?{release:this[t(531)][t(522)]?.(o)}:{}});let a=!1;try{a=await e[t(541)](this[t(531)][t(510)](),o,{beacon:A,byteLength:i})}catch(A){e.log(t(544)+r.length+t(516),A)}const c=this[t(499)][t(518)](o)?.[t(528)];return this[t(499)][t(507)](o),a?(this[t(500)][t(509)]+=r[t(511)],void c?.()):(this[t(500)][t(514)]+=r[t(511)],e[t(502)](t(544)+r[t(511)]+t(493)+i+t(535)+A+")"),s!==this[t(504)]?(e[t(502)](t(529)),void c?.()):void(A||this[t(492)](r,n)))}[ll(521)](){const A=ll;if(this[A(531)].onTeardownBatch)for(const[t,e]of this.inFlight)e.release||e[A(504)]!==this.generation||(e[A(528)]=this.options[A(522)](t),xB()[A(502)]("[Transport] took custody of a batch still in flight at teardown"))}restore(A,t){const e=ll;for(const[A,r]of Object[e(494)](t))this.extras[A]=[...r,...this[e(517)][A]??[]];this[e(540)]=[...A,...this[e(540)]];const r=this[e(540)][e(511)]-this[e(531)][e(527)];r>0&&(this.buffer[e(484)](0,r),this[e(500)][e(524)]+=r,xB()[e(502)](e(534)+r+" oldest events"))}async[ll(515)](A){const t=ll,e=xB();try{return await e[t(541)](this.options[t(510)](),A,{beacon:!1,byteLength:ul(A)})}catch(A){return e[t(502)](t(497),A),!1}}}(A=>{const t=vl,e=A();for(;;)try{if(845021==parseInt(t(270))/1+-parseInt(t(274))/2+parseInt(t(265))/3+-parseInt(t(268))/4*(parseInt(t(283))/5)+parseInt(t(271))/6*(-parseInt(t(269))/7)+-parseInt(t(275))/8*(parseInt(t(262))/9)+parseInt(t(273))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(bl);const Cl={...hl,compress:!1};function pl(){const A=vl;return(MB[A(278)].get(sa)??aa)+A(279)}function Ul(){const A=vl;return{clientId:MB.storage[A(277)](ea),sid:cc(),platform:A(261)}}function fl(A,t){const e=setInterval(A,t);return()=>{clearInterval(e)}}let Fl,ml=!1;function yl(){return kB(),Fl??=new Ql({...hl,endpoint:pl,context:Ul,schedule:fl}),Fl}async function Il(A={}){const t=vl;return yl()[t(267)](A)}function Hl(A){const t=vl;yl()[t(264)](A)}function El(A,t){yl().attach(A,t)}function bl(){const A=["3514424NjRKlu","visibilitychange","get","storage","/v2/events","hidden","start","addEventListener","906515aJktuv","web","9lHjIVT","removeEventListener","enqueue","2586960OTknQx","discard","flush","28uFCcWi","1241583togLUC","520252KUUorC","12KvzOTA","stop","31727900kQPwPa","3294358EjPvZx"];return(bl=()=>A)()}function xl(){document.visibilityState===vl(280)&&Il({beacon:!0})}function vl(A,t){return A-=261,bl()[A]}function Kl(){Il({beacon:!0})}const Ll=Ml;(A=>{const t=Ml,e=A();for(;;)try{if(824917==parseInt(t(180))/1*(-parseInt(t(199))/2)+parseInt(t(246))/3+parseInt(t(139))/4+-parseInt(t(243))/5+-parseInt(t(254))/6+-parseInt(t(167))/7*(parseInt(t(189))/8)+-parseInt(t(181))/9*(-parseInt(t(152))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Zl);let Sl,Dl=0;function Ml(A,t){return A-=135,Zl()[A]}let Tl=0;function kl(A){const t=Ml;try{return new Blob([A]).size}catch{return A[t(151)]}}let Ol,Vl=!1;const Nl=Ll(258),Rl=[Ll(143),Ll(142),"a",Ll(156),Ll(136),Ll(241),Ll(227),"[onclick]"][Ll(169)](",");function Gl(){return"granted"===localStorage.getItem(ji)}function Pl(){return dc(),Gl()&&Boolean(cc())&&(()=>{const A=Ll;return Boolean(localStorage[A(223)](ea)?.[A(211)]().length)})()}function Xl(){return!Pl()||uc}async function Jl(A){for(;Ol;)await Ol;return Ol=(async()=>{const o=Ml;try{const i=performance[o(228)](),a=performance.now(),c=(A=>{const t=Ll;if(Pa(A))return"";const e=A[t(233)](!1);return Array[t(269)](A[t(244)]).forEach(({name:A,value:t})=>{e.setAttribute(A,t)}),Fa(A)?Fa(e)&&(e[t(190)]=A[t(190)]):ma(A)?e[t(170)]=A[t(170)]:e[t(214)]=A.textContent,nc(e),Fa(e)&&e[t(237)](t(190),e[t(190)]),e[t(271)]})(A),B=performance[o(228)]()-a;Ca(o(231)+B[o(174)](2)+"ms");const l=A[o(207)](),g=performance[o(228)](),h={left:window[o(259)],top:window.scrollY,right:window[o(259)]+window[o(249)],bottom:window.scrollY+window[o(198)]},d=await((A,o={})=>(async(A,t,o)=>{if((A=>{["scale","width","height","imageTimeout","x","y","windowWidth","windowHeight","scrollX","scrollY"].forEach(t=>{const e=A[t];if(null!=e&&"number"!=typeof e){const r=Number(e);Number.isNaN(r)||(A[t]=r)}})})(t),!t.skipValidation){const r=t.validator||((A={})=>new e({allowDataUrls:!0,maxImageTimeout:3e5,...A}))(),n=r.validateElement(A);if(!n.valid)throw new Error(n.error);const s=r.validateOptions(t);if(!s.valid)throw new Error(`Invalid options: ${s.error}`)}if(!A||"object"!=typeof A)throw new Error("Invalid element provided as first argument");const i=A.ownerDocument;if(!i)throw new Error("Element is not attached to a Document");const a=i.defaultView;if(!a)throw new Error("Document is not attached to a Window");const c=((A,t,e)=>({logging:A.logging??!0,cache:A.cache??t.cache,...e}))(t,o,(A=>({allowTaint:A.allowTaint??!1,imageTimeout:A.imageTimeout??15e3,proxy:A.proxy,useCORS:A.useCORS??!1,customIsSameOrigin:A.customIsSameOrigin,maxCacheSize:A.maxCacheSize}))(t)),B=((A,t)=>({windowWidth:A.windowWidth??t.innerWidth??800,windowHeight:A.windowHeight??t.innerHeight??600,scrollX:A.scrollX??t.pageXOffset??0,scrollY:A.scrollY??t.pageYOffset??0}))(t,a),l=new n(B.scrollX,B.scrollY,B.windowWidth,B.windowHeight),g=new Ji(c,l,o),h=t.enablePerformanceMonitoring??t.logging??!1,d=new r(g,h);d.start("total",{width:B.windowWidth,height:B.windowHeight});const w=t.signal;Wi(w);const u=t.foreignObjectRendering??!1,Q=((A,t,e)=>({allowTaint:A.allowTaint??!1,onclone:A.onclone,ignoreElements:A.ignoreElements,iframeContainer:A.iframeContainer,inlineImages:e,copyStyles:e,cspNonce:A.cspNonce??t.cspNonce}))(t,o,u);g.logger.debug(`Starting document clone with size ${l.width}x${l.height} scrolled to ${-l.left},${-l.top}`),d.start("clone");const C=new Fs(g,A,Q),p=C.clonedReferenceElement;if(!p)throw new Error("Unable to find element in cloned iframe");const U=await C.toIFrame(i,l);d.end("clone"),w?.aborted&&((t.removeContainer??!0)&&Fs.destroy(U),Wi(w));const{width:f,height:F,left:m,top:y}=se(p)||"HTML"===p.tagName?(A=>{const t=A.body,e=A.documentElement;if(!t||!e)throw new Error("Unable to get document size");return new n(0,0,Math.max(Math.max(t.scrollWidth,e.scrollWidth),Math.max(t.offsetWidth,e.offsetWidth),Math.max(t.clientWidth,e.clientWidth)),Math.max(Math.max(t.scrollHeight,e.scrollHeight),Math.max(t.offsetHeight,e.offsetHeight),Math.max(t.clientHeight,e.clientHeight)))})(p.ownerDocument):s(g,p),I=((A,t,e)=>{const r=t.ownerDocument,n=r.documentElement?qt(A,getComputedStyle(r.documentElement).backgroundColor):$t.TRANSPARENT,s=r.body?qt(A,getComputedStyle(r.body).backgroundColor):$t.TRANSPARENT,o="string"==typeof e?qt(A,e):null===e?$t.TRANSPARENT:4294967295;return t===r.documentElement?Ft(n)?Ft(s)?o:s:n:o})(g,p,t.backgroundColor),H=((A,t,e,r,n,s,o)=>({canvas:A.canvas,backgroundColor:t,signal:A.signal,scale:A.scale??o??1,x:(A.x??0)+e,y:(A.y??0)+r,width:A.width??Math.ceil(n),height:A.height??Math.ceil(s),imageSmoothing:A.imageSmoothing,imageSmoothingQuality:A.imageSmoothingQuality}))(t,I,m,y,f,F,a.devicePixelRatio??1);let E,b;try{return u?(g.logger.debug("Document cloned, using foreign object rendering"),d.start("render-foreignobject"),E=await new Si(g,H).render(p),d.end("render-foreignobject")):(g.logger.debug(`Document cloned, element located at ${m},${y} with size ${f}x${F} using computed rendering`),g.logger.debug("Starting DOM parsing"),d.start("parse"),Wi(w),g.cache.startDefer(),b=Ko(g,p),d.end("parse"),d.start("preload"),await g.cache.preloadAll(),d.end("preload"),I===b.styles.backgroundColor&&(b.styles.backgroundColor=$t.TRANSPARENT),g.logger.debug(`Starting renderer for element at ${H.x},${H.y} with size ${H.width}x${H.height}`),d.start("render"),Wi(w),E=await new vi(g,H).render(b),d.end("render")),d.start("cleanup"),(t.removeContainer??!0)&&(Fs.destroy(U)||g.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),d.end("cleanup"),d.end("total"),g.logger.debug("Finished rendering"),h&&d.logSummary(),E}finally{b&&b.restoreTree()}})(A,o,t.fromElement(A,{cspNonce:o.cspNonce,cache:o.cache})))(document[o(251)],{useCORS:!0,x:window[o(259)],y:window.scrollY,width:window.innerWidth,height:window[o(198)],scale:.6,logging:!1,onclone(A){nc(A)},ignoreElements(A){const t=o;if(!(A instanceof Element))return!1;if(Ya(A))return!0;const e=A.getBoundingClientRect(),r={left:e[t(208)]+window[t(259)],top:e[t(273)]+window[t(234)],right:e.right+window[t(259)],bottom:e[t(148)]+window[t(234)]},n=100,s=r[t(148)]<h[t(273)]-n,i=r[t(273)]>h.bottom+n,a=r[t(140)]<h[t(208)]-n,c=r.left>h[t(140)]+n;if(!(a||c||s||i))return!1;const{position:B}=window[t(265)](A);let l;if(B===t(192)||B===t(175)){const A=500;l=r[t(140)]<h.left-A||r[t(208)]>h[t(140)]+A||r.bottom<h[t(273)]-A||r[t(273)]>h[t(148)]+A}else l=i;return!!l&&!(A[t(219)]===t(158)||A[t(219)]===t(171)||A.tagName===t(270)||A[t(238)](t(239))||A.querySelector("input, textarea, select, [data-intent-redact]"))}}),w=performance[o(228)]()-g;Ca(o(163)+w[o(174)](2)+"ms");const u=performance.now(),Q=d[o(154)](o(220),.8),C=performance.now()-u;Ca(o(182)+C[o(174)](2)+"ms");const p=performance[o(228)]()-i;return Ca(o(209)+p.toFixed(2)+"ms"),{html:c,bbox:{x:l.x,y:l.y,w:l[o(194)],h:l[o(222)]},img:Q,fullCanvas:d}}finally{Ol=void 0}})(),Ol}function Wl(){const A=Ll,t=localStorage[A(223)](ea),e={"Content-Type":A(201)};t&&(e[A(240)]=t);const r=cc();return r&&(e[A(161)]=r),e}function Yl(){const A=Ll;return localStorage[A(223)](ia)!==A(226)}function Zl(){const A=["getItem","closest","toISOString","screenshot",'[role="link"]',"now","lat","[Transmit] DROPPED ","[Timing] serialize: ","ref","cloneNode","scrollY","role","pathname","setAttribute","hasAttribute","data-intent-redact","x-sl-access-token",'[role="button"]',"/events","2641395jGjxcQ","attributes","stringify","3949668Iolssj","resize"," newly on screen","innerWidth","aria-label","body","filter","docH","8259594QGCfMO","context","POST","digest","__intent__sdk__initialized__","scrollX","documentElement","omit","pageview","name","round","getComputedStyle","[Transmit] ","load","img","from","SELECT","outerHTML","page-focus","top","href","key",'input[type="button"]',"click","has","2667352EiyByy","right"," segments on screen","a[href]","button","title","defineProperty","device","Enter","bottom","replaceState","focus","length","461830GZhNui","label","toDataURL","hasFocus",'input[type="submit"]',"contenteditable","INPUT","location"," — nothing new on screen","x-intent-sid","keydown","[Timing] html2canvas-pro: ","scrollHeight","form-submit","event","4988305IHxKMq","scroll","join","innerHTML","TEXTAREA","hidden","[Digest] ","toFixed","absolute"," — ","submit","pushState","granted","1EtKsZD","306MdrFLZ","[Timing] jpeg-encoding: ","lon","page-blur","intentEnter","localhost","isSecureContext","visibilitychange","8bWNmKP","value","getAttribute","fixed","input-submit","width","referrer","hostname","segments","innerHeight","222412kfGdJY","intent","application/json","popstate","[Digest] settled after ","<no visible label>","addEventListener","target","getBoundingClientRect","left","[Timing] capture-total: ","bbox","trim"," bytes), ","number","textContent"," total","complete","pointerdown","toLowerCase","tagName","image/jpeg","no-store","height"];return(Zl=()=>A)()}const zl={w:0,h:0,scrollY:0,docH:0};function _l(){const A=Ll;zl.w=window[A(249)],zl.h=window.innerHeight,zl[A(234)]=Math[A(264)](window[A(234)]),zl[A(253)]=document.documentElement[A(164)]}function jl(){return{...zl}}function ql(A,t,e){const r=Ll;if(!Pl())return;const n=il(),s=e instanceof HTMLFormElement?function(A){const t=dB;if(Ya(A))return;const e=[];for(const r of Array[t(542)](A.elements)){if(!ma(r)||r[t(520)])continue;const A="TEXTAREA"===r[t(537)]||r[t(537)]===t(487)?r.tagName[t(544)]():(r[t(541)](t(543))??"text")[t(544)]();CB[t(535)](A)||Ya(r)||e[t(515)]({name:r[t(541)](t(521))??r.id,label:fB(r),type:A,value:FB(r,A)})}return((A,t)=>{const e=oB,r=[];let n=!1;for(const A of t){if(r[e(424)]>=iB[e(427)]){n=!0;break}const t=cB(A[e(435)],iB.label),s=cB(A[e(428)],iB.label),o=t||s;o&&r[e(420)]({name:o,...s&&s!==o?{label:s}:{},...A[e(441)]?{type:A.type}:{},value:cB(A.value,iB.fieldValue)})}if(0===r[e(424)])return;const s=cB(A,iB[e(428)]);return{...s?{name:s}:{},fields:r,...n?{truncated:!0}:{}}})(A[t(541)]("name")??A.getAttribute(t(501))??(A.id||void 0)??void 0,e)}(e):void 0;let o;if(e!==document[r(251)]&&e!==document[r(260)]&&!Ya(e)){const A=(A=>{const t=OB;let e=A;for(;e;){const A=NB.get(e);if(A)return A;e=e[t(149)]??void 0}})(e);o={tag:e.tagName,label:e instanceof HTMLFormElement?s?.[r(263)]??"":yB(e),role:e.getAttribute(r(235))??void 0,ref:A?.[r(257)]?.[r(232)]},ma(e)&&(o[r(190)]=ja(e)?_a(e):Ha(e))}Ca(r(173)+A+r(176)+n.length+r(141)),El(r(197),al()),sl(),Hl({ts:Date[r(228)](),event:A,url:window[r(159)][r(274)],props:{...t,localTime:(new Date).toISOString()},...o?{chosen:o}:{},...s?{form:s}:{},onScreen:n,viewport:jl(),coverage:cl()}),dl[r(138)](A)&&((A,t,e)=>{void 0!==tg&&clearTimeout(tg);const r=new Set(e.map(A=>A.ref)),n=e=>{tg=void 0,(async()=>{const s=Ml;if(!Pl())return;await(async()=>{zB&&(await sl(),qB(),await NB.registerVisible())})();const o=il()[s(252)](A=>!r[s(138)](A[s(232)]));if(0===o.length)return 0===e?void(tg=setTimeout(()=>n(1),Ag)):void Ca(s(203)+A+s(160));Ca(s(203)+A+s(176)+o.length+s(248)),El(s(197),al()),Hl({ts:Date[s(228)](),event:"settled",url:window[s(159)][s(274)],props:{after:A,label:t,localTime:(new Date)[s(225)]()},onScreen:o,viewport:jl(),coverage:cl()})})()};tg=setTimeout(()=>n(0),ZB.resegmentMaxDelayMs+$l)})(A,o?.[r(153)],n)}const $l=400,Ag=900;let tg;function eg(A,t,e,r){Yl()?ql(A,t,e):rg(A,t,e,r)}async function rg(A,t,e,r){const n=Ll;if(!Pl())return;const s={...t,localTime:(new Date)[n(225)]()};ma(e)&&!Ya(e)&&(s[n(190)]=ja(e)?_a(e):Ha(e));let o="",i={x:0,y:0,w:0,h:0},a="";const c=!(A===n(168)||A===n(184)||A===n(272)),B=Date[n(228)](),l=B-Dl>=300;let g=r;const h="click"===A||A===n(193)||A===n(262);c&&(h&&!g||!g&&l)&&(g=await Jl(e),Dl=B),g&&(o=g.html,i=g[n(210)],a=g[n(268)]);const d=A===n(184)||"page-focus"===A||A===n(262),w={ts:Date[n(228)](),event:A,url:window[n(159)][n(274)],props:s,html:d?"":o,bbox:i,img:a};await async function(A){const t=Ll,e=(localStorage.getItem(sa)??aa)+t(242),r=localStorage[t(223)](ea)??void 0,n=JSON[t(245)]({...A,clientId:r}),s=kl(n);let o;try{const A=await fetch(e,{method:t(256),headers:Wl(),body:n,keepalive:s<=6e4,credentials:t(261)});if(A.ok)return;o=new Error("events endpoint returned "+A.status)}catch(A){o=A}Ca(t(266)+A[t(166)]+" ("+s+" bytes) failed on /events, trying /p.gif",o);try{await(async A=>{const t=Ll,e=(localStorage[t(223)](sa)??aa)+"/p.gif",r=JSON.stringify(A),n=await fetch(e,{method:t(256),headers:Wl(),body:r,keepalive:kl(r)<=6e4,credentials:t(261),cache:t(221)});if(!n.ok)throw new Error("pixel body fallback failed with "+n.status)})(A)}catch(e){Tl++,Ca(t(230)+A.event+" ("+s+t(212)+Tl+t(215),e)}}(w)}dc();let ng=!1;function sg(){ng&&Yl()&&Gl()&&(function(A={}){const t=vl;if(ml)return;ml=!0,kB();const{compress:e,...r}={...Cl,...A};SB=e,Fl=new Ql({...r,endpoint:pl,context:Ul,schedule:fl}),Fl[t(281)](),window[t(282)]("pagehide",Kl),document[t(282)](t(276),xl)}(),ol())}let og=!1;function ig(){const A=Ll;!og&&Pl()&&(og=!0,eg(A(262),{url:window[A(159)][A(274)],title:document[A(144)],ref:document[A(195)]},document[A(251)]))}function ag(){void 0!==tg&&(clearTimeout(tg),tg=void 0),og=!1,dc(),(()=>{const A=OB;RB?.disconnect(),GB?.[A(160)](),window[A(168)]("resize",nl),void 0!==PB&&clearInterval(PB),void 0!==XB&&clearTimeout(XB),RB=void 0,GB=void 0,PB=void 0,XB=void 0,JB=void 0,NB[A(153)](),_B(),YB=void 0,zB=!1})(),(()=>{const A=vl;Fl?.[A(266)]()})()}function cg(){dc(),sg(),Yl()?jB().then(ig):ig()}async function Bg(A={}){const t=Ll;if(!Pl())return;const e=typeof A[t(229)]===t(213)&&typeof A[t(183)]===t(213);if(e&&wc)return;if(!e&&Vl)return;const r=localStorage.getItem(ra),n={context:await zi()};r&&(n.ip=r);for(const[t,e]of Object.entries(A))n[t]=e;await rg(t(255),n,document[t(251)],{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),!e&&(Vl=!0)}async function lg(){await(async(A,t)=>{const e=Fc,r={canRequest:t(),geoEnabled:Uc(),deviceGeoSent:wc};if(!r[e(351)]||!r[e(370)]||r[e(381)])return;if(!(e(373)in navigator))return;if(Cc)return;Cc=!0,uc=!0;const n={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};Date[e(350)]();try{await(navigator[e(384)]?.[e(372)]({name:e(373)}))}catch(A){}await new Promise(A=>{const t=e;let r=!1;const s=async(t,e,n)=>{const s=Fc;r||(r=!0,Number.isFinite(t)&&Number[s(375)](e)&&(await(async(A,t,e)=>{const r=Ml;await Bg({lat:A,lon:t,source:r(146),...e})})(t,e,n),wc=!0),Cc=!1,uc=!1,pc=!0,A())};navigator[t(373)][t(358)](A=>{const t=Fc,e=A.coords;s(e[t(349)],e.longitude,{accuracy:e.accuracy,altitude:typeof e[t(368)]===t(357)?e[t(368)]:void 0,altitudeAccuracy:typeof e[t(383)]===t(357)?e[t(383)]:void 0,heading:typeof e[t(387)]===t(357)?e[t(387)]:void 0,speed:typeof e[t(377)]===t(357)?e[t(377)]:void 0,timestamp:A[t(354)],visibility:document[t(353)],focused:document[t(379)]()})},A=>{const t=Fc,e=A?.[t(382)],r={error:{code:e,name:1===e?t(385):2===e?"POSITION_UNAVAILABLE":3===e?t(364):"UNKNOWN",message:A?.message??""},online:navigator[t(386)],visibility:document.visibilityState,focused:document.hasFocus(),secure:window[t(363)],proto:location[t(356)],host:location.hostname};s(void 0,void 0,r)},n)})})(0,Pl)}function gg(){(A=>{const t=Fc;if(Qc||!Uc()||wc)return;Qc=!0;const e=()=>{const t=Fc;window.removeEventListener(t(360),e,!0),window.removeEventListener(t(367),e,!0),A()};window.addEventListener(t(360),e,!0),window[t(352)]("keydown",e,!0)})(lg)}let hg=!document[Ll(172)]&&document.hasFocus(),dg=document[Ll(155)]();function wg(){const A=Ll;if(Xl())return;const t=!document[A(172)]&&document[A(155)]();t&&(dg=!0),dg||t?t!==hg&&(hg=t,eg(A(t?272:184),{},document[A(251)])):hg=t}function ug(A){const t=Ll;let e=!1;const r=()=>{e||(e=!0,A())};document.readyState!==t(216)?window[t(205)](t(267),r,{once:!0}):r()}function Qg(){const A=Ll;(()=>{const A=globalThis;return!A[Nl]&&(Object[Ll(145)](A,Nl,{value:!0,configurable:!1,enumerable:!1,writable:!1}),!0)})()&&(_l(),window.addEventListener(A(247),Qa(_l,200),{passive:!0}),window[A(205)](A(168),Qa(_l,100),{passive:!0}),Yl()&&(function(){const A=Ll,t=()=>""+window[A(159)][A(236)]+window[A(159)].search;let e=t();const r=()=>{const r=A;t()===e||Xl()||(e=t(),_l(),og=!0,eg(r(262),{url:window[r(159)][r(274)],title:document[r(144)],ref:document[r(195)],spa:!0},document[r(251)]))};for(const t of[A(178),A(149)]){const A=history[t];history[t]=function(...t){const e=A.apply(this,t);return r(),e}}window.addEventListener(A(202),r)}(),ng=!0,sg()),ug(()=>{const t=A;Pl()&&(Bg(),(window[t(187)]||location[t(196)]===t(186))&&(Uc()&&gg(),window[t(205)](t(150),()=>{yc()&&lg()}),document[t(205)](t(188),()=>{!document[t(172)]&&yc()&&lg()})))}),window.addEventListener("storage",t=>{const e=A;t[e(135)]===ji&&((()=>{const A=Ll;return localStorage.getItem(ji)===A(179)})()?(Vl=!1,cg(),Bg(),Uc()&&gg()):(Vl=!1,mc(),ag())),t[e(135)]===qi&&(Uc()?gg():mc())}),ug(()=>{Yl()?jB().then(ig):ig()}),addEventListener(A(217),Qa(t=>{const e=A;if(Yl()||Xl())return;const r=t[e(206)]instanceof Element?t[e(206)][e(224)](Rl):null;if(!(r instanceof HTMLElement))return;const n=Date[e(228)]();n-Dl<300?Sl=void 0:(Dl=n,Sl=Jl(r))},50),{capture:!0,passive:!0}),addEventListener("click",async t=>{const e=A;if(Xl())return;if(!(t[e(206)]instanceof Element))return;const r=t.target.closest(Rl);if(!(r instanceof HTMLElement))return;const n=Ya(s=r)?"":za(s)?_a(s):(A=>{const t=Ll,e=A.getAttribute(t(250))?.[t(211)]();if(e)return e;const r=A[t(144)][t(211)]();if(r)return r;const n=A[t(214)]?.trim();return n||t(204)})(s);var s;Yl()?eg(e(137),{tag:r[e(219)],label:n},r):(async()=>{const A=e,t=Sl?await Sl:void 0;Sl=void 0,eg(A(137),{tag:r[A(219)],label:n},r,t)})()},!0),addEventListener(A(162),t=>{const e=A;if(!Xl()&&t[e(135)]===e(147)){const A=t.target;if(!(A instanceof HTMLElement))return;const r=A[e(219)],n=Ya(A);if(r===e(158)||"TEXTAREA"===r){const t=A instanceof HTMLInputElement?A.name:void 0;eg("input-submit",{tag:r,name:n?void 0:t??(A.id||void 0)},A)}else if(ma(A)){const t=(A=>{const t=ua;let e=A;for(;e&&e!==document[t(241)];){const A=e[t(219)](t(207));if(A===t(209)||""===A||A===t(221))return e;e=e[t(223)]}return null})(A)??A;if("newline"===t.dataset[e(185)])return;const r=t[e(191)](e(235))?.[e(218)](),n=t.id||void 0,s=t[e(191)](e(263))||t[e(191)](e(250))||n;eg(e(193),{tag:"CONTENTEDITABLE",role:r??e(157),name:Ya(t)?void 0:s},t)}}},{capture:!0}),addEventListener(A(177),t=>{const e=A;!Xl()&&Yl()&&t[e(206)]instanceof HTMLFormElement&&eg(e(165),{},t[e(206)])},{capture:!0}),[A(150),"blur"].forEach(t=>{window[A(205)](t,wg)}),document.addEventListener("visibilitychange",wg),window.addEventListener(A(168),(()=>{let t;return(...e)=>{const r=fa;void 0!==t&&window.clearTimeout(t),t=window[r(215)](()=>{t=void 0,(()=>{const t=A;Xl()||eg(t(168),{scrollX:window.scrollX,scrollY:window[t(234)]},document[t(251)])})(...e)},250)}})(),{passive:!0}),window[A(200)]??={send(A,t){Pl()&&eg(A,t,document.body)}})}function Cg(A,t){return A-=261,Ug()[A]}function pg(A,t){const e=Cg;try{if(void 0===t)return;localStorage.setItem(A,t?A===e(266)?"granted":e(279):e(281))}catch{}}function Ug(){const A=["number","intent:data-sid-max-age","consent","enabled","intent_sid","disabled","undefined","11052IVNYnM","sidMaxAgeSeconds","intent:debug","56gYpgfJ","3048OUIAii","937578CRABMI","2lGroYs","https://intent.callimacus.ai","7603612TMcQKj","4581009ETUTgJ","setItem","intent:data-base-url","debugPanel","geo","1380702AROPZL","isFinite","intent:consent","intent:data-ip","intent:data-client-id","[Intent SDK] ⚠️ Debug panel is enabled. This feature is NOT recommended for production use. ","4039660FJgLMs","baseUrl","function","now","1971530sfWVUp","randomUUID"];return(Ug=()=>A)()}(A=>{const t=Cg,e=A();for(;;)try{if(987666==-parseInt(t(289))/1*(parseInt(t(288))/2)+parseInt(t(292))/3+-parseInt(t(291))/4+parseInt(t(274))/5+-parseInt(t(264))/6*(-parseInt(t(286))/7)+parseInt(t(287))/8*(parseInt(t(283))/9)+-parseInt(t(270))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Ug),A.clearIntentSessionId=()=>{hc()},A.ensureIntentSessionId=()=>{dc()},A.getIntentSessionId=()=>Bc("intent_sid"),A.initIntent=(A={})=>{const t=Cg;localStorage.setItem(t(268),A.clientId??""),localStorage[t(293)](t(267),A.ip??""),localStorage[t(293)](t(261),A[t(271)]??t(290)),typeof A[t(284)]===t(276)&&localStorage.setItem(t(277),String(A[t(284)])),pg(t(266),A.consent),pg("intent:geo",A[t(263)]),pg(t(285),A.debug),void 0!==A[t(262)]&&t(262),A[t(278)]&&(Bc(t(280))||gc(typeof crypto!==t(282)&&typeof crypto[t(275)]===t(272)?crypto[t(275)]():Date[t(273)]()+"-"+Math.random(),A.sidMaxAgeSeconds)),Qg()},A.setConsent=A=>{pg(Cg(266),A),A?cg():ag()},A.setDebug=A=>{pg("intent:debug",A)},A.setDebugPanel=function(A){},A.setGeo=A=>{pg("intent:geo",A)},A.setIntentSessionMaxAge=A=>{const t=Cg;Number[t(265)](A)&&localStorage[t(293)](t(277),String(A));const e=Bc(t(280));e&&gc(e,A)},Object.defineProperty(A,Symbol.toStringTag,{value:"Module"})});