clarity-js 0.7.67 → 0.7.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/clarity.extended.js +1 -1
- package/build/clarity.insight.js +1 -1
- package/build/clarity.js +30 -18
- package/build/clarity.min.js +1 -1
- package/build/clarity.module.js +30 -18
- package/build/clarity.performance.js +1 -1
- package/package.json +1 -1
- package/src/core/event.ts +14 -10
- package/src/core/time.ts +2 -2
- package/src/core/version.ts +1 -1
- package/src/interaction/click.ts +12 -6
- package/src/interaction/encode.ts +2 -0
- package/src/interaction/unload.ts +3 -3
- package/src/layout/style.ts +8 -7
- package/types/core.d.ts +4 -1
- package/types/interaction.d.ts +8 -0
package/build/clarity.js
CHANGED
|
@@ -169,7 +169,7 @@ function stop$F() {
|
|
|
169
169
|
startTime = 0;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
var version$1 = "0.7.
|
|
172
|
+
var version$1 = "0.7.68";
|
|
173
173
|
|
|
174
174
|
// tslint:disable: no-bitwise
|
|
175
175
|
function hash (input, precision) {
|
|
@@ -1851,6 +1851,7 @@ function handler$3(event, root, evt) {
|
|
|
1851
1851
|
var eY = l ? Math.max(Math.floor(((y - l.y) / l.h) * 32767 /* Setting.ClickPrecision */), 0) : 0;
|
|
1852
1852
|
// Check for null values before processing this event
|
|
1853
1853
|
if (x !== null && y !== null) {
|
|
1854
|
+
var textInfo = text(t);
|
|
1854
1855
|
state$8.push({
|
|
1855
1856
|
time: time(evt),
|
|
1856
1857
|
event: event,
|
|
@@ -1863,10 +1864,11 @@ function handler$3(event, root, evt) {
|
|
|
1863
1864
|
button: evt.button,
|
|
1864
1865
|
reaction: reaction(t),
|
|
1865
1866
|
context: context(a),
|
|
1866
|
-
text: text
|
|
1867
|
+
text: textInfo.text,
|
|
1867
1868
|
link: a ? a.href : null,
|
|
1868
1869
|
hash: null,
|
|
1869
|
-
trust: evt.isTrusted ? 1 /* BooleanFlag.True */ : 0 /* BooleanFlag.False
|
|
1870
|
+
trust: evt.isTrusted ? 1 /* BooleanFlag.True */ : 0 /* BooleanFlag.False */,
|
|
1871
|
+
isFullText: textInfo.isFullText,
|
|
1870
1872
|
}
|
|
1871
1873
|
});
|
|
1872
1874
|
schedule$1(encode$3.bind(this, event));
|
|
@@ -1886,17 +1888,20 @@ function link(node) {
|
|
|
1886
1888
|
}
|
|
1887
1889
|
function text(element) {
|
|
1888
1890
|
var output = null;
|
|
1891
|
+
var isFullText = false;
|
|
1889
1892
|
if (element) {
|
|
1890
1893
|
// Grab text using "textContent" for most HTMLElements, however, use "value" for HTMLInputElements and "alt" for HTMLImageElement.
|
|
1891
1894
|
var t = element.textContent || String(element.value || '') || element.alt;
|
|
1892
1895
|
if (t) {
|
|
1893
1896
|
// Replace multiple occurrence of space characters with a single white space
|
|
1894
1897
|
// Also, trim any spaces at the beginning or at the end of string
|
|
1898
|
+
var trimmedText = t.replace(/\s+/g, " " /* Constant.Space */).trim();
|
|
1895
1899
|
// Finally, send only first few characters as specified by the Setting
|
|
1896
|
-
output =
|
|
1900
|
+
output = trimmedText.substring(0, 25 /* Setting.ClickText */);
|
|
1901
|
+
isFullText = output.length === trimmedText.length;
|
|
1897
1902
|
}
|
|
1898
1903
|
}
|
|
1899
|
-
return output;
|
|
1904
|
+
return { text: output, isFullText: isFullText ? 1 /* BooleanFlag.True */ : 0 /* BooleanFlag.False */ };
|
|
1900
1905
|
}
|
|
1901
1906
|
function reaction(element) {
|
|
1902
1907
|
if (element.nodeType === Node.ELEMENT_NODE) {
|
|
@@ -2348,7 +2353,7 @@ function start$n() {
|
|
|
2348
2353
|
}
|
|
2349
2354
|
function recompute$1(evt) {
|
|
2350
2355
|
recompute$1.dn = 17 /* FunctionNames.UnloadRecompute */;
|
|
2351
|
-
data$9 = { name: evt.type };
|
|
2356
|
+
data$9 = { name: evt.type, persisted: evt.persisted ? 1 /* BooleanFlag.True */ : 0 /* BooleanFlag.False */ };
|
|
2352
2357
|
encode$3(26 /* Event.Unload */, time(evt));
|
|
2353
2358
|
stop();
|
|
2354
2359
|
}
|
|
@@ -3185,10 +3190,10 @@ var sheetAdoptionState = [];
|
|
|
3185
3190
|
var replace = null;
|
|
3186
3191
|
var replaceSync = null;
|
|
3187
3192
|
var styleSheetId = 'claritySheetId';
|
|
3188
|
-
var styleSheetPageNum = 'claritySheetNum';
|
|
3189
3193
|
var styleSheetMap = {};
|
|
3190
3194
|
var styleTimeMap = {};
|
|
3191
3195
|
var documentNodes = [];
|
|
3196
|
+
var createdSheetIds = [];
|
|
3192
3197
|
function start$j() {
|
|
3193
3198
|
if (window['CSSStyleSheet'] && CSSStyleSheet.prototype) {
|
|
3194
3199
|
if (replace === null) {
|
|
@@ -3199,7 +3204,7 @@ function start$j() {
|
|
|
3199
3204
|
// if we haven't seen this stylesheet on this page yet, wait until the checkDocumentStyles has found it
|
|
3200
3205
|
// and attached the sheet to a document. This way the timestamp of the style sheet creation will align
|
|
3201
3206
|
// to when it is used in the document rather than potentially being misaligned during the traverse process.
|
|
3202
|
-
if (this[
|
|
3207
|
+
if (createdSheetIds.indexOf(this[styleSheetId]) > -1) {
|
|
3203
3208
|
trackStyleChange(time(), this[styleSheetId], 1 /* StyleSheetOperation.Replace */, arguments[0]);
|
|
3204
3209
|
}
|
|
3205
3210
|
}
|
|
@@ -3214,7 +3219,7 @@ function start$j() {
|
|
|
3214
3219
|
// if we haven't seen this stylesheet on this page yet, wait until the checkDocumentStyles has found it
|
|
3215
3220
|
// and attached the sheet to a document. This way the timestamp of the style sheet creation will align
|
|
3216
3221
|
// to when it is used in the document rather than potentially being misaligned during the traverse process.
|
|
3217
|
-
if (this[
|
|
3222
|
+
if (createdSheetIds.indexOf(this[styleSheetId]) > -1) {
|
|
3218
3223
|
trackStyleChange(time(), this[styleSheetId], 2 /* StyleSheetOperation.ReplaceSync */, arguments[0]);
|
|
3219
3224
|
}
|
|
3220
3225
|
}
|
|
@@ -3236,14 +3241,13 @@ function checkDocumentStyles(documentNode, timestamp) {
|
|
|
3236
3241
|
var currentStyleSheets = [];
|
|
3237
3242
|
for (var _i = 0, _a = documentNode.adoptedStyleSheets; _i < _a.length; _i++) {
|
|
3238
3243
|
var styleSheet = _a[_i];
|
|
3239
|
-
var pageNum = data$2.pageNum;
|
|
3240
3244
|
// If we haven't seen this style sheet on this page yet, we create a reference to it for the visualizer.
|
|
3241
3245
|
// For SPA or times in which Clarity restarts on a given page, our visualizer would lose context
|
|
3242
3246
|
// on the previously created style sheet for page N-1.
|
|
3243
3247
|
// Then we synthetically call replaceSync with its contents to bootstrap it
|
|
3244
|
-
if (styleSheet[
|
|
3245
|
-
styleSheet[styleSheetPageNum] = pageNum;
|
|
3248
|
+
if (!styleSheet[styleSheetId] || createdSheetIds.indexOf(styleSheet[styleSheetId]) === -1) {
|
|
3246
3249
|
styleSheet[styleSheetId] = shortid();
|
|
3250
|
+
createdSheetIds.push(styleSheet[styleSheetId]);
|
|
3247
3251
|
trackStyleChange(timestamp, styleSheet[styleSheetId], 0 /* StyleSheetOperation.Create */);
|
|
3248
3252
|
trackStyleChange(timestamp, styleSheet[styleSheetId], 2 /* StyleSheetOperation.ReplaceSync */, getCssRules(styleSheet));
|
|
3249
3253
|
}
|
|
@@ -3276,6 +3280,7 @@ function stop$h() {
|
|
|
3276
3280
|
styleSheetMap = {};
|
|
3277
3281
|
styleTimeMap = {};
|
|
3278
3282
|
documentNodes = [];
|
|
3283
|
+
createdSheetIds = [];
|
|
3279
3284
|
reset$8();
|
|
3280
3285
|
}
|
|
3281
3286
|
function trackStyleChange(time, id, operation, cssRules) {
|
|
@@ -3825,6 +3830,7 @@ function encode$3 (type, ts) {
|
|
|
3825
3830
|
tokens.push(url$1(entry.data.link));
|
|
3826
3831
|
tokens.push(cHash);
|
|
3827
3832
|
tokens.push(entry.data.trust);
|
|
3833
|
+
tokens.push(entry.data.isFullText);
|
|
3828
3834
|
queue(tokens);
|
|
3829
3835
|
track$2(entry.time, entry.event, cHash, entry.data.x, entry.data.y, entry.data.reaction, entry.data.context);
|
|
3830
3836
|
}
|
|
@@ -3854,6 +3860,7 @@ function encode$3 (type, ts) {
|
|
|
3854
3860
|
case 26 /* Event.Unload */:
|
|
3855
3861
|
u = data$9;
|
|
3856
3862
|
tokens.push(u.name);
|
|
3863
|
+
tokens.push(u.persisted);
|
|
3857
3864
|
reset$a();
|
|
3858
3865
|
queue(tokens);
|
|
3859
3866
|
break;
|
|
@@ -5224,16 +5231,19 @@ function measure (method) {
|
|
|
5224
5231
|
}
|
|
5225
5232
|
|
|
5226
5233
|
var bindings = [];
|
|
5227
|
-
function bind(target, event, listener, capture) {
|
|
5234
|
+
function bind(target, event, listener, capture, passive) {
|
|
5228
5235
|
if (capture === void 0) { capture = false; }
|
|
5236
|
+
if (passive === void 0) { passive = true; }
|
|
5229
5237
|
listener = measure(listener);
|
|
5230
5238
|
// Wrapping following lines inside try / catch to cover edge cases where we might try to access an inaccessible element.
|
|
5231
5239
|
// E.g. Iframe may start off as same-origin but later turn into cross-origin, and the following lines will throw an exception.
|
|
5232
5240
|
try {
|
|
5233
|
-
target[api("addEventListener" /* Constant.AddEventListener */)](event, listener, capture);
|
|
5234
|
-
bindings.push({ event: event, target: target, listener: listener, capture: capture });
|
|
5241
|
+
target[api("addEventListener" /* Constant.AddEventListener */)](event, listener, { capture: capture, passive: passive });
|
|
5242
|
+
bindings.push({ event: event, target: target, listener: listener, options: { capture: capture, passive: passive } });
|
|
5243
|
+
}
|
|
5244
|
+
catch (_a) {
|
|
5245
|
+
/* do nothing */
|
|
5235
5246
|
}
|
|
5236
|
-
catch ( /* do nothing */_a) { /* do nothing */ }
|
|
5237
5247
|
}
|
|
5238
5248
|
function reset$1() {
|
|
5239
5249
|
// Walk through existing list of bindings and remove them all
|
|
@@ -5241,9 +5251,11 @@ function reset$1() {
|
|
|
5241
5251
|
var binding = bindings_1[_i];
|
|
5242
5252
|
// Wrapping inside try / catch to avoid situations where the element may be destroyed before we get a chance to unbind
|
|
5243
5253
|
try {
|
|
5244
|
-
binding.target[api("removeEventListener" /* Constant.RemoveEventListener */)](binding.event, binding.listener, binding.capture);
|
|
5254
|
+
binding.target[api("removeEventListener" /* Constant.RemoveEventListener */)](binding.event, binding.listener, { capture: binding.options.capture, passive: binding.options.passive });
|
|
5255
|
+
}
|
|
5256
|
+
catch (_a) {
|
|
5257
|
+
/* do nothing */
|
|
5245
5258
|
}
|
|
5246
|
-
catch ( /* do nothing */_a) { /* do nothing */ }
|
|
5247
5259
|
}
|
|
5248
5260
|
bindings = [];
|
|
5249
5261
|
}
|
package/build/clarity.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return kr},get start(){return wr},get stop(){return Sr},get track(){return vr}}),e=Object.freeze({__proto__:null,get clone(){return qr},get compute(){return Ur},get data(){return Rr},get keys(){return Xr},get reset(){return Fr},get start(){return Hr},get stop(){return Br},get trigger(){return Wr},get update(){return Vr}}),n=Object.freeze({__proto__:null,get check(){return $r},get compute(){return ei},get data(){return Ar},get start(){return Qr},get stop(){return ni},get trigger(){return ti}}),a=Object.freeze({__proto__:null,get compute(){return si},get data(){return ai},get log(){return ci},get reset(){return li},get start(){return oi},get stop(){return ui},get updates(){return ri}}),r=Object.freeze({__proto__:null,get callback(){return Si},get callbacks(){return hi},get clear(){return ki},get consent(){return wi},get data(){return fi},get electron(){return pi},get id(){return bi},get metadata(){return yi},get save(){return Ei},get shortid(){return Mi},get start(){return gi},get stop(){return mi}}),i=Object.freeze({__proto__:null,get data(){return ji},get envelope(){return Xi},get start(){return Ai},get stop(){return Ri}}),o={projectId:null,delay:1e3,lean:!1,track:!0,content:!0,drop:[],mask:[],unmask:[],regions:[],cookies:[],fraud:!0,checksum:[],report:null,upload:null,fallback:null,upgrade:null,action:null,dob:null,delayDom:!1,throttleDom:!0,conversions:!1,includeSubdomains:!0,throttleMutations:!1,dropMutations:!1,criticalMs:200,discard:[]};function u(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var c=0;function s(t){void 0===t&&(t=null);var e=t&&t.timeStamp>0?t.timeStamp:performance.now(),n=t&&t.view?t.view.performance.timeOrigin:performance.timeOrigin;return Math.max(Math.round(e+n-c),0)}var l="0.7.67";function d(t,e){void 0===e&&(e=null);for(var n,a=5381,r=a,i=0;i<t.length;i+=2){if(a=(a<<5)+a^t.charCodeAt(i),i+1<t.length)r=(r<<5)+r^t.charCodeAt(i+1)}return n=Math.abs(a+11579*r),(e?n%Math.pow(2,e):n).toString(36)}var f=/\S/gi,h=255,p=!0,v=null,g=null,m=null;function y(t,e,n,a,r){if(void 0===a&&(a=!1),t){if("input"==e&&("checkbox"===r||"radio"===r))return t;switch(n){case 0:return t;case 1:switch(e){case"*T":case"value":case"placeholder":case"click":return function(t){var e=-1,n=0,a=!1,r=!1,i=!1,o=null;O();for(var u=0;u<t.length;u++){var c=t.charCodeAt(u);if(a=a||c>=48&&c<=57,r=r||64===c,i=9===c||10===c||13===c||32===c,0===u||u===t.length-1||i){if(a||r){null===o&&(o=t.split(""));var s=t.substring(e+1,i?u:u+1);s=p&&null!==m?s.match(m)?s:S(s,"▪","▫"):k(s),o.splice(e+1-n,s.length,s),n+=s.length-1}i&&(a=!1,r=!1,e=u)}}return o?o.join(""):t}(t);case"input":case"change":return E(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?w(t):k(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return E(t);case"placeholder":return k(t)}break;case 4:switch(e){case"*T":case"data-":return a?w(t):k(t);case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":return""}break;case 5:switch(e){case"*T":case"data-":return S(t,"▪","▫");case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":case"src":case"srcset":case"alt":case"title":return""}}}return t}function b(t,e,n){void 0===e&&(e=!1),void 0===n&&(n=!1);var a=t;if(e)a="".concat("https://").concat("Electron");else{var r=o.drop;if(r&&r.length>0&&t&&t.indexOf("?")>0){var i=t.split("?"),u=i[0],c=i[1];a=u+"?"+c.split("&").map((function(t){return r.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}}return n&&(a=a.substring(0,h)),a}function w(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),r=t.substr(0,a),i=t.substr(a+e.length);return"".concat(r).concat(e.length.toString(36)).concat(i)}return t}function k(t){return t.replace(f,"•")}function S(t,e,n){return O(),t?t.replace(g,e).replace(v,n):t}function E(t){for(var e=5*(Math.floor(t.length/5)+1),n="",a=0;a<e;a++)n+=a>0&&a%5==0?" ":"•";return n}function O(){if(p&&null===v)try{v=new RegExp("\\p{N}","gu"),g=new RegExp("\\p{L}","gu"),m=new RegExp("\\p{Sc}","gu")}catch(t){p=!1}}var T=null,M=null,N=!1;function x(){N&&(T={time:s(),event:4,data:{visible:M.visible,docWidth:M.docWidth,docHeight:M.docHeight,screenWidth:M.screenWidth,screenHeight:M.screenHeight,scrollX:M.scrollX,scrollY:M.scrollY,pointerX:M.pointerX,pointerY:M.pointerY,activityTime:M.activityTime,scrollTime:M.scrollTime,pointerTime:M.pointerTime,moveX:M.moveX,moveY:M.moveY,moveTime:M.moveTime,downX:M.downX,downY:M.downY,downTime:M.downTime}}),M=M||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0,scrollTime:0,pointerTime:0,moveX:0,moveY:0,moveTime:0,downX:0,downY:0,downTime:0}}function _(t,e,n,a){switch(t){case 8:M.docWidth=e,M.docHeight=n;break;case 11:M.screenWidth=e,M.screenHeight=n;break;case 10:M.scrollX=e,M.scrollY=n,M.scrollTime=a;break;case 12:M.moveX=e,M.moveY=n,M.moveTime=a,M.pointerX=e,M.pointerY=n,M.pointerTime=a;break;case 13:M.downX=e,M.downY=n,M.downTime=a,M.pointerX=e,M.pointerY=n,M.pointerTime=a;break;default:M.pointerX=e,M.pointerY=n,M.pointerTime=a}N=!0}function I(t){M.activityTime=t}function C(t,e){M.visible="visible"===e?1:0,M.visible||I(t),N=!0}function D(){N&&Zr(4)}var j=Object.freeze({__proto__:null,activity:I,compute:D,reset:x,start:function(){N=!1,x()},get state(){return T},stop:function(){x()},track:_,visibility:C}),A=null;function R(t,e){to()&&t&&"string"==typeof t&&t.length<255&&(A=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},Zr(24))}var X,Y=null,L=null;function P(t){t in Y||(Y[t]=0),t in L||(L[t]=0),Y[t]++,L[t]++}function z(t,e){null!==e&&(t in Y||(Y[t]=0),t in L||(L[t]=0),Y[t]+=e,L[t]+=e)}function H(t,e){null!==e&&!1===isNaN(e)&&(t in Y||(Y[t]=0),(e>Y[t]||0===Y[t])&&(L[t]=e,Y[t]=e))}function W(t,e,n){return window.setTimeout(Pi(t),e,n)}function q(t){return window.clearTimeout(t)}var U=0,F=0,V=null;function B(){V&&q(V),V=W(J,F),U=s()}function J(){var t=s();X={gap:t-U},Zr(25),X.gap<3e5?V=W(J,F):Zi&&(R("clarity","suspend"),No(),["mousemove","touchstart"].forEach((function(t){return Hi(document,t,eo)})),["resize","scroll","pageshow"].forEach((function(t){return Hi(window,t,eo)})))}var G=Object.freeze({__proto__:null,get data(){return X},reset:B,start:function(){F=6e4,U=0},stop:function(){q(V),U=0,F=0}}),K=null;function Z(t,e){if(t in K){var n=K[t],a=n[n.length-1];e-a[0]>100?K[t].push([e,0]):a[1]=e-a[0]}else K[t]=[[e,0]]}function Q(){Zr(36)}function $(){K={}}var tt=Object.freeze({__proto__:null,compute:Q,get data(){return K},reset:$,start:function(){K={}},stop:function(){K={}},track:Z}),et=null;function nt(t){to()&&o.lean&&(o.lean=!1,et={key:t},Si(),Ei(),o.upgrade&&o.upgrade(t),Zr(3))}var at=Object.freeze({__proto__:null,get data(){return et},start:function(){!o.lean&&o.upgrade&&o.upgrade("Config"),et=null},stop:function(){et=null},upgrade:nt});function rt(t,e,n,a){return new(n||(n=Promise))((function(r,i){function o(t){try{c(a.next(t))}catch(t){i(t)}}function u(t){try{c(a.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,u)}c((a=a.apply(t,e||[])).next())}))}function it(t,e){var n,a,r,i,o={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function u(u){return function(c){return function(u){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,u[0]&&(o=0)),o;)try{if(n=1,a&&(r=2&u[0]?a.return:u[0]?a.throw||((r=a.return)&&r.call(a),0):a.next)&&!(r=r.call(a,u[1])).done)return r;switch(a=0,r&&(u=[2&u[0],r.value]),u[0]){case 0:case 1:r=u;break;case 4:return o.label++,{value:u[1],done:!1};case 5:o.label++,a=u[1],u=[0];continue;case 7:u=o.ops.pop(),o.trys.pop();continue;default:if(!(r=o.trys,(r=r.length>0&&r[r.length-1])||6!==u[0]&&2!==u[0])){o=0;continue}if(3===u[0]&&(!r||u[1]>r[0]&&u[1]<r[3])){o.label=u[1];break}if(6===u[0]&&o.label<r[1]){o.label=r[1],r=u;break}if(r&&o.label<r[2]){o.label=r[2],o.ops.push(u);break}r[2]&&o.ops.pop(),o.trys.pop();continue}u=e.call(t,o)}catch(t){u=[6,t],a=0}finally{n=r=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,c])}}}var ot=null;function ut(t,e){st(t,"string"==typeof e?[e]:e)}function ct(t,e,n,a){return void 0===e&&(e=null),void 0===n&&(n=null),void 0===a&&(a=null),rt(this,void 0,void 0,(function(){var r,i;return it(this,(function(o){switch(o.label){case 0:return i={},[4,ft(t)];case 1:return i.userId=o.sent(),i.userHint=a||((u=t)&&u.length>=5?"".concat(u.substring(0,2)).concat(S(u.substring(2),"*","*")):S(u,"*","*")),st("userId",[(r=i).userId]),st("userHint",[r.userHint]),st("userType",[ht(t)]),e&&(st("sessionId",[e]),r.sessionId=e),n&&(st("pageId",[n]),r.pageId=n),[2,r]}var u}))}))}function st(t,e){if(to()&&t&&e&&"string"==typeof t&&t.length<255){for(var n=(t in ot?ot[t]:[]),a=0;a<e.length;a++)"string"==typeof e[a]&&e[a].length<255&&n.push(e[a]);ot[t]=n}}function lt(){Zr(34)}function dt(){ot={}}function ft(t){return rt(this,void 0,void 0,(function(){var e;return it(this,(function(n){switch(n.label){case 0:return n.trys.push([0,4,,5]),crypto&&t?[4,crypto.subtle.digest("SHA-256",(new TextEncoder).encode(t))]:[3,2];case 1:return e=n.sent(),[2,Array.prototype.map.call(new Uint8Array(e),(function(t){return("00"+t.toString(16)).slice(-2)})).join("")];case 2:return[2,""];case 3:return[3,5];case 4:return n.sent(),[2,""];case 5:return[2]}}))}))}function ht(t){return t&&t.indexOf("@")>0?"email":"string"}var pt="CompressionStream"in window;function vt(t){return rt(this,void 0,void 0,(function(){var e,n;return it(this,(function(a){switch(a.label){case 0:return a.trys.push([0,3,,4]),pt?(e=new ReadableStream({start:function(e){return rt(this,void 0,void 0,(function(){return it(this,(function(n){return e.enqueue(t),e.close(),[2]}))}))}}).pipeThrough(new TextEncoderStream).pipeThrough(new window.CompressionStream("gzip")),n=Uint8Array.bind,[4,gt(e)]):[3,2];case 1:return[2,new(n.apply(Uint8Array,[void 0,a.sent()]))];case 2:return[3,4];case 3:return a.sent(),[3,4];case 4:return[2,null]}}))}))}function gt(t){return rt(this,void 0,void 0,(function(){var e,n,a,r,i;return it(this,(function(o){switch(o.label){case 0:e=t.getReader(),n=[],a=!1,r=[],o.label=1;case 1:return a?[3,3]:[4,e.read()];case 2:return i=o.sent(),a=i.done,r=i.value,a?[2,n]:(n.push.apply(n,r),[3,1]);case 3:return[2,n]}}))}))}var mt=null;function yt(t){try{if(!mt)return;var e=function(t){try{return JSON.parse(t)}catch(t){return[]}}(t);e.forEach((function(t){mt(t)}))}catch(t){}}var bt=[j,a,Object.freeze({__proto__:null,compute:lt,get data(){return ot},identify:ct,reset:dt,set:ut,start:function(){dt()},stop:function(){dt()}}),n,tt,r,i,t,G,at,e];function wt(){Y={},L={},P(5),bt.forEach((function(t){return Pi(t.start)()}))}function kt(){bt.slice().reverse().forEach((function(t){return Pi(t.stop)()})),Y={},L={}}function St(){lt(),D(),si(),Zr(0),Q(),ei(),Ur()}var Et,Ot=[];function Tt(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(Et={id:t,target:e,checksum:d(n,28)},Ot.indexOf(Et.checksum)<0&&(Ot.push(Et.checksum),Ir(41)))}var Mt="load,active,fixed,visible,focus,show,collaps,animat".split(","),Nt={};function xt(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,r=0===e?"".concat("~").concat(t.position-1):":nth-of-type(".concat(t.position,")");switch(t.tag){case"STYLE":case"TITLE":case"LINK":case"META":case"*T":case"*D":return"";case"HTML":return"HTML";default:if(null===a)return"";a="".concat(a).concat(">"),t.tag=0===t.tag.indexOf("svg:")?t.tag.substr("svg:".length):t.tag;var i="".concat(a).concat(t.tag).concat(r),o="id"in n&&n.id.length>0?n.id:null,u="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return _t(t)})).join("."):null;if(u&&u.length>0)if(0===e){var c="".concat(function(t){for(var e=t.split(">"),n=0;n<e.length;n++){var a=e[n].indexOf("~"),r=e[n].indexOf(".");e[n]=e[n].substring(0,r>0?r:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(u);c in Nt||(Nt[c]=[]),Nt[c].indexOf(t.id)<0&&Nt[c].push(t.id),i="".concat(c).concat("~").concat(Nt[c].indexOf(t.id))}else i="".concat(a).concat(t.tag,".").concat(u).concat(r);return i=o&&_t(o)?"".concat(function(t){var e=t.lastIndexOf("*S"),n=t.lastIndexOf("".concat("iframe:").concat("HTML")),a=Math.max(e,n);if(a<0)return"";return t.substring(0,t.indexOf(">",a)+1)}(a)).concat("#").concat(o):i,i}}function _t(t){if(!t)return!1;if(Mt.some((function(e){return t.toLowerCase().indexOf(e)>=0})))return!1;for(var e=0;e<t.length;e++){var n=t.charCodeAt(e);if(n>=48&&n<=57)return!1}return!0}var It=1,Ct=null,Dt=[],jt=[],At={},Rt=[],Xt=[],Yt=[],Lt=[],Pt=[],zt=[],Ht=null,Wt=null,qt=null,Ut=null;function Ft(){Bt(),Jt(document,!0)}function Vt(){Bt()}function Bt(){It=1,Dt=[],jt=[],At={},Rt=[],Xt=[],Yt="address,password,contact".split(","),Lt="password,secret,pass,social,ssn,code,hidden".split(","),Pt="radio,checkbox,range,button,reset,submit".split(","),zt="INPUT,SELECT,TEXTAREA".split(","),Ct=new Map,Ht=new WeakMap,Wt=new WeakMap,qt=new WeakMap,Ut=new WeakMap,Nt={}}function Jt(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?Xt.push(t):Rt.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Za(t,"".concat(e[0]))}))})),o.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return qt.set(t,3)}))})),o.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Ut.set(t,e[0])}))})),Xt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return qt.set(t,0)}))})))}catch(t){jr(5,1,t?t.name:null)}}function Gt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Ht.get(t);return!n&&e&&(n=It++,Ht.set(t,n)),n||null}function Kt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Wt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Zt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Wt.has(e)?Wt.get(e):null}function Qt(t,e,n){if("object"==typeof t[n]&&"object"==typeof e[n]){for(var a in t[n])if(t[n][a]!==e[n][a])return!0;for(var a in e[n])if(e[n][a]!==t[n][a])return!0;return!1}return t[n]!==e[n]}function $t(t){var e=t.parent&&t.parent in Dt?Dt[t.parent]:null,n=e?e.selector:null,a=t.data,r=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=Dt[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),i={id:t.id,tag:a.tag,prefix:n,position:r,attributes:a.attributes};t.selector=[xt(i,0),xt(i,1)],t.hash=t.selector.map((function(t){return t?d(t):null})),t.hash.forEach((function(e){return At[e]=t.id}))}function te(t){var e=ee(ae(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function ee(t){return Ct.has(t)?Ct.get(t):null}function ne(t){var e=Gt(t);return e in Dt?Dt[e]:null}function ae(t){return t in At?At[t]:null}function re(t){return Ct.has(Gt(t))}function ie(){for(var t=[],e=0,n=jt;e<n.length;e++){var a=n[e];a in Dt&&t.push(Dt[a])}return jt=[],t}function oe(t){if(Ct.get(t).nodeType!==Node.DOCUMENT_FRAGMENT_NODE){Ct.delete(t);var e=t in Dt?Dt[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){oe(a[n])}}}function ue(t){for(var e=null;null===e&&t.previousSibling;)e=Gt(t.previousSibling),t=t.previousSibling;return e}function ce(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=jt.indexOf(t);r>=0&&1===e&&a?(jt.splice(r,1),jt.push(t)):-1===r&&n&&jt.push(t)}var se=Object.freeze({__proto__:null,add:function(t,e,n,a){var r=e?Gt(e):null;if(e&&r||null!=t.host||t.nodeType===Node.DOCUMENT_TYPE_NODE){var i=Gt(t,!0),u=ue(t),c=null,s=Qa(t)?i:null,l=Ut.has(t)?Ut.get(t):null,d=o.content?1:3;r>=0&&Dt[r]&&((c=Dt[r]).children.push(i),s=null===s?c.region:s,l=null===l?c.metadata.fraud:l,d=c.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&(Za(t,n.attributes["data-clarity-region"]),s=i),Ct.set(i,t),Dt[i]={id:i,parent:r,previous:u,children:[],data:n,selector:null,hash:null,region:s,metadata:{active:!0,suspend:!1,privacy:d,position:null,fraud:l,size:null}},function(t,e,n){var a,r=e.data,i=e.metadata,o=i.privacy,u=r.attributes||{},c=r.tag.toUpperCase();switch(!0){case zt.indexOf(c)>=0:var s=u.type,l="",d=["class","style"];Object.keys(u).filter((function(t){return!d.includes(t)})).forEach((function(t){return l+=u[t].toLowerCase()}));var f=Lt.some((function(t){return l.indexOf(t)>=0}));i.privacy="INPUT"===c&&Pt.indexOf(s)>=0?o:f?4:2;break;case"data-clarity-mask"in u:i.privacy=3;break;case"data-clarity-unmask"in u:i.privacy=0;break;case qt.has(t):i.privacy=qt.get(t);break;case Ut.has(t):i.privacy=2;break;case"*T"===c:var h=n&&n.data?n.data.tag:"",p=n&&n.selector?n.selector[1]:"",v=["STYLE","TITLE","svg:style"];i.privacy=v.includes(h)||Rt.some((function(t){return p.indexOf(t)>=0}))?0:o;break;case 1===o:i.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(u.class,Yt,i);break;case"IMG"===c:(null===(a=u.src)||void 0===a?void 0:a.startsWith("blob:"))&&(i.privacy=3)}}(t,Dt[i],c),$t(Dt[i]),function(t){if("IMG"===t.data.tag&&3===t.metadata.privacy){var e=ee(t.id);!e||e.complete&&0!==e.naturalWidth||Hi(e,"load",(function(){e.setAttribute("data-clarity-loaded","".concat(Mi()))})),t.metadata.size=[]}}(Dt[i]),ce(i,a)}},get:ne,getId:Gt,getNode:ee,getValue:function(t){return t in Dt?Dt[t]:null},has:re,hashText:te,iframe:Zt,lookup:ae,parse:Jt,sameorigin:Kt,start:Ft,stop:Vt,update:function(t,e,n,a){var r=Gt(t),i=e?Gt(e):null,o=ue(t),u=!1,c=!1;if(r in Dt){var s=Dt[r];if(s.metadata.active=!0,s.previous!==o&&(u=!0,s.previous=o),s.parent!==i){u=!0;var l=s.parent;if(s.parent=i,null!==i&&i>=0){var d=null===o?0:Dt[i].children.indexOf(o)+1;Dt[i].children.splice(d,0,r),s.region=Qa(t)?r:Dt[i].region}else!function(t,e){if(t in Dt){var n=Dt[t];n.metadata.active=!1,n.parent=null,ce(t,e),oe(t)}}(r,a);if(null!==l&&l>=0){var f=Dt[l].children.indexOf(r);f>=0&&Dt[l].children.splice(f,1)}c=!0}for(var h in n)Qt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);$t(s),ce(r,a,u,c)}},updates:ie}),le=5e3,de={},fe=[],he=null,pe=null,ve=null;function ge(){de={},fe=[],he=null,pe=null}function me(t,e){return void 0===e&&(e=0),rt(this,void 0,void 0,(function(){var n,a,r;return it(this,(function(i){for(n=0,a=fe;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){fe[1===e?"unshift":"push"]({task:t,resolve:n,id:bi()})})),null===he&&null===pe&&ye(),[2,r]}))}))}function ye(){var t=fe.shift();t&&(he=t,t.task().then((function(){t.id===bi()&&(t.resolve(),he=null,ye())})).catch((function(e){t.id===bi()&&(e&&jr(0,1,e.name,e.message,e.stack),he=null,ye())})))}function be(t){var e=Ee(t);return e in de?performance.now()-de[e].start>de[e].yield?0:1:2}function we(t){de[Ee(t)]={start:performance.now(),calls:0,yield:30}}function ke(t){var e=performance.now(),n=Ee(t),a=e-de[n].start;z(t.cost,a),P(5),de[n].calls>0&&z(4,a)}function Se(t){return rt(this,void 0,void 0,(function(){var e,n;return it(this,(function(a){switch(a.label){case 0:return(e=Ee(t))in de?(ke(t),n=de[e],[4,Oe()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Ee(t);if(de&&de[e]){var n=de[e].calls,a=de[e].yield;we(t),de[e].calls=n+1,de[e].yield=a}}(t),a.label=2;case 2:return[2,e in de?1:2]}}))}))}function Ee(t){return"".concat(t.id,".").concat(t.cost)}function Oe(){return rt(this,void 0,void 0,(function(){return it(this,(function(t){switch(t.label){case 0:return pe?[4,pe]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Me(t,{timeout:le})}))]}}))}))}var Te,Me=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,i=a.port2;r.onmessage=function(a){var r=performance.now(),o=r-n,u=r-a.data;if(u>30&&o<e.timeout)requestAnimationFrame((function(){i.postMessage(r)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-u)}})}},requestAnimationFrame((function(){i.postMessage(performance.now())}))};function Ne(){Te=null}function xe(){xe.dn=19;var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,r=t?t.offsetWidth:null,i=e?e.clientWidth:null,o=e?e.scrollWidth:null,u=e?e.offsetWidth:null,c=Math.max(n,a,r,i,o,u),s=t?t.clientHeight:null,l=t?t.scrollHeight:null,d=t?t.offsetHeight:null,f=e?e.clientHeight:null,h=e?e.scrollHeight:null,p=e?e.offsetHeight:null,v=Math.max(s,l,d,f,h,p);null!==Te&&c===Te.width&&v===Te.height||null===c||null===v||(Te={width:c,height:v},Ha(8))}var _e=[];function Ie(t){Ie.dn=5;var e=rr(t);if(e){var n=e.value,a=n&&n.length>=5&&o.fraud&&-1==="password,secret,pass,social,ssn,code,hidden".indexOf(e.type)?d(n,28):"";_e.push({time:s(t),event:42,data:{target:rr(t),type:e.type,value:n,checksum:a}}),me(or.bind(this,42))}}function Ce(){_e=[]}function De(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Zt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var je=["input","textarea","radio","button","canvas"],Ae=[];function Re(t){Hi(t,"click",Xe.bind(this,9,t),!0)}function Xe(t,e,n){Xe.dn=6;var a=Zt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=De(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=rr(n),l=function(t){for(;t&&t!==document;){if(t.nodeType===Node.ELEMENT_NODE){var e=t;if("A"===e.tagName)return e}t=t.parentNode}return null}(c),d=function(t){var e=null,n=document.documentElement;if("function"==typeof t.getBoundingClientRect){var a=t.getBoundingClientRect();a&&a.width>0&&a.height>0&&(e={x:Math.floor(a.left+("pageXOffset"in window?window.pageXOffset:n.scrollLeft)),y:Math.floor(a.top+("pageYOffset"in window?window.pageYOffset:n.scrollTop)),w:Math.floor(a.width),h:Math.floor(a.height)})}return e}(c);0===n.detail&&d&&(i=Math.round(d.x+d.w/2),o=Math.round(d.y+d.h/2));var f=d?Math.max(Math.floor((i-d.x)/d.w*32767),0):0,h=d?Math.max(Math.floor((o-d.y)/d.h*32767),0):0;null!==i&&null!==o&&(Ae.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:Le(c),context:Pe(l),text:Ye(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),me(or.bind(this,t)))}function Ye(t){var e=null;if(t){var n=t.textContent||String(t.value||"")||t.alt;n&&(e=n.replace(/\s+/g," ").trim().substr(0,25))}return e}function Le(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(je.indexOf(e)>=0)return 0}return 1}function Pe(t){if(t&&t.hasAttribute("target"))switch(t.getAttribute("target")){case"_blank":return 1;case"_parent":return 2;case"_top":return 3}return 0}function ze(){Ae=[]}var He=[];function We(t,e){We.dn=7,He.push({time:s(e),event:38,data:{target:rr(e),action:t}}),me(or.bind(this,38))}function qe(){He=[]}var Ue=null,Fe=[];function Ve(t){Ve.dn=9;var e=rr(t),n=ne(e);if(e&&e.type&&n){var a=e.value,r=e.type;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var i={target:e,value:a,type:r};Fe.length>0&&Fe[Fe.length-1].data.target===i.target&&Fe.pop(),Fe.push({time:s(t),event:27,data:i}),q(Ue),Ue=W(Be,1e3,27)}}function Be(t){me(or.bind(this,t))}function Je(){Fe=[]}var Ge,Ke=[],Ze=null,Qe=!1,$e=0,tn=new Set;function en(t,e,n){en.dn=10;var a=Zt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=De(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&an({time:s(n),event:t,data:{target:rr(n),x:i,y:o}})}function nn(t,e,n){nn.dn=11;var a=Zt(e),r=a?a.contentDocument.documentElement:document.documentElement,i=n.changedTouches,o=s(n);if(i)for(var u=0;u<i.length;u++){var c=i[u],l="clientX"in c?Math.round(c.clientX+r.scrollLeft):null,d="clientY"in c?Math.round(c.clientY+r.scrollTop):null;l=l&&a?l+Math.round(a.offsetLeft):l,d=d&&a?d+Math.round(a.offsetTop):d;var f="identifier"in c?c.identifier:void 0;switch(t){case 17:0===tn.size&&(Qe=!0,$e=f),tn.add(f);break;case 18:case 20:tn.delete(f)}var h=Qe&&$e===f;null!==l&&null!==d&&an({time:o,event:t,data:{target:rr(n),x:l,y:d,id:f,isPrimary:h}}),20!==t&&18!==t||$e===f&&(Qe=!1)}}function an(t){switch(t.event){case 12:case 15:case 19:var e=Ke.length,n=e>1?Ke[e-2]:null;n&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y,r=Math.sqrt(n*n+a*a),i=e.time-t.time,o=e.data.target===t.data.target;return e.event===t.event&&o&&r<20&&i<25}(n,t)&&Ke.pop(),Ke.push(t),q(Ze),Ze=W(rn,500,t.event);break;default:Ke.push(t),rn(t.event)}}function rn(t){me(or.bind(this,t))}function on(){Ke=[]}var un=null,cn=!1;function sn(){sn.dn=12;var t=document.documentElement;Ge={width:t&&"clientWidth"in t?Math.min(t.clientWidth,window.innerWidth):window.innerWidth,height:t&&"clientHeight"in t?Math.min(t.clientHeight,window.innerHeight):window.innerHeight},cn?(q(un),un=W(ln,500,11)):(or(11),cn=!0)}function ln(t){me(or.bind(this,t))}function dn(){Ge=null,q(un)}var fn=[],hn=null,pn=null,vn=null;function gn(t){void 0===t&&(t=null),gn.dn=13;var e=window,n=document.documentElement,a=t?rr(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Zt(a);e=r?r.contentWindow:e,a=n=a.documentElement}var i=a===n&&"pageXOffset"in e?Math.round(e.pageXOffset):Math.round(a.scrollLeft),o=a===n&&"pageYOffset"in e?Math.round(e.pageYOffset):Math.round(a.scrollTop),u=window.innerWidth,c=window.innerHeight,l=u/3,d=u>c?.15*c:.2*c,f=c-d,h=mn(l,d),p=mn(l,f),v={time:s(t),event:10,data:{target:a,x:i,y:o,top:h,bottom:p}};if(null===t&&0===i&&0===o||null===i||null===o)return hn=h,void(pn=p);var g=fn.length,m=g>1?fn[g-2]:null;m&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y;return n*n+a*a<400&&e.time-t.time<25}(m,v)&&fn.pop(),fn.push(v),q(vn),vn=W(yn,500,10)}function mn(t,e){var n,a,r;return"caretPositionFromPoint"in document?r=null===(n=document.caretPositionFromPoint(t,e))||void 0===n?void 0:n.offsetNode:"caretRangeFromPoint"in document&&(r=null===(a=document.caretRangeFromPoint(t,e))||void 0===a?void 0:a.startContainer),r||(r=document.elementFromPoint(t,e)),r&&r.nodeType===Node.TEXT_NODE&&(r=r.parentNode),r}function yn(t){me(or.bind(this,t))}function bn(){var t,e;if(bn.dn=14,hn){var n=ir(hn,null);ci(31,null===(t=null==n?void 0:n.hash)||void 0===t?void 0:t.join("."))}if(pn){var a=ir(pn,null);ci(32,null===(e=null==a?void 0:a.hash)||void 0===e?void 0:e.join("."))}}var wn=null,kn=null,Sn=null;function En(t){En.dn=15;var e=(t.nodeType===Node.DOCUMENT_NODE?t:document).getSelection();if(null!==e&&!(null===e.anchorNode&&null===e.focusNode||e.anchorNode===e.focusNode&&e.anchorOffset===e.focusOffset)){var n=wn.start?wn.start:null;null!==kn&&null!==wn.start&&n!==e.anchorNode&&(q(Sn),On(21)),wn={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},kn=e,q(Sn),Sn=W(On,500,21)}}function On(t){me(or.bind(this,t))}function Tn(){kn=null,wn={start:0,startOffset:0,end:0,endOffset:0}}var Mn,Nn,xn=[];function _n(t){_n.dn=16,xn.push({time:s(t),event:39,data:{target:rr(t)}}),me(or.bind(this,39))}function In(){xn=[]}function Cn(t){Cn.dn=17,Mn={name:t.type},or(26,s(t)),No()}function Dn(){Mn=null}function jn(t){void 0===t&&(t=null),jn.dn=18,Nn={visible:"visibilityState"in document?document.visibilityState:"default"},or(28,s(t))}function An(){Nn=null}function Rn(t){!function(t){var e=Zt(t);Hi(e?e.contentWindow:t===document?window:t,"scroll",gn,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(Re(t),function(t){Hi(t,"cut",We.bind(this,0),!0),Hi(t,"copy",We.bind(this,1),!0),Hi(t,"paste",We.bind(this,2),!0)}(t),function(t){Hi(t,"mousedown",en.bind(this,13,t),!0),Hi(t,"mouseup",en.bind(this,14,t),!0),Hi(t,"mousemove",en.bind(this,12,t),!0),Hi(t,"wheel",en.bind(this,15,t),!0),Hi(t,"dblclick",en.bind(this,16,t),!0),Hi(t,"touchstart",nn.bind(this,17,t),!0),Hi(t,"touchend",nn.bind(this,18,t),!0),Hi(t,"touchmove",nn.bind(this,19,t),!0),Hi(t,"touchcancel",nn.bind(this,20,t),!0)}(t),function(t){Hi(t,"input",Ve,!0)}(t),function(t){Hi(t,"selectstart",En.bind(this,t),!0),Hi(t,"selectionchange",En.bind(this,t),!0)}(t),function(t){Hi(t,"change",Ie,!0)}(t),function(t){Hi(t,"submit",_n,!0)}(t))}var Xn=Object.freeze({__proto__:null,observe:Rn,start:function t(){t.dn=8,ur=[],sr(),ze(),qe(),on(),Je(),cn=!1,Hi(window,"resize",sn),sn(),Hi(document,"visibilitychange",jn),jn(),fn=[],gn(),Tn(),Ce(),In(),Hi(window,"pagehide",Cn)},stop:function(){ur=[],sr(),ze(),qe(),q(Ze),Ke.length>0&&rn(Ke[Ke.length-1].event),q(Ue),Je(),dn(),An(),q(vn),fn=[],hn=null,pn=null,Tn(),q(Sn),Ce(),In(),Dn()}});function Yn(t,e,n,a){return rt(this,void 0,void 0,(function(){var r,i,o,u,c;return it(this,(function(s){switch(s.label){case 0:r=[t],s.label=1;case 1:if(!(r.length>0))return[3,4];for(i=r.shift(),o=i.firstChild;o;)r.push(o),o=o.nextSibling;return 0!==(u=be(e))?[3,3]:[4,Se(e)];case 2:u=s.sent(),s.label=3;case 3:return 2===u?[3,4]:((c=da(i,n,a))&&r.push(c),[3,1]);case 4:return[2]}}))}))}var Ln=[],Pn=[],zn={},Hn=null,Wn=null,qn=null,Un=null,Fn=null,Vn=[],Bn=null,Jn=null,Gn=null,Kn={},Zn=null;function Qn(){if(Qn.dn=21,Ln=[],Vn=[],Bn=null,Gn=0,Kn={},Zn=0,null===Hn&&(Hn=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return to()&&ra(this.ownerNode),Hn.apply(this,arguments)}),"CSSMediaRule"in window&&null===Un&&(Un=CSSMediaRule.prototype.insertRule,CSSMediaRule.prototype.insertRule=function(){return to()&&ra(this.parentStyleSheet.ownerNode),Un.apply(this,arguments)}),null===Wn&&(Wn=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return to()&&ra(this.ownerNode),Wn.apply(this,arguments)}),"CSSMediaRule"in window&&null===Fn&&(Fn=CSSMediaRule.prototype.deleteRule,CSSMediaRule.prototype.deleteRule=function(){return to()&&ra(this.parentStyleSheet.ownerNode),Fn.apply(this,arguments)}),null===qn){qn=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return to()?ra(qn.apply(this,arguments)):qn.apply(this,arguments)}}catch(t){qn=null}}}function $n(t){$n.dn=22;var e=s();Z(6,e),Pn.push({time:e,mutations:t}),me(ea,1).then((function(){W(xe),Pi($a)()}))}function ta(t,e,n,a){return rt(this,void 0,void 0,(function(){var r,i,u;return it(this,(function(c){switch(c.label){case 0:return 0!==(r=be(t))?[3,2]:[4,Se(t)];case 1:r=c.sent(),c.label=2;case 2:if(2===r)return[2];switch(i=e.target,u=o.throttleDom?function(t,e,n,a){var r=t.target?ne(t.target.parentNode):null;if(r&&"HTML"!==r.data.tag){var i=a>Gn,u=n<Zn,c=ne(t.target),s=c&&c.selector?c.selector.join():t.target.nodeName,l=r.selector?r.selector.join():"",d=o.throttleMutations&&u&&(0===o.discard.length||o.discard.some((function(t){return s.includes(t)}))),f=[l,s,t.attributeName,na(t.addedNodes),na(t.removedNodes)].join();Kn[f]=f in Kn?Kn[f]:[0,n];var h=Kn[f];if(!1===i&&h[0]>=10&&aa(h[2],2,e,a),h[0]=i||d?h[1]===n?h[0]:h[0]+1:1,h[1]=n,h[0]>=10||d)return h[2]=t.removedNodes,n>a+3e3?t.type:(o.dropMutations||(zn[f]={mutation:t,timestamp:a}),"throttle")}return t.type}(e,t,n,a):e.type,u&&i&&i.ownerDocument&&Jt(i.ownerDocument),u&&i&&i.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&i.host&&Jt(i),u){case"attributes":da(i,3,a);break;case"characterData":da(i,4,a);break;case"childList":aa(e.addedNodes,1,t,a),aa(e.removedNodes,2,t,a)}return[2]}}))}))}function ea(){return rt(this,void 0,void 0,(function(){var t,e,n,a,r,i,o,u,c,l,d;return it(this,(function(f){switch(f.label){case 0:we(t={id:bi(),cost:3}),f.label=1;case 1:if(!(Pn.length>0))return[3,7];e=Pn.shift(),n=s(),a=0,r=e.mutations,f.label=2;case 2:return a<r.length?(i=r[a],[4,ta(t,i,n,e.time)]):[3,5];case 3:f.sent(),f.label=4;case 4:return a++,[3,2];case 5:return[4,Ha(6,t,e.time)];case 6:return f.sent(),[3,1];case 7:o=!1,u=0,c=Object.keys(zn),f.label=8;case 8:return u<c.length?(l=c[u],d=zn[l],delete zn[l],[4,ta(t,d.mutation,s(),d.timestamp)]):[3,11];case 9:f.sent(),o=!0,f.label=10;case 10:return u++,[3,8];case 11:return Object.keys(zn).length>0&&function(){Jn&&q(Jn);Jn=W((function(){me(ea,1)}),33)}(),0===Object.keys(zn).length&&o?[4,Ha(6,t,s())]:[3,13];case 12:f.sent(),f.label=13;case 13:return function(){var t=s();Object.keys(Kn).length>1e4&&(Kn={},P(38));for(var e=0,n=Object.keys(Kn);e<n.length;e++){var a=n[e];t>Kn[a][1]+3e4&&delete Kn[a]}}(),ke(t),[2]}}))}))}function na(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function aa(t,e,n,a){return rt(this,void 0,void 0,(function(){var r,i,o,u;return it(this,(function(c){switch(c.label){case 0:r=t?t.length:0,i=0,c.label=1;case 1:return i<r?(o=t[i],1!==e?[3,2]:(Yn(o,n,e,a),[3,5])):[3,6];case 2:return 0!==(u=be(n))?[3,4]:[4,Se(n)];case 3:u=c.sent(),c.label=4;case 4:if(2===u)return[3,6];da(o,e,a),c.label=5;case 5:return i++,[3,1];case 6:return[2]}}))}))}function ra(t){return Vn.indexOf(t)<0&&Vn.push(t),Bn&&q(Bn),Bn=W((function(){!function(){for(var t=0,e=Vn;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&re(n))continue;ia(n,a?"childList":"characterData")}}Vn=[]}()}),33),t}function ia(t,e){ia.dn=23,Pi($n)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}var oa=/[^0-9\.]/g;function ua(t){for(var e=0,n=Object.keys(t);e<n.length;e++){var a=n[e],r=t[a];if("@type"===a&&"string"==typeof r)switch(r=(r=r.toLowerCase()).indexOf("article")>=0||r.indexOf("posting")>=0?"article":r){case"article":case"recipe":ci(5,t[a]),ci(8,t.creator),ci(18,t.headline);break;case"product":ci(5,t[a]),ci(10,t.name),ci(12,t.sku),t.brand&&ci(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(H(11,ca(t.ratingValue,100)),H(18,ca(t.bestRating)),H(19,ca(t.worstRating))),H(12,ca(t.ratingCount)),H(17,ca(t.reviewCount));break;case"offer":ci(7,t.availability),ci(14,t.itemCondition),ci(13,t.priceCurrency),ci(12,t.sku),H(13,ca(t.price));break;case"brand":ci(6,t.name)}null!==r&&"object"==typeof r&&ua(r)}}function ca(t,e){if(void 0===e&&(e=1),null!==t)switch(typeof t){case"number":return Math.round(t*e);case"string":return Math.round(parseFloat(t.replace(oa,""))*e)}return null}var sa=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last","aria-label"],la=/[\r\n]+/g;function da(t,e,n){var a,r=null;if(2===e&&!1===re(t))return r;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var i=!1===re(t)?"add":"update",o=t.parentElement?t.parentElement:null,u=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:o=u&&t.parentNode?Zt(t.parentNode):o;var c=t,s={tag:(u?"iframe:":"")+"*D",attributes:{name:c.name?c.name:"HTML",publicId:c.publicId,systemId:c.systemId}};se[i](t,o,s,e);break;case Node.DOCUMENT_NODE:t===document&&Jt(document),Oa(t,n),fa(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var l=t;if(l.host){if(Jt(l),"function"===typeof l.constructor&&l.constructor.toString().indexOf("[native code]")>=0){fa(l);var d={tag:"*S",attributes:{style:""}};se[i](t,l.host,d,e)}else se[i](t,l.host,{tag:"*P",attributes:{}},e);Oa(t,n)}break;case Node.TEXT_NODE:if(o=o||t.parentNode,"update"===i||o&&re(o)&&"STYLE"!==o.tagName&&"NOSCRIPT"!==o.tagName){var f={tag:"*T",value:t.nodeValue};se[i](t,o,f,e)}break;case Node.ELEMENT_NODE:var h=t,p=h.tagName,v=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var r=n[a].name;sa.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(h);switch(o=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===h.namespaceURI&&(p="svg:"+p),p){case"HTML":o=u&&o?Zt(o):o;var g={tag:(u?"iframe:":"")+p,attributes:v};se[i](t,o,g,e);break;case"SCRIPT":if("type"in v&&"application/ld+json"===v.type)try{ua(JSON.parse(h.text.replace(la,"")))}catch(t){}break;case"NOSCRIPT":var m={tag:p,attributes:{},value:""};se[i](t,o,m,e);break;case"META":var y="property"in v?"property":"name"in v?"name":null;if(y&&"content"in v){var b=v.content;switch(v[y]){case"og:title":ci(20,b);break;case"og:type":ci(19,b);break;case"generator":ci(21,b)}}break;case"HEAD":var w={tag:p,attributes:v},k=u&&(null===(a=t.ownerDocument)||void 0===a?void 0:a.location)?t.ownerDocument.location:location;w.attributes["*B"]=k.protocol+"//"+k.host+k.pathname,se[i](t,o,w,e);break;case"BASE":var S=ne(t.parentElement);if(S){var E=document.createElement("a");E.href=v.href,S.data.attributes["*B"]=E.protocol+"//"+E.host+E.pathname}break;case"STYLE":var O={tag:p,attributes:v,value:ha(h)};se[i](t,o,O,e);break;case"IFRAME":var T=t,M={tag:p,attributes:v};Kt(T)&&(!function(t){!1===re(t)&&Hi(t,"load",ia.bind(this,t,"childList"),!0)}(T),M.attributes["*O"]="true",T.contentDocument&&T.contentWindow&&"loading"!==T.contentDocument.readyState&&(r=T.contentDocument)),se[i](t,o,M,e);break;case"LINK":if(pi&&"stylesheet"===v.rel){for(var N in Object.keys(document.styleSheets)){var x=document.styleSheets[N];if(x.ownerNode==h){var _={tag:"STYLE",attributes:v,value:pa(x)};se[i](t,o,_,e);break}}break}var I={tag:p,attributes:v};se[i](t,o,I,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in v&&v.src.startsWith("data:")&&(v.src="");var C={tag:p,attributes:v};se[i](t,o,C,e);break;default:var D={tag:p,attributes:v};h.shadowRoot&&(r=h.shadowRoot),se[i](t,o,D,e)}}return r}function fa(t){re(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](Pi($n)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),Ln.push(n))}catch(t){jr(2,0,t?t.name:null)}}(t),Rn(t))}function ha(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0||t.id.length>0)&&(e=pa(t.sheet)),e}function pa(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(jr(1,1,t?t.name:null),t&&"SecurityError"!==t.name)throw t}if(null!==n)for(var a=0;a<n.length;a++)e+=n[a].cssText;return e}var va=[],ga=[],ma=null,ya=null,ba="claritySheetId",wa="claritySheetNum",ka={},Sa={},Ea=[];function Oa(t,e){if(-1===Ea.indexOf(t)&&Ea.push(t),e=e||s(),null==t?void 0:t.adoptedStyleSheets){H(36,1);for(var n=[],a=0,r=t.adoptedStyleSheets;a<r.length;a++){var i=r[a],o=fi.pageNum;i[wa]!==o&&(i[wa]=o,i[ba]=Mi(),Ma(e,i[ba],0),Ma(e,i[ba],2,pa(i))),n.push(i[ba])}var u=Gt(t,!0);ka[u]||(ka[u]=[]),function(t,e){if(t.length!==e.length)return!1;return t.every((function(t,n){return t===e[n]}))}(n,ka[u])||(!function(t,e,n,a){ga.push({time:t,event:45,data:{id:e,operation:n,newIds:a}}),Ha(45)}(e,t==document?-1:Gt(t),3,n),ka[u]=n,Sa[u]=e)}}function Ta(){ga=[],va=[]}function Ma(t,e,n,a){va.push({time:t,event:46,data:{id:e,operation:n,cssRules:a}}),Ha(46)}var Na=[],xa=null,_a=null,Ia=null,Ca=null,Da=null,ja=null,Aa="clarityAnimationId",Ra="clarityOperationCount",Xa=20;function Ya(){Na=[]}function La(t,e,n,a,r,i,o){Na.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),Ha(44)}function Pa(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){return za(this,e),t.apply(this,arguments)})}function za(t,e){if(to()){var n=t.effect,a=Gt(n.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!t[Aa]){t[Aa]=Mi(),t[Ra]=0;var r=n.getKeyframes(),i=n.getTiming();La(s(),t[Aa],0,JSON.stringify(r),JSON.stringify(i),a)}if(t[Ra]++<Xa){var o=null;switch(e){case"play":o=1;break;case"pause":o=2;break;case"cancel":o=3;break;case"finish":o=4;break;case"commitStyles":o=5}o&&La(s(),t[Aa],o)}}}}function Ha(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),rt(this,void 0,void 0,(function(){var a,r,i,u,c,l,d,f,h,p,v,g,m,b,w,k,S,E,O,T,M,N,x,C,D,j,A,R,X;return it(this,(function(Y){switch(Y.label){case 0:switch(a=n||s(),r=[a,t],t){case 8:return[3,1];case 7:return[3,2];case 45:case 46:return[3,3];case 44:return[3,4];case 5:case 6:return[3,5]}return[3,12];case 1:return i=Te,r.push(i.width),r.push(i.height),_(t,i.width,i.height),kr(r),[3,12];case 2:for(u=0,c=Fa;u<c.length;u++)l=c[u],(r=[l.time,7]).push(l.data.id),r.push(l.data.interaction),r.push(l.data.visibility),r.push(l.data.name),kr(r);return ar(),[3,12];case 3:for(d=0,f=ga;d<f.length;d++)m=f[d],(r=[m.time,m.event]).push(m.data.id),r.push(m.data.operation),r.push(m.data.newIds),kr(r);for(h=0,p=va;h<p.length;h++)m=p[h],(r=[m.time,m.event]).push(m.data.id),r.push(m.data.operation),r.push(m.data.cssRules),kr(r);return Ta(),[3,12];case 4:for(v=0,g=Na;v<g.length;v++)m=g[v],(r=[m.time,m.event]).push(m.data.id),r.push(m.data.operation),r.push(m.data.keyFrames),r.push(m.data.timing),r.push(m.data.timeline),r.push(m.data.targetId),kr(r);return Ya(),[3,12];case 5:if(2===be(e))return[3,12];if(!((b=ie()).length>0))return[3,11];w=0,k=b,Y.label=6;case 6:return w<k.length?(S=k[w],0!==(E=be(e))?[3,8]:[4,Se(e)]):[3,10];case 7:E=Y.sent(),Y.label=8;case 8:if(2===E)return[3,10];for(O=S.data,T=S.metadata.active,M=S.metadata.suspend,N=S.metadata.privacy,x=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(S),C=0,D=T?["tag","attributes","value"]:["tag"];C<D.length;C++)if(O[j=D[C]])switch(j){case"tag":A=Wa(S),R=x?-1:1,r.push(S.id*R),S.parent&&T&&(r.push(S.parent),S.previous&&r.push(S.previous)),r.push(M?"*M":O[j]),A&&2===A.length&&r.push("".concat("#").concat(qa(A[0]),".").concat(qa(A[1])));break;case"attributes":for(X in O[j])void 0!==O[j][X]&&r.push(Ua(X,O[j][X],N));break;case"value":Tt(S.metadata.fraud,S.id,O[j]),r.push(y(O[j],O.tag,N,x))}Y.label=9;case 9:return w++,[3,6];case 10:6===t&&I(a),kr(function(t){for(var e=[],n={},a=0,r=null,i=0;i<t.length;i++)if("string"==typeof t[i]){var o=t[i],u=n[o]||-1;u>=0?r?r.push(u):(r=[u],e.push(r),a++):(r=null,e.push(o),n[o]=a++)}else r=null,e.push(t[i]),a++;return e}(r),!o.lean),Y.label=11;case 11:return[3,12];case 12:return[2]}}))}))}function Wa(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=ee(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function qa(t){return t.toString(36)}function Ua(t,e,n){return"".concat(t,"=").concat(y(e,0===t.indexOf("data-")?"data-":t,n))}var Fa=[],Va=null,Ba={},Ja=[],Ga=!1,Ka=null;function Za(t,e){!1===Va.has(t)&&(Va.set(t,e),(Ka=null===Ka&&Ga?new IntersectionObserver(tr,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Ka)&&t&&t.nodeType===Node.ELEMENT_NODE&&Ka.observe(t))}function Qa(t){return Va&&Va.has(t)}function $a(){$a.dn=24;for(var t=[],e=0,n=Ja;e<n.length;e++){var a=n[e],r=Gt(a.node);r?(a.state.data.id=r,Ba[r]=a.state.data,Fa.push(a.state)):t.push(a)}Ja=t,Fa.length>0&&Ha(7)}function tr(t){for(var e=0,n=t;e<n.length;e++){var a=n[e],r=a.target,i=a.boundingClientRect,o=a.intersectionRect,u=a.rootBounds;if(Va.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Gt(r):null,s=c in Ba?Ba[c]:{id:c,name:Va.get(r),interaction:16,visibility:0},l=(o?o.width*o.height*1/(u.width*u.height):0)>.05||a.intersectionRatio>.8,d=(l||10==s.visibility)&&Math.abs(i.top)+u.height>i.height;er(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Ka&&Ka.unobserve(r)}}Fa.length>0&&Ha(7)}function er(t,e,n,a){var r=n>e.interaction||a>e.visibility;e.interaction=n>e.interaction?n:e.interaction,e.visibility=a>e.visibility?a:e.visibility,e.id?(e.id in Ba&&r||!(e.id in Ba))&&(Ba[e.id]=e,Fa.push(nr(e))):Ja.push({node:t,state:nr(e)})}function nr(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function ar(){Fa=[]}function rr(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return Gn=s()+3e3,Zn=s()+o.criticalMs,n&&n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function ir(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=ne(t);if(null!==r){var i=r.metadata;a.id=r.id,a.hash=r.hash,a.privacy=i.privacy,r.region&&function(t,e){var n=ee(t),a=t in Ba?Ba[t]:{id:t,visibility:0,interaction:16,name:Va.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}er(n,a,r,a.visibility)}(r.region,e),i.fraud&&Tt(i.fraud,r.id,n||r.data.value)}}return a}function or(t,e){return void 0===e&&(e=null),rt(this,void 0,void 0,(function(){var n,a,r,i,o,u,c,l,d,f,h,p,v,g,m,w,k,S,E,O,T,M,N,x,I,D,j,A,R,X,Y,L,P,z,H;return it(this,(function(W){switch(n=e||s(),a=[n,t],t){case 13:case 14:case 12:case 15:case 16:case 17:case 18:case 19:case 20:for(r=0,i=Ke;r<i.length;r++)z=i[r],(o=ir(z.data.target,z.event)).id>0&&((a=[z.time,z.event]).push(o.id),a.push(z.data.x),a.push(z.data.y),void 0!==z.data.id&&(a.push(z.data.id),void 0!==z.data.isPrimary&&a.push(z.data.isPrimary.toString())),kr(a),_(z.event,z.data.x,z.data.y,z.time));on();break;case 9:for(u=0,c=Ae;u<c.length;u++)z=c[u],l=ir(z.data.target,z.event,z.data.text),a=[z.time,z.event],d=l.hash?l.hash.join("."):"",a.push(l.id),a.push(z.data.x),a.push(z.data.y),a.push(z.data.eX),a.push(z.data.eY),a.push(z.data.button),a.push(z.data.reaction),a.push(z.data.context),a.push(y(z.data.text,"click",l.privacy)),a.push(b(z.data.link)),a.push(d),a.push(z.data.trust),kr(a),lr(z.time,z.event,d,z.data.x,z.data.y,z.data.reaction,z.data.context);ze();break;case 38:for(f=0,h=He;f<h.length;f++)z=h[f],a=[z.time,z.event],(Y=ir(z.data.target,z.event)).id>0&&(a.push(Y.id),a.push(z.data.action),kr(a));qe();break;case 11:p=Ge,a.push(p.width),a.push(p.height),_(t,p.width,p.height),dn(),kr(a);break;case 26:v=Mn,a.push(v.name),Dn(),kr(a);break;case 27:for(g=0,m=Fe;g<m.length;g++)z=m[g],w=ir(z.data.target,z.event,z.data.value),(a=[z.time,z.event]).push(w.id),a.push(y(z.data.value,"input",w.privacy,!1,z.data.type)),kr(a);Je();break;case 21:(k=wn)&&(S=ir(k.start,t),E=ir(k.end,t),a.push(S.id),a.push(k.startOffset),a.push(E.id),a.push(k.endOffset),Tn(),kr(a));break;case 10:for(O=0,T=fn;O<T.length;O++)z=T[O],M=ir(z.data.target,z.event),N=ir(z.data.top,z.event),x=ir(z.data.bottom,z.event),I=(null==N?void 0:N.hash)?N.hash.join("."):"",D=(null==x?void 0:x.hash)?x.hash.join("."):"",M.id>0&&((a=[z.time,z.event]).push(M.id),a.push(z.data.x),a.push(z.data.y),a.push(I),a.push(D),kr(a),_(z.event,z.data.x,z.data.y,z.time));fn=[],hn=null,pn=null;break;case 42:for(j=0,A=_e;j<A.length;j++)z=A[j],a=[z.time,z.event],(Y=ir(z.data.target,z.event)).id>0&&((a=[z.time,z.event]).push(Y.id),a.push(z.data.type),a.push(y(z.data.value,"change",Y.privacy)),a.push(y(z.data.checksum,"checksum",Y.privacy)),kr(a));Ce();break;case 39:for(R=0,X=xn;R<X.length;R++)z=X[R],a=[z.time,z.event],(Y=ir(z.data.target,z.event)).id>0&&(a.push(Y.id),kr(a));In();break;case 22:for(L=0,P=cr;L<P.length;L++)z=P[L],(a=[z.time,z.event]).push(z.data.type),a.push(z.data.hash),a.push(z.data.x),a.push(z.data.y),a.push(z.data.reaction),a.push(z.data.context),kr(a,!1);sr();break;case 28:H=Nn,a.push(H.visible),kr(a),C(n,H.visible),An()}return[2]}))}))}var ur=[],cr=[];function sr(){cr=[]}function lr(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),ur.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),_(e,a,r)}var dr,fr,hr,pr,vr,gr=0,mr=0,yr=null,br=0;function wr(){pr=!0,gr=0,mr=0,br=0,dr=[],fr=[],hr={},vr=null}function kr(t,e){if(void 0===e&&(e=!0),pr){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:gr+=r.length;case 37:case 6:case 43:case 45:case 46:mr+=r.length,dr.push(r);break;default:fr.push(r)}P(25);var i=function(){var t=!1===o.lean&&gr>0?100:ji.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-br>2*i&&(q(yr),yr=null),e&&null===yr&&(25!==a&&B(),yr=W(Er,i),br=n,$r(mr))}}function Sr(){q(yr),Er(!0),gr=0,mr=0,br=0,dr=[],fr=[],hr={},vr=null,pr=!1}function Er(t){return void 0===t&&(t=!1),rt(this,void 0,void 0,(function(){var e,n,a,r,i,u,c,s;return it(this,(function(l){switch(l.label){case 0:return yr=null,(e=!1===o.lean&&mr>0&&(mr<1048576||ji.sequence>0))&&H(1,1),$a(),function(){var t=[];cr=[];for(var e=ji.start+ji.duration,n=Math.max(e-2e3,0),a=0,r=ur;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&cr.push(i),t.push(i))}ur=t,or(22)}(),St(),function(){for(var t=0,e=Ea;t<e.length;t++){var n=e[t],a=n==document?-1:Gt(n),r=a in Sa?Sa[a]:null;Oa(document,r)}}(),n=!0===t,a=JSON.stringify(Xi(n)),r="[".concat(fr.join(),"]"),i=e?"[".concat(dr.join(),"]"):"",u=function(t){return t.p.length>0?'{"e":'.concat(t.e,',"a":').concat(t.a,',"p":').concat(t.p,"}"):'{"e":'.concat(t.e,',"a":').concat(t.a,"}")}({e:a,a:r,p:i}),n?(s=null,[3,3]):[3,1];case 1:return[4,vt(u)];case 2:s=l.sent(),l.label=3;case 3:return z(2,(c=s)?c.length:u.length),Or(u,c,ji.sequence,n),fr=[],e&&(dr=[],mr=0,gr=0),[2]}}))}))}function Or(t,e,n,a){if(void 0===a&&(a=!1),"string"==typeof o.upload){var r=o.upload,i=!1;if(a&&"sendBeacon"in navigator)try{(i=navigator.sendBeacon.bind(navigator)(r,t))&&Mr(n)}catch(t){}if(!1===i){n in hr?hr[n].attempts++:hr[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){Li(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){Pi(Tr)(u,n)}),u.withCredentials=!0,e?(u.setRequestHeader("Accept","application/x-clarity-gzip"),u.send(e)):u.send(t)}}else if(o.upload){(0,o.upload)(t),Mr(n)}}function Tr(t,e){var n=hr[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?ti(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),Or(n.data,null,e)):(vr={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&Zr(2),200===t.status&&t.responseText&&function(t){for(var e=t&&t.length>0?t.split("\n"):[],n=0,a=e;n<a.length;n++){var r=a[n],i=r&&r.length>0?r.split(/ (.*)/):[""];switch(i[0]){case"END":ti(6);break;case"UPGRADE":nt("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&Wr(i[1]);break;case"SIGNAL":i.length>1&&yt(i[1])}}}(t.responseText),0===t.status&&(Or(n.data,null,e,!0),ti(3)),t.status>=200&&t.status<=208&&Mr(e),delete hr[e]))}function Mr(t){1===t&&(Ei(),Si())}var Nr,xr={};function _r(t){_r.dn=4;var e=t.error||t;return e.message in xr||(xr[e.message]=0),xr[e.message]++>=5||e&&e.message&&(Nr={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},Ir(31)),!0}function Ir(t){return rt(this,void 0,void 0,(function(){var e;return it(this,(function(n){switch(e=[s(),t],t){case 31:e.push(Nr.message),e.push(Nr.line),e.push(Nr.column),e.push(Nr.stack),e.push(b(Nr.source)),kr(e);break;case 33:Cr&&(e.push(Cr.code),e.push(Cr.name),e.push(Cr.message),e.push(Cr.stack),e.push(Cr.severity),kr(e,!1));break;case 41:Et&&(e.push(Et.id),e.push(Et.target),e.push(Et.checksum),kr(e,!1))}return[2]}))}))}var Cr,Dr={};function jr(t,e,n,a,r){void 0===n&&(n=null),void 0===a&&(a=null),void 0===r&&(r=null);var i=n?"".concat(n,"|").concat(a):"";t in Dr&&Dr[t].indexOf(i)>=0||(Cr={code:t,name:n,message:a,stack:r,severity:e},t in Dr?Dr[t].push(i):Dr[t]=[i],Ir(33))}var Ar,Rr={},Xr=new Set,Yr={},Lr={},Pr={},zr={};function Hr(){Fr()}function Wr(t){try{var e=t&&t.length>0?t.split(/ (.*)/):[""],n=e[0].split(/\|(.*)/),a=parseInt(n[0]),r=n.length>1?n[1]:"",i=e.length>1?JSON.parse(e[1]):{};for(var o in Yr[a]={},Lr[a]={},Pr[a]={},zr[a]=r,i){var u=parseInt(o),c=i[o],s=2;switch(c.startsWith("~")?s=0:c.startsWith("!")&&(s=4),s){case 0:var l=c.substring(1,c.length);Yr[a][u]=Jr(l);break;case 2:Lr[a][u]=c;break;case 4:var d=c.substring(1,c.length);Pr[a][u]=d}}}catch(t){jr(8,1,t?t.name:null)}}function qr(t){return JSON.parse(JSON.stringify(t))}function Ur(){try{for(var t in Yr){var e=parseInt(t);if(""==zr[e]||document.querySelector(zr[e])){var n=Yr[e];for(var a in n){var r=parseInt(a),i=(h=Gr(qr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&Vr(e,r,i)}var o=Lr[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)Vr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=Pr[e];for(var d in l){var f=parseInt(d);Vr(e,f,te(l[f]).trim().substring(0,1e4))}}}Xr.size>0&&Zr(40)}catch(t){jr(5,1,t?t.name:null)}var h}function Fr(){Xr.clear()}function Vr(t,e,n){var a,r=!1;t in Rr||(Rr[t]={},r=!0),a=Pr[t],0==Object.keys(a).length||e in Rr[t]&&Rr[t][e]==n||(r=!0),Rr[t][e]=n,r&&Xr.add(t)}function Br(){Fr()}function Jr(t){for(var e=[],n=t.split(".");n.length>0;){var a=n.shift(),r=a.indexOf("["),i=a.indexOf("{"),o=a.indexOf("}");e.push({name:r>0?a.substring(0,r):i>0?a.substring(0,i):a,type:r>0?1:i>0?2:3,condition:i>0?a.substring(i+1,o):null})}return e}function Gr(t,e){if(void 0===e&&(e=window),0==t.length)return e;var n,a=t.shift();if(e&&e[a.name]){var r=e[a.name];if(1!==a.type&&Kr(r,a.condition))n=Gr(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(Kr(c,a.condition)){var s=Gr(t,c);s&&i.push(s)}}n=i}return n}return null}function Kr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function Zr(t){var e=[s(),t];switch(t){case 4:var n=T;n&&((e=[n.time,n.event]).push(n.data.visible),e.push(n.data.docWidth),e.push(n.data.docHeight),e.push(n.data.screenWidth),e.push(n.data.screenHeight),e.push(n.data.scrollX),e.push(n.data.scrollY),e.push(n.data.pointerX),e.push(n.data.pointerY),e.push(n.data.activityTime),e.push(n.data.scrollTime),e.push(n.data.pointerTime),e.push(n.data.moveX),e.push(n.data.moveY),e.push(n.data.moveTime),e.push(n.data.downX),e.push(n.data.downY),e.push(n.data.downTime),kr(e,!1)),x();break;case 25:e.push(X.gap),kr(e);break;case 35:e.push(Ar.check),kr(e,!1);break;case 3:e.push(et.key),kr(e);break;case 2:e.push(vr.sequence),e.push(vr.attempts),e.push(vr.status),kr(e,!1);break;case 24:A.key&&e.push(A.key),e.push(A.value),kr(e);break;case 34:var a=Object.keys(ot);if(a.length>0){for(var r=0,i=a;r<i.length;r++){var o=i[r];e.push(o),e.push(ot[o])}dt(),kr(e,!1)}break;case 0:var u=Object.keys(L);if(u.length>0){for(var c=0,l=u;c<l.length;c++){var d=l[c],f=parseInt(d,10);e.push(f),e.push(Math.round(L[d]))}L={},kr(e,!1)}break;case 1:var h=Object.keys(ri);if(h.length>0){for(var p=0,v=h;p<v.length;p++){var g=v[p];f=parseInt(g,10);e.push(f),e.push(ri[g])}li(),kr(e,!1)}break;case 36:var m=Object.keys(K);if(m.length>0){for(var y=0,b=m;y<b.length;y++){var w=b[y];f=parseInt(w,10);e.push(f),e.push([].concat.apply([],K[w]))}$(),kr(e,!1)}break;case 40:Xr.forEach((function(t){e.push(t);var n=[];for(var a in Rr[t]){var r=parseInt(a,10);n.push(r),n.push(Rr[t][a])}e.push(n)})),Fr(),kr(e,!1)}}function Qr(){Ar={check:0}}function $r(t){if(0===Ar.check){var e=Ar.check;e=ji.sequence>=128?1:e,e=ji.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==Ar.check&&ti(e)}}function ti(t){Ar.check=t,5!==t&&(ki(),No())}function ei(){0!==Ar.check&&Zr(35)}function ni(){Ar=null}var ai=null,ri=null,ii=!1;function oi(){ai={},ri={},ii=!1}function ui(){ai={},ri={},ii=!1}function ci(t,e){if(e&&(e="".concat(e),t in ai||(ai[t]=[]),ai[t].indexOf(e)<0)){if(ai[t].length>128)return void(ii||(ii=!0,ti(5)));ai[t].push(e),t in ri||(ri[t]=[]),ri[t].push(e)}}function si(){Zr(1)}function li(){ri={},ii=!1}function di(t){ci(36,t.toString())}var fi=null,hi=[],pi=0,vi=null;function gi(){var t,e,n;vi=null;var a=navigator&&"userAgent"in navigator?navigator.userAgent:"",r=null!==(n=null===(e=null===(t=null===Intl||void 0===Intl?void 0:Intl.DateTimeFormat())||void 0===t?void 0:t.resolvedOptions())||void 0===e?void 0:e.timeZone)&&void 0!==n?n:"",i=(new Date).getTimezoneOffset().toString(),u=window.location.ancestorOrigins?Array.from(window.location.ancestorOrigins).toString():"",c=document&&document.title?document.title:"";pi=a.indexOf("Electron")>0?1:0;var s,l=function(){var t={session:Mi(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=_i("_clsk",!o.includeSubdomains);if(e){var n=e.split("|");n.length>=5&&t.ts-Ni(n[1])<18e5&&(t.session=n[0],t.count=Ni(n[2])+1,t.upgrade=Ni(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),f=xi(),h=o.projectId||d(location.host);fi={projectId:h,userId:f.id,sessionId:l.session,pageNum:l.count},o.lean=o.track&&null!==l.upgrade?0===l.upgrade:o.lean,o.upload=o.track&&"string"==typeof o.upload&&l.upload&&l.upload.length>"https://".length?l.upload:o.upload,ci(0,a),ci(3,c),ci(1,b(location.href,!!pi)),ci(2,document.referrer),ci(15,function(){var t=Mi();if(o.track&&Oi(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),ci(16,document.documentElement.lang),ci(17,document.dir),ci(26,"".concat(window.devicePixelRatio)),ci(28,f.dob.toString()),ci(29,f.version.toString()),ci(33,u),ci(34,r),ci(35,i),H(0,l.ts),H(1,0),H(35,pi),navigator&&(ci(9,navigator.language),H(33,navigator.hardwareConcurrency),H(32,navigator.maxTouchPoints),H(34,Math.round(navigator.deviceMemory)),(s=navigator.userAgentData)&&s.getHighEntropyValues?s.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;ci(22,t.platform),ci(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){ci(24,t.name+"~"+t.version)})),ci(25,t.model),H(27,t.mobile?1:0)})):ci(22,navigator.platform)),screen&&(H(14,Math.round(screen.width)),H(15,Math.round(screen.height)),H(16,Math.round(screen.colorDepth)));for(var p=0,v=o.cookies;p<v.length;p++){var g=v[p],m=_i(g);m&&ut(g,m)}!function(t){di(t?1:0)}(o.track),Ti(f)}function mi(){vi=null,fi=null,hi.forEach((function(t){t.called=!1}))}function yi(t,e,n){void 0===e&&(e=!0),void 0===n&&(n=!1);var a=o.lean?0:1,r=!1;fi&&(a||!1===e)&&(t(fi,!o.lean),r=!0),!n&&r||hi.push({callback:t,wait:e,recall:n,called:r})}function bi(){return fi?[fi.userId,fi.sessionId,fi.pageNum].join("."):""}function wi(t){if(void 0===t&&(t=!0),!t)return o.track=!1,Ci("_clsk","",-Number.MAX_VALUE),Ci("_clck","",-Number.MAX_VALUE),No(),void window.setTimeout(Mo,250);to()&&(o.track=!0,Ti(xi(),1),Ei(),di(2))}function ki(){Ci("_clsk","",0)}function Si(){!function(t){if(hi.length>0)for(var e=0;e<hi.length;e++){var n=hi[e];!n.callback||n.called||n.wait&&!t||(n.callback(fi,!o.lean),n.called=!0,n.recall||(hi.splice(e,1),e--))}}(o.lean?0:1)}function Ei(){if(fi){var t=Math.round(Date.now()),e=o.upload&&"string"==typeof o.upload?o.upload.replace("https://",""):"",n=o.lean?0:1;Ci("_clsk",[fi.sessionId,t,fi.pageNum,n,e].join("|"),1)}}function Oi(t,e){try{return!!t[e]}catch(t){return!1}}function Ti(t,e){void 0===e&&(e=null),e=null===e?t.consent:e;var n=Math.ceil((Date.now()+31536e6)/864e5),a=0===t.dob?null===o.dob?0:o.dob:t.dob;(null===t.expiry||Math.abs(n-t.expiry)>=1||t.consent!==e||t.dob!==a)&&Ci("_clck",[fi.userId,2,n.toString(36),e,a].join("|"),365)}function Mi(){var t=Math.floor(Math.random()*Math.pow(2,32));return window&&window.crypto&&window.crypto.getRandomValues&&Uint32Array&&(t=window.crypto.getRandomValues(new Uint32Array(1))[0]),t.toString(36)}function Ni(t,e){return void 0===e&&(e=10),parseInt(t,e)}function xi(){var t={id:Mi(),version:0,expiry:null,consent:0,dob:0},e=_i("_clck",!o.includeSubdomains);if(e&&e.length>0){for(var n=e.split("|"),a=0,r=0,i=document.cookie.split(";");r<i.length;r++){a+="_clck"===i[r].split("=")[0].trim()?1:0}if(1===n.length||a>1){var u="".concat(";").concat("expires=").concat(new Date(0).toUTCString()).concat(";path=/");document.cookie="".concat("_clck","=").concat(u),document.cookie="".concat("_clsk","=").concat(u)}n.length>1&&(t.version=Ni(n[1])),n.length>2&&(t.expiry=Ni(n[2],36)),n.length>3&&1===Ni(n[3])&&(t.consent=1),n.length>4&&Ni(n[1])>1&&(t.dob=Ni(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function _i(t,e){var n;if(void 0===e&&(e=!1),Oi(document,"cookie")){var a=document.cookie.split(";");if(a)for(var r=0;r<a.length;r++){var i=a[r].split("=");if(i.length>1&&i[0]&&i[0].trim()===t){for(var o=Ii(i[1]),u=o[0],c=o[1];u;)u=(n=Ii(c))[0],c=n[1];return e?c.endsWith("".concat("~","1"))?c.substring(0,c.length-2):null:c}}}return null}function Ii(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Ci(t,e,n){if((o.track||""==e)&&(navigator&&navigator.cookieEnabled||Oi(document,"cookie"))){var a=function(t){return encodeURIComponent(t)}(e),r=new Date;r.setDate(r.getDate()+n);var i=r?"expires="+r.toUTCString():"",u="".concat(t,"=").concat(a).concat(";").concat(i).concat(";path=/");try{if(null===vi){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(vi=".".concat(c[s]).concat(vi||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(vi),_i(t)===e))return;vi=""}}catch(t){vi=""}document.cookie=vi?"".concat(u).concat(";").concat("domain=").concat(vi):u}}var Di,ji=null;function Ai(){var t=fi;ji={version:l,sequence:0,start:0,duration:0,projectId:t.projectId,userId:t.userId,sessionId:t.sessionId,pageNum:t.pageNum,upload:0,end:0,applicationPlatform:0,url:""}}function Ri(){ji=null}function Xi(t){return ji.start=ji.start+ji.duration,ji.duration=s()-ji.start,ji.sequence++,ji.upload=t&&"sendBeacon"in navigator?1:0,ji.end=t?1:0,ji.applicationPlatform=0,ji.url=b(location.href,!1,!0),[ji.version,ji.sequence,ji.start,ji.duration,ji.projectId,ji.userId,ji.sessionId,ji.pageNum,ji.upload,ji.end,ji.applicationPlatform,ji.url]}function Yi(){Di=[]}function Li(t){if(Di&&-1===Di.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:ji.version,p:ji.projectId,u:ji.userId,s:ji.sessionId,n:ji.pageNum};t.message&&(n.m=t.message),t.stack&&(n.e=t.stack);var a=new XMLHttpRequest;a.open("POST",e,!0),a.send(JSON.stringify(n)),Di.push(t.message)}}return t}function Pi(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw Li(t)}var n=performance.now()-e;z(4,n),n>30&&(P(7),H(6,n),jr(9,0,"".concat(t.dn||t.name,"-").concat(n)))}}var zi=[];function Hi(t,e,n,a){void 0===a&&(a=!1),n=Pi(n);try{t[u("addEventListener")](e,n,a),zi.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function Wi(){for(var t=0,e=zi;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}zi=[]}var qi=null,Ui=null,Fi=null,Vi=0;function Bi(){return!(Vi++>20)||(jr(4,0),!1)}function Ji(){Ji.dn=1,Vi=0,Fi!==Ki()&&(No(),window.setTimeout(Gi,250))}function Gi(){Mo(),H(29,1)}function Ki(){return location.href?location.href.replace(location.hash,""):location.href}var Zi=!1;function Qi(){Zi=!0,c=performance.now()+performance.timeOrigin,ge(),Wi(),Yi(),Fi=Ki(),Vi=0,Hi(window,"popstate",Ji),null===qi&&(qi=history.pushState,history.pushState=function(){qi.apply(this,arguments),to()&&Bi()&&Ji()}),null===Ui&&(Ui=history.replaceState,history.replaceState=function(){Ui.apply(this,arguments),to()&&Bi()&&Ji()})}function $i(){Fi=null,Vi=0,Yi(),Wi(),ge(),c=0,Zi=!1}function to(){return Zi}function eo(){eo.dn=2,Mo(),R("clarity","restart")}var no=Object.freeze({__proto__:null,start:function t(){t.dn=3,function(){Ot=[],H(26,navigator.webdriver?1:0);try{H(31,window.top==window.self||window.top==window?1:2)}catch(t){H(31,0)}}(),Hi(window,"error",_r),xr={},Dr={}},stop:function(){Dr={}}});function ao(){return rt(this,void 0,void 0,(function(){var t,e;return it(this,(function(n){switch(n.label){case 0:return t=s(),we(e={id:bi(),cost:3}),[4,Yn(document,e,0,t)];case 1:return n.sent(),Oa(document,t),[4,Ha(5,e,t)];case 2:return n.sent(),ke(e),[2]}}))}))}var ro=Object.freeze({__proto__:null,hashText:te,start:function t(){t.dn=20,Ne(),xe(),ar(),Ka=null,Va=new WeakMap,Ba={},Ja=[],Ga=!!window.IntersectionObserver,Ft(),o.delayDom?Hi(window,"load",(function(){Qn()})):Qn(),me(ao,1).then((function(){Pi(xe)(),Pi($a)(),Pi(bn)()})),window.CSSStyleSheet&&CSSStyleSheet.prototype&&(null===ma&&(ma=CSSStyleSheet.prototype.replace,CSSStyleSheet.prototype.replace=function(){return to()&&(H(36,1),this[wa]===fi.pageNum&&Ma(s(),this[ba],1,arguments[0])),ma.apply(this,arguments)}),null===ya&&(ya=CSSStyleSheet.prototype.replaceSync,CSSStyleSheet.prototype.replaceSync=function(){return to()&&(H(36,1),this[wa]===fi.pageNum&&Ma(s(),this[ba],2,arguments[0])),ya.apply(this,arguments)})),function(){if(window.Animation&&window.Animation.prototype&&window.KeyframeEffect&&window.KeyframeEffect.prototype&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(Ya(),Pa(_a,"play"),Pa(Ia,"pause"),Pa(Ca,"commitStyles"),Pa(Da,"cancel"),Pa(ja,"finish"),null===xa&&(xa=Element.prototype.animate,Element.prototype.animate=function(){var t=xa.apply(this,arguments);return za(t,"play"),t}),document.getAnimations))for(var t=0,e=document.getAnimations();t<e.length;t++){var n=e[t];"finished"===n.playState?za(n,"finish"):"paused"===n.playState||"idle"===n.playState?za(n,"pause"):"running"===n.playState&&za(n,"play")}}()},stop:function(){ar(),Va=null,Ba={},Ja=[],Ka&&(Ka.disconnect(),Ka=null),Ga=!1,Vt(),function(){for(var t=0,e=Ln;t<e.length;t++){var n=e[t];n&&n.disconnect()}Ln=[],Kn={},Pn=[],zn=[],Vn=[],Gn=0,Bn=null,Zn=0}(),Ne(),ka={},Sa={},Ea=[],Ta(),Ya()}});var io=null;function oo(){io=null}function uo(t){io={fetchStart:Math.round(t.fetchStart),connectStart:Math.round(t.connectStart),connectEnd:Math.round(t.connectEnd),requestStart:Math.round(t.requestStart),responseStart:Math.round(t.responseStart),responseEnd:Math.round(t.responseEnd),domInteractive:Math.round(t.domInteractive),domComplete:Math.round(t.domComplete),loadEventStart:Math.round(t.loadEventStart),loadEventEnd:Math.round(t.loadEventEnd),redirectCount:Math.round(t.redirectCount),size:t.transferSize?t.transferSize:0,type:t.type,protocol:t.nextHopProtocol,encodedSize:t.encodedBodySize?t.encodedBodySize:0,decodedSize:t.decodedBodySize?t.decodedBodySize:0},function(t){rt(this,void 0,void 0,(function(){var e,n;return it(this,(function(a){return e=s(),n=[e,t],29===t&&(n.push(io.fetchStart),n.push(io.connectStart),n.push(io.connectEnd),n.push(io.requestStart),n.push(io.responseStart),n.push(io.responseEnd),n.push(io.domInteractive),n.push(io.domComplete),n.push(io.loadEventStart),n.push(io.loadEventEnd),n.push(io.redirectCount),n.push(io.size),n.push(io.type),n.push(io.protocol),n.push(io.encodedSize),n.push(io.decodedSize),oo(),kr(n)),[2]}))}))}(29)}var co,so=0,lo=1/0,fo=0,ho=0,po=[],vo=new Map,go=function(){return so||0},mo=function(){if(!po.length)return-1;var t=Math.min(po.length-1,Math.floor((go()-ho)/50));return po[t].latency},yo=function(){ho=go(),po.length=0,vo.clear()},bo=function(t){if(t.interactionId&&!(t.duration<40)){!function(t){"interactionCount"in performance?so=performance.interactionCount:t.interactionId&&(lo=Math.min(lo,t.interactionId),fo=Math.max(fo,t.interactionId),so=fo?(fo-lo)/7+1:0)}(t);var e=po[po.length-1],n=vo.get(t.interactionId);if(n||po.length<10||t.duration>(null==e?void 0:e.latency)){if(n)t.duration>n.latency&&(n.latency=t.duration);else{var a={id:t.interactionId,latency:t.duration};vo.set(a.id,a),po.push(a)}po.sort((function(t,e){return e.latency-t.latency})),po.length>10&&po.splice(10).forEach((function(t){return vo.delete(t.id)}))}}},wo=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint","event"];function ko(){ko.dn=26;try{co&&co.disconnect(),co=new PerformanceObserver(Pi(So));for(var t=0,e=wo;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&z(9,0),co.observe({type:n,buffered:!0}))}}catch(t){jr(3,1)}}function So(t){So.dn=27,function(t){for(var e=(!("visibilityState"in document)||"visible"===document.visibilityState),n=0;n<t.length;n++){var a=t[n];switch(a.entryType){case"navigation":uo(a);break;case"resource":var r=a.name;ci(4,Eo(r)),r!==o.upload&&r!==o.fallback||H(28,a.duration);break;case"longtask":P(7);break;case"first-input":e&&H(10,a.processingStart-a.startTime);break;case"event":e&&"PerformanceEventTiming"in window&&"interactionId"in PerformanceEventTiming.prototype&&(bo(a),ci(37,mo().toString()));break;case"layout-shift":e&&!a.hadRecentInput&&z(9,1e3*a.value);break;case"largest-contentful-paint":e&&H(8,a.startTime)}}}(t.getEntries())}function Eo(t){var e=document.createElement("a");return e.href=t,e.host}var Oo=Object.freeze({__proto__:null,start:function t(){t.dn=25,oo(),function(){navigator&&"connection"in navigator&&ci(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?Hi(window,"load",W.bind(this,ko,0)):ko():jr(3,0)}()},stop:function(){co&&co.disconnect(),co=null,yo(),oo()}}),To=[no,ro,Xn,Oo];function Mo(t){void 0===t&&(t=null),function(){try{var t=navigator&&"globalPrivacyControl"in navigator&&1==navigator.globalPrivacyControl;return!1===Zi&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap&&!t}catch(t){return!1}}()&&(!function(t){if(null===t||Zi)return!1;for(var e in t)e in o&&(o[e]=t[e])}(t),Qi(),wt(),To.forEach((function(t){return Pi(t.start)()})),null===t&&Co())}function No(){to()&&(To.slice().reverse().forEach((function(t){return Pi(t.stop)()})),kt(),$i(),void 0!==_o&&(_o[Io]=function(){(_o[Io].q=_o[Io].q||[]).push(arguments),"start"===arguments[0]&&_o[Io].q.unshift(_o[Io].q.pop())&&Co()}))}var xo=Object.freeze({__proto__:null,consent:wi,event:R,hashText:te,identify:ct,metadata:yi,pause:function(){to()&&(R("clarity","pause"),null===pe&&(pe=new Promise((function(t){ve=t}))))},resume:function(){to()&&(pe&&(ve(),pe=null,null===he&&ye()),R("clarity","resume"))},set:ut,signal:function(t){mt=t},start:Mo,stop:No,upgrade:nt,version:l}),_o=window,Io="clarity";function Co(){if(void 0!==_o){if(_o[Io]&&_o[Io].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=_o[Io]&&_o[Io].q||[];for(_o[Io]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return xo[t].apply(xo,e)},_o[Io].v=l;t.length>0;)_o[Io].apply(_o,t.shift())}}Co()}();
|
|
1
|
+
!function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return wr},get start(){return br},get stop(){return kr},get track(){return pr}}),e=Object.freeze({__proto__:null,get clone(){return Wr},get compute(){return qr},get data(){return Ar},get keys(){return Rr},get reset(){return Ur},get start(){return zr},get stop(){return Vr},get trigger(){return Hr},get update(){return Fr}}),n=Object.freeze({__proto__:null,get check(){return Qr},get compute(){return ti},get data(){return jr},get start(){return Zr},get stop(){return ei},get trigger(){return $r}}),a=Object.freeze({__proto__:null,get compute(){return ci},get data(){return ni},get log(){return ui},get reset(){return si},get start(){return ii},get stop(){return oi},get updates(){return ai}}),r=Object.freeze({__proto__:null,get callback(){return ki},get callbacks(){return fi},get clear(){return wi},get consent(){return bi},get data(){return di},get electron(){return hi},get id(){return yi},get metadata(){return mi},get save(){return Si},get shortid(){return Ti},get start(){return vi},get stop(){return gi}}),i=Object.freeze({__proto__:null,get data(){return Di},get envelope(){return Ri},get start(){return ji},get stop(){return Ai}}),o={projectId:null,delay:1e3,lean:!1,track:!0,content:!0,drop:[],mask:[],unmask:[],regions:[],cookies:[],fraud:!0,checksum:[],report:null,upload:null,fallback:null,upgrade:null,action:null,dob:null,delayDom:!1,throttleDom:!0,conversions:!1,includeSubdomains:!0,throttleMutations:!1,dropMutations:!1,criticalMs:200,discard:[]};function u(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var c=0;function s(t){void 0===t&&(t=null);var e=t&&t.timeStamp>0?t.timeStamp:performance.now(),n=t&&t.view?t.view.performance.timeOrigin:performance.timeOrigin;return Math.max(Math.round(e+n-c),0)}var l="0.7.68";function d(t,e){void 0===e&&(e=null);for(var n,a=5381,r=a,i=0;i<t.length;i+=2){if(a=(a<<5)+a^t.charCodeAt(i),i+1<t.length)r=(r<<5)+r^t.charCodeAt(i+1)}return n=Math.abs(a+11579*r),(e?n%Math.pow(2,e):n).toString(36)}var f=/\S/gi,h=255,p=!0,v=null,g=null,m=null;function y(t,e,n,a,r){if(void 0===a&&(a=!1),t){if("input"==e&&("checkbox"===r||"radio"===r))return t;switch(n){case 0:return t;case 1:switch(e){case"*T":case"value":case"placeholder":case"click":return function(t){var e=-1,n=0,a=!1,r=!1,i=!1,o=null;O();for(var u=0;u<t.length;u++){var c=t.charCodeAt(u);if(a=a||c>=48&&c<=57,r=r||64===c,i=9===c||10===c||13===c||32===c,0===u||u===t.length-1||i){if(a||r){null===o&&(o=t.split(""));var s=t.substring(e+1,i?u:u+1);s=p&&null!==m?s.match(m)?s:S(s,"▪","▫"):k(s),o.splice(e+1-n,s.length,s),n+=s.length-1}i&&(a=!1,r=!1,e=u)}}return o?o.join(""):t}(t);case"input":case"change":return E(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?w(t):k(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return E(t);case"placeholder":return k(t)}break;case 4:switch(e){case"*T":case"data-":return a?w(t):k(t);case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":return""}break;case 5:switch(e){case"*T":case"data-":return S(t,"▪","▫");case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":case"src":case"srcset":case"alt":case"title":return""}}}return t}function b(t,e,n){void 0===e&&(e=!1),void 0===n&&(n=!1);var a=t;if(e)a="".concat("https://").concat("Electron");else{var r=o.drop;if(r&&r.length>0&&t&&t.indexOf("?")>0){var i=t.split("?"),u=i[0],c=i[1];a=u+"?"+c.split("&").map((function(t){return r.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}}return n&&(a=a.substring(0,h)),a}function w(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),r=t.substr(0,a),i=t.substr(a+e.length);return"".concat(r).concat(e.length.toString(36)).concat(i)}return t}function k(t){return t.replace(f,"•")}function S(t,e,n){return O(),t?t.replace(g,e).replace(v,n):t}function E(t){for(var e=5*(Math.floor(t.length/5)+1),n="",a=0;a<e;a++)n+=a>0&&a%5==0?" ":"•";return n}function O(){if(p&&null===v)try{v=new RegExp("\\p{N}","gu"),g=new RegExp("\\p{L}","gu"),m=new RegExp("\\p{Sc}","gu")}catch(t){p=!1}}var T=null,M=null,N=!1;function x(){N&&(T={time:s(),event:4,data:{visible:M.visible,docWidth:M.docWidth,docHeight:M.docHeight,screenWidth:M.screenWidth,screenHeight:M.screenHeight,scrollX:M.scrollX,scrollY:M.scrollY,pointerX:M.pointerX,pointerY:M.pointerY,activityTime:M.activityTime,scrollTime:M.scrollTime,pointerTime:M.pointerTime,moveX:M.moveX,moveY:M.moveY,moveTime:M.moveTime,downX:M.downX,downY:M.downY,downTime:M.downTime}}),M=M||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0,scrollTime:0,pointerTime:0,moveX:0,moveY:0,moveTime:0,downX:0,downY:0,downTime:0}}function _(t,e,n,a){switch(t){case 8:M.docWidth=e,M.docHeight=n;break;case 11:M.screenWidth=e,M.screenHeight=n;break;case 10:M.scrollX=e,M.scrollY=n,M.scrollTime=a;break;case 12:M.moveX=e,M.moveY=n,M.moveTime=a,M.pointerX=e,M.pointerY=n,M.pointerTime=a;break;case 13:M.downX=e,M.downY=n,M.downTime=a,M.pointerX=e,M.pointerY=n,M.pointerTime=a;break;default:M.pointerX=e,M.pointerY=n,M.pointerTime=a}N=!0}function I(t){M.activityTime=t}function C(t,e){M.visible="visible"===e?1:0,M.visible||I(t),N=!0}function D(){N&&Kr(4)}var j=Object.freeze({__proto__:null,activity:I,compute:D,reset:x,start:function(){N=!1,x()},get state(){return T},stop:function(){x()},track:_,visibility:C}),A=null;function R(t,e){$i()&&t&&"string"==typeof t&&t.length<255&&(A=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},Kr(24))}var X,Y=null,L=null;function P(t){t in Y||(Y[t]=0),t in L||(L[t]=0),Y[t]++,L[t]++}function z(t,e){null!==e&&(t in Y||(Y[t]=0),t in L||(L[t]=0),Y[t]+=e,L[t]+=e)}function H(t,e){null!==e&&!1===isNaN(e)&&(t in Y||(Y[t]=0),(e>Y[t]||0===Y[t])&&(L[t]=e,Y[t]=e))}function W(t,e,n){return window.setTimeout(Li(t),e,n)}function q(t){return window.clearTimeout(t)}var U=0,F=0,V=null;function B(){V&&q(V),V=W(J,F),U=s()}function J(){var t=s();X={gap:t-U},Kr(25),X.gap<3e5?V=W(J,F):Ki&&(R("clarity","suspend"),Mo(),["mousemove","touchstart"].forEach((function(t){return zi(document,t,to)})),["resize","scroll","pageshow"].forEach((function(t){return zi(window,t,to)})))}var G=Object.freeze({__proto__:null,get data(){return X},reset:B,start:function(){F=6e4,U=0},stop:function(){q(V),U=0,F=0}}),K=null;function Z(t,e){if(t in K){var n=K[t],a=n[n.length-1];e-a[0]>100?K[t].push([e,0]):a[1]=e-a[0]}else K[t]=[[e,0]]}function Q(){Kr(36)}function $(){K={}}var tt=Object.freeze({__proto__:null,compute:Q,get data(){return K},reset:$,start:function(){K={}},stop:function(){K={}},track:Z}),et=null;function nt(t){$i()&&o.lean&&(o.lean=!1,et={key:t},ki(),Si(),o.upgrade&&o.upgrade(t),Kr(3))}var at=Object.freeze({__proto__:null,get data(){return et},start:function(){!o.lean&&o.upgrade&&o.upgrade("Config"),et=null},stop:function(){et=null},upgrade:nt});function rt(t,e,n,a){return new(n||(n=Promise))((function(r,i){function o(t){try{c(a.next(t))}catch(t){i(t)}}function u(t){try{c(a.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,u)}c((a=a.apply(t,e||[])).next())}))}function it(t,e){var n,a,r,i,o={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function u(u){return function(c){return function(u){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,u[0]&&(o=0)),o;)try{if(n=1,a&&(r=2&u[0]?a.return:u[0]?a.throw||((r=a.return)&&r.call(a),0):a.next)&&!(r=r.call(a,u[1])).done)return r;switch(a=0,r&&(u=[2&u[0],r.value]),u[0]){case 0:case 1:r=u;break;case 4:return o.label++,{value:u[1],done:!1};case 5:o.label++,a=u[1],u=[0];continue;case 7:u=o.ops.pop(),o.trys.pop();continue;default:if(!(r=o.trys,(r=r.length>0&&r[r.length-1])||6!==u[0]&&2!==u[0])){o=0;continue}if(3===u[0]&&(!r||u[1]>r[0]&&u[1]<r[3])){o.label=u[1];break}if(6===u[0]&&o.label<r[1]){o.label=r[1],r=u;break}if(r&&o.label<r[2]){o.label=r[2],o.ops.push(u);break}r[2]&&o.ops.pop(),o.trys.pop();continue}u=e.call(t,o)}catch(t){u=[6,t],a=0}finally{n=r=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,c])}}}var ot=null;function ut(t,e){st(t,"string"==typeof e?[e]:e)}function ct(t,e,n,a){return void 0===e&&(e=null),void 0===n&&(n=null),void 0===a&&(a=null),rt(this,void 0,void 0,(function(){var r,i;return it(this,(function(o){switch(o.label){case 0:return i={},[4,ft(t)];case 1:return i.userId=o.sent(),i.userHint=a||((u=t)&&u.length>=5?"".concat(u.substring(0,2)).concat(S(u.substring(2),"*","*")):S(u,"*","*")),st("userId",[(r=i).userId]),st("userHint",[r.userHint]),st("userType",[ht(t)]),e&&(st("sessionId",[e]),r.sessionId=e),n&&(st("pageId",[n]),r.pageId=n),[2,r]}var u}))}))}function st(t,e){if($i()&&t&&e&&"string"==typeof t&&t.length<255){for(var n=(t in ot?ot[t]:[]),a=0;a<e.length;a++)"string"==typeof e[a]&&e[a].length<255&&n.push(e[a]);ot[t]=n}}function lt(){Kr(34)}function dt(){ot={}}function ft(t){return rt(this,void 0,void 0,(function(){var e;return it(this,(function(n){switch(n.label){case 0:return n.trys.push([0,4,,5]),crypto&&t?[4,crypto.subtle.digest("SHA-256",(new TextEncoder).encode(t))]:[3,2];case 1:return e=n.sent(),[2,Array.prototype.map.call(new Uint8Array(e),(function(t){return("00"+t.toString(16)).slice(-2)})).join("")];case 2:return[2,""];case 3:return[3,5];case 4:return n.sent(),[2,""];case 5:return[2]}}))}))}function ht(t){return t&&t.indexOf("@")>0?"email":"string"}var pt="CompressionStream"in window;function vt(t){return rt(this,void 0,void 0,(function(){var e,n;return it(this,(function(a){switch(a.label){case 0:return a.trys.push([0,3,,4]),pt?(e=new ReadableStream({start:function(e){return rt(this,void 0,void 0,(function(){return it(this,(function(n){return e.enqueue(t),e.close(),[2]}))}))}}).pipeThrough(new TextEncoderStream).pipeThrough(new window.CompressionStream("gzip")),n=Uint8Array.bind,[4,gt(e)]):[3,2];case 1:return[2,new(n.apply(Uint8Array,[void 0,a.sent()]))];case 2:return[3,4];case 3:return a.sent(),[3,4];case 4:return[2,null]}}))}))}function gt(t){return rt(this,void 0,void 0,(function(){var e,n,a,r,i;return it(this,(function(o){switch(o.label){case 0:e=t.getReader(),n=[],a=!1,r=[],o.label=1;case 1:return a?[3,3]:[4,e.read()];case 2:return i=o.sent(),a=i.done,r=i.value,a?[2,n]:(n.push.apply(n,r),[3,1]);case 3:return[2,n]}}))}))}var mt=null;function yt(t){try{if(!mt)return;var e=function(t){try{return JSON.parse(t)}catch(t){return[]}}(t);e.forEach((function(t){mt(t)}))}catch(t){}}var bt=[j,a,Object.freeze({__proto__:null,compute:lt,get data(){return ot},identify:ct,reset:dt,set:ut,start:function(){dt()},stop:function(){dt()}}),n,tt,r,i,t,G,at,e];function wt(){Y={},L={},P(5),bt.forEach((function(t){return Li(t.start)()}))}function kt(){bt.slice().reverse().forEach((function(t){return Li(t.stop)()})),Y={},L={}}function St(){lt(),D(),ci(),Kr(0),Q(),ti(),qr()}var Et,Ot=[];function Tt(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(Et={id:t,target:e,checksum:d(n,28)},Ot.indexOf(Et.checksum)<0&&(Ot.push(Et.checksum),_r(41)))}var Mt="load,active,fixed,visible,focus,show,collaps,animat".split(","),Nt={};function xt(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,r=0===e?"".concat("~").concat(t.position-1):":nth-of-type(".concat(t.position,")");switch(t.tag){case"STYLE":case"TITLE":case"LINK":case"META":case"*T":case"*D":return"";case"HTML":return"HTML";default:if(null===a)return"";a="".concat(a).concat(">"),t.tag=0===t.tag.indexOf("svg:")?t.tag.substr("svg:".length):t.tag;var i="".concat(a).concat(t.tag).concat(r),o="id"in n&&n.id.length>0?n.id:null,u="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return _t(t)})).join("."):null;if(u&&u.length>0)if(0===e){var c="".concat(function(t){for(var e=t.split(">"),n=0;n<e.length;n++){var a=e[n].indexOf("~"),r=e[n].indexOf(".");e[n]=e[n].substring(0,r>0?r:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(u);c in Nt||(Nt[c]=[]),Nt[c].indexOf(t.id)<0&&Nt[c].push(t.id),i="".concat(c).concat("~").concat(Nt[c].indexOf(t.id))}else i="".concat(a).concat(t.tag,".").concat(u).concat(r);return i=o&&_t(o)?"".concat(function(t){var e=t.lastIndexOf("*S"),n=t.lastIndexOf("".concat("iframe:").concat("HTML")),a=Math.max(e,n);if(a<0)return"";return t.substring(0,t.indexOf(">",a)+1)}(a)).concat("#").concat(o):i,i}}function _t(t){if(!t)return!1;if(Mt.some((function(e){return t.toLowerCase().indexOf(e)>=0})))return!1;for(var e=0;e<t.length;e++){var n=t.charCodeAt(e);if(n>=48&&n<=57)return!1}return!0}var It=1,Ct=null,Dt=[],jt=[],At={},Rt=[],Xt=[],Yt=[],Lt=[],Pt=[],zt=[],Ht=null,Wt=null,qt=null,Ut=null;function Ft(){Bt(),Jt(document,!0)}function Vt(){Bt()}function Bt(){It=1,Dt=[],jt=[],At={},Rt=[],Xt=[],Yt="address,password,contact".split(","),Lt="password,secret,pass,social,ssn,code,hidden".split(","),Pt="radio,checkbox,range,button,reset,submit".split(","),zt="INPUT,SELECT,TEXTAREA".split(","),Ct=new Map,Ht=new WeakMap,Wt=new WeakMap,qt=new WeakMap,Ut=new WeakMap,Nt={}}function Jt(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?Xt.push(t):Rt.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Ka(t,"".concat(e[0]))}))})),o.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return qt.set(t,3)}))})),o.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Ut.set(t,e[0])}))})),Xt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return qt.set(t,0)}))})))}catch(t){Dr(5,1,t?t.name:null)}}function Gt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Ht.get(t);return!n&&e&&(n=It++,Ht.set(t,n)),n||null}function Kt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Wt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Zt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Wt.has(e)?Wt.get(e):null}function Qt(t,e,n){if("object"==typeof t[n]&&"object"==typeof e[n]){for(var a in t[n])if(t[n][a]!==e[n][a])return!0;for(var a in e[n])if(e[n][a]!==t[n][a])return!0;return!1}return t[n]!==e[n]}function $t(t){var e=t.parent&&t.parent in Dt?Dt[t.parent]:null,n=e?e.selector:null,a=t.data,r=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=Dt[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),i={id:t.id,tag:a.tag,prefix:n,position:r,attributes:a.attributes};t.selector=[xt(i,0),xt(i,1)],t.hash=t.selector.map((function(t){return t?d(t):null})),t.hash.forEach((function(e){return At[e]=t.id}))}function te(t){var e=ee(ae(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function ee(t){return Ct.has(t)?Ct.get(t):null}function ne(t){var e=Gt(t);return e in Dt?Dt[e]:null}function ae(t){return t in At?At[t]:null}function re(t){return Ct.has(Gt(t))}function ie(){for(var t=[],e=0,n=jt;e<n.length;e++){var a=n[e];a in Dt&&t.push(Dt[a])}return jt=[],t}function oe(t){if(Ct.get(t).nodeType!==Node.DOCUMENT_FRAGMENT_NODE){Ct.delete(t);var e=t in Dt?Dt[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){oe(a[n])}}}function ue(t){for(var e=null;null===e&&t.previousSibling;)e=Gt(t.previousSibling),t=t.previousSibling;return e}function ce(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=jt.indexOf(t);r>=0&&1===e&&a?(jt.splice(r,1),jt.push(t)):-1===r&&n&&jt.push(t)}var se=Object.freeze({__proto__:null,add:function(t,e,n,a){var r=e?Gt(e):null;if(e&&r||null!=t.host||t.nodeType===Node.DOCUMENT_TYPE_NODE){var i=Gt(t,!0),u=ue(t),c=null,s=Za(t)?i:null,l=Ut.has(t)?Ut.get(t):null,d=o.content?1:3;r>=0&&Dt[r]&&((c=Dt[r]).children.push(i),s=null===s?c.region:s,l=null===l?c.metadata.fraud:l,d=c.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&(Ka(t,n.attributes["data-clarity-region"]),s=i),Ct.set(i,t),Dt[i]={id:i,parent:r,previous:u,children:[],data:n,selector:null,hash:null,region:s,metadata:{active:!0,suspend:!1,privacy:d,position:null,fraud:l,size:null}},function(t,e,n){var a,r=e.data,i=e.metadata,o=i.privacy,u=r.attributes||{},c=r.tag.toUpperCase();switch(!0){case zt.indexOf(c)>=0:var s=u.type,l="",d=["class","style"];Object.keys(u).filter((function(t){return!d.includes(t)})).forEach((function(t){return l+=u[t].toLowerCase()}));var f=Lt.some((function(t){return l.indexOf(t)>=0}));i.privacy="INPUT"===c&&Pt.indexOf(s)>=0?o:f?4:2;break;case"data-clarity-mask"in u:i.privacy=3;break;case"data-clarity-unmask"in u:i.privacy=0;break;case qt.has(t):i.privacy=qt.get(t);break;case Ut.has(t):i.privacy=2;break;case"*T"===c:var h=n&&n.data?n.data.tag:"",p=n&&n.selector?n.selector[1]:"",v=["STYLE","TITLE","svg:style"];i.privacy=v.includes(h)||Rt.some((function(t){return p.indexOf(t)>=0}))?0:o;break;case 1===o:i.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(u.class,Yt,i);break;case"IMG"===c:(null===(a=u.src)||void 0===a?void 0:a.startsWith("blob:"))&&(i.privacy=3)}}(t,Dt[i],c),$t(Dt[i]),function(t){if("IMG"===t.data.tag&&3===t.metadata.privacy){var e=ee(t.id);!e||e.complete&&0!==e.naturalWidth||zi(e,"load",(function(){e.setAttribute("data-clarity-loaded","".concat(Ti()))})),t.metadata.size=[]}}(Dt[i]),ce(i,a)}},get:ne,getId:Gt,getNode:ee,getValue:function(t){return t in Dt?Dt[t]:null},has:re,hashText:te,iframe:Zt,lookup:ae,parse:Jt,sameorigin:Kt,start:Ft,stop:Vt,update:function(t,e,n,a){var r=Gt(t),i=e?Gt(e):null,o=ue(t),u=!1,c=!1;if(r in Dt){var s=Dt[r];if(s.metadata.active=!0,s.previous!==o&&(u=!0,s.previous=o),s.parent!==i){u=!0;var l=s.parent;if(s.parent=i,null!==i&&i>=0){var d=null===o?0:Dt[i].children.indexOf(o)+1;Dt[i].children.splice(d,0,r),s.region=Za(t)?r:Dt[i].region}else!function(t,e){if(t in Dt){var n=Dt[t];n.metadata.active=!1,n.parent=null,ce(t,e),oe(t)}}(r,a);if(null!==l&&l>=0){var f=Dt[l].children.indexOf(r);f>=0&&Dt[l].children.splice(f,1)}c=!0}for(var h in n)Qt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);$t(s),ce(r,a,u,c)}},updates:ie}),le=5e3,de={},fe=[],he=null,pe=null,ve=null;function ge(){de={},fe=[],he=null,pe=null}function me(t,e){return void 0===e&&(e=0),rt(this,void 0,void 0,(function(){var n,a,r;return it(this,(function(i){for(n=0,a=fe;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){fe[1===e?"unshift":"push"]({task:t,resolve:n,id:yi()})})),null===he&&null===pe&&ye(),[2,r]}))}))}function ye(){var t=fe.shift();t&&(he=t,t.task().then((function(){t.id===yi()&&(t.resolve(),he=null,ye())})).catch((function(e){t.id===yi()&&(e&&Dr(0,1,e.name,e.message,e.stack),he=null,ye())})))}function be(t){var e=Ee(t);return e in de?performance.now()-de[e].start>de[e].yield?0:1:2}function we(t){de[Ee(t)]={start:performance.now(),calls:0,yield:30}}function ke(t){var e=performance.now(),n=Ee(t),a=e-de[n].start;z(t.cost,a),P(5),de[n].calls>0&&z(4,a)}function Se(t){return rt(this,void 0,void 0,(function(){var e,n;return it(this,(function(a){switch(a.label){case 0:return(e=Ee(t))in de?(ke(t),n=de[e],[4,Oe()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Ee(t);if(de&&de[e]){var n=de[e].calls,a=de[e].yield;we(t),de[e].calls=n+1,de[e].yield=a}}(t),a.label=2;case 2:return[2,e in de?1:2]}}))}))}function Ee(t){return"".concat(t.id,".").concat(t.cost)}function Oe(){return rt(this,void 0,void 0,(function(){return it(this,(function(t){switch(t.label){case 0:return pe?[4,pe]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Me(t,{timeout:le})}))]}}))}))}var Te,Me=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,i=a.port2;r.onmessage=function(a){var r=performance.now(),o=r-n,u=r-a.data;if(u>30&&o<e.timeout)requestAnimationFrame((function(){i.postMessage(r)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-u)}})}},requestAnimationFrame((function(){i.postMessage(performance.now())}))};function Ne(){Te=null}function xe(){xe.dn=19;var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,r=t?t.offsetWidth:null,i=e?e.clientWidth:null,o=e?e.scrollWidth:null,u=e?e.offsetWidth:null,c=Math.max(n,a,r,i,o,u),s=t?t.clientHeight:null,l=t?t.scrollHeight:null,d=t?t.offsetHeight:null,f=e?e.clientHeight:null,h=e?e.scrollHeight:null,p=e?e.offsetHeight:null,v=Math.max(s,l,d,f,h,p);null!==Te&&c===Te.width&&v===Te.height||null===c||null===v||(Te={width:c,height:v},za(8))}var _e=[];function Ie(t){Ie.dn=5;var e=ar(t);if(e){var n=e.value,a=n&&n.length>=5&&o.fraud&&-1==="password,secret,pass,social,ssn,code,hidden".indexOf(e.type)?d(n,28):"";_e.push({time:s(t),event:42,data:{target:ar(t),type:e.type,value:n,checksum:a}}),me(ir.bind(this,42))}}function Ce(){_e=[]}function De(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Zt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var je=["input","textarea","radio","button","canvas"],Ae=[];function Re(t){zi(t,"click",Xe.bind(this,9,t),!0)}function Xe(t,e,n){Xe.dn=6;var a=Zt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=De(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=ar(n),l=function(t){for(;t&&t!==document;){if(t.nodeType===Node.ELEMENT_NODE){var e=t;if("A"===e.tagName)return e}t=t.parentNode}return null}(c),d=function(t){var e=null,n=document.documentElement;if("function"==typeof t.getBoundingClientRect){var a=t.getBoundingClientRect();a&&a.width>0&&a.height>0&&(e={x:Math.floor(a.left+("pageXOffset"in window?window.pageXOffset:n.scrollLeft)),y:Math.floor(a.top+("pageYOffset"in window?window.pageYOffset:n.scrollTop)),w:Math.floor(a.width),h:Math.floor(a.height)})}return e}(c);0===n.detail&&d&&(i=Math.round(d.x+d.w/2),o=Math.round(d.y+d.h/2));var f=d?Math.max(Math.floor((i-d.x)/d.w*32767),0):0,h=d?Math.max(Math.floor((o-d.y)/d.h*32767),0):0;if(null!==i&&null!==o){var p=function(t){var e=null,n=!1;if(t){var a=t.textContent||String(t.value||"")||t.alt;if(a){var r=a.replace(/\s+/g," ").trim();n=(e=r.substring(0,25)).length===r.length}}return{text:e,isFullText:n?1:0}}(c);Ae.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:Ye(c),context:Le(l),text:p.text,link:l?l.href:null,hash:null,trust:n.isTrusted?1:0,isFullText:p.isFullText}}),me(ir.bind(this,t))}}function Ye(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(je.indexOf(e)>=0)return 0}return 1}function Le(t){if(t&&t.hasAttribute("target"))switch(t.getAttribute("target")){case"_blank":return 1;case"_parent":return 2;case"_top":return 3}return 0}function Pe(){Ae=[]}var ze=[];function He(t,e){He.dn=7,ze.push({time:s(e),event:38,data:{target:ar(e),action:t}}),me(ir.bind(this,38))}function We(){ze=[]}var qe=null,Ue=[];function Fe(t){Fe.dn=9;var e=ar(t),n=ne(e);if(e&&e.type&&n){var a=e.value,r=e.type;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var i={target:e,value:a,type:r};Ue.length>0&&Ue[Ue.length-1].data.target===i.target&&Ue.pop(),Ue.push({time:s(t),event:27,data:i}),q(qe),qe=W(Ve,1e3,27)}}function Ve(t){me(ir.bind(this,t))}function Be(){Ue=[]}var Je,Ge=[],Ke=null,Ze=!1,Qe=0,$e=new Set;function tn(t,e,n){tn.dn=10;var a=Zt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=De(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&nn({time:s(n),event:t,data:{target:ar(n),x:i,y:o}})}function en(t,e,n){en.dn=11;var a=Zt(e),r=a?a.contentDocument.documentElement:document.documentElement,i=n.changedTouches,o=s(n);if(i)for(var u=0;u<i.length;u++){var c=i[u],l="clientX"in c?Math.round(c.clientX+r.scrollLeft):null,d="clientY"in c?Math.round(c.clientY+r.scrollTop):null;l=l&&a?l+Math.round(a.offsetLeft):l,d=d&&a?d+Math.round(a.offsetTop):d;var f="identifier"in c?c.identifier:void 0;switch(t){case 17:0===$e.size&&(Ze=!0,Qe=f),$e.add(f);break;case 18:case 20:$e.delete(f)}var h=Ze&&Qe===f;null!==l&&null!==d&&nn({time:o,event:t,data:{target:ar(n),x:l,y:d,id:f,isPrimary:h}}),20!==t&&18!==t||Qe===f&&(Ze=!1)}}function nn(t){switch(t.event){case 12:case 15:case 19:var e=Ge.length,n=e>1?Ge[e-2]:null;n&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y,r=Math.sqrt(n*n+a*a),i=e.time-t.time,o=e.data.target===t.data.target;return e.event===t.event&&o&&r<20&&i<25}(n,t)&&Ge.pop(),Ge.push(t),q(Ke),Ke=W(an,500,t.event);break;default:Ge.push(t),an(t.event)}}function an(t){me(ir.bind(this,t))}function rn(){Ge=[]}var on=null,un=!1;function cn(){cn.dn=12;var t=document.documentElement;Je={width:t&&"clientWidth"in t?Math.min(t.clientWidth,window.innerWidth):window.innerWidth,height:t&&"clientHeight"in t?Math.min(t.clientHeight,window.innerHeight):window.innerHeight},un?(q(on),on=W(sn,500,11)):(ir(11),un=!0)}function sn(t){me(ir.bind(this,t))}function ln(){Je=null,q(on)}var dn=[],fn=null,hn=null,pn=null;function vn(t){void 0===t&&(t=null),vn.dn=13;var e=window,n=document.documentElement,a=t?ar(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Zt(a);e=r?r.contentWindow:e,a=n=a.documentElement}var i=a===n&&"pageXOffset"in e?Math.round(e.pageXOffset):Math.round(a.scrollLeft),o=a===n&&"pageYOffset"in e?Math.round(e.pageYOffset):Math.round(a.scrollTop),u=window.innerWidth,c=window.innerHeight,l=u/3,d=u>c?.15*c:.2*c,f=c-d,h=gn(l,d),p=gn(l,f),v={time:s(t),event:10,data:{target:a,x:i,y:o,top:h,bottom:p}};if(null===t&&0===i&&0===o||null===i||null===o)return fn=h,void(hn=p);var g=dn.length,m=g>1?dn[g-2]:null;m&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y;return n*n+a*a<400&&e.time-t.time<25}(m,v)&&dn.pop(),dn.push(v),q(pn),pn=W(mn,500,10)}function gn(t,e){var n,a,r;return"caretPositionFromPoint"in document?r=null===(n=document.caretPositionFromPoint(t,e))||void 0===n?void 0:n.offsetNode:"caretRangeFromPoint"in document&&(r=null===(a=document.caretRangeFromPoint(t,e))||void 0===a?void 0:a.startContainer),r||(r=document.elementFromPoint(t,e)),r&&r.nodeType===Node.TEXT_NODE&&(r=r.parentNode),r}function mn(t){me(ir.bind(this,t))}function yn(){var t,e;if(yn.dn=14,fn){var n=rr(fn,null);ui(31,null===(t=null==n?void 0:n.hash)||void 0===t?void 0:t.join("."))}if(hn){var a=rr(hn,null);ui(32,null===(e=null==a?void 0:a.hash)||void 0===e?void 0:e.join("."))}}var bn=null,wn=null,kn=null;function Sn(t){Sn.dn=15;var e=(t.nodeType===Node.DOCUMENT_NODE?t:document).getSelection();if(null!==e&&!(null===e.anchorNode&&null===e.focusNode||e.anchorNode===e.focusNode&&e.anchorOffset===e.focusOffset)){var n=bn.start?bn.start:null;null!==wn&&null!==bn.start&&n!==e.anchorNode&&(q(kn),En(21)),bn={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},wn=e,q(kn),kn=W(En,500,21)}}function En(t){me(ir.bind(this,t))}function On(){wn=null,bn={start:0,startOffset:0,end:0,endOffset:0}}var Tn,Mn,Nn=[];function xn(t){xn.dn=16,Nn.push({time:s(t),event:39,data:{target:ar(t)}}),me(ir.bind(this,39))}function _n(){Nn=[]}function In(t){In.dn=17,Tn={name:t.type,persisted:t.persisted?1:0},ir(26,s(t)),Mo()}function Cn(){Tn=null}function Dn(t){void 0===t&&(t=null),Dn.dn=18,Mn={visible:"visibilityState"in document?document.visibilityState:"default"},ir(28,s(t))}function jn(){Mn=null}function An(t){!function(t){var e=Zt(t);zi(e?e.contentWindow:t===document?window:t,"scroll",vn,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(Re(t),function(t){zi(t,"cut",He.bind(this,0),!0),zi(t,"copy",He.bind(this,1),!0),zi(t,"paste",He.bind(this,2),!0)}(t),function(t){zi(t,"mousedown",tn.bind(this,13,t),!0),zi(t,"mouseup",tn.bind(this,14,t),!0),zi(t,"mousemove",tn.bind(this,12,t),!0),zi(t,"wheel",tn.bind(this,15,t),!0),zi(t,"dblclick",tn.bind(this,16,t),!0),zi(t,"touchstart",en.bind(this,17,t),!0),zi(t,"touchend",en.bind(this,18,t),!0),zi(t,"touchmove",en.bind(this,19,t),!0),zi(t,"touchcancel",en.bind(this,20,t),!0)}(t),function(t){zi(t,"input",Fe,!0)}(t),function(t){zi(t,"selectstart",Sn.bind(this,t),!0),zi(t,"selectionchange",Sn.bind(this,t),!0)}(t),function(t){zi(t,"change",Ie,!0)}(t),function(t){zi(t,"submit",xn,!0)}(t))}var Rn=Object.freeze({__proto__:null,observe:An,start:function t(){t.dn=8,or=[],cr(),Pe(),We(),rn(),Be(),un=!1,zi(window,"resize",cn),cn(),zi(document,"visibilitychange",Dn),Dn(),dn=[],vn(),On(),Ce(),_n(),zi(window,"pagehide",In)},stop:function(){or=[],cr(),Pe(),We(),q(Ke),Ge.length>0&&an(Ge[Ge.length-1].event),q(qe),Be(),ln(),jn(),q(pn),dn=[],fn=null,hn=null,On(),q(kn),Ce(),_n(),Cn()}});function Xn(t,e,n,a){return rt(this,void 0,void 0,(function(){var r,i,o,u,c;return it(this,(function(s){switch(s.label){case 0:r=[t],s.label=1;case 1:if(!(r.length>0))return[3,4];for(i=r.shift(),o=i.firstChild;o;)r.push(o),o=o.nextSibling;return 0!==(u=be(e))?[3,3]:[4,Se(e)];case 2:u=s.sent(),s.label=3;case 3:return 2===u?[3,4]:((c=la(i,n,a))&&r.push(c),[3,1]);case 4:return[2]}}))}))}var Yn=[],Ln=[],Pn={},zn=null,Hn=null,Wn=null,qn=null,Un=null,Fn=[],Vn=null,Bn=null,Jn=null,Gn={},Kn=null;function Zn(){if(Zn.dn=21,Yn=[],Fn=[],Vn=null,Jn=0,Gn={},Kn=0,null===zn&&(zn=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return $i()&&aa(this.ownerNode),zn.apply(this,arguments)}),"CSSMediaRule"in window&&null===qn&&(qn=CSSMediaRule.prototype.insertRule,CSSMediaRule.prototype.insertRule=function(){return $i()&&aa(this.parentStyleSheet.ownerNode),qn.apply(this,arguments)}),null===Hn&&(Hn=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return $i()&&aa(this.ownerNode),Hn.apply(this,arguments)}),"CSSMediaRule"in window&&null===Un&&(Un=CSSMediaRule.prototype.deleteRule,CSSMediaRule.prototype.deleteRule=function(){return $i()&&aa(this.parentStyleSheet.ownerNode),Un.apply(this,arguments)}),null===Wn){Wn=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return $i()?aa(Wn.apply(this,arguments)):Wn.apply(this,arguments)}}catch(t){Wn=null}}}function Qn(t){Qn.dn=22;var e=s();Z(6,e),Ln.push({time:e,mutations:t}),me(ta,1).then((function(){W(xe),Li(Qa)()}))}function $n(t,e,n,a){return rt(this,void 0,void 0,(function(){var r,i,u;return it(this,(function(c){switch(c.label){case 0:return 0!==(r=be(t))?[3,2]:[4,Se(t)];case 1:r=c.sent(),c.label=2;case 2:if(2===r)return[2];switch(i=e.target,u=o.throttleDom?function(t,e,n,a){var r=t.target?ne(t.target.parentNode):null;if(r&&"HTML"!==r.data.tag){var i=a>Jn,u=n<Kn,c=ne(t.target),s=c&&c.selector?c.selector.join():t.target.nodeName,l=r.selector?r.selector.join():"",d=o.throttleMutations&&u&&(0===o.discard.length||o.discard.some((function(t){return s.includes(t)}))),f=[l,s,t.attributeName,ea(t.addedNodes),ea(t.removedNodes)].join();Gn[f]=f in Gn?Gn[f]:[0,n];var h=Gn[f];if(!1===i&&h[0]>=10&&na(h[2],2,e,a),h[0]=i||d?h[1]===n?h[0]:h[0]+1:1,h[1]=n,h[0]>=10||d)return h[2]=t.removedNodes,n>a+3e3?t.type:(o.dropMutations||(Pn[f]={mutation:t,timestamp:a}),"throttle")}return t.type}(e,t,n,a):e.type,u&&i&&i.ownerDocument&&Jt(i.ownerDocument),u&&i&&i.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&i.host&&Jt(i),u){case"attributes":la(i,3,a);break;case"characterData":la(i,4,a);break;case"childList":na(e.addedNodes,1,t,a),na(e.removedNodes,2,t,a)}return[2]}}))}))}function ta(){return rt(this,void 0,void 0,(function(){var t,e,n,a,r,i,o,u,c,l,d;return it(this,(function(f){switch(f.label){case 0:we(t={id:yi(),cost:3}),f.label=1;case 1:if(!(Ln.length>0))return[3,7];e=Ln.shift(),n=s(),a=0,r=e.mutations,f.label=2;case 2:return a<r.length?(i=r[a],[4,$n(t,i,n,e.time)]):[3,5];case 3:f.sent(),f.label=4;case 4:return a++,[3,2];case 5:return[4,za(6,t,e.time)];case 6:return f.sent(),[3,1];case 7:o=!1,u=0,c=Object.keys(Pn),f.label=8;case 8:return u<c.length?(l=c[u],d=Pn[l],delete Pn[l],[4,$n(t,d.mutation,s(),d.timestamp)]):[3,11];case 9:f.sent(),o=!0,f.label=10;case 10:return u++,[3,8];case 11:return Object.keys(Pn).length>0&&function(){Bn&&q(Bn);Bn=W((function(){me(ta,1)}),33)}(),0===Object.keys(Pn).length&&o?[4,za(6,t,s())]:[3,13];case 12:f.sent(),f.label=13;case 13:return function(){var t=s();Object.keys(Gn).length>1e4&&(Gn={},P(38));for(var e=0,n=Object.keys(Gn);e<n.length;e++){var a=n[e];t>Gn[a][1]+3e4&&delete Gn[a]}}(),ke(t),[2]}}))}))}function ea(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function na(t,e,n,a){return rt(this,void 0,void 0,(function(){var r,i,o,u;return it(this,(function(c){switch(c.label){case 0:r=t?t.length:0,i=0,c.label=1;case 1:return i<r?(o=t[i],1!==e?[3,2]:(Xn(o,n,e,a),[3,5])):[3,6];case 2:return 0!==(u=be(n))?[3,4]:[4,Se(n)];case 3:u=c.sent(),c.label=4;case 4:if(2===u)return[3,6];la(o,e,a),c.label=5;case 5:return i++,[3,1];case 6:return[2]}}))}))}function aa(t){return Fn.indexOf(t)<0&&Fn.push(t),Vn&&q(Vn),Vn=W((function(){!function(){for(var t=0,e=Fn;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&re(n))continue;ra(n,a?"childList":"characterData")}}Fn=[]}()}),33),t}function ra(t,e){ra.dn=23,Li(Qn)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}var ia=/[^0-9\.]/g;function oa(t){for(var e=0,n=Object.keys(t);e<n.length;e++){var a=n[e],r=t[a];if("@type"===a&&"string"==typeof r)switch(r=(r=r.toLowerCase()).indexOf("article")>=0||r.indexOf("posting")>=0?"article":r){case"article":case"recipe":ui(5,t[a]),ui(8,t.creator),ui(18,t.headline);break;case"product":ui(5,t[a]),ui(10,t.name),ui(12,t.sku),t.brand&&ui(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(H(11,ua(t.ratingValue,100)),H(18,ua(t.bestRating)),H(19,ua(t.worstRating))),H(12,ua(t.ratingCount)),H(17,ua(t.reviewCount));break;case"offer":ui(7,t.availability),ui(14,t.itemCondition),ui(13,t.priceCurrency),ui(12,t.sku),H(13,ua(t.price));break;case"brand":ui(6,t.name)}null!==r&&"object"==typeof r&&oa(r)}}function ua(t,e){if(void 0===e&&(e=1),null!==t)switch(typeof t){case"number":return Math.round(t*e);case"string":return Math.round(parseFloat(t.replace(ia,""))*e)}return null}var ca=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last","aria-label"],sa=/[\r\n]+/g;function la(t,e,n){var a,r=null;if(2===e&&!1===re(t))return r;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var i=!1===re(t)?"add":"update",o=t.parentElement?t.parentElement:null,u=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:o=u&&t.parentNode?Zt(t.parentNode):o;var c=t,s={tag:(u?"iframe:":"")+"*D",attributes:{name:c.name?c.name:"HTML",publicId:c.publicId,systemId:c.systemId}};se[i](t,o,s,e);break;case Node.DOCUMENT_NODE:t===document&&Jt(document),Ea(t,n),da(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var l=t;if(l.host){if(Jt(l),"function"===typeof l.constructor&&l.constructor.toString().indexOf("[native code]")>=0){da(l);var d={tag:"*S",attributes:{style:""}};se[i](t,l.host,d,e)}else se[i](t,l.host,{tag:"*P",attributes:{}},e);Ea(t,n)}break;case Node.TEXT_NODE:if(o=o||t.parentNode,"update"===i||o&&re(o)&&"STYLE"!==o.tagName&&"NOSCRIPT"!==o.tagName){var f={tag:"*T",value:t.nodeValue};se[i](t,o,f,e)}break;case Node.ELEMENT_NODE:var h=t,p=h.tagName,v=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var r=n[a].name;ca.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(h);switch(o=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===h.namespaceURI&&(p="svg:"+p),p){case"HTML":o=u&&o?Zt(o):o;var g={tag:(u?"iframe:":"")+p,attributes:v};se[i](t,o,g,e);break;case"SCRIPT":if("type"in v&&"application/ld+json"===v.type)try{oa(JSON.parse(h.text.replace(sa,"")))}catch(t){}break;case"NOSCRIPT":var m={tag:p,attributes:{},value:""};se[i](t,o,m,e);break;case"META":var y="property"in v?"property":"name"in v?"name":null;if(y&&"content"in v){var b=v.content;switch(v[y]){case"og:title":ui(20,b);break;case"og:type":ui(19,b);break;case"generator":ui(21,b)}}break;case"HEAD":var w={tag:p,attributes:v},k=u&&(null===(a=t.ownerDocument)||void 0===a?void 0:a.location)?t.ownerDocument.location:location;w.attributes["*B"]=k.protocol+"//"+k.host+k.pathname,se[i](t,o,w,e);break;case"BASE":var S=ne(t.parentElement);if(S){var E=document.createElement("a");E.href=v.href,S.data.attributes["*B"]=E.protocol+"//"+E.host+E.pathname}break;case"STYLE":var O={tag:p,attributes:v,value:fa(h)};se[i](t,o,O,e);break;case"IFRAME":var T=t,M={tag:p,attributes:v};Kt(T)&&(!function(t){!1===re(t)&&zi(t,"load",ra.bind(this,t,"childList"),!0)}(T),M.attributes["*O"]="true",T.contentDocument&&T.contentWindow&&"loading"!==T.contentDocument.readyState&&(r=T.contentDocument)),se[i](t,o,M,e);break;case"LINK":if(hi&&"stylesheet"===v.rel){for(var N in Object.keys(document.styleSheets)){var x=document.styleSheets[N];if(x.ownerNode==h){var _={tag:"STYLE",attributes:v,value:ha(x)};se[i](t,o,_,e);break}}break}var I={tag:p,attributes:v};se[i](t,o,I,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in v&&v.src.startsWith("data:")&&(v.src="");var C={tag:p,attributes:v};se[i](t,o,C,e);break;default:var D={tag:p,attributes:v};h.shadowRoot&&(r=h.shadowRoot),se[i](t,o,D,e)}}return r}function da(t){re(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](Li(Qn)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),Yn.push(n))}catch(t){Dr(2,0,t?t.name:null)}}(t),An(t))}function fa(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0||t.id.length>0)&&(e=ha(t.sheet)),e}function ha(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(Dr(1,1,t?t.name:null),t&&"SecurityError"!==t.name)throw t}if(null!==n)for(var a=0;a<n.length;a++)e+=n[a].cssText;return e}var pa=[],va=[],ga=null,ma=null,ya="claritySheetId",ba={},wa={},ka=[],Sa=[];function Ea(t,e){if(-1===ka.indexOf(t)&&ka.push(t),e=e||s(),null==t?void 0:t.adoptedStyleSheets){H(36,1);for(var n=[],a=0,r=t.adoptedStyleSheets;a<r.length;a++){var i=r[a];i[ya]&&-1!==Sa.indexOf(i[ya])||(i[ya]=Ti(),Sa.push(i[ya]),Ta(e,i[ya],0),Ta(e,i[ya],2,ha(i))),n.push(i[ya])}var o=Gt(t,!0);ba[o]||(ba[o]=[]),function(t,e){if(t.length!==e.length)return!1;return t.every((function(t,n){return t===e[n]}))}(n,ba[o])||(!function(t,e,n,a){va.push({time:t,event:45,data:{id:e,operation:n,newIds:a}}),za(45)}(e,t==document?-1:Gt(t),3,n),ba[o]=n,wa[o]=e)}}function Oa(){va=[],pa=[]}function Ta(t,e,n,a){pa.push({time:t,event:46,data:{id:e,operation:n,cssRules:a}}),za(46)}var Ma=[],Na=null,xa=null,_a=null,Ia=null,Ca=null,Da=null,ja="clarityAnimationId",Aa="clarityOperationCount",Ra=20;function Xa(){Ma=[]}function Ya(t,e,n,a,r,i,o){Ma.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),za(44)}function La(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){return Pa(this,e),t.apply(this,arguments)})}function Pa(t,e){if($i()){var n=t.effect,a=Gt(n.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!t[ja]){t[ja]=Ti(),t[Aa]=0;var r=n.getKeyframes(),i=n.getTiming();Ya(s(),t[ja],0,JSON.stringify(r),JSON.stringify(i),a)}if(t[Aa]++<Ra){var o=null;switch(e){case"play":o=1;break;case"pause":o=2;break;case"cancel":o=3;break;case"finish":o=4;break;case"commitStyles":o=5}o&&Ya(s(),t[ja],o)}}}}function za(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),rt(this,void 0,void 0,(function(){var a,r,i,u,c,l,d,f,h,p,v,g,m,b,w,k,S,E,O,T,M,N,x,C,D,j,A,R,X;return it(this,(function(Y){switch(Y.label){case 0:switch(a=n||s(),r=[a,t],t){case 8:return[3,1];case 7:return[3,2];case 45:case 46:return[3,3];case 44:return[3,4];case 5:case 6:return[3,5]}return[3,12];case 1:return i=Te,r.push(i.width),r.push(i.height),_(t,i.width,i.height),wr(r),[3,12];case 2:for(u=0,c=Ua;u<c.length;u++)l=c[u],(r=[l.time,7]).push(l.data.id),r.push(l.data.interaction),r.push(l.data.visibility),r.push(l.data.name),wr(r);return nr(),[3,12];case 3:for(d=0,f=va;d<f.length;d++)m=f[d],(r=[m.time,m.event]).push(m.data.id),r.push(m.data.operation),r.push(m.data.newIds),wr(r);for(h=0,p=pa;h<p.length;h++)m=p[h],(r=[m.time,m.event]).push(m.data.id),r.push(m.data.operation),r.push(m.data.cssRules),wr(r);return Oa(),[3,12];case 4:for(v=0,g=Ma;v<g.length;v++)m=g[v],(r=[m.time,m.event]).push(m.data.id),r.push(m.data.operation),r.push(m.data.keyFrames),r.push(m.data.timing),r.push(m.data.timeline),r.push(m.data.targetId),wr(r);return Xa(),[3,12];case 5:if(2===be(e))return[3,12];if(!((b=ie()).length>0))return[3,11];w=0,k=b,Y.label=6;case 6:return w<k.length?(S=k[w],0!==(E=be(e))?[3,8]:[4,Se(e)]):[3,10];case 7:E=Y.sent(),Y.label=8;case 8:if(2===E)return[3,10];for(O=S.data,T=S.metadata.active,M=S.metadata.suspend,N=S.metadata.privacy,x=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(S),C=0,D=T?["tag","attributes","value"]:["tag"];C<D.length;C++)if(O[j=D[C]])switch(j){case"tag":A=Ha(S),R=x?-1:1,r.push(S.id*R),S.parent&&T&&(r.push(S.parent),S.previous&&r.push(S.previous)),r.push(M?"*M":O[j]),A&&2===A.length&&r.push("".concat("#").concat(Wa(A[0]),".").concat(Wa(A[1])));break;case"attributes":for(X in O[j])void 0!==O[j][X]&&r.push(qa(X,O[j][X],N));break;case"value":Tt(S.metadata.fraud,S.id,O[j]),r.push(y(O[j],O.tag,N,x))}Y.label=9;case 9:return w++,[3,6];case 10:6===t&&I(a),wr(function(t){for(var e=[],n={},a=0,r=null,i=0;i<t.length;i++)if("string"==typeof t[i]){var o=t[i],u=n[o]||-1;u>=0?r?r.push(u):(r=[u],e.push(r),a++):(r=null,e.push(o),n[o]=a++)}else r=null,e.push(t[i]),a++;return e}(r),!o.lean),Y.label=11;case 11:return[3,12];case 12:return[2]}}))}))}function Ha(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=ee(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function Wa(t){return t.toString(36)}function qa(t,e,n){return"".concat(t,"=").concat(y(e,0===t.indexOf("data-")?"data-":t,n))}var Ua=[],Fa=null,Va={},Ba=[],Ja=!1,Ga=null;function Ka(t,e){!1===Fa.has(t)&&(Fa.set(t,e),(Ga=null===Ga&&Ja?new IntersectionObserver($a,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Ga)&&t&&t.nodeType===Node.ELEMENT_NODE&&Ga.observe(t))}function Za(t){return Fa&&Fa.has(t)}function Qa(){Qa.dn=24;for(var t=[],e=0,n=Ba;e<n.length;e++){var a=n[e],r=Gt(a.node);r?(a.state.data.id=r,Va[r]=a.state.data,Ua.push(a.state)):t.push(a)}Ba=t,Ua.length>0&&za(7)}function $a(t){for(var e=0,n=t;e<n.length;e++){var a=n[e],r=a.target,i=a.boundingClientRect,o=a.intersectionRect,u=a.rootBounds;if(Fa.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Gt(r):null,s=c in Va?Va[c]:{id:c,name:Fa.get(r),interaction:16,visibility:0},l=(o?o.width*o.height*1/(u.width*u.height):0)>.05||a.intersectionRatio>.8,d=(l||10==s.visibility)&&Math.abs(i.top)+u.height>i.height;tr(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Ga&&Ga.unobserve(r)}}Ua.length>0&&za(7)}function tr(t,e,n,a){var r=n>e.interaction||a>e.visibility;e.interaction=n>e.interaction?n:e.interaction,e.visibility=a>e.visibility?a:e.visibility,e.id?(e.id in Va&&r||!(e.id in Va))&&(Va[e.id]=e,Ua.push(er(e))):Ba.push({node:t,state:er(e)})}function er(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function nr(){Ua=[]}function ar(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return Jn=s()+3e3,Kn=s()+o.criticalMs,n&&n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function rr(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=ne(t);if(null!==r){var i=r.metadata;a.id=r.id,a.hash=r.hash,a.privacy=i.privacy,r.region&&function(t,e){var n=ee(t),a=t in Va?Va[t]:{id:t,visibility:0,interaction:16,name:Fa.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}tr(n,a,r,a.visibility)}(r.region,e),i.fraud&&Tt(i.fraud,r.id,n||r.data.value)}}return a}function ir(t,e){return void 0===e&&(e=null),rt(this,void 0,void 0,(function(){var n,a,r,i,o,u,c,l,d,f,h,p,v,g,m,w,k,S,E,O,T,M,N,x,I,D,j,A,R,X,Y,L,P,z,H;return it(this,(function(W){switch(n=e||s(),a=[n,t],t){case 13:case 14:case 12:case 15:case 16:case 17:case 18:case 19:case 20:for(r=0,i=Ge;r<i.length;r++)z=i[r],(o=rr(z.data.target,z.event)).id>0&&((a=[z.time,z.event]).push(o.id),a.push(z.data.x),a.push(z.data.y),void 0!==z.data.id&&(a.push(z.data.id),void 0!==z.data.isPrimary&&a.push(z.data.isPrimary.toString())),wr(a),_(z.event,z.data.x,z.data.y,z.time));rn();break;case 9:for(u=0,c=Ae;u<c.length;u++)z=c[u],l=rr(z.data.target,z.event,z.data.text),a=[z.time,z.event],d=l.hash?l.hash.join("."):"",a.push(l.id),a.push(z.data.x),a.push(z.data.y),a.push(z.data.eX),a.push(z.data.eY),a.push(z.data.button),a.push(z.data.reaction),a.push(z.data.context),a.push(y(z.data.text,"click",l.privacy)),a.push(b(z.data.link)),a.push(d),a.push(z.data.trust),a.push(z.data.isFullText),wr(a),sr(z.time,z.event,d,z.data.x,z.data.y,z.data.reaction,z.data.context);Pe();break;case 38:for(f=0,h=ze;f<h.length;f++)z=h[f],a=[z.time,z.event],(Y=rr(z.data.target,z.event)).id>0&&(a.push(Y.id),a.push(z.data.action),wr(a));We();break;case 11:p=Je,a.push(p.width),a.push(p.height),_(t,p.width,p.height),ln(),wr(a);break;case 26:v=Tn,a.push(v.name),a.push(v.persisted),Cn(),wr(a);break;case 27:for(g=0,m=Ue;g<m.length;g++)z=m[g],w=rr(z.data.target,z.event,z.data.value),(a=[z.time,z.event]).push(w.id),a.push(y(z.data.value,"input",w.privacy,!1,z.data.type)),wr(a);Be();break;case 21:(k=bn)&&(S=rr(k.start,t),E=rr(k.end,t),a.push(S.id),a.push(k.startOffset),a.push(E.id),a.push(k.endOffset),On(),wr(a));break;case 10:for(O=0,T=dn;O<T.length;O++)z=T[O],M=rr(z.data.target,z.event),N=rr(z.data.top,z.event),x=rr(z.data.bottom,z.event),I=(null==N?void 0:N.hash)?N.hash.join("."):"",D=(null==x?void 0:x.hash)?x.hash.join("."):"",M.id>0&&((a=[z.time,z.event]).push(M.id),a.push(z.data.x),a.push(z.data.y),a.push(I),a.push(D),wr(a),_(z.event,z.data.x,z.data.y,z.time));dn=[],fn=null,hn=null;break;case 42:for(j=0,A=_e;j<A.length;j++)z=A[j],a=[z.time,z.event],(Y=rr(z.data.target,z.event)).id>0&&((a=[z.time,z.event]).push(Y.id),a.push(z.data.type),a.push(y(z.data.value,"change",Y.privacy)),a.push(y(z.data.checksum,"checksum",Y.privacy)),wr(a));Ce();break;case 39:for(R=0,X=Nn;R<X.length;R++)z=X[R],a=[z.time,z.event],(Y=rr(z.data.target,z.event)).id>0&&(a.push(Y.id),wr(a));_n();break;case 22:for(L=0,P=ur;L<P.length;L++)z=P[L],(a=[z.time,z.event]).push(z.data.type),a.push(z.data.hash),a.push(z.data.x),a.push(z.data.y),a.push(z.data.reaction),a.push(z.data.context),wr(a,!1);cr();break;case 28:H=Mn,a.push(H.visible),wr(a),C(n,H.visible),jn()}return[2]}))}))}var or=[],ur=[];function cr(){ur=[]}function sr(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),or.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),_(e,a,r)}var lr,dr,fr,hr,pr,vr=0,gr=0,mr=null,yr=0;function br(){hr=!0,vr=0,gr=0,yr=0,lr=[],dr=[],fr={},pr=null}function wr(t,e){if(void 0===e&&(e=!0),hr){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:vr+=r.length;case 37:case 6:case 43:case 45:case 46:gr+=r.length,lr.push(r);break;default:dr.push(r)}P(25);var i=function(){var t=!1===o.lean&&vr>0?100:Di.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-yr>2*i&&(q(mr),mr=null),e&&null===mr&&(25!==a&&B(),mr=W(Sr,i),yr=n,Qr(gr))}}function kr(){q(mr),Sr(!0),vr=0,gr=0,yr=0,lr=[],dr=[],fr={},pr=null,hr=!1}function Sr(t){return void 0===t&&(t=!1),rt(this,void 0,void 0,(function(){var e,n,a,r,i,u,c,s;return it(this,(function(l){switch(l.label){case 0:return mr=null,(e=!1===o.lean&&gr>0&&(gr<1048576||Di.sequence>0))&&H(1,1),Qa(),function(){var t=[];ur=[];for(var e=Di.start+Di.duration,n=Math.max(e-2e3,0),a=0,r=or;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&ur.push(i),t.push(i))}or=t,ir(22)}(),St(),function(){for(var t=0,e=ka;t<e.length;t++){var n=e[t],a=n==document?-1:Gt(n),r=a in wa?wa[a]:null;Ea(document,r)}}(),n=!0===t,a=JSON.stringify(Ri(n)),r="[".concat(dr.join(),"]"),i=e?"[".concat(lr.join(),"]"):"",u=function(t){return t.p.length>0?'{"e":'.concat(t.e,',"a":').concat(t.a,',"p":').concat(t.p,"}"):'{"e":'.concat(t.e,',"a":').concat(t.a,"}")}({e:a,a:r,p:i}),n?(s=null,[3,3]):[3,1];case 1:return[4,vt(u)];case 2:s=l.sent(),l.label=3;case 3:return z(2,(c=s)?c.length:u.length),Er(u,c,Di.sequence,n),dr=[],e&&(lr=[],gr=0,vr=0),[2]}}))}))}function Er(t,e,n,a){if(void 0===a&&(a=!1),"string"==typeof o.upload){var r=o.upload,i=!1;if(a&&"sendBeacon"in navigator)try{(i=navigator.sendBeacon.bind(navigator)(r,t))&&Tr(n)}catch(t){}if(!1===i){n in fr?fr[n].attempts++:fr[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){Yi(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){Li(Or)(u,n)}),u.withCredentials=!0,e?(u.setRequestHeader("Accept","application/x-clarity-gzip"),u.send(e)):u.send(t)}}else if(o.upload){(0,o.upload)(t),Tr(n)}}function Or(t,e){var n=fr[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?$r(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),Er(n.data,null,e)):(pr={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&Kr(2),200===t.status&&t.responseText&&function(t){for(var e=t&&t.length>0?t.split("\n"):[],n=0,a=e;n<a.length;n++){var r=a[n],i=r&&r.length>0?r.split(/ (.*)/):[""];switch(i[0]){case"END":$r(6);break;case"UPGRADE":nt("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&Hr(i[1]);break;case"SIGNAL":i.length>1&&yt(i[1])}}}(t.responseText),0===t.status&&(Er(n.data,null,e,!0),$r(3)),t.status>=200&&t.status<=208&&Tr(e),delete fr[e]))}function Tr(t){1===t&&(Si(),ki())}var Mr,Nr={};function xr(t){xr.dn=4;var e=t.error||t;return e.message in Nr||(Nr[e.message]=0),Nr[e.message]++>=5||e&&e.message&&(Mr={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},_r(31)),!0}function _r(t){return rt(this,void 0,void 0,(function(){var e;return it(this,(function(n){switch(e=[s(),t],t){case 31:e.push(Mr.message),e.push(Mr.line),e.push(Mr.column),e.push(Mr.stack),e.push(b(Mr.source)),wr(e);break;case 33:Ir&&(e.push(Ir.code),e.push(Ir.name),e.push(Ir.message),e.push(Ir.stack),e.push(Ir.severity),wr(e,!1));break;case 41:Et&&(e.push(Et.id),e.push(Et.target),e.push(Et.checksum),wr(e,!1))}return[2]}))}))}var Ir,Cr={};function Dr(t,e,n,a,r){void 0===n&&(n=null),void 0===a&&(a=null),void 0===r&&(r=null);var i=n?"".concat(n,"|").concat(a):"";t in Cr&&Cr[t].indexOf(i)>=0||(Ir={code:t,name:n,message:a,stack:r,severity:e},t in Cr?Cr[t].push(i):Cr[t]=[i],_r(33))}var jr,Ar={},Rr=new Set,Xr={},Yr={},Lr={},Pr={};function zr(){Ur()}function Hr(t){try{var e=t&&t.length>0?t.split(/ (.*)/):[""],n=e[0].split(/\|(.*)/),a=parseInt(n[0]),r=n.length>1?n[1]:"",i=e.length>1?JSON.parse(e[1]):{};for(var o in Xr[a]={},Yr[a]={},Lr[a]={},Pr[a]=r,i){var u=parseInt(o),c=i[o],s=2;switch(c.startsWith("~")?s=0:c.startsWith("!")&&(s=4),s){case 0:var l=c.substring(1,c.length);Xr[a][u]=Br(l);break;case 2:Yr[a][u]=c;break;case 4:var d=c.substring(1,c.length);Lr[a][u]=d}}}catch(t){Dr(8,1,t?t.name:null)}}function Wr(t){return JSON.parse(JSON.stringify(t))}function qr(){try{for(var t in Xr){var e=parseInt(t);if(""==Pr[e]||document.querySelector(Pr[e])){var n=Xr[e];for(var a in n){var r=parseInt(a),i=(h=Jr(Wr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&Fr(e,r,i)}var o=Yr[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)Fr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=Lr[e];for(var d in l){var f=parseInt(d);Fr(e,f,te(l[f]).trim().substring(0,1e4))}}}Rr.size>0&&Kr(40)}catch(t){Dr(5,1,t?t.name:null)}var h}function Ur(){Rr.clear()}function Fr(t,e,n){var a,r=!1;t in Ar||(Ar[t]={},r=!0),a=Lr[t],0==Object.keys(a).length||e in Ar[t]&&Ar[t][e]==n||(r=!0),Ar[t][e]=n,r&&Rr.add(t)}function Vr(){Ur()}function Br(t){for(var e=[],n=t.split(".");n.length>0;){var a=n.shift(),r=a.indexOf("["),i=a.indexOf("{"),o=a.indexOf("}");e.push({name:r>0?a.substring(0,r):i>0?a.substring(0,i):a,type:r>0?1:i>0?2:3,condition:i>0?a.substring(i+1,o):null})}return e}function Jr(t,e){if(void 0===e&&(e=window),0==t.length)return e;var n,a=t.shift();if(e&&e[a.name]){var r=e[a.name];if(1!==a.type&&Gr(r,a.condition))n=Jr(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(Gr(c,a.condition)){var s=Jr(t,c);s&&i.push(s)}}n=i}return n}return null}function Gr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function Kr(t){var e=[s(),t];switch(t){case 4:var n=T;n&&((e=[n.time,n.event]).push(n.data.visible),e.push(n.data.docWidth),e.push(n.data.docHeight),e.push(n.data.screenWidth),e.push(n.data.screenHeight),e.push(n.data.scrollX),e.push(n.data.scrollY),e.push(n.data.pointerX),e.push(n.data.pointerY),e.push(n.data.activityTime),e.push(n.data.scrollTime),e.push(n.data.pointerTime),e.push(n.data.moveX),e.push(n.data.moveY),e.push(n.data.moveTime),e.push(n.data.downX),e.push(n.data.downY),e.push(n.data.downTime),wr(e,!1)),x();break;case 25:e.push(X.gap),wr(e);break;case 35:e.push(jr.check),wr(e,!1);break;case 3:e.push(et.key),wr(e);break;case 2:e.push(pr.sequence),e.push(pr.attempts),e.push(pr.status),wr(e,!1);break;case 24:A.key&&e.push(A.key),e.push(A.value),wr(e);break;case 34:var a=Object.keys(ot);if(a.length>0){for(var r=0,i=a;r<i.length;r++){var o=i[r];e.push(o),e.push(ot[o])}dt(),wr(e,!1)}break;case 0:var u=Object.keys(L);if(u.length>0){for(var c=0,l=u;c<l.length;c++){var d=l[c],f=parseInt(d,10);e.push(f),e.push(Math.round(L[d]))}L={},wr(e,!1)}break;case 1:var h=Object.keys(ai);if(h.length>0){for(var p=0,v=h;p<v.length;p++){var g=v[p];f=parseInt(g,10);e.push(f),e.push(ai[g])}si(),wr(e,!1)}break;case 36:var m=Object.keys(K);if(m.length>0){for(var y=0,b=m;y<b.length;y++){var w=b[y];f=parseInt(w,10);e.push(f),e.push([].concat.apply([],K[w]))}$(),wr(e,!1)}break;case 40:Rr.forEach((function(t){e.push(t);var n=[];for(var a in Ar[t]){var r=parseInt(a,10);n.push(r),n.push(Ar[t][a])}e.push(n)})),Ur(),wr(e,!1)}}function Zr(){jr={check:0}}function Qr(t){if(0===jr.check){var e=jr.check;e=Di.sequence>=128?1:e,e=Di.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==jr.check&&$r(e)}}function $r(t){jr.check=t,5!==t&&(wi(),Mo())}function ti(){0!==jr.check&&Kr(35)}function ei(){jr=null}var ni=null,ai=null,ri=!1;function ii(){ni={},ai={},ri=!1}function oi(){ni={},ai={},ri=!1}function ui(t,e){if(e&&(e="".concat(e),t in ni||(ni[t]=[]),ni[t].indexOf(e)<0)){if(ni[t].length>128)return void(ri||(ri=!0,$r(5)));ni[t].push(e),t in ai||(ai[t]=[]),ai[t].push(e)}}function ci(){Kr(1)}function si(){ai={},ri=!1}function li(t){ui(36,t.toString())}var di=null,fi=[],hi=0,pi=null;function vi(){var t,e,n;pi=null;var a=navigator&&"userAgent"in navigator?navigator.userAgent:"",r=null!==(n=null===(e=null===(t=null===Intl||void 0===Intl?void 0:Intl.DateTimeFormat())||void 0===t?void 0:t.resolvedOptions())||void 0===e?void 0:e.timeZone)&&void 0!==n?n:"",i=(new Date).getTimezoneOffset().toString(),u=window.location.ancestorOrigins?Array.from(window.location.ancestorOrigins).toString():"",c=document&&document.title?document.title:"";hi=a.indexOf("Electron")>0?1:0;var s,l=function(){var t={session:Ti(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=xi("_clsk",!o.includeSubdomains);if(e){var n=e.split("|");n.length>=5&&t.ts-Mi(n[1])<18e5&&(t.session=n[0],t.count=Mi(n[2])+1,t.upgrade=Mi(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),f=Ni(),h=o.projectId||d(location.host);di={projectId:h,userId:f.id,sessionId:l.session,pageNum:l.count},o.lean=o.track&&null!==l.upgrade?0===l.upgrade:o.lean,o.upload=o.track&&"string"==typeof o.upload&&l.upload&&l.upload.length>"https://".length?l.upload:o.upload,ui(0,a),ui(3,c),ui(1,b(location.href,!!hi)),ui(2,document.referrer),ui(15,function(){var t=Ti();if(o.track&&Ei(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),ui(16,document.documentElement.lang),ui(17,document.dir),ui(26,"".concat(window.devicePixelRatio)),ui(28,f.dob.toString()),ui(29,f.version.toString()),ui(33,u),ui(34,r),ui(35,i),H(0,l.ts),H(1,0),H(35,hi),navigator&&(ui(9,navigator.language),H(33,navigator.hardwareConcurrency),H(32,navigator.maxTouchPoints),H(34,Math.round(navigator.deviceMemory)),(s=navigator.userAgentData)&&s.getHighEntropyValues?s.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;ui(22,t.platform),ui(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){ui(24,t.name+"~"+t.version)})),ui(25,t.model),H(27,t.mobile?1:0)})):ui(22,navigator.platform)),screen&&(H(14,Math.round(screen.width)),H(15,Math.round(screen.height)),H(16,Math.round(screen.colorDepth)));for(var p=0,v=o.cookies;p<v.length;p++){var g=v[p],m=xi(g);m&&ut(g,m)}!function(t){li(t?1:0)}(o.track),Oi(f)}function gi(){pi=null,di=null,fi.forEach((function(t){t.called=!1}))}function mi(t,e,n){void 0===e&&(e=!0),void 0===n&&(n=!1);var a=o.lean?0:1,r=!1;di&&(a||!1===e)&&(t(di,!o.lean),r=!0),!n&&r||fi.push({callback:t,wait:e,recall:n,called:r})}function yi(){return di?[di.userId,di.sessionId,di.pageNum].join("."):""}function bi(t){if(void 0===t&&(t=!0),!t)return o.track=!1,Ii("_clsk","",-Number.MAX_VALUE),Ii("_clck","",-Number.MAX_VALUE),Mo(),void window.setTimeout(To,250);$i()&&(o.track=!0,Oi(Ni(),1),Si(),li(2))}function wi(){Ii("_clsk","",0)}function ki(){!function(t){if(fi.length>0)for(var e=0;e<fi.length;e++){var n=fi[e];!n.callback||n.called||n.wait&&!t||(n.callback(di,!o.lean),n.called=!0,n.recall||(fi.splice(e,1),e--))}}(o.lean?0:1)}function Si(){if(di){var t=Math.round(Date.now()),e=o.upload&&"string"==typeof o.upload?o.upload.replace("https://",""):"",n=o.lean?0:1;Ii("_clsk",[di.sessionId,t,di.pageNum,n,e].join("|"),1)}}function Ei(t,e){try{return!!t[e]}catch(t){return!1}}function Oi(t,e){void 0===e&&(e=null),e=null===e?t.consent:e;var n=Math.ceil((Date.now()+31536e6)/864e5),a=0===t.dob?null===o.dob?0:o.dob:t.dob;(null===t.expiry||Math.abs(n-t.expiry)>=1||t.consent!==e||t.dob!==a)&&Ii("_clck",[di.userId,2,n.toString(36),e,a].join("|"),365)}function Ti(){var t=Math.floor(Math.random()*Math.pow(2,32));return window&&window.crypto&&window.crypto.getRandomValues&&Uint32Array&&(t=window.crypto.getRandomValues(new Uint32Array(1))[0]),t.toString(36)}function Mi(t,e){return void 0===e&&(e=10),parseInt(t,e)}function Ni(){var t={id:Ti(),version:0,expiry:null,consent:0,dob:0},e=xi("_clck",!o.includeSubdomains);if(e&&e.length>0){for(var n=e.split("|"),a=0,r=0,i=document.cookie.split(";");r<i.length;r++){a+="_clck"===i[r].split("=")[0].trim()?1:0}if(1===n.length||a>1){var u="".concat(";").concat("expires=").concat(new Date(0).toUTCString()).concat(";path=/");document.cookie="".concat("_clck","=").concat(u),document.cookie="".concat("_clsk","=").concat(u)}n.length>1&&(t.version=Mi(n[1])),n.length>2&&(t.expiry=Mi(n[2],36)),n.length>3&&1===Mi(n[3])&&(t.consent=1),n.length>4&&Mi(n[1])>1&&(t.dob=Mi(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function xi(t,e){var n;if(void 0===e&&(e=!1),Ei(document,"cookie")){var a=document.cookie.split(";");if(a)for(var r=0;r<a.length;r++){var i=a[r].split("=");if(i.length>1&&i[0]&&i[0].trim()===t){for(var o=_i(i[1]),u=o[0],c=o[1];u;)u=(n=_i(c))[0],c=n[1];return e?c.endsWith("".concat("~","1"))?c.substring(0,c.length-2):null:c}}}return null}function _i(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Ii(t,e,n){if((o.track||""==e)&&(navigator&&navigator.cookieEnabled||Ei(document,"cookie"))){var a=function(t){return encodeURIComponent(t)}(e),r=new Date;r.setDate(r.getDate()+n);var i=r?"expires="+r.toUTCString():"",u="".concat(t,"=").concat(a).concat(";").concat(i).concat(";path=/");try{if(null===pi){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(pi=".".concat(c[s]).concat(pi||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(pi),xi(t)===e))return;pi=""}}catch(t){pi=""}document.cookie=pi?"".concat(u).concat(";").concat("domain=").concat(pi):u}}var Ci,Di=null;function ji(){var t=di;Di={version:l,sequence:0,start:0,duration:0,projectId:t.projectId,userId:t.userId,sessionId:t.sessionId,pageNum:t.pageNum,upload:0,end:0,applicationPlatform:0,url:""}}function Ai(){Di=null}function Ri(t){return Di.start=Di.start+Di.duration,Di.duration=s()-Di.start,Di.sequence++,Di.upload=t&&"sendBeacon"in navigator?1:0,Di.end=t?1:0,Di.applicationPlatform=0,Di.url=b(location.href,!1,!0),[Di.version,Di.sequence,Di.start,Di.duration,Di.projectId,Di.userId,Di.sessionId,Di.pageNum,Di.upload,Di.end,Di.applicationPlatform,Di.url]}function Xi(){Ci=[]}function Yi(t){if(Ci&&-1===Ci.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:Di.version,p:Di.projectId,u:Di.userId,s:Di.sessionId,n:Di.pageNum};t.message&&(n.m=t.message),t.stack&&(n.e=t.stack);var a=new XMLHttpRequest;a.open("POST",e,!0),a.send(JSON.stringify(n)),Ci.push(t.message)}}return t}function Li(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw Yi(t)}var n=performance.now()-e;z(4,n),n>30&&(P(7),H(6,n),Dr(9,0,"".concat(t.dn||t.name,"-").concat(n)))}}var Pi=[];function zi(t,e,n,a,r){void 0===a&&(a=!1),void 0===r&&(r=!0),n=Li(n);try{t[u("addEventListener")](e,n,{capture:a,passive:r}),Pi.push({event:e,target:t,listener:n,options:{capture:a,passive:r}})}catch(t){}}function Hi(){for(var t=0,e=Pi;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,{capture:n.options.capture,passive:n.options.passive})}catch(t){}}Pi=[]}var Wi=null,qi=null,Ui=null,Fi=0;function Vi(){return!(Fi++>20)||(Dr(4,0),!1)}function Bi(){Bi.dn=1,Fi=0,Ui!==Gi()&&(Mo(),window.setTimeout(Ji,250))}function Ji(){To(),H(29,1)}function Gi(){return location.href?location.href.replace(location.hash,""):location.href}var Ki=!1;function Zi(){Ki=!0,c=performance.now()+performance.timeOrigin,ge(),Hi(),Xi(),Ui=Gi(),Fi=0,zi(window,"popstate",Bi),null===Wi&&(Wi=history.pushState,history.pushState=function(){Wi.apply(this,arguments),$i()&&Vi()&&Bi()}),null===qi&&(qi=history.replaceState,history.replaceState=function(){qi.apply(this,arguments),$i()&&Vi()&&Bi()})}function Qi(){Ui=null,Fi=0,Xi(),Hi(),ge(),c=0,Ki=!1}function $i(){return Ki}function to(){to.dn=2,To(),R("clarity","restart")}var eo=Object.freeze({__proto__:null,start:function t(){t.dn=3,function(){Ot=[],H(26,navigator.webdriver?1:0);try{H(31,window.top==window.self||window.top==window?1:2)}catch(t){H(31,0)}}(),zi(window,"error",xr),Nr={},Cr={}},stop:function(){Cr={}}});function no(){return rt(this,void 0,void 0,(function(){var t,e;return it(this,(function(n){switch(n.label){case 0:return t=s(),we(e={id:yi(),cost:3}),[4,Xn(document,e,0,t)];case 1:return n.sent(),Ea(document,t),[4,za(5,e,t)];case 2:return n.sent(),ke(e),[2]}}))}))}var ao=Object.freeze({__proto__:null,hashText:te,start:function t(){t.dn=20,Ne(),xe(),nr(),Ga=null,Fa=new WeakMap,Va={},Ba=[],Ja=!!window.IntersectionObserver,Ft(),o.delayDom?zi(window,"load",(function(){Zn()})):Zn(),me(no,1).then((function(){Li(xe)(),Li(Qa)(),Li(yn)()})),window.CSSStyleSheet&&CSSStyleSheet.prototype&&(null===ga&&(ga=CSSStyleSheet.prototype.replace,CSSStyleSheet.prototype.replace=function(){return $i()&&(H(36,1),Sa.indexOf(this[ya])>-1&&Ta(s(),this[ya],1,arguments[0])),ga.apply(this,arguments)}),null===ma&&(ma=CSSStyleSheet.prototype.replaceSync,CSSStyleSheet.prototype.replaceSync=function(){return $i()&&(H(36,1),Sa.indexOf(this[ya])>-1&&Ta(s(),this[ya],2,arguments[0])),ma.apply(this,arguments)})),function(){if(window.Animation&&window.Animation.prototype&&window.KeyframeEffect&&window.KeyframeEffect.prototype&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(Xa(),La(xa,"play"),La(_a,"pause"),La(Ia,"commitStyles"),La(Ca,"cancel"),La(Da,"finish"),null===Na&&(Na=Element.prototype.animate,Element.prototype.animate=function(){var t=Na.apply(this,arguments);return Pa(t,"play"),t}),document.getAnimations))for(var t=0,e=document.getAnimations();t<e.length;t++){var n=e[t];"finished"===n.playState?Pa(n,"finish"):"paused"===n.playState||"idle"===n.playState?Pa(n,"pause"):"running"===n.playState&&Pa(n,"play")}}()},stop:function(){nr(),Fa=null,Va={},Ba=[],Ga&&(Ga.disconnect(),Ga=null),Ja=!1,Vt(),function(){for(var t=0,e=Yn;t<e.length;t++){var n=e[t];n&&n.disconnect()}Yn=[],Gn={},Ln=[],Pn=[],Fn=[],Jn=0,Vn=null,Kn=0}(),Ne(),ba={},wa={},ka=[],Sa=[],Oa(),Xa()}});var ro=null;function io(){ro=null}function oo(t){ro={fetchStart:Math.round(t.fetchStart),connectStart:Math.round(t.connectStart),connectEnd:Math.round(t.connectEnd),requestStart:Math.round(t.requestStart),responseStart:Math.round(t.responseStart),responseEnd:Math.round(t.responseEnd),domInteractive:Math.round(t.domInteractive),domComplete:Math.round(t.domComplete),loadEventStart:Math.round(t.loadEventStart),loadEventEnd:Math.round(t.loadEventEnd),redirectCount:Math.round(t.redirectCount),size:t.transferSize?t.transferSize:0,type:t.type,protocol:t.nextHopProtocol,encodedSize:t.encodedBodySize?t.encodedBodySize:0,decodedSize:t.decodedBodySize?t.decodedBodySize:0},function(t){rt(this,void 0,void 0,(function(){var e,n;return it(this,(function(a){return e=s(),n=[e,t],29===t&&(n.push(ro.fetchStart),n.push(ro.connectStart),n.push(ro.connectEnd),n.push(ro.requestStart),n.push(ro.responseStart),n.push(ro.responseEnd),n.push(ro.domInteractive),n.push(ro.domComplete),n.push(ro.loadEventStart),n.push(ro.loadEventEnd),n.push(ro.redirectCount),n.push(ro.size),n.push(ro.type),n.push(ro.protocol),n.push(ro.encodedSize),n.push(ro.decodedSize),io(),wr(n)),[2]}))}))}(29)}var uo,co=0,so=1/0,lo=0,fo=0,ho=[],po=new Map,vo=function(){return co||0},go=function(){if(!ho.length)return-1;var t=Math.min(ho.length-1,Math.floor((vo()-fo)/50));return ho[t].latency},mo=function(){fo=vo(),ho.length=0,po.clear()},yo=function(t){if(t.interactionId&&!(t.duration<40)){!function(t){"interactionCount"in performance?co=performance.interactionCount:t.interactionId&&(so=Math.min(so,t.interactionId),lo=Math.max(lo,t.interactionId),co=lo?(lo-so)/7+1:0)}(t);var e=ho[ho.length-1],n=po.get(t.interactionId);if(n||ho.length<10||t.duration>(null==e?void 0:e.latency)){if(n)t.duration>n.latency&&(n.latency=t.duration);else{var a={id:t.interactionId,latency:t.duration};po.set(a.id,a),ho.push(a)}ho.sort((function(t,e){return e.latency-t.latency})),ho.length>10&&ho.splice(10).forEach((function(t){return po.delete(t.id)}))}}},bo=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint","event"];function wo(){wo.dn=26;try{uo&&uo.disconnect(),uo=new PerformanceObserver(Li(ko));for(var t=0,e=bo;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&z(9,0),uo.observe({type:n,buffered:!0}))}}catch(t){Dr(3,1)}}function ko(t){ko.dn=27,function(t){for(var e=(!("visibilityState"in document)||"visible"===document.visibilityState),n=0;n<t.length;n++){var a=t[n];switch(a.entryType){case"navigation":oo(a);break;case"resource":var r=a.name;ui(4,So(r)),r!==o.upload&&r!==o.fallback||H(28,a.duration);break;case"longtask":P(7);break;case"first-input":e&&H(10,a.processingStart-a.startTime);break;case"event":e&&"PerformanceEventTiming"in window&&"interactionId"in PerformanceEventTiming.prototype&&(yo(a),ui(37,go().toString()));break;case"layout-shift":e&&!a.hadRecentInput&&z(9,1e3*a.value);break;case"largest-contentful-paint":e&&H(8,a.startTime)}}}(t.getEntries())}function So(t){var e=document.createElement("a");return e.href=t,e.host}var Eo=Object.freeze({__proto__:null,start:function t(){t.dn=25,io(),function(){navigator&&"connection"in navigator&&ui(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?zi(window,"load",W.bind(this,wo,0)):wo():Dr(3,0)}()},stop:function(){uo&&uo.disconnect(),uo=null,mo(),io()}}),Oo=[eo,ao,Rn,Eo];function To(t){void 0===t&&(t=null),function(){try{var t=navigator&&"globalPrivacyControl"in navigator&&1==navigator.globalPrivacyControl;return!1===Ki&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap&&!t}catch(t){return!1}}()&&(!function(t){if(null===t||Ki)return!1;for(var e in t)e in o&&(o[e]=t[e])}(t),Zi(),wt(),Oo.forEach((function(t){return Li(t.start)()})),null===t&&Io())}function Mo(){$i()&&(Oo.slice().reverse().forEach((function(t){return Li(t.stop)()})),kt(),Qi(),void 0!==xo&&(xo[_o]=function(){(xo[_o].q=xo[_o].q||[]).push(arguments),"start"===arguments[0]&&xo[_o].q.unshift(xo[_o].q.pop())&&Io()}))}var No=Object.freeze({__proto__:null,consent:bi,event:R,hashText:te,identify:ct,metadata:mi,pause:function(){$i()&&(R("clarity","pause"),null===pe&&(pe=new Promise((function(t){ve=t}))))},resume:function(){$i()&&(pe&&(ve(),pe=null,null===he&&ye()),R("clarity","resume"))},set:ut,signal:function(t){mt=t},start:To,stop:Mo,upgrade:nt,version:l}),xo=window,_o="clarity";function Io(){if(void 0!==xo){if(xo[_o]&&xo[_o].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=xo[_o]&&xo[_o].q||[];for(xo[_o]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return No[t].apply(No,e)},xo[_o].v=l;t.length>0;)xo[_o].apply(xo,t.shift())}}Io()}();
|