@solomei-ai/intent 1.2.0 → 1.3.0
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/README.md +71 -12
- package/dist/esm/index.js +1 -1
- package/dist/intent.umd.min.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,26 +1,85 @@
|
|
|
1
|
-
|
|
1
|
+
# Intent Integration
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The **Intent** tracker collects consented client context and sends events to **Callimacus**.
|
|
4
|
+
It can be easily integrated into modern applications (React, Vite, Next.js, etc.) via npm or directly via a script tag.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 📦 Installation
|
|
9
|
+
|
|
10
|
+
### Using npm (recommended)
|
|
11
|
+
|
|
12
|
+
Install the package from npm:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install @solomei-ai/intent
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## ⚙️ Usage
|
|
21
|
+
|
|
22
|
+
Initialize **Intent** in your app entry point:
|
|
4
23
|
|
|
5
|
-
### Usage
|
|
6
24
|
```ts
|
|
7
25
|
// app entry
|
|
8
|
-
import {initIntent} from '@solomei-ai/
|
|
26
|
+
import { initIntent } from '@solomei-ai/intent';
|
|
9
27
|
|
|
10
28
|
initIntent({
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
geo: true, // can be set to true later
|
|
29
|
+
clientId: 'cal-pk-...', // your Callimacus Client ID
|
|
30
|
+
consent: true, // can be toggled later
|
|
31
|
+
geo: true, // can be toggled later
|
|
15
32
|
});
|
|
16
33
|
```
|
|
17
34
|
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## 🌐 CDN Usage
|
|
38
|
+
|
|
39
|
+
If you prefer not to use npm, include the package via a `<script>` tag:
|
|
40
|
+
|
|
41
|
+
### Option 1: jsDelivr
|
|
42
|
+
|
|
43
|
+
```html
|
|
44
|
+
<script src="https://cdn.jsdelivr.net/npm/@solomei-ai/intent/dist/intent.umd.min.js"></script>
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Option 2: unpkg
|
|
48
|
+
|
|
49
|
+
```html
|
|
50
|
+
<script src="https://unpkg.com/@solomei-ai/intent/dist/intent.umd.min.js"></script>
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Once loaded, access the module from the global `window.Intent` namespace:
|
|
54
|
+
|
|
55
|
+
```html
|
|
56
|
+
<script>
|
|
57
|
+
const { initIntent } = window.Intent;
|
|
58
|
+
|
|
59
|
+
initIntent({
|
|
60
|
+
clientId: 'cal-pk-...',
|
|
61
|
+
consent: true,
|
|
62
|
+
geo: false,
|
|
63
|
+
});
|
|
64
|
+
</script>
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## 📘 More Information
|
|
70
|
+
|
|
71
|
+
* npm: [@solomei-ai/intent](https://www.npmjs.com/package/@solomei-ai/intent)
|
|
72
|
+
* jsDelivr: [https://www.jsdelivr.com/package/npm/@solomei-ai/intent](https://www.jsdelivr.com/package/npm/@solomei-ai/intent)
|
|
73
|
+
* unpkg: [https://unpkg.com/@solomei-ai/intent](https://unpkg.com/@solomei-ai/intent)
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
18
77
|
|
|
19
|
-
|
|
78
|
+
## Managing consent & geolocation flags
|
|
20
79
|
You can pass flags to `initIntent` or toggle them at runtime with setFlag:
|
|
21
80
|
|
|
22
81
|
```ts
|
|
23
|
-
import {setFlag} from '@solomei-ai/
|
|
82
|
+
import {setFlag} from '@solomei-ai/intent';
|
|
24
83
|
|
|
25
84
|
// Grant or revoke consent
|
|
26
85
|
setFlag('intent:consent', true); // granted
|
|
@@ -34,7 +93,7 @@ setFlag('intent:geo', false); // 'disabled
|
|
|
34
93
|
- If consent is revoked, the tracker clears `intent_sid` and stops sending events.
|
|
35
94
|
---
|
|
36
95
|
|
|
37
|
-
|
|
96
|
+
## Using `intent_sid`
|
|
38
97
|
|
|
39
98
|
Use these utilities to read or manage the session cookie from your app:
|
|
40
99
|
```ts
|
|
@@ -42,7 +101,7 @@ import {
|
|
|
42
101
|
getIntentSessionId,
|
|
43
102
|
clearIntentSessionId,
|
|
44
103
|
ensureIntentSessionId,
|
|
45
|
-
} from '@solomei-ai/
|
|
104
|
+
} from '@solomei-ai/intent';
|
|
46
105
|
|
|
47
106
|
const sid = getIntentSessionId(); // string | undefined, can be sent to backend
|
|
48
107
|
clearIntentSessionId(); // deletes cookie
|
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* © 2025 Solomei AI SRL. Proprietary and confidential.
|
|
3
3
|
*/
|
|
4
|
-
import t from"html2canvas-pro";async function e(){const t=n,e=[];if(function(t){const e=n;return"connection"in t&&typeof t.connection!==e(537)}(navigator)){const n=navigator[t(499)];n?.effectiveType&&e[t(572)](n.effectiveType),"number"==typeof n?.[t(569)]&&e.push(n[t(569)]+t(463)),"number"==typeof n?.[t(545)]&&e[t(572)](n[t(545)]+" ms"),n?.[t(523)]&&e[t(572)](t(523))}const o=await async function(t,e=3e3,o=8,a=150){const i=n;if(!(i(574)in window)||!(i(513)in window))return;const r=performance[i(530)]();let c,s=0;await Promise[i(482)](Array[i(519)]({length:o},async()=>{const n=i;for(;performance[n(530)]()-r<e+a;){const o=new AbortController,i=(t[n(571)]("?")?"&":"?")+n(491)+Math[n(557)]().toString(36)[n(558)](2);try{const d=await fetch(t+i,{cache:n(554),signal:o.signal,mode:n(474)}),u=d[n(538)]?.getReader();if(!u)break;for(;;){const t=performance[n(530)]();if(t-r>=e+a){o[n(582)]();break}const{done:i,value:d}=await u.read();if(i)break;c??=t,t-(c??t)>=a&&(s+=d.byteLength)}}catch{}}}));const d=(c??r)+a,u=Math.max(1,performance[i(530)]()-d),l=8*s/(u/1e3)/1e6;return Number[i(492)](l)&&l>0?l:void 0}(t(500),3e3,8,150),a=performance[t(556)](t(498)).find(e=>e.entryType===t(498));let i;if(a){const e=Math[t(562)](0,a[t(564)]-a[t(535)]);i=t(503)+Math[t(479)](e)+" ms"}const r=[];if(typeof o===t(486)&&r[t(572)]("~"+o[t(471)](1)+" Mbps"),i&&r.push(i),e[t(524)]&&r[t(572)](t(547)+e.join(", ")),r[t(524)])return t(465)+r[t(485)](", ")+" (active test)"}function n(t,e){const o=r();return(n=function(t,e){return o[t-=458]})(t,e)}function o(){const t=n;if(!function(t){const e=n;return e(551)in t&&typeof t[e(551)]!==e(537)}(navigator))return;const e=navigator[t(551)],o=Array[t(501)](e.brands)?e[t(516)].map(e=>e[t(563)]+" "+e[t(532)])[t(485)](", "):void 0,a=e.platform?e[t(469)]+(e[t(561)]?" (mobile)":""):void 0;return[o&&t(481)+o,a&&t(497)+a].filter(Boolean)[t(485)](t(470))||void 0}async function a(t=400){const e=n;if(e(517)in window&&window[e(559)])return new Promise(o=>{const a=e;let i=!1;const r=t=>{const e=n,a=typeof t.beta===e(486)?t[e(460)]:void 0,c=typeof t[e(472)]===e(486)?t[e(472)]:void 0;if(void 0===a||void 0===c)return;if(i)return;i=!0,window[e(548)](e(549),r);const s=function(t,e){const o=n,a=Math[o(541)](t),i=Math[o(541)](e);return a<15&&i<15?o(567):a>=60?"upright":o(526)}(a,c);o(e(508)+s+e(542)+Math.round(a)+e(566)+Math.round(c)+"°)")};window[a(462)](()=>{const t=a;i||(i=!0,window[t(548)](t(549),r),o(void 0))},t),window[a(534)]("deviceorientation",r,{passive:!0})})}async function i(){const t=n;if(function(t){const e=n;return e(550)in t&&"function"==typeof t[e(550)]}(navigator))try{const e=await navigator[t(550)](),n=Math[t(479)](100*e.level),o=[(Number[t(492)](n)?n:0)+"%",e[t(459)]?t(459):t(520)];return t(490)+o[t(485)](", ")}catch{return}}function r(){const t=["Device geolocation: enabled","rtt","221080recpej","hint: ","removeEventListener","deviceorientation","getBattery","userAgentData","languages","Languages: ","no-store","getItem","getEntriesByType","random","slice","isSecureContext","DateTimeFormat","mobile","max","brand","responseStart","Device geolocation: disabled","°, γ ","flat","14315KuKyAm","downlink","1892149YQaIYM","includes","push","floor","fetch","n/a","referrer","padStart","type","21232849toWFka","serviceWorker","availWidth","abort","innerWidth","charging","beta",", maxTouchPoints ","setTimeout"," Mbps","Local time: ","Network: ","-bit)","enabled"," (UTC","platform"," | ","toFixed","gamma","x (avail ","cors","resolvedOptions","3458024zDwMuQ","207HGCUxU","(display-mode: standalone)","round","(pointer: fine)","UA brands: ","all","6JAAhok","yes","join","number","2zlqKPu","getTimezoneOffset","onLine","Battery: ","cb=","isFinite","Timezone: ","no SW","function","devicePixelRatio","Platform: ","navigation","connection","/speedtest.bin","isArray","controller","TTFB ~","colorDepth","doNotTrack","Online: ","734530lOvLuK","Tilt: ","140ZJXStO","orientation","12ZruAPz","Pointer/Touch: ","ReadableStream","Viewport: ","coarse","brands","DeviceOrientationEvent","language","from","not charging","height","availHeight","saveData","length","(pointer: coarse)","reclined","PWA: "," cores","unknown","now","maxTouchPoints","version","fine","addEventListener","requestStart","CPU: ","undefined","body","matches","cookieEnabled","abs"," (β ","1385481MfpndM"];return(r=function(){return t})()}async function c(){const t=n,r=(new(Intl[t(560)]))[t(475)]().timeZone,c=function(t){const e=n,o=t<=0?"+":"-",a=Math.abs(t);return""+o+String(Math[e(573)](a/60))[e(577)](2,"0")+":"+String(a%60).padStart(2,"0")}((new Date)[t(488)]()),s=[];s.push("Language: "+navigator[t(518)]),navigator[t(552)]?.[t(524)]&&s[t(572)](t(553)+navigator[t(552)][t(485)](", ")),s.push("User agent: "+navigator.userAgent);const d=o();d&&s.push(d),s[t(572)](t(493)+r+t(468)+c+")"),s[t(572)](t(464)+(new Date).toString());const u=window[t(496)]||1;s[t(572)]("Screen: "+screen.width+"x"+screen[t(521)]+" @"+u+t(473)+screen[t(581)]+"x"+screen[t(522)]+", "+screen[t(504)]+t(466));const l=screen[t(510)]&&t(578)in screen.orientation?screen[t(510)].type:void 0;s.push(t(514)+window[t(458)]+"x"+window.innerHeight+(l?", orientation "+l:"")),s[t(572)](t(536)+navigator.hardwareConcurrency+t(528));const f=await e();f&&s[t(572)](f),s.push(function(){const t=n,e=typeof matchMedia===t(495)&&matchMedia(t(525))[t(539)],o=typeof matchMedia===t(495)&&matchMedia(t(480))[t(539)],a=t(e?515:o?533:529),i=typeof navigator[t(531)]===t(486)?navigator.maxTouchPoints:0;return t(512)+a+t(461)+i}());const m=await i();m&&s[t(572)](m),s[t(572)]("CookiesEnabled: "+(navigator[t(540)]?t(484):"no")+"; DNT: "+(navigator[t(505)]??t(575))),s[t(572)](t(506)+(navigator[t(489)]?t(484):"no")),document[t(576)]&&s[t(572)]("Referrer: "+document[t(576)]),s[t(572)](function(){const t=n,e=typeof matchMedia===t(495)&&matchMedia(t(478))[t(539)],o=Boolean(navigator[t(580)]?.[t(502)]);return t(527)+(o?"SW-controlled":t(494))+", display-mode standalone: "+(e?t(484):"no")}());const p=await a();p&&s[t(572)](p);const h=typeof localStorage!==t(537)&&localStorage[t(555)]("intent:geo")===t(467);return s[t(572)](t(h?544:565)),s[t(485)](" | ")}!function(){const t=n,e=r();for(;;)try{if(439621===-parseInt(t(507))/1+-parseInt(t(487))/2*(parseInt(t(543))/3)+parseInt(t(509))/4*(-parseInt(t(568))/5)+-parseInt(t(483))/6*(parseInt(t(570))/7)+-parseInt(t(476))/8+parseInt(t(477))/9*(parseInt(t(546))/10)+parseInt(t(579))/11*(parseInt(t(511))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const s=f;!function(){const t=f,e=Q();for(;;)try{if(384738===-parseInt(t(268))/1+parseInt(t(348))/2+-parseInt(t(208))/3+parseInt(t(287))/4+-parseInt(t(357))/5+parseInt(t(239))/6*(parseInt(t(305))/7)+parseInt(t(219))/8*(parseInt(t(337))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();let d,u="",l=0;function f(t,e){const n=Q();return(f=function(t,e){return n[t-=205]})(t,e)}const m=s(238),p=s(242);let h=!1,g=!1,w=!1,y=!1,v=!1,b=!1;const M=s(387),I=s(396),S=s(313),x=s(250),E=[s(304),"a[href]","a",s(419),'input[type="button"]',s(366),'[role="link"]',s(235)].join(","),T=s(410),L=s(364),A=new Set(["name",s(280),s(276),s(253),"nickname",s(273),s(340),s(391),s(328),s(308),s(282),s(302),s(211),s(412),s(325),s(374),s(244),s(252),s(298),s(375),"postal-code",s(339),"cc-given-name","cc-additional-name",s(207),"cc-number",s(277),s(418),s(221),s(315),s(265),"bday",s(212),s(372),s(335),"sex",s(292)]);function k(t){return"<"+D(t)+">"}function D(t){const e=s,n=(t[e(330)]?.(L)??"").trim();if(n)return n;const o=t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement?(t.autocomplete||"")[e(358)]().trim()[e(248)](/\s+/)[e(209)](Boolean):[];return t instanceof HTMLInputElement&&t[e(279)]===e(413)?"Password":o[e(349)](t=>t[e(294)](e(289)))?e(365):o.some(t=>["name",e(280),e(253),e(276),e(339),"cc-given-name",e(207)][e(405)](t))?e(234):o[e(405)](e(340))?e(361):o[e(405)]("tel")?e(341):o[e(349)](t=>t[e(294)](e(420)))?e(342):o.includes(e(321))?"Sex":o[e(349)](t=>[e(282),e(302),e(211),e(412),"address-level1",e(374),"address-level3",e(252),"postal-code","country",e(375)][e(405)](t))?e(307):o[e(405)](e(328))||o[e(405)](e(308))?"Organization":t[e(330)]?.(T)?.[e(358)]()===e(263)?e(296):e(284)}function H(t){const e=s;return t[e(264)]("data-html2canvas-ignore")||t.getAttribute(T)?.[e(358)]()===e(281)}function P(t){const e=s,n=t[e(330)](T);return""===n||"mask"===n?.[e(358)]()}function N(t){const e=s;if(t instanceof HTMLInputElement){if("password"===t[e(279)])return!0;if(t[e(279)]===e(223))return!1;const n=t[e(330)](e(345));if(n&&"searchbox"===n[e(358)]())return!1;if((t.autocomplete||"")[e(358)]()[e(309)]()[e(248)](/\s+/).filter(Boolean)[e(349)](t=>A[e(257)](t)))return!0}if(t instanceof HTMLTextAreaElement){if((t.autocomplete||"")[e(358)]()[e(309)]()[e(248)](/\s+/)[e(209)](Boolean)[e(349)](t=>A.has(t)))return!0}return!1}function U(t){return!!P(t)||!!N(t)}function C(){const t=s,e=[],n=t=>{const e=f,n=t[e(310)]();if(n.width<=0||n[e(270)]<=0)return;const o=Math[e(395)](0,n.left),a=Math[e(395)](0,n.top),i=Math[e(395)](0,Math[e(220)](n[e(237)],window[e(251)])-o),r=Math[e(395)](0,Math[e(220)](n[e(286)],window[e(324)])-a);return i<=0||r<=0?void 0:{x:o,y:a,w:i,h:r}};document[t(312)]("["+T+t(347)+T+t(338))[t(416)](o=>{const a=t,i=n(o);if(!i)return;const r=D(o)||a(296);e.push({...i,label:r})});return document[t(312)](t(218))[t(416)](o=>{const a=t;if(!P(i=o)&&!N(i))return;var i;if(H(o))return;const r=n(o);if(!r)return;const c=D(o);e[a(245)]({...r,label:c})}),e}const O=()=>localStorage[s(409)](m)===s(205);function R(t){const e=s,n=encodeURIComponent(t)+"=",o=document[e(343)].split("; ");for(const t of o)if(t[e(294)](n))return decodeURIComponent(t[e(367)](n[e(320)]))}function B(t,e){const n=s,o=localStorage.getItem(x),a=null==o?void 0:Number(o),i=Number[n(329)](e)?Number(e):typeof a===n(360)&&Number[n(329)](a)?a:86400,r=window[n(303)][n(271)]===n(306),c=[n(243)+encodeURIComponent(t),n(393)+i,n(322),n(246)];r&&c[n(245)]("Secure"),document.cookie=c.join("; ")}function F(){const t=s,e=window[t(303)][t(271)]===t(306);document[t(343)]="intent_sid=; Max-Age=0; Path=/; SameSite=Lax"+(e?t(404):"")}function W(){const t=s,e=R(t(293));if(!O())return e&&F(),void(u="");if(e)return void(u=e);const n="undefined"!=typeof crypto&&typeof crypto[t(262)]===t(326)?crypto[t(262)]():Date[t(388)]()+"-"+Math[t(355)]();u=n,B(u)}function j(){return W(),O()&&Boolean(u)&&(()=>{const t=s,e=localStorage.getItem(M);return typeof e===t(283)&&e[t(309)]()[t(320)]>0})()}function z(){return!j()||w}async function J(e){const n=s,o=function(t){const e=s,n=t[e(332)](!1);return n instanceof HTMLInputElement&&t instanceof HTMLInputElement?(Array[e(272)](t[e(299)])[e(416)](({name:t,value:o})=>{n[e(369)](t,o)}),n[e(386)]=U(t)?k(t):t.value,t.disabled&&n[e(369)](e(267),""),n[e(354)]):n instanceof HTMLTextAreaElement&&t instanceof HTMLTextAreaElement?(Array[e(272)](t[e(299)])[e(416)](({name:t,value:e})=>{n.setAttribute(t,e)}),n[e(386)]=U(t)?k(t):t[e(386)],t[e(267)]&&n[e(369)](e(267),""),n.outerHTML):t[e(354)]}(e),a=e[n(310)](),i={useCORS:!0,...{x:window[n(351)],y:window[n(381)],width:window[n(251)],height:window[n(324)],scale:1},ignoreElements:t=>t instanceof Element&&H(t)},r=await t(document.body,i),c=r[n(213)],d=r.height,u=Math[n(395)](c,d),l=.8*Math[n(395)](window.innerWidth,window.innerHeight),f=Math.min(1,l/u),m=12/(a[n(270)]||1),p=Math[n(220)](1,Math[n(395)](f,m)),h=Math[n(260)](c*p),g=Math[n(260)](d*p),w=document[n(226)]("canvas");w.width=h,w[n(270)]=g;const y=w[n(225)]("2d");y[n(275)](r,0,0,c,d,0,0,h,g);const v=C();if(v.length){y[n(230)](),y[n(231)]=1;for(const t of v){const e=Math[n(260)](t.x*p),o=Math[n(260)](t.y*p),a=Math[n(260)](t.w*p),i=Math[n(260)](t.h*p);y.fillStyle=n(297),y[n(256)](e,o,a,i),y.strokeStyle=n(344),y[n(255)]=Math[n(395)](1,Math[n(295)](.02*Math[n(220)](a,i))),y[n(394)](e,o,a,i);const r=Math[n(395)](10,Math.min(22,Math[n(295)](.35*i)));y[n(373)]=r+n(371),y.fillStyle=n(379),y[n(401)]="center",y.textBaseline=n(300);const c="<"+(t.label?.[n(309)]().length?t.label:n(284))+">";y[n(403)](c,e+a/2,o+i/2,a-6)}y.restore()}const b=w[n(377)](n(353),.8);return{html:o,bbox:{x:a.x,y:a.y,w:a[n(213)],h:a[n(270)]},img:b}}function K(){const t=s,e=localStorage.getItem(M),n={"Content-Type":t(346)};return e&&(n["x-sl-access-token"]=e),u&&(n[t(261)]=u),n}async function Z(t,e){const n=s,o=(localStorage[n(409)](I)??S)+n(400),a=JSON[n(383)](t);try{if((await fetch(o,{method:n(411),headers:K(),body:a,keepalive:e,credentials:n(319)})).ok)return}catch{}try{await async function(t,e=!1){const n=s,o=(localStorage.getItem(I)??S)+"/p.gif";if(!(await fetch(o,{method:n(411),headers:K(),body:JSON[n(383)](t),keepalive:e,credentials:n(319),cache:"no-store"})).ok)throw new Error(n(274))}(t,e)}catch{}}async function q(t,e,n,o){const a=s;if(!j())return;const i={...e,localTime:(new Date).toISOString()};(n instanceof HTMLInputElement||n instanceof HTMLTextAreaElement)&&(i.value=U(n)?k(n):n[a(386)]);let r="",c={x:0,y:0,w:0,h:0},d="";const u=!(t===a(389)||t===a(241)||t===a(370)),f=Date[a(388)](),m=f-l>=5e3;let p=o;const h=t===a(228)||t===a(417)||t===a(327);u&&!p&&(h||m)&&(p=await J(n),l=f),p&&(r=p.html,c=p[a(254)],d=p[a(222)]);const g={ts:Date[a(388)](),event:t,props:i,html:t===a(241)||t===a(370)?"":r,bbox:c,img:d},w=document.visibilityState===a(301)||t===a(241);await Z(g,w)}function G(){const t=s;return localStorage[t(409)](p)===t(398)}async function _(t={}){const e=s;if(!j())return;const n=typeof t[e(216)]===e(360)&&"number"==typeof t[e(378)];if(n&&g)return;if(!n&&h)return;const o=localStorage[e(409)]("intent:data-ip"),a={context:await c()};o&&(a.ip=o);for(const[n,o]of Object[e(331)](t))a[n]=o;await q("context",a,document[e(217)],{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),n?g=!0:h=!0}async function X(){const t=s,e={canSend:j(),geoEnabled:G(),deviceGeoSent:g};if(!e.canSend||!e[t(227)]||e[t(376)])return;const n={secure:window[t(384)],proto:location.protocol,host:location[t(224)]};if(n[t(408)]||(t(290),t(316)),!(t(247)in navigator))return;if(v)return;v=!0,w=!0;const o={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};Date[t(388)]();try{await(navigator.permissions?.[t(232)]({name:t(247)}))}catch(t){}await new Promise(e=>{const n=t;let a=!1;const i=async(t,n,o)=>{const i=f;a||(a=!0,Date[i(388)](),Number[i(329)](t)&&Number.isFinite(n)&&await _({lat:t,lon:n,source:"device"}),v=!1,w=!1,b=!0,e())};navigator[n(247)][n(363)](t=>{const e=f,n=t[e(382)];i(n.latitude,n.longitude,(n.accuracy,"number"==typeof n[e(350)]&&n[e(350)],"number"==typeof n[e(414)]&&n[e(414)],typeof n[e(233)]===e(360)&&n[e(233)],"number"==typeof n[e(206)]&&n[e(206)],t.timestamp,document[e(402)],document.hasFocus()))},t=>{const e=f,n=t?.[e(352)];1===n?e(278):2===n||(3===n||e(406)),navigator[e(380)],document[e(399)](),location[e(224)],i(void 0,void 0)},o)})}function Y(){const t=s;if(y||!G()||g)return;y=!0;const e=()=>{const t=f;window[t(214)](t(258),e,!0),window[t(214)]("keydown",e,!0),X()};window.addEventListener(t(258),e,!0),window[t(390)](t(392),e,!0)}function Q(){const t=["hasFocus","/events","textAlign","visibilityState","fillText","; Secure","includes","UNKNOWN","name","secure","getItem","data-intent-redact","POST","address-line3","password","altitudeAccuracy","screenshot","forEach","input-submit","cc-exp-month",'input[type="submit"]',"bday","granted","speed","cc-family-name","1865379NAmlZJ","filter","<no visible label>","address-line2","bday-day","width","removeEventListener","setTimeout","lat","body","input, textarea","1709320waTMRO","min","cc-exp-year","img","search","hostname","getContext","createElement","geoEnabled","click","load","save","globalAlpha","query","heading","Name","[onclick]","onerror","right","intent:consent","719784Zfglwq","clearTimeout","page-blur","intent:geo","intent_sid=","address-level3","push","SameSite=Lax","geolocation","split","title","intent:data-sid-max-age","innerWidth","address-level4","family-name","bbox","lineWidth","fillRect","has","pointerdown","capturePhase","round","x-intent-sid","randomUUID","mask","hasAttribute","cc-type","error","disabled","506572JJuzFV","key","height","protocol","from","username","pixel body fallback failed","drawImage","additional-name","cc-exp","PERMISSION_DENIED","type","given-name","ignore","street-address","string","Sensitive","readAsDataURL","bottom","691328jBhPOo","focus","cc-","host","target","webauthn","intent_sid","startsWith","floor","Redacted","#e5e7eb","country","attributes","middle","hidden","address-line1","location","button","7XUapKf","https:","Address","organization-title","trim","getBoundingClientRect","props","querySelectorAll","https://intent.callimacus.ai","TEXTAREA","cc-csc","localhost","blur","closest","omit","length","sex","Path=/","INPUT","innerHeight","address-level1","function","pageview","organization","isFinite","getAttribute","entries","cloneNode","visibilitychange","referrer","bday-year","Unexpected FileReader result type","45OwZjJC",'=""]',"cc-name","email","Phone","Birthday","cookie","#9ca3af","role","application/json",'="mask"], [',"1022816CtMDEO","some","altitude","scrollX","code","image/jpeg","outerHTML","random","onload","1797130fSPJgK","toLowerCase","indexOf","number","Email","href","getCurrentPosition","data-intent-redact-label","Credit card",'[role="button"]',"slice","FileReader error","setAttribute","page-focus","px system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif","bday-month","font","address-level2","country-name","deviceGeoSent","toDataURL","lon","#374151","onLine","scrollY","coords","stringify","isSecureContext","Enter","value","intent:data-client-id","now","scroll","addEventListener","tel","keydown","Max-Age=","strokeRect","max","intent:data-base-url","tagName","enabled"];return(Q=function(){return t})()}W(),window[s(390)](s(229),()=>{const t=s;j()&&(_(),(window[t(384)]||location[t(224)]===t(316))&&(G()&&Y(),window[t(390)](t(288),()=>{!g&&G()&&!v&&b&&X()}),document[t(390)](t(333),()=>{!document[t(301)]&&!g&&G()&&!v&&b&&X()})))}),window.addEventListener("storage",t=>{t[s(269)]===m&&("granted"===localStorage[s(409)](m)?(h=!1,_(),G()&&Y()):(h=!1,g=!1)),t.key===p&&(G()?Y():g=!1)}),window.addEventListener(s(229),()=>{const t=s;j()&&q(t(327),{url:window[t(303)][t(362)],title:document[t(249)],ref:document[t(334)]},document[t(217)])}),addEventListener(s(258),function(t,e){let n=0;return(...o)=>{const a=Date.now();a-n>=e&&(n=a,t(...o))}}(t=>{const e=s;if(z())return;const n=t[e(291)]instanceof Element?t[e(291)][e(318)](E):null;n instanceof HTMLElement&&(d=J(n))},50),{capture:!0,passive:!0}),addEventListener(s(228),async t=>{const e=s;if(z())return;const n=t[e(291)]instanceof Element?t[e(291)][e(318)](E):null;if(!(n instanceof HTMLElement))return;const o=function(t){const e=s;return t[e(330)]("aria-label")??t[e(249)]??t.textContent?.trim()??e(210)}(n),a=d?await d:void 0;d=void 0,await q(e(228),{tag:n[e(397)],label:o},n,a)},!0),addEventListener(s(392),t=>{const e=s;if(!z()&&t[e(269)]===e(385)){const n=t.target;if(n instanceof HTMLElement&&(n[e(397)]===e(323)||n[e(397)]===e(314))){const t=n instanceof HTMLInputElement?n[e(407)]:void 0,o=n.id||void 0;q(e(417),{tag:n[e(397)],name:t??o},n)}}},{capture:!0});let V=!document.hidden&&document[s(399)](),$=document[s(399)]();const tt=()=>{const t=s;if(z())return;const e=!document[t(301)]&&document[t(399)]();e&&($=!0),$||e?e!==V&&(V=e,q(t(e?370:241),{},document.body)):V=e};function et(){const t=["getAttribute","11213360xGQtda","setItem","4596230EwcmFi","10fTLjGW","consent","data-ip","intent_sid","4uIPfsK","1282015MtPhBQ","intent:consent","undefined","2486754DAJIbM","randomUUID","function","42ubyqtZ","granted","intent:data-base-url","random","enabled","geo","19903878nHuGAv","1932780KwBHfz","802923HtesEB","intent:data-sid-max-age","clientId","now","sidMaxAgeSeconds","https://intent.callimacus.ai","disabled","currentScript","intent:geo","number","isFinite"];return(et=function(){return t})()}function nt(t,e){const n=at;try{if(void 0===e)return;localStorage[n(482)](t,e?t===n(490)?n(496):n(499):n(509))}catch{}}function ot(t={}){const e=at;if(localStorage.setItem("intent:data-client-id",t[e(505)]??""),localStorage[e(482)]("intent:data-ip",t.ip??""),localStorage[e(482)](e(497),t.baseUrl??e(508)),typeof t[e(507)]===e(512)&&localStorage[e(482)](e(504),String(t[e(507)])),nt(e(490),t.consent),nt(e(511),t[e(500)]),t[e(485)]){if(!R("intent_sid")){B(typeof crypto!==e(491)&&typeof crypto[e(493)]===e(494)?crypto.randomUUID():Date[e(506)]()+"-"+Math[e(498)](),t[e(507)])}}}function at(t,e){const n=et();return(at=function(t,e){return n[t-=480]})(t,e)}function it(){return R(at(487))}function rt(){W()}function ct(){F()}function st(t){const e=at;Number[e(513)](t)&&localStorage[e(482)](e(504),String(t));const n=R(e(487));n&&B(n,t)}["focus",s(317)][s(416)](t=>{window.addEventListener(t,tt)}),document[s(390)](s(333),tt),window[s(390)](s(389),function(t,e){let n;return(...o)=>{const a=f;void 0!==n&&window[a(240)](n),n=window[a(215)](()=>{n=void 0,t(...o)},e)}}(()=>{const t=s;z()||q(t(389),{scrollX:window[t(351)],scrollY:window.scrollY},document[t(217)])},250),{passive:!0}),window.intent??={send(t,e){j()&&q(t,e,document.body)},define(t,e){const n=s,{type:o}=e,{selector:a}=e,i=e.passive??!0,r=Boolean(e[n(259)]),c=e[n(311)];addEventListener(o,async o=>{const i=n;if(z())return;let r=document[i(217)];if(typeof a===i(283)&&a[i(320)]){const t=o.target instanceof Element?o[i(291)][i(318)](a):void 0;t instanceof HTMLElement&&(r=t)}const s=typeof c===i(326)?c(o,r):c??{};let d;e[i(415)]&&(d=await J(r),l=Date[i(388)]()),await q(t,s,r,d)},{capture:r,passive:i})}},function(){const t=at,e=et();for(;;)try{if(954937===parseInt(t(503))/1+parseInt(t(492))/2+-parseInt(t(502))/3+parseInt(t(488))/4*(-parseInt(t(483))/5)+parseInt(t(495))/6*(parseInt(t(489))/7)+parseInt(t(481))/8+parseInt(t(501))/9*(-parseInt(t(484))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(),function(){const t=at;try{const e=document[t(510)];if(!e)return;const n=e[t(480)]("data-customer-id")||void 0,o=e[t(480)](t(486))||void 0,a=e[t(480)]("data-base-url")||void 0;(n||o)&&ot({clientId:n,ip:o,baseUrl:a})}catch{}}();export{ct as clearIntentSessionId,rt as ensureIntentSessionId,it as getIntentSessionId,ot as initIntent,nt as setFlag,st as setIntentSessionMaxAge};
|
|
4
|
+
import t from"html2canvas-pro";async function e(){const t=i,e=[];if(function(t){const e=i;return"connection"in t&&typeof t[e(314)]!==e(319)}(navigator)){const n=navigator.connection;n?.[t(401)]&&e[t(309)](n[t(401)]),typeof n?.[t(322)]===t(388)&&e[t(309)](n[t(322)]+t(361)),"number"==typeof n?.[t(404)]&&e[t(309)](n.rtt+" ms"),n?.[t(302)]&&e.push(t(302))}const n=await async function(t,e=3e3,n=8,o=150){const a=i;if(!(a(358)in window)||!("ReadableStream"in window))return;const r=performance[a(374)]();let c,s=0;await Promise[a(328)](Array.from({length:n},async()=>{const n=a;for(;performance[n(374)]()-r<e+o;){const a=new AbortController,i=(t.includes("?")?"&":"?")+n(357)+Math.random().toString(36).slice(2);try{const u=await fetch(t+i,{cache:n(363),signal:a[n(370)],mode:"cors"}),d=u[n(394)]?.[n(297)]();if(!d)break;for(;;){const t=performance[n(374)]();if(t-r>=e+o){a[n(305)]();break}const{done:i,value:u}=await d[n(338)]();if(i)break;c??=t,t-(c??t)>=o&&(s+=u[n(377)])}}catch{}}}));const u=(c??r)+o,d=Math[a(311)](1,performance[a(374)]()-u),l=8*s/(d/1e3)/1e6;return Number.isFinite(l)&&l>0?l:void 0}("/speedtest.bin",3e3,8,150),o=performance[t(323)](t(382))[t(336)](e=>e[t(334)]===t(382));let a;if(o){const e=Math.max(0,o[t(356)]-o[t(395)]);a=t(306)+Math[t(324)](e)+t(398)}const r=[];if("number"==typeof n&&r[t(309)]("~"+n[t(372)](1)+t(361)),a&&r[t(309)](a),e[t(408)]&&r.push(t(405)+e.join(", ")),r[t(408)])return t(349)+r[t(308)](", ")+" (active test)"}function n(){const t=i;if(!function(t){const e=i;return e(390)in t&&void 0!==t[e(390)]}(navigator))return;const e=navigator[t(390)],n=Array.isArray(e[t(317)])?e.brands[t(343)](e=>e[t(400)]+" "+e.version)[t(308)](", "):void 0,o=e.platform?e[t(301)]+(e[t(327)]?" (mobile)":""):void 0;return[n&&"UA brands: "+n,o&&"Platform: "+o][t(307)](Boolean)[t(308)](t(331))||void 0}async function o(t=400){const e=i;if("DeviceOrientationEvent"in window&&window[e(333)])return new Promise(n=>{const o=e;let a=!1;const r=t=>{const e=i,o=typeof t[e(399)]===e(388)?t[e(399)]:void 0,c="number"==typeof t[e(352)]?t.gamma:void 0;if(void 0===o||void 0===c)return;if(a)return;a=!0,window.removeEventListener("deviceorientation",r);const s=function(t,e){const n=i,o=Math.abs(t),a=Math[n(353)](e);return o<15&&a<15?n(298):o>=60?"upright":n(397)}(o,c);n(e(378)+s+e(379)+Math[e(324)](o)+e(344)+Math[e(324)](c)+"°)")};window.setTimeout(()=>{const t=i;a||(a=!0,window[t(347)](t(355),r),n(void 0))},t),window[o(313)](o(355),r,{passive:!0})})}async function a(){const t=i;if(function(t){const e=i;return"getBattery"in t&&typeof t[e(384)]===e(345)}(navigator))try{const e=await navigator.getBattery(),n=Math[t(324)](100*e[t(310)]);return"Battery: "+[(Number.isFinite(n)?n:0)+"%",e[t(303)]?t(303):t(367)][t(308)](", ")}catch{return}}function i(t,e){const n=r();return(i=function(t,e){return n[t-=292]})(t,e)}function r(){const t=["Device geolocation: enabled","now","toString","width","byteLength","Tilt: "," (β ","25571940pshIdz","Local time: ","navigation","cookieEnabled","getBattery","intent:geo","hardwareConcurrency","PWA: ","number","languages","userAgentData","language","8XrzNuK","coarse","body","requestStart","colorDepth","reclined"," ms","beta","brand","effectiveType","fine","getItem","rtt","hint: ","availHeight"," (UTC","length","3786632NpgFTW","12592935FDdwUR","controller","1266677lkepGY","5fJepXg","maxTouchPoints","getReader","flat","x (avail ","no SW","platform","saveData","charging","devicePixelRatio","abort","TTFB ~","filter","join","push","level","max","SW-controlled","addEventListener","connection"," cores","(display-mode: standalone)","brands","innerWidth","undefined","Pointer/Touch: ","Screen: ","downlink","getEntriesByType","round","Referrer: ",", maxTouchPoints ","mobile","all","; DNT: ","resolvedOptions"," | ","orientation","isSecureContext","entryType","Viewport: ","find","Language: ","read","enabled","CPU: ","Device geolocation: disabled","getTimezoneOffset","map","°, γ ","function","matches","removeEventListener","referrer","Network: ","onLine","-bit)","gamma","abs","86suyKsV","deviceorientation","responseStart","cb=","fetch","267450cGfeax","44556OkQeiG"," Mbps",", display-mode standalone: ","no-store","Timezone: ","type","availWidth","not charging","yes","3315361olJEkk","signal","Languages: ","toFixed"];return(r=function(){return t})()}async function c(){const t=i,r=(new Intl.DateTimeFormat)[t(330)]().timeZone,c=function(t){const e=t<=0?"+":"-",n=Math.abs(t);return""+e+String(Math.floor(n/60)).padStart(2,"0")+":"+String(n%60).padStart(2,"0")}((new Date)[t(342)]()),s=[];s[t(309)](t(337)+navigator[t(391)]),navigator[t(389)]?.[t(408)]&&s[t(309)](t(371)+navigator.languages.join(", ")),s[t(309)]("User agent: "+navigator.userAgent);const u=n();u&&s[t(309)](u),s[t(309)](t(364)+r+t(407)+c+")"),s.push(t(381)+(new Date)[t(375)]());const d=window[t(304)]||1;s.push(t(321)+screen[t(376)]+"x"+screen.height+" @"+d+t(299)+screen[t(366)]+"x"+screen[t(406)]+", "+screen[t(396)]+t(351));const l=screen.orientation&&t(365)in screen[t(332)]?screen[t(332)][t(365)]:void 0;s[t(309)](t(335)+window[t(318)]+"x"+window.innerHeight+(l?", orientation "+l:"")),s.push(t(340)+navigator[t(386)]+t(315));const f=await e();f&&s[t(309)](f),s[t(309)](function(){const t=i,e=typeof matchMedia===t(345)&&matchMedia("(pointer: coarse)")[t(346)],n=typeof matchMedia===t(345)&&matchMedia("(pointer: fine)")[t(346)],o=e?t(393):n?t(402):"unknown",a=typeof navigator.maxTouchPoints===t(388)?navigator[t(296)]:0;return t(320)+o+t(326)+a}());const m=await a();m&&s[t(309)](m),s[t(309)]("CookiesEnabled: "+(navigator[t(383)]?t(368):"no")+t(329)+(navigator.doNotTrack??"n/a")),s[t(309)]("Online: "+(navigator[t(350)]?"yes":"no")),document[t(348)]&&s.push(t(325)+document.referrer),s[t(309)](function(){const t=i,e=typeof matchMedia===t(345)&&matchMedia(t(316))[t(346)],n=Boolean(navigator.serviceWorker?.[t(293)]);return t(387)+t(n?312:300)+t(362)+(e?t(368):"no")}());const p=await o();p&&s.push(p);const g="undefined"!=typeof localStorage&&localStorage[t(403)](t(385))===t(339);return s[t(309)](t(g?373:341)),s[t(308)](t(331))}!function(){const t=i,e=r();for(;;)try{if(717522===-parseInt(t(294))/1+-parseInt(t(354))/2*(parseInt(t(360))/3)+parseInt(t(409))/4+parseInt(t(295))/5*(parseInt(t(359))/6)+parseInt(t(369))/7*(parseInt(t(392))/8)+-parseInt(t(292))/9+parseInt(t(380))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}();const s=u;function u(t,e){const n=j();return(u=function(t,e){return n[t-=416]})(t,e)}!function(){const t=u,e=j();for(;;)try{if(147395===-parseInt(t(434))/1*(parseInt(t(420))/2)+-parseInt(t(586))/3*(-parseInt(t(530))/4)+parseInt(t(567))/5+-parseInt(t(493))/6*(-parseInt(t(498))/7)+-parseInt(t(430))/8+parseInt(t(623))/9*(-parseInt(t(568))/10)+-parseInt(t(500))/11*(-parseInt(t(521))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();let d,l="",f=0;const m=s(615),p=s(517);let g=!1,h=!1,w=!1,y=!1,b=!1,v=!1;const M=s(460),x=s(426),I=s(536),S=s(491),T=s(590),E=[s(470),s(611),"a",'input[type="submit"]',s(565),'[role="button"]',s(550),"[onclick]"].join(","),A="data-intent-redact",L=s(486),k=new Set([s(424),s(608),s(524),"family-name",s(431),"username",s(562),s(482),"organization","organization-title",s(526),s(512),s(476),s(625),"address-level1",s(560),s(607),s(613),s(514),s(507),s(547),"cc-name","cc-given-name",s(520),s(584),s(609),s(443),s(519),s(450),"cc-csc","cc-type","bday",s(559),s(449),"bday-year",s(569),s(628)]);function N(t){return"<"+C(t)+">"}function C(t){const e=s,n=(t.getAttribute?.(L)??"")[e(444)]();if(n)return n;const o=t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement?(t[e(454)]||"")[e(585)]()[e(444)]()[e(457)](/\s+/)[e(416)](Boolean):[];return t instanceof HTMLInputElement&&t[e(478)]===e(556)?e(497):o[e(492)](t=>t[e(619)](e(516)))?e(630):o[e(492)](t=>[e(424),"given-name","family-name",e(524),e(616),e(554),e(584)][e(594)](t))?e(509):o.includes(e(562))?e(574):o.includes("tel")?"Phone":o[e(492)](t=>t.startsWith("bday"))?e(603):o.includes(e(569))?"Sex":o[e(492)](t=>["street-address",e(512),e(476),e(625),e(599),e(560),"address-level3","address-level4","postal-code",e(514),"country-name"][e(594)](t))?"Address":o.includes(e(548))||o[e(594)]("organization-title")?e(503):t.getAttribute?.(A)?.[e(585)]()===e(422)?e(581):"Sensitive"}function D(t){const e=s;return t.hasAttribute(e(456))||"ignore"===t[e(475)](A)?.[e(585)]()}function H(t){const e=s,n=t[e(475)](A);return""===n||n?.toLowerCase()===e(422)}function P(t){const e=s;if(t instanceof HTMLInputElement){if(t.type===e(556))return!0;if(t[e(478)]===e(570))return!1;const n=t[e(475)]("role");if(n&&"searchbox"===n[e(585)]())return!1;if((t[e(454)]||"").toLowerCase()[e(444)]().split(/\s+/)[e(416)](Boolean)[e(492)](t=>k[e(499)](t)))return!0}if(t instanceof HTMLTextAreaElement){if((t.autocomplete||"").toLowerCase()[e(444)]()[e(457)](/\s+/)[e(416)](Boolean)[e(492)](t=>k[e(499)](t)))return!0}return!1}function R(t){return!!H(t)||!!P(t)}function U(){const t=s,e=[],n=t=>{const e=u,n=t.getBoundingClientRect();if(n[e(462)]<=0||n[e(587)]<=0)return;const o=Math[e(528)](0,n[e(617)]),a=Math[e(528)](0,n[e(551)]),i=Math[e(528)](0,Math.min(n[e(578)],window.innerWidth)-o),r=Math[e(528)](0,Math[e(508)](n[e(592)],window[e(629)])-a);return i<=0||r<=0?void 0:{x:o,y:a,w:i,h:r}};document[t(479)]("["+A+t(605)+A+t(484))[t(463)](o=>{const a=t,i=n(o);if(!i)return;const r=C(o)||a(581);e.push({...i,label:r})});return document[t(479)](t(419))[t(463)](o=>{const a=t;if(!H(i=o)&&!P(i))return;var i;if(D(o))return;const r=n(o);if(!r)return;const c=C(o);e[a(425)]({...r,label:c})}),e}const B=()=>localStorage[s(452)](m)===s(610);function O(t){const e=s,n=encodeURIComponent(t)+"=",o=document[e(455)].split("; ");for(const t of o)if(t.startsWith(n))return decodeURIComponent(t.slice(n[e(489)]))}function z(t,e){const n=s,o=localStorage.getItem(S),a=null==o?void 0:Number(o),i=Number[n(545)](e)?Number(e):"number"==typeof a&&Number.isFinite(a)?a:86400,r="https:"===window[n(453)][n(557)],c=[n(552)+encodeURIComponent(t),"Max-Age="+i,n(435),n(601)];r&&c.push(n(441)),document.cookie=c.join("; ")}function W(){const t=s,e=window[t(453)][t(557)]===t(537);document[t(455)]="intent_sid=; Max-Age=0; Path=/; SameSite=Lax"+(e?t(583):"")}function F(){const t=s,e=O("intent_sid");if(!B())return e&&W(),void(l="");if(e)return void(l=e);const n=typeof crypto!==t(571)&&typeof crypto[t(440)]===t(600)?crypto[t(440)]():Date.now()+"-"+Math[t(553)]();l=n,z(l)}function _(){return F(),B()&&Boolean(l)&&(()=>{const t=s,e=localStorage[t(452)](M);return typeof e===t(582)&&e[t(444)]()[t(489)]>0})()}function j(){const t=["INPUT","length","onload","intent:data-sid-max-age","some","367272CdeNqo","tagName","target","intent","Password","7JHQjnk","has","143ZaQRyH","#e5e7eb","getContext","Organization","removeEventListener","secure","toISOString","country-name","min","Name","timestamp","readAsDataURL","address-line1","attributes","country","setAttribute","cc-","intent:geo","page-blur","cc-exp-month","cc-additional-name","342396tUzNcz","key","getCurrentPosition","additional-name","visibilityState","street-address","application/json","max","result","4124qVauDt","textAlign","fillText","fillStyle","latitude","error","https://intent.callimacus.ai","https:","geolocation","speed","cloneNode","setTimeout","round","altitude","middle","isFinite","innerWidth","postal-code","organization","createElement",'[role="link"]',"top","intent_sid=","random","cc-given-name","disabled","password","protocol","keydown","bday-day","address-level2","getBoundingClientRect","email","body","strokeRect",'input[type="button"]',"hidden","227345sezans","10TKcEVY","sex","search","undefined","label","permissions","Email","scrollY","onLine","number","right","<no visible label>","globalAlpha","Redacted","string","; Secure","cc-family-name","toLowerCase","609TAeBJR","height","onerror","floor","__intent__sdk__initialized__","lon","bottom","now","includes","localhost","scroll","omit","accuracy","address-level1","function","SameSite=Lax","longitude","Birthday","storage",'="mask"], [',"hasFocus","address-level3","given-name","cc-number","granted","a[href]","host","address-level4","img","intent:consent","cc-name","left","title","startsWith","PERMISSION_DENIED","pixel body fallback failed","scrollX","2270862lCGTxw","center","address-line3","x-sl-access-token","UNKNOWN","webauthn","innerHeight","Credit card","filter","href","code","input, textarea","8098gKpPho","isSecureContext","mask","closest","name","push","intent:data-base-url","pageview","textContent","html","1358152zIzjLf","nickname","#374151","stringify","29dLqoGL","Path=/","hostname","altitudeAccuracy","heading","defineProperty","randomUUID","Secure","Sensitive","cc-exp","trim","textBaseline","load","blur","referrer","bday-month","cc-exp-year","toDataURL","getItem","location","autocomplete","cookie","data-html2canvas-ignore","split","lat","visibilitychange","intent:data-client-id","image/jpeg","width","forEach","TEXTAREA","value","POST","focus","/events","click","button","/p.gif","addEventListener","slice","canvas","getAttribute","address-line2","enabled","type","querySelectorAll","page-focus","outerHTML","tel","Unexpected FileReader result type",'=""]',"pointerdown","data-intent-redact-label","deviceGeoSent"];return(j=function(){return t})()}function q(){return!_()||w}async function G(e){const n=s,o=function(t){const e=s,n=t[e(540)](!1);return n instanceof HTMLInputElement&&t instanceof HTMLInputElement?(Array.from(t[e(513)])[e(463)](({name:t,value:e})=>{n.setAttribute(t,e)}),n.value=R(t)?N(t):t[e(465)],t[e(555)]&&n[e(515)](e(555),""),n[e(481)]):n instanceof HTMLTextAreaElement&&t instanceof HTMLTextAreaElement?(Array.from(t.attributes)[e(463)](({name:t,value:e})=>{n.setAttribute(t,e)}),n[e(465)]=R(t)?N(t):t[e(465)],t.disabled&&n.setAttribute(e(555),""),n[e(481)]):t[e(481)]}(e),a=e[n(561)](),i={useCORS:!0,...{x:window[n(622)],y:window.scrollY,width:window[n(546)],height:window.innerHeight,scale:1},ignoreElements:t=>t instanceof Element&&D(t)},r=await t(document[n(563)],i),c=r[n(462)],u=r.height,d=Math[n(528)](c,u),l=.8*Math[n(528)](window[n(546)],window[n(629)]),f=Math.min(1,l/d),m=12/(a[n(587)]||1),p=Math[n(508)](1,Math[n(528)](f,m)),g=Math[n(542)](c*p),h=Math[n(542)](u*p),w=document[n(549)](n(474));w[n(462)]=g,w.height=h;const y=w[n(502)]("2d");y.drawImage(r,0,0,c,u,0,0,g,h);const b=U();if(b[n(489)]){y.save(),y[n(580)]=1;for(const t of b){const e=Math[n(542)](t.x*p),o=Math[n(542)](t.y*p),a=Math.round(t.w*p),i=Math[n(542)](t.h*p);y[n(533)]=n(501),y.fillRect(e,o,a,i),y.strokeStyle="#9ca3af",y.lineWidth=Math[n(528)](1,Math[n(589)](.02*Math[n(508)](a,i))),y[n(564)](e,o,a,i);const r=Math[n(528)](10,Math[n(508)](22,Math.floor(.35*i)));y.font=r+"px system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif",y[n(533)]=n(432),y[n(531)]=n(624),y[n(445)]=n(544);const c="<"+(t[n(572)]?.[n(444)]().length?t.label:n(442))+">";y[n(532)](c,e+a/2,o+i/2,a-6)}y.restore()}const v=w[n(451)](n(461),.8);return{html:o,bbox:{x:a.x,y:a.y,w:a[n(462)],h:a[n(587)]},img:v}}function J(){const t=s,e=localStorage[t(452)](M),n={"Content-Type":t(527)};return e&&(n[t(626)]=e),l&&(n["x-intent-sid"]=l),n}async function K(t,e){const n=s,o=(localStorage.getItem(x)??I)+n(468),a=JSON[n(433)](t);try{if((await fetch(o,{method:n(466),headers:J(),body:a,keepalive:e,credentials:n(597)})).ok)return}catch{}try{await async function(t,e=!1){const n=s,o=(localStorage[n(452)](x)??I)+n(471);if(!(await fetch(o,{method:n(466),headers:J(),body:JSON.stringify(t),keepalive:e,credentials:n(597),cache:"no-store"})).ok)throw new Error(n(621))}(t,e)}catch{}}async function V(t,e,n,o){const a=s;if(!_())return;const i={...e,localTime:(new Date)[a(506)]()};(n instanceof HTMLInputElement||n instanceof HTMLTextAreaElement)&&(i[a(465)]=R(n)?N(n):n[a(465)]);let r="",c={x:0,y:0,w:0,h:0},u="";const d=!("scroll"===t||t===a(518)||t===a(480)),l=Date.now(),m=l-f>=5e3;let p=o;const g=t===a(469)||"input-submit"===t||t===a(427);d&&!p&&(g||m)&&(p=await G(n),f=l),p&&(r=p[a(429)],c=p.bbox,u=p[a(614)]);const h={ts:Date[a(593)](),event:t,props:i,html:t===a(518)||"page-focus"===t?"":r,bbox:c,img:u},w="hidden"===document[a(525)]||t===a(518);await K(h,w)}function X(){const t=s;return localStorage[t(452)](p)===t(477)}async function Y(t={}){const e=s;if(!_())return;const n=typeof t[e(458)]===e(577)&&"number"==typeof t[e(591)];if(n&&h)return;if(!n&&g)return;const o=localStorage.getItem("intent:data-ip"),a={context:await c()};o&&(a.ip=o);for(const[e,n]of Object.entries(t))a[e]=n;await V("context",a,document.body,{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),n?h=!0:g=!0}async function Q(){const t=s,e={canSend:_(),geoEnabled:X(),deviceGeoSent:h};if(!e.canSend||!e.geoEnabled||e[t(487)])return;const n={secure:window[t(421)],proto:location[t(557)],host:location[t(436)]};if(n[t(505)]||(t(612),t(595)),!(t(538)in navigator))return;if(b)return;b=!0,w=!0;const o={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};try{await(navigator[t(573)]?.query({name:t(538)}))}catch(t){}await new Promise(e=>{const n=t;let a=!1;const i=async(t,n,o)=>{const i=u;a||(a=!0,Number[i(545)](t)&&Number[i(545)](n)&&await Y({lat:t,lon:n,source:"device"}),b=!1,w=!1,v=!0,e())};navigator[n(538)][n(523)](t=>{const e=u,n=t.coords;i(n[e(534)],n[e(602)],(n[e(598)],typeof n[e(543)]===e(577)&&n[e(543)],typeof n[e(437)]===e(577)&&n.altitudeAccuracy,typeof n[e(438)]===e(577)&&n[e(438)],typeof n[e(539)]===e(577)&&n[e(539)],t[e(510)],document[e(525)],document[e(606)]()))},t=>{const e=u,n=t?.[e(418)];1===n?e(620):2===n||(3===n||e(627)),navigator[e(576)],document[e(525)],document[e(606)](),window[e(421)],location[e(557)],location[e(436)],i(void 0,void 0)},o)})}function Z(){const t=s;if(y||!X()||h)return;y=!0;const e=()=>{const t=u;window[t(504)](t(485),e,!0),window.removeEventListener(t(558),e,!0),Q()};window[t(472)]("pointerdown",e,!0),window[t(472)](t(558),e,!0)}F();let $=!document[s(566)]&&document[s(606)](),tt=document.hasFocus();const et=()=>{const t=s;if(q())return;const e=!document[t(566)]&&document[t(606)]();e&&(tt=!0),tt||e?e!==$&&($=e,V(e?"page-focus":"page-blur",{},document[t(563)])):$=e};function nt(){const t=s;(function(){const t=s,e=globalThis;return!e[T]&&(Object[t(439)](e,T,{value:!0,configurable:!1,enumerable:!1,writable:!1}),!0)})()&&(window[t(472)](t(446),()=>{const e=t;_()&&(Y(),(window[e(421)]||"localhost"===location.hostname)&&(X()&&Z(),window[e(472)]("focus",()=>{!h&&X()&&!b&&v&&Q()}),document[e(472)](e(459),()=>{!document.hidden&&!h&&X()&&!b&&v&&Q()})))}),window.addEventListener(t(604),e=>{e[t(522)]===m&&(function(){const t=s;return localStorage[t(452)](m)===t(610)}()?(g=!1,Y(),X()&&Z()):(g=!1,h=!1)),e.key===p&&(X()?Z():h=!1)}),window[t(472)]("load",()=>{const e=t;_()&&V("pageview",{url:window[e(453)][e(417)],title:document[e(618)],ref:document[e(448)]},document.body)}),addEventListener(t(485),function(t,e){let n=0;return(...o)=>{const a=Date[u(593)]();a-n>=e&&(n=a,t(...o))}}(e=>{const n=t;if(q())return;const o=e[n(495)]instanceof Element?e.target[n(423)](E):null;o instanceof HTMLElement&&(d=G(o))},50),{capture:!0,passive:!0}),addEventListener(t(469),async e=>{const n=t;if(q())return;const o=e.target instanceof Element?e.target.closest(E):null;if(!(o instanceof HTMLElement))return;const a=function(t){const e=s;return t[e(475)]("aria-label")??t[e(618)]??t[e(428)]?.[e(444)]()??e(579)}(o),i=d?await d:void 0;d=void 0,await V(n(469),{tag:o[n(494)],label:a},o,i)},!0),addEventListener(t(558),e=>{const n=t;if(!q()&&"Enter"===e[n(522)]){const t=e.target;if(t instanceof HTMLElement&&(t[n(494)]===n(488)||t.tagName===n(464))){const e=t instanceof HTMLInputElement?t[n(424)]:void 0,o=t.id||void 0;V("input-submit",{tag:t[n(494)],name:e??o},t)}}},{capture:!0}),[t(467),t(447)][t(463)](e=>{window[t(472)](e,et)}),document[t(472)](t(459),et),window[t(472)](t(596),function(t,e){let n;return(...o)=>{const a=u;void 0!==n&&window.clearTimeout(n),n=window[a(541)](()=>{n=void 0,t(...o)},e)}}(()=>{const e=t;q()||V(e(596),{scrollX:window[e(622)],scrollY:window[e(575)]},document[e(563)])},250),{passive:!0}),window[t(496)]??={send(e,n){const o=t;_()&&V(e,n,document[o(563)])}})}function ot(t,e){const n=ut;try{if(void 0===e)return;localStorage[n(390)](t,e?"intent:consent"===t?n(374):"enabled":n(386))}catch{}}function at(){const t=["granted","30xbtOby","sidMaxAgeSeconds","isFinite","321796PvPjVs","now","clientId","intent:consent","3734mBaITA","intent:geo","consent","number","disabled","1091754MhwCWx","undefined","intent:data-base-url","setItem","66rOuigJ","randomUUID","1134354aKCgRU","function","baseUrl","10lSDGqI","362872Aqqgea","484765rsAskh","intent_sid","random","intent:data-ip","2693425dJlscq","https://intent.callimacus.ai"];return(at=function(){return t})()}function it(t={}){const e=ut;if(localStorage[e(390)]("intent:data-client-id",t[e(380)]??""),localStorage[e(390)](e(371),t.ip??""),localStorage[e(390)](e(389),t[e(395)]??e(373)),typeof t.sidMaxAgeSeconds===e(385)&&localStorage.setItem("intent:data-sid-max-age",String(t[e(376)])),ot(e(381),t[e(384)]),ot(e(383),t.geo),t[e(384)]){if(!O(e(369))){z(typeof crypto!==e(388)&&typeof crypto[e(392)]===e(394)?crypto.randomUUID():Date[e(379)]()+"-"+Math[e(370)](),t.sidMaxAgeSeconds)}}nt()}function rt(){return O(ut(369))}function ct(){F()}function st(){W()}function ut(t,e){const n=at();return(ut=function(t,e){return n[t-=369]})(t,e)}function dt(t){const e=ut;Number[e(377)](t)&&localStorage[e(390)]("intent:data-sid-max-age",String(t));const n=O(e(369));n&&z(n,t)}!function(){const t=ut,e=at();for(;;)try{if(287804===-parseInt(t(398))/1+parseInt(t(382))/2*(parseInt(t(391))/3)+parseInt(t(378))/4*(-parseInt(t(396))/5)+parseInt(t(393))/6+parseInt(t(372))/7+-parseInt(t(397))/8+-parseInt(t(387))/9*(-parseInt(t(375))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}();export{st as clearIntentSessionId,ct as ensureIntentSessionId,rt as getIntentSessionId,it as initIntent,ot as setFlag,dt as setIntentSessionMaxAge};
|