rudder-sdk-js 2.41.0 → 2.42.1
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/CHANGELOG.md +22 -1
- package/LICENSE +21 -0
- package/README.md +138 -18
- package/dist/npm/index.cjs.js +1 -0
- package/{index.d.ts → dist/npm/index.d.ts} +1 -1
- package/dist/npm/index.es.js +1 -0
- package/dist/npm/index.js +1 -0
- package/dist/npm/service-worker/index.es.js +1 -0
- package/dist/npm/service-worker/index.js +1 -0
- package/package.json +93 -19
- package/index.es.js +0 -1
- package/index.js +0 -1
- package/service-worker/index.es.js +0 -5336
- package/service-worker/index.js +0 -5346
- /package/{service-worker → dist/npm/service-worker}/index.d.ts +0 -0
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,27 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
|
3
|
+
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
4
|
+
|
5
|
+
## [2.42.1](https://github.com/rudderlabs/rudder-sdk-js/compare/rudder-sdk-js@2.42.0...rudder-sdk-js@2.42.1) (2023-09-19)
|
6
|
+
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
* **rudder-sdk-js:** fix issue with for loop in ie11 ([e977893](https://github.com/rudderlabs/rudder-sdk-js/commit/e97789315ba4ab850af500f1234317b41fc221f1))
|
11
|
+
|
12
|
+
## [2.42.0](https://github.com/rudderlabs/rudder-sdk-js/compare/rudder-sdk-js@2.41.0...rudder-sdk-js@2.42.0) (2023-09-18)
|
13
|
+
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* messageId to event_id mapping support ([#1366](https://github.com/rudderlabs/rudder-sdk-js/pull/1366)) ([e28225c](https://github.com/rudderlabs/rudder-sdk-js/commit/e28225ccc49dc2ad6c524aaf017d8da62041ba6d))
|
18
|
+
* added proxyUrl support ([#1376](https://github.com/rudderlabs/rudder-sdk-js/pull/1376)) ([18918ab](https://github.com/rudderlabs/rudder-sdk-js/commit/18918aba7734afdb132b8866c551b81b01f13d7b))
|
19
|
+
*
|
20
|
+
|
21
|
+
### Bug Fixes
|
22
|
+
|
23
|
+
* object.formEntries is not a function ([#1365](https://github.com/rudderlabs/rudder-sdk-js/pull/1365)) ([2f2c3ff](https://github.com/rudderlabs/rudder-sdk-js/commit/2f2c3fff662ecb5b946657c2c9e4773072a78c17))
|
24
|
+
* replaced flag with dropdown for datacenter selection ([#1367](https://github.com/rudderlabs/rudder-sdk-js/pull/1367)) ([d63755b](https://github.com/rudderlabs/rudder-sdk-js/commit/d63755b1411c6b1e7864c3e36c5bf165ef17663c))
|
4
25
|
|
5
26
|
## [2.41.0](https://github.com/rudderlabs/rudder-sdk-js/compare/v2.40.5...v2.41.0) (2023-09-01)
|
6
27
|
|
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2021 RudderStack
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
@@ -1,17 +1,120 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
## [](https://www.npmjs.com/package/rudder-sdk-js) [](https://www.typescriptlang.org/)  
|
2
|
+
|
3
|
+
<p align="center">
|
4
|
+
<a href="https://rudderstack.com/">
|
5
|
+
<img src="https://user-images.githubusercontent.com/59817155/121357083-1c571300-c94f-11eb-8cc7-ce6df13855c9.png">
|
6
|
+
</a>
|
7
|
+
<br />
|
8
|
+
<caption>The Customer Data Platform for Developers</caption>
|
9
|
+
</p>
|
10
|
+
<p align="center">
|
11
|
+
<b>
|
12
|
+
<a href="https://rudderstack.com">Website</a>
|
13
|
+
·
|
14
|
+
<a href="https://rudderstack.com/docs/stream-sources/rudderstack-sdk-integration-guides/rudderstack-javascript-sdk/">Documentation</a>
|
15
|
+
·
|
16
|
+
<a href="https://rudderstack.com/join-rudderstack-slack-community">Community Slack</a>
|
17
|
+
</b>
|
18
|
+
</p>
|
19
|
+
|
20
|
+
---
|
21
|
+
|
22
|
+
# [](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#rudderstack-javascript-sdk)RudderStack JavaScript SDK
|
23
|
+
|
24
|
+
The JavaScript SDK lets you track customer event data from your website and send it to your specified destinations via RudderStack.
|
4
25
|
|
5
26
|
> For detailed documentation on the RudderStack JavaScript SDK, click [**here**](https://docs.rudderstack.com/stream-sources/rudderstack-sdk-integration-guides/rudderstack-javascript-sdk).
|
6
27
|
|
7
|
-
|
8
|
-
|
28
|
+
## Table of Contents
|
29
|
+
|
30
|
+
- [**Installing the JavaScript SDK**](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#installing-the-javascript-sdk)
|
31
|
+
- [**Identifying your users**](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#identifying-users)
|
32
|
+
- [**Tracking user actions**](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#tracking-user-actions)
|
33
|
+
- [**The `ready` API**](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#the-ready-api)
|
34
|
+
- [**Self-hosted control plane**](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#self-hosted-control-plane)
|
35
|
+
- [**Adding your own integrations**](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#adding-your-own-integrations)
|
36
|
+
|
37
|
+
| **IMPORTANT**: We have deprecated the service worker export from RudderStack JavaScript SDK npm package and decoupled it to a new package. <br/>If you still wish to use it for your project, refer to [**@rudderstack/analytics-js-service-worker package**](https://www.npmjs.com/package/@rudderstack/analytics-js-service-worker). |
|
38
|
+
| :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
39
|
+
|
40
|
+
## [](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#installing-the-javascript-sdk)Installing the JavaScript SDK
|
41
|
+
|
42
|
+
To integrate the JavaScript SDK with your website, place the following code snippet in the `<head>` section of your website.
|
43
|
+
|
44
|
+
```javascript
|
45
|
+
<script type="text/javascript">
|
46
|
+
!function(){var e=window.rudderanalytics=window.rudderanalytics||[];e.methods=["load","page","track","identify","alias","group","ready","reset","getAnonymousId","setAnonymousId"],e.factory=function(t){return function(){e.push([t].concat(Array.prototype.slice.call(arguments)))}};for(var t=0;t<e.methods.length;t++){var r=e.methods[t];e[r]=e.factory(r)}e.loadJS=function(e,t){var r=document.createElement("script");r.type="text/javascript",r.async=!0,r.src="https://cdn.rudderlabs.com/v1.1/rudder-analytics.min.js";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(r,a)},e.loadJS(),
|
47
|
+
e.load(<WRITE_KEY>,<DATA_PLANE_URL>),
|
48
|
+
e.page()}();
|
49
|
+
</script>
|
50
|
+
```
|
9
51
|
|
10
|
-
|
52
|
+
<br>
|
11
53
|
|
12
|
-
|
54
|
+
> The above snippet lets you integrate the SDK with your website and load it asynchronously to keep your page load time unaffected.
|
55
|
+
|
56
|
+
To load `rudder-analytics.js` on to your page synchronously, you can refer to the minified or non-minified versions of the code in the following sections:
|
57
|
+
|
58
|
+
### Minified code
|
59
|
+
|
60
|
+
```html
|
61
|
+
<script>
|
62
|
+
rudderanalytics=window.rudderanalytics=[];for(var methods=["load","page","track","identify","alias","group","ready","reset","getAnonymousId","setAnonymousId"],i=0;i<methods.length;i++){var method=methods[i];rudderanalytics[method]=function(a){return function(){rudderanalytics.push([a].concat(Array.prototype.slice.call(arguments)))}}(method)}rudderanalytics.load(<WRITE_KEY>,<DATA_PLANE_URL>),rudderanalytics.page();
|
63
|
+
</script>
|
64
|
+
|
65
|
+
<script src="https://cdn.rudderlabs.com/v1.1/rudder-analytics.min.js"></script>
|
66
|
+
```
|
67
|
+
|
68
|
+
### Non-minified code
|
69
|
+
|
70
|
+
```html
|
71
|
+
<script>
|
72
|
+
rudderanalytics = window.rudderanalytics = [];
|
73
|
+
|
74
|
+
var methods = [
|
75
|
+
'load',
|
76
|
+
'page',
|
77
|
+
'track',
|
78
|
+
'identify',
|
79
|
+
'alias',
|
80
|
+
'group',
|
81
|
+
'ready',
|
82
|
+
'reset',
|
83
|
+
'getAnonymousId',
|
84
|
+
'setAnonymousId',
|
85
|
+
];
|
86
|
+
|
87
|
+
for (var i = 0; i < methods.length; i++) {
|
88
|
+
var method = methods[i];
|
89
|
+
rudderanalytics[method] = (function (methodName) {
|
90
|
+
return function () {
|
91
|
+
rudderanalytics.push([methodName].concat(Array.prototype.slice.call(arguments)));
|
92
|
+
};
|
93
|
+
})(method);
|
94
|
+
}
|
95
|
+
rudderanalytics.load(YOUR_WRITE_KEY, DATA_PLANE_URL);
|
96
|
+
//For example,
|
97
|
+
//rudderanalytics.load("1Qb1F3jSWv0eKFBPZcrM7ypgjVo", "http://localhost:8080");
|
98
|
+
rudderanalytics.page();
|
99
|
+
</script>
|
100
|
+
|
101
|
+
<script src="https://cdn.rudderlabs.com/v1.1/rudder-analytics.min.js"></script>
|
102
|
+
```
|
13
103
|
|
14
|
-
|
104
|
+
In all the above versions, there is an explicit `page` call at the end. This is added to ensure that whenever the SDK loads in a page, a `page` call is sent. You can remove this call completely or modify it with the extra page properties to suit your requirement. You can also add `page` calls in your application in places not tied directly to page load, e.g., virtual page views, page renders on route change such as in SPAs, etc.
|
105
|
+
|
106
|
+
### Write key and data plane URL
|
107
|
+
|
108
|
+
To integrate and initialize the JavaScript SDK, you will need the source write key and the data plane URL.
|
109
|
+
|
110
|
+
- To get the source write key, follow [**this guide**](https://www.rudderstack.com/docs/get-started/glossary/#write-key).
|
111
|
+
- To get the data plane URL, follow [**this guide**](https://www.rudderstack.com/docs/rudderstack-cloud/dashboard-overview/#data-plane-url).
|
112
|
+
|
113
|
+
### Alternative installation using NPM
|
114
|
+
|
115
|
+
Although we recommend using the snippets mentioned above to use the JavaScript SDK with your website, you can also use this [**NPM module**](https://www.npmjs.com/package/rudder-sdk-js) to package RudderStack directly into your project.
|
116
|
+
|
117
|
+
To install the SDK via npm, run the following command:
|
15
118
|
|
16
119
|
```bash
|
17
120
|
npm install rudder-sdk-js --save
|
@@ -80,16 +183,16 @@ Refer to the following projects for a detailed walk-through of the above steps:
|
|
80
183
|
| **Browser** | **Supported Versions** |
|
81
184
|
| :-------------- | :--------------------- |
|
82
185
|
| Safari | v7 or later |
|
83
|
-
| IE |
|
84
|
-
| Edge |
|
85
|
-
| Mozilla Firefox |
|
86
|
-
| Chrome |
|
87
|
-
| Opera |
|
88
|
-
| Yandex |
|
186
|
+
| IE | v11 or later |
|
187
|
+
| Edge | v80 or later |
|
188
|
+
| Mozilla Firefox | v47 or later |
|
189
|
+
| Chrome | v54 or later |
|
190
|
+
| Opera | v43 or later |
|
191
|
+
| Yandex | v19.10 or later |
|
89
192
|
|
90
193
|
> If the SDK does not work on the browser versions that you are targeting, verify if adding the browser polyfills to your application solves the issue.
|
91
194
|
|
92
|
-
## Identifying users
|
195
|
+
## [](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#identifying-users)Identifying users
|
93
196
|
|
94
197
|
The `identify` call lets you identify a visiting user and associate them to their actions. It also lets you record the traits about them like their name, email address, etc.
|
95
198
|
|
@@ -122,7 +225,7 @@ In the above example, the user-related information like the `userId` and `email`
|
|
122
225
|
|
123
226
|
For more information on how to use the `identify` call, refer to the [**JavaScript SDK documentation**](https://docs.rudderstack.com/stream-sources/rudderstack-sdk-integration-guides/rudderstack-javascript-sdk).
|
124
227
|
|
125
|
-
## Tracking user actions
|
228
|
+
## [](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#tracking-user-actions)Tracking user actions
|
126
229
|
|
127
230
|
The `track` call lets you record the customer events, i.e. the actions that they perform, along with any associated properties.
|
128
231
|
|
@@ -146,7 +249,7 @@ In the above example, the `track` method tracks the user event ‘**test track e
|
|
146
249
|
|
147
250
|
> You can use the `track` method to track various success metrics for your website like user signups, item purchases, article bookmarks, and more.
|
148
251
|
|
149
|
-
## The `ready` API
|
252
|
+
## [](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#the-ready-api)The `ready` API
|
150
253
|
|
151
254
|
There are cases when you may want to tap into the features provided by the end-destination SDKs to enhance tracking and other functionalities. The JavaScript SDK exposes a `ready` API with a `callback` parameter that fires when the SDK is done initializing itself and the other third-party native SDK destinations.
|
152
255
|
|
@@ -160,7 +263,7 @@ rudderanalytics.ready(() => {
|
|
160
263
|
|
161
264
|
> For more information on the other supported methods, refer to the [**JavaScript SDK APIs**](https://docs.rudderstack.com/stream-sources/rudderstack-sdk-integration-guides/rudderstack-javascript-sdk#supported-apis).
|
162
265
|
|
163
|
-
## Self-Hosted control plane
|
266
|
+
## [](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#self-hosted-control-plane)Self-Hosted control plane
|
164
267
|
|
165
268
|
If you are using a device mode destination like Heap, FullStory, etc., the JavaScript SDK needs to fetch the required configuration from the [**control plane**](https://docs.rudderstack.com/get-started/rudderstack-architecture#control-plane).
|
166
269
|
|
@@ -177,6 +280,23 @@ rudderanalytics.load(<WRITE_KEY>, <DATA_PLANE_URL>, {
|
|
177
280
|
| **For detailed technical documentation and troubleshooting guide on the RudderStack’s JavaScript SDK, check out our [docs](https://docs.rudderstack.com/stream-sources/rudderstack-sdk-integration-guides/rudderstack-javascript-sdk).** |
|
178
281
|
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
179
282
|
|
283
|
+
## [](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#adding-your-own-integrations)Adding your own integrations
|
284
|
+
|
285
|
+
You can start adding integrations of your choice for sending the data through their respective web (JavaScript) SDKs.
|
286
|
+
|
287
|
+
### [](https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-v1.1/README.md#how-to-build-the-sdk)How to build the SDK
|
288
|
+
|
289
|
+
- Look for run scripts in the `package.json` file for getting the browser minified and non-minified builds. The builds are updated in the `dist` folder of the directory. Among the others, some of the important ones are:
|
290
|
+
|
291
|
+
- `npm run build:browser`: This outputs **rudder-analytics.min.js**.
|
292
|
+
- `npm run build:npm`: This outputs **rudder-sdk-js** folder that contains the npm package contents.
|
293
|
+
|
294
|
+
> We use **rollup** to build our SDKs. The configuration for it is present in `rollup-configs` folder.
|
295
|
+
|
296
|
+
## Contribute
|
297
|
+
|
298
|
+
We would love to see you contribute to this project. Get more information on how to contribute [**here**](./CONTRIBUTING.md).
|
299
|
+
|
180
300
|
## Contact us
|
181
301
|
|
182
302
|
For more information on any of the sections covered in this readme, you can [**contact us**](mailto:%20docs@rudderstack.com) or start a conversation on our [**Slack**](https://resources.rudderstack.com/join-rudderstack-slack) channel.
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";function e(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function t(t){for(var n=1;n<arguments.length;n++){var r=null!=arguments[n]?arguments[n]:{};n%2?e(Object(r),!0).forEach((function(e){s(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):e(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,l(r.key),r)}}function o(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function s(e,t,n){return(t=l(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},a.apply(this,arguments)}function u(e){return function(e){if(Array.isArray(e))return c(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function l(e){var t=function(e,t){if("object"!=typeof e||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:String(t)}var h="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function f(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function d(e){return e&&Object.prototype.hasOwnProperty.call(e,"default")&&1===Object.keys(e).length?e.default:e}var p={exports:{}};!function(e){function t(e){if(e)return function(e){for(var n in t.prototype)e[n]=t.prototype[n];return e}(e)}p.exports=t,t.prototype.on=t.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},t.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},t.prototype.off=t.prototype.removeListener=t.prototype.removeAllListeners=t.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var i=0;i<r.length;i++)if((n=r[i])===t||n.fn===t){r.splice(i,1);break}return 0===r.length&&delete this._callbacks["$"+e],this},t.prototype.emit=function(e){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),n=this._callbacks["$"+e],r=1;r<arguments.length;r++)t[r-1]=arguments[r];if(n){r=0;for(var i=(n=n.slice(0)).length;r<i;++r)n[r].apply(this,t)}return this},t.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},t.prototype.hasListeners=function(e){return!!this.listeners(e).length}}();var g=p.exports,y=f(g);function v(e){return null!=e&&"object"===n(e)&&!0===e["@@functional/placeholder"]}function m(e){return function t(n){return 0===arguments.length||v(n)?t:e.apply(this,arguments)}}function I(e){return function t(n,r){switch(arguments.length){case 0:return t;case 1:return v(n)?t:m((function(t){return e(n,t)}));default:return v(n)&&v(r)?t:v(n)?m((function(t){return e(t,r)})):v(r)?m((function(t){return e(n,t)})):e(n,r)}}}function A(e){return function t(n,r,i){switch(arguments.length){case 0:return t;case 1:return v(n)?t:I((function(t,r){return e(n,t,r)}));case 2:return v(n)&&v(r)?t:v(n)?I((function(t,n){return e(t,r,n)})):v(r)?I((function(t,r){return e(n,t,r)})):m((function(t){return e(n,r,t)}));default:return v(n)&&v(r)&&v(i)?t:v(n)&&v(r)?I((function(t,n){return e(t,n,i)})):v(n)&&v(i)?I((function(t,n){return e(t,r,n)})):v(r)&&v(i)?I((function(t,r){return e(n,t,r)})):v(n)?m((function(t){return e(t,r,i)})):v(r)?m((function(t){return e(n,t,i)})):v(i)?m((function(t){return e(n,r,t)})):e(n,r,i)}}}function k(e,t){return Object.prototype.hasOwnProperty.call(t,e)}var b=m((function(e){return null===e?"Null":void 0===e?"Undefined":Object.prototype.toString.call(e).slice(8,-1)}));function E(e){return"[object Object]"===Object.prototype.toString.call(e)}function C(e,t,r){if(r||(r=new O),function(e){var t=n(e);return null==e||"object"!=t&&"function"!=t}(e))return e;var i,o=function(n){var i=r.get(e);if(i)return i;for(var o in r.set(e,n),e)Object.prototype.hasOwnProperty.call(e,o)&&(n[o]=t?C(e[o],!0,r):e[o]);return n};switch(b(e)){case"Object":return o(Object.create(Object.getPrototypeOf(e)));case"Array":return o([]);case"Date":return new Date(e.valueOf());case"RegExp":return i=e,new RegExp(i.source,i.flags?i.flags:(i.global?"g":"")+(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.sticky?"y":"")+(i.unicode?"u":"")+(i.dotAll?"s":""));case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":return e.slice();default:return e}}var S,O=function(){function e(){this.map={},this.length=0}return e.prototype.set=function(e,t){var n=this.hash(e),r=this.map[n];r||(this.map[n]=r=[]),r.push([e,t]),this.length+=1},e.prototype.hash=function(e){var t=[];for(var n in e)t.push(Object.prototype.toString.call(e[n]));return t.join()},e.prototype.get=function(e){if(this.length<=180)for(var t in this.map)for(var n=this.map[t],r=0;r<n.length;r+=1){var i=n[r];if(i[0]===e)return i[1]}else{var o=this.hash(e),s=this.map[o];if(s)for(var a=0;a<s.length;a+=1){var u=s[a];if(u[0]===e)return u[1]}}},e}(),T=m((function(e){return null!=e&&"function"==typeof e.clone?e.clone():C(e,!0)})),w=A((function(e,t,n){var r,i={};for(r in n=n||{},t=t||{})k(r,t)&&(i[r]=k(r,n)?e(r,t[r],n[r]):t[r]);for(r in n)k(r,n)&&!k(r,i)&&(i[r]=n[r]);return i})),_=A((function e(t,n,r){return w((function(n,r,i){return E(r)&&E(i)?e(t,r,i):t(n,r,i)}),n,r)})),R=A((function(e,t,n){return _((function(t,n,r){return e(n,r)}),t,n)})),P={HS:"HubSpot",GA:"GA",HOTJAR:"Hotjar",GOOGLEADS:"GoogleAds",VWO:"VWO",GTM:"GoogleTagManager",BRAZE:"Braze",INTERCOM:"INTERCOM",KEEN:"Keen",KISSMETRICS:"Kissmetrics",CUSTOMERIO:"CustomerIO",CHARTBEAT:"Chartbeat",COMSCORE:"Comscore",FACEBOOK_PIXEL:"FacebookPixel",LOTAME:"Lotame",OPTIMIZELY:"Optimizely",BUGSNAG:"Bugsnag",FULLSTORY:"Fullstory",TVSQUARED:"TVSquared",GA4:"GA4",MOENGAGE:"MoEngage",AM:"Amplitude",PENDO:"Pendo",LYTICS:"Lytics",APPCUES:"Appcues",POSTHOG:"Posthog",KLAVIYO:"Klaviyo",CLEVERTAP:"Clevertap",BINGADS:"BingAds",PINTEREST_TAG:"PinterestTag",ADOBE_ANALYTICS:"AdobeAnalytics",LINKEDIN_INSIGHT_TAG:"LinkedInInsightTag",REDDIT_PIXEL:"RedditPixel",DRIP:"Drip",HEAP:"Heap",CRITEO:"Criteo",MP:"Mixpanel",QUALTRICS:"Qualtrics",PROFITWELL:"ProfitWell",SENTRY:"Sentry",QUANTUMMETRIC:"QuantumMetric",SNAP_PIXEL:"SnapPixel",POST_AFFILIATE_PRO:"PostAffiliatePro",GOOGLE_OPTIMIZE:"GoogleOptimize",LAUNCHDARKLY:"LaunchDarkly",GA360:"GA360",ADROLL:"Adroll",DCM_FLOODLIGHT:"DCMFloodlight",MATOMO:"Matomo",VERO:"Vero",MOUSEFLOW:"Mouseflow",ROCKERBOX:"Rockerbox",CONVERTFLOW:"ConvertFlow",SNAPENGAGE:"SnapEngage",LIVECHAT:"LiveChat",SHYNET:"Shynet",WOOPRA:"Woopra",ROLLBAR:"RollBar",QUORA_PIXEL:"QuoraPixel",JUNE:"June",ENGAGE:"Engage",ITERABLE:"Iterable",YANDEX_METRICA:"YandexMetrica",REFINER:"Refiner",QUALAROO:"Qualaroo",PODSIGHTS:"Podsights",AXEPTIO:"Axeptio",SATISMETER:"Satismeter",MICROSOFT_CLARITY:"MicrosoftClarity",SENDINBLUE:"Sendinblue",OLARK:"Olark",LEMNISK:"Lemnisk",TIKTOK_ADS:"TiktokAds",ACTIVE_CAMPAIGN:"ActiveCampaign"},x="ADOBE_ANALYTICS";s({},"Adobe Analytics","AdobeAnalytics");var D,L=(s(S={"Adobe Analytics":x,ADOBEANALYTICS:x,"ADOBE ANALYTICS":x},x,x),s(S,"AdobeAnalytics",x),s(S,"adobeanalytics",x),s(S,"adobe analytics",x),s(S,"Adobe analytics",x),s(S,"adobe Analytics",x),S),M="AM";s({},"Amplitude","Amplitude");var B,N=(s(D={},M,M),s(D,"AMPLITUDE",M),s(D,"Amplitude",M),s(D,"am",M),D),G="APPCUES";s({},"Appcues","Appcues");var F,U=(s(B={},G,G),s(B,"Appcues",G),s(B,"App Cues",G),s(B,"appcues",G),B),j="BINGADS";s({},"Bing Ads","BingAds");var K,Q=(s(F={},j,j),s(F,"BingAds",j),s(F,"bingads",j),s(F,"Bing Ads",j),s(F,"Bing ads",j),s(F,"bing Ads",j),s(F,"bing ads",j),F),H="BRAZE";s({},"Braze","Braze");var z,q=(s(K={},H,H),s(K,"Braze",H),s(K,"braze",H),K),V="BUGSNAG";s({},"Bugsnag","Bugsnag");var W,Y=(s(z={},V,V),s(z,"bugsnag",V),s(z,"Bugsnag",V),z),X="CHARTBEAT";s({},"Chartbeat","Chartbeat");var J,$=(s(W={},X,X),s(W,"Chartbeat",X),s(W,"chartbeat",X),s(W,"Chart Beat",X),s(W,"chart beat",X),W),Z="CLEVERTAP";s({},"CleverTap","Clevertap");var ee,te=(s(J={},Z,Z),s(J,"Clevertap",Z),s(J,"clevertap",Z),J),ne="COMSCORE";s({},"Comscore","Comscore");var re,ie=(s(ee={},ne,ne),s(ee,"Comscore",ne),s(ee,"Com Score",ne),s(ee,"com Score",ne),s(ee,"com score",ne),s(ee,"Com score",ne),ee),oe="CRITEO";s({},"Criteo","Criteo");var se,ae=(s(re={},oe,oe),s(re,"Criteo",oe),s(re,"criteo",oe),re),ue="CUSTOMERIO";s({},"Customer IO","CustomerIO");var ce,le=(s(se={},ue,ue),s(se,"Customerio",ue),s(se,"Customer.io",ue),s(se,"CUSTOMER.IO",ue),s(se,"customer.io",ue),se),he="DRIP";s({},"Drip","Drip");var fe,de=(s(ce={},he,he),s(ce,"Drip",he),s(ce,"drip",he),ce),pe="FACEBOOK_PIXEL";s({},"Facebook Pixel","FacebookPixel");var ge,ye=(s(fe={},pe,pe),s(fe,"FB Pixel",pe),s(fe,"Facebook Pixel",pe),s(fe,"facebook pixel",pe),s(fe,"fbpixel",pe),s(fe,"FBPIXEL",pe),s(fe,"FB_PIXEL",pe),fe),ve="FULLSTORY";s({},"Fullstory","Fullstory");var me,Ie=(s(ge={},ve,ve),s(ge,"Fullstory",ve),s(ge,"FullStory",ve),s(ge,"full Story",ve),s(ge,"Full Story",ve),s(ge,"Full story",ve),s(ge,"full story",ve),s(ge,"fullstory",ve),ge),Ae="GA";s({},"Google Analytics","GA");var ke,be=(s(me={},Ae,Ae),s(me,"Google Analytics",Ae),s(me,"GoogleAnalytics",Ae),s(me,"GOOGLE ANALYTICS",Ae),s(me,"google analytics",Ae),me),Ee="GA4";s({},"Google Analytics 4 (GA4)","GA4");var Ce,Se=(s(ke={},Ee,Ee),s(ke,"Google Analytics 4",Ee),s(ke,"Google analytics 4",Ee),s(ke,"google analytics 4",Ee),s(ke,"Google Analytics4",Ee),s(ke,"Google analytics4",Ee),s(ke,"google analytics4",Ee),s(ke,"Google Analytics 4 (GA4)",Ee),s(ke,"google analytics 4 (ga4)",Ee),s(ke,"GoogleAnalytics4",Ee),ke),Oe="GOOGLEADS";s({},"Google Ads","GoogleAds");var Te,we=(s(Ce={},Oe,Oe),s(Ce,"Google Ads",Oe),s(Ce,"GoogleAds",Oe),s(Ce,"GOOGLE ADS",Oe),s(Ce,"google ads",Oe),s(Ce,"googleads",Oe),Ce),_e="GOOGLE_OPTIMIZE";s({},"Google Optimize","GoogleOptimize");var Re,Pe=(s(Te={},_e,_e),s(Te,"Google Optimize",_e),s(Te,"GoogleOptimize",_e),s(Te,"Googleoptimize",_e),s(Te,"GOOGLEOPTIMIZE",_e),s(Te,"google optimize",_e),s(Te,"Google optimize",_e),s(Te,"GOOGLE OPTIMIZE",_e),Te),xe="GTM";s({},"Google Tag Manager","GoogleTagManager");var De,Le=(s(Re={},xe,xe),s(Re,"Google Tag Manager",xe),s(Re,"google tag manager",xe),s(Re,"googletag manager",xe),s(Re,"googletagmanager",xe),Re),Me="HEAP";s({},"Heap.io","Heap");var Be,Ne=(s(De={},Me,Me),s(De,"Heap",Me),s(De,"heap",Me),s(De,"Heap.io",Me),De),Ge="HOTJAR";s({},"Hotjar","Hotjar");var Fe,Ue=(s(Be={},Ge,Ge),s(Be,"Hotjar",Ge),s(Be,"hotjar",Ge),s(Be,"Hot Jar",Ge),s(Be,"hot jar",Ge),Be),je="HS";s({},"HubSpot","HubSpot");var Ke,Qe=(s(Fe={},je,je),s(Fe,"Hubspot",je),s(Fe,"HUBSPOT",je),s(Fe,"hub spot",je),s(Fe,"Hub Spot",je),s(Fe,"Hub spot",je),Fe),He="INTERCOM";s({},"Intercom","INTERCOM");var ze,qe=(s(Ke={},He,He),s(Ke,"Intercom",He),s(Ke,"intercom",He),Ke),Ve="KEEN";s({},"Keen","Keen");var We,Ye=(s(ze={},Ve,Ve),s(ze,"Keen",Ve),s(ze,"Keen.io",Ve),s(ze,"keen",Ve),s(ze,"keen.io",Ve),ze),Xe="KISSMETRICS";s({},"Kiss Metrics","Kissmetrics");var Je,$e=(s(We={},Xe,Xe),s(We,"Kissmetrics",Xe),s(We,"kissmetrics",Xe),We),Ze="KLAVIYO";s({},"Klaviyo","Klaviyo");var et,tt=(s(Je={},Ze,Ze),s(Je,"Klaviyo",Ze),s(Je,"klaviyo",Ze),Je),nt="LAUNCHDARKLY";s({},"LaunchDarkly","LaunchDarkly");var rt,it=(s(et={},nt,nt),s(et,"LaunchDarkly",nt),s(et,"Launch_Darkly",nt),s(et,"Launch Darkly",nt),s(et,"launchDarkly",nt),s(et,"launch darkly",nt),et),ot="LINKEDIN_INSIGHT_TAG";s({},"Linkedin Insight Tag","LinkedInInsightTag");var st,at=(s(rt={},ot,ot),s(rt,"LinkedIn Insight Tag",ot),s(rt,"LinkedIn insight tag",ot),s(rt,"linkedIn insight tag",ot),s(rt,"Linkedin_insight_tag",ot),s(rt,"LinkedinInsighttag",ot),s(rt,"LinkedinInsightTag",ot),s(rt,"LinkedInInsightTag",ot),s(rt,"Linkedininsighttag",ot),s(rt,"LINKEDININSIGHTTAG",ot),s(rt,"linkedininsighttag",ot),rt),ut="LOTAME";s({},"Lotame","Lotame");var ct,lt=(s(st={},ut,ut),s(st,"Lotame",ut),s(st,"lotame",ut),st),ht="LYTICS";s({},"Lytics","Lytics");var ft,dt=(s(ct={},ht,ht),s(ct,"Lytics",ht),s(ct,"lytics",ht),ct),pt="MP";s({},"Mixpanel","Mixpanel");var gt,yt=(s(ft={},pt,pt),s(ft,"MIXPANEL",pt),s(ft,"Mixpanel",pt),s(ft,"MIX PANEL",pt),s(ft,"Mix panel",pt),s(ft,"Mix Panel",pt),ft),vt="MOENGAGE";s({},"MoEngage","MoEngage");var mt,It=(s(gt={},vt,vt),s(gt,"MoEngage",vt),s(gt,"moengage",vt),s(gt,"Moengage",vt),s(gt,"Mo Engage",vt),s(gt,"mo engage",vt),s(gt,"Mo engage",vt),gt),At="OPTIMIZELY";s({},"Optimizely Web","Optimizely");var kt,bt=(s(mt={},At,At),s(mt,"Optimizely",At),s(mt,"optimizely",At),mt),Et="PENDO";s({},"Pendo","Pendo");var Ct,St=(s(kt={},Et,Et),s(kt,"Pendo",Et),s(kt,"pendo",Et),kt),Ot="PINTEREST_TAG";s({},"Pinterest Tag","PinterestTag");var Tt,wt=(s(Ct={},Ot,Ot),s(Ct,"PinterestTag",Ot),s(Ct,"Pinterest_Tag",Ot),s(Ct,"PINTERESTTAG",Ot),s(Ct,"pinterest",Ot),s(Ct,"PinterestAds",Ot),s(Ct,"Pinterest_Ads",Ot),s(Ct,"Pinterest",Ot),s(Ct,"Pinterest Tag",Ot),s(Ct,"Pinterest tag",Ot),s(Ct,"PINTEREST TAG",Ot),s(Ct,"pinterest tag",Ot),s(Ct,"Pinterest Ads",Ot),s(Ct,"Pinterest ads",Ot),Ct),_t="POST_AFFILIATE_PRO";s({},"Post Affiliate Pro","PostAffiliatePro");var Rt,Pt=(s(Tt={},_t,_t),s(Tt,"PostAffiliatePro",_t),s(Tt,"Post_affiliate_pro",_t),s(Tt,"Post Affiliate Pro",_t),s(Tt,"Post affiliate pro",_t),s(Tt,"post affiliate pro",_t),s(Tt,"postaffiliatepro",_t),s(Tt,"POSTAFFILIATEPRO",_t),Tt),xt="POSTHOG";s({},"PostHog","Posthog");var Dt,Lt=(s(Rt={},xt,xt),s(Rt,"PostHog",xt),s(Rt,"Posthog",xt),s(Rt,"posthog",xt),s(Rt,"Post Hog",xt),s(Rt,"Post hog",xt),s(Rt,"post hog",xt),Rt),Mt="PROFITWELL";s({},"ProfitWell","ProfitWell");var Bt,Nt=(s(Dt={},Mt,Mt),s(Dt,"ProfitWell",Mt),s(Dt,"profitwell",Mt),s(Dt,"Profitwell",Mt),s(Dt,"Profit Well",Mt),s(Dt,"profit well",Mt),s(Dt,"Profit well",Mt),Dt),Gt="QUALTRICS";s({},"Qualtrics","Qualtrics");var Ft,Ut=(s(Bt={},Gt,Gt),s(Bt,"Qualtrics",Gt),s(Bt,"qualtrics",Gt),Bt),jt="QUANTUMMETRIC";s({},"Quantum Metric","QuantumMetric");var Kt,Qt=(s(Ft={},jt,jt),s(Ft,"Quantum Metric",jt),s(Ft,"quantum Metric",jt),s(Ft,"quantum metric",jt),s(Ft,"QuantumMetric",jt),s(Ft,"quantumMetric",jt),s(Ft,"quantummetric",jt),s(Ft,"Quantum_Metric",jt),Ft),Ht="REDDIT_PIXEL";s({},"Reddit Pixel","RedditPixel");var zt,qt=(s(Kt={},Ht,Ht),s(Kt,"Reddit_Pixel",Ht),s(Kt,"RedditPixel",Ht),s(Kt,"REDDITPIXEL",Ht),s(Kt,"redditpixel",Ht),s(Kt,"Reddit Pixel",Ht),s(Kt,"REDDIT PIXEL",Ht),s(Kt,"reddit pixel",Ht),Kt),Vt="SENTRY";s({},"Sentry","Sentry");var Wt,Yt=(s(zt={},Vt,Vt),s(zt,"sentry",Vt),s(zt,"Sentry",Vt),zt),Xt="SNAP_PIXEL";s({},"Snap Pixel","SnapPixel");var Jt,$t=(s(Wt={},Xt,Xt),s(Wt,"Snap_Pixel",Xt),s(Wt,"SnapPixel",Xt),s(Wt,"SNAPPIXEL",Xt),s(Wt,"snappixel",Xt),s(Wt,"Snap Pixel",Xt),s(Wt,"SNAP PIXEL",Xt),s(Wt,"snap pixel",Xt),Wt),Zt="TVSQUARED";s({},"TVSquared","TVSquared");var en,tn=(s(Jt={},Zt,Zt),s(Jt,"TVSquared",Zt),s(Jt,"tvsquared",Zt),s(Jt,"tvSquared",Zt),s(Jt,"TvSquared",Zt),s(Jt,"Tvsquared",Zt),s(Jt,"TV Squared",Zt),s(Jt,"tv squared",Zt),s(Jt,"tv Squared",Zt),Jt),nn="VWO";s({},"VWO","VWO");var rn,on=(s(en={},nn,nn),s(en,"VisualWebsiteOptimizer",nn),s(en,"Visualwebsiteoptimizer",nn),s(en,"visualwebsiteoptimizer",nn),s(en,"vwo",nn),s(en,"Visual Website Optimizer",nn),s(en,"Visual website optimizer",nn),s(en,"visual website optimizer",nn),en),sn="GA360";s({},"Google Analytics 360","GA360");var an,un=(s(rn={},sn,sn),s(rn,"Google Analytics 360",sn),s(rn,"Google analytics 360",sn),s(rn,"google analytics 360",sn),s(rn,"Google Analytics360",sn),s(rn,"Google analytics360",sn),s(rn,"google analytics360",sn),s(rn,"GoogleAnalytics360",sn),s(rn,"GA 360",sn),rn),cn="ADROLL";s({},"Adroll","Adroll");var ln,hn=(s(an={},cn,cn),s(an,"Adroll",cn),s(an,"Ad roll",cn),s(an,"ad roll",cn),s(an,"adroll",cn),an),fn="DCM_FLOODLIGHT";s({},"DCM Floodlight","DCMFloodlight");var dn,pn=(s(ln={},fn,fn),s(ln,"DCM Floodlight",fn),s(ln,"dcm floodlight",fn),s(ln,"Dcm Floodlight",fn),s(ln,"DCMFloodlight",fn),s(ln,"dcmfloodlight",fn),s(ln,"DcmFloodlight",fn),s(ln,"dcm_floodlight",fn),s(ln,"DCM_Floodlight",fn),ln),gn="MATOMO";s({},"Matomo","Matomo");var yn,vn=(s(dn={},gn,gn),s(dn,"Matomo",gn),s(dn,"matomo",gn),dn),mn="VERO";s({},"Vero","Vero");var In,An=(s(yn={},mn,mn),s(yn,"Vero",mn),s(yn,"vero",mn),yn),kn="MOUSEFLOW";s({},"Mouseflow","Mouseflow");var bn,En=(s(In={},kn,kn),s(In,"Mouseflow",kn),s(In,"mouseflow",kn),s(In,"mouseFlow",kn),s(In,"MouseFlow",kn),s(In,"Mouse flow",kn),s(In,"mouse flow",kn),s(In,"mouse Flow",kn),s(In,"Mouse Flow",kn),In),Cn="ROCKERBOX";s({},"Rockerbox","Rockerbox");var Sn,On=(s(bn={},Cn,Cn),s(bn,"Rockerbox",Cn),s(bn,"rockerbox",Cn),s(bn,"RockerBox",Cn),s(bn,"Rocker box",Cn),s(bn,"rocker box",Cn),s(bn,"Rocker Box",Cn),bn),Tn="CONVERTFLOW";s({},"ConvertFlow","ConvertFlow");var wn,_n=(s(Sn={},Tn,Tn),s(Sn,"Convertflow",Tn),s(Sn,"convertflow",Tn),s(Sn,"convertFlow",Tn),s(Sn,"ConvertFlow",Tn),s(Sn,"Convert flow",Tn),s(Sn,"convert flow",Tn),s(Sn,"convert Flow",Tn),s(Sn,"Convert Flow",Tn),s(Sn,"CONVERT FLOW",Tn),Sn),Rn="SNAPENGAGE";s({},"SnapEngage","SnapEngage");var Pn,xn=(s(wn={},Rn,Rn),s(wn,"SnapEngage",Rn),s(wn,"Snap_Engage",Rn),s(wn,"snapengage",Rn),s(wn,"SNAP ENGAGE",Rn),s(wn,"Snap Engage",Rn),s(wn,"snap engage",Rn),wn),Dn="LIVECHAT";s({},"LiveChat","LiveChat");var Ln,Mn=(s(Pn={},Dn,Dn),s(Pn,"LiveChat",Dn),s(Pn,"Live_Chat",Dn),s(Pn,"livechat",Dn),s(Pn,"LIVE CHAT",Dn),s(Pn,"Live Chat",Dn),s(Pn,"live chat",Dn),Pn),Bn="SHYNET";s({},"Shynet","Shynet");var Nn,Gn=(s(Ln={},Bn,Bn),s(Ln,"shynet",Bn),s(Ln,"ShyNet",Bn),s(Ln,"shyNet",Bn),s(Ln,"Shynet",Bn),s(Ln,"shy net",Bn),s(Ln,"Shy Net",Bn),s(Ln,"shy Net",Bn),s(Ln,"Shy net",Bn),Ln),Fn="WOOPRA";s({},"Woopra","Woopra");var Un,jn=(s(Nn={},Fn,Fn),s(Nn,"Woopra",Fn),s(Nn,"woopra",Fn),Nn),Kn="ROLLBAR";s({},"RollBar","RollBar");var Qn,Hn=(s(Un={},Kn,Kn),s(Un,"RollBar",Kn),s(Un,"Roll_Bar",Kn),s(Un,"rollbar",Kn),s(Un,"Rollbar",Kn),s(Un,"ROLL BAR",Kn),s(Un,"Roll Bar",Kn),s(Un,"roll bar",Kn),Un),zn="QUORA_PIXEL";s({},"Quora Pixel","QuoraPixel");var qn,Vn=(s(Qn={},zn,zn),s(Qn,"Quora Pixel",zn),s(Qn,"Quora pixel",zn),s(Qn,"QUORA PIXEL",zn),s(Qn,"QuoraPixel",zn),s(Qn,"Quorapixel",zn),s(Qn,"QUORAPIXEL",zn),s(Qn,"Quora_Pixel",zn),s(Qn,"quora_pixel",zn),s(Qn,"Quora",zn),Qn),Wn="JUNE";s({},"June","June");var Yn,Xn=(s(qn={},Wn,Wn),s(qn,"June",Wn),s(qn,"june",Wn),qn),Jn="ENGAGE";s({},"Engage","Engage");var $n,Zn=(s(Yn={},Jn,Jn),s(Yn,"Engage",Jn),s(Yn,"engage",Jn),Yn),er="ITERABLE";s({},"Iterable","Iterable");var tr,nr=(s($n={},er,er),s($n,"Iterable",er),s($n,"iterable",er),$n),rr="YANDEX_METRICA";s({},"Yandex.Metrica","YandexMetrica");var ir,or=(s(tr={},rr,rr),s(tr,"Yandexmetrica",rr),s(tr,"yandexmetrica",rr),s(tr,"yandexMetrica",rr),s(tr,"YandexMetrica",rr),tr),sr="REFINER";s({},"Refiner","Refiner");var ar,ur=(s(ir={},sr,sr),s(ir,"Refiner",sr),s(ir,"refiner",sr),ir),cr="QUALAROO";s({},"Qualaroo","Qualaroo");var lr,hr=(s(ar={},cr,cr),s(ar,"Qualaroo",cr),s(ar,"qualaroo",cr),ar),fr="PODSIGHTS";s({},"Podsights","Podsights");var dr,pr=(s(lr={},fr,fr),s(lr,"Podsights",fr),s(lr,"PodSights",fr),s(lr,"pod Sights",fr),s(lr,"Pod Sights",fr),s(lr,"pod sights",fr),s(lr,"POD SIGHTS",fr),s(lr,"Pod sights",fr),lr),gr="AXEPTIO";s({},"Axeptio","Axeptio");var yr,vr=(s(dr={},gr,gr),s(dr,"Axeptio",gr),s(dr,"axeptio",gr),dr),mr="SATISMETER";s({},"Satismeter","Satismeter");var Ir,Ar=(s(yr={},mr,mr),s(yr,"Satismeter",mr),s(yr,"SatisMeter",mr),yr),kr="MICROSOFT_CLARITY";s({},"Microsoft Clarity","MicrosoftClarity");var br,Er=(s(Ir={},kr,kr),s(Ir,"Microsoft Clarity",kr),s(Ir,"Microsoft clarity",kr),s(Ir,"microsoft clarity",kr),s(Ir,"Microsoft_clarity",kr),s(Ir,"MicrosoftClarity",kr),s(Ir,"MICROSOFTCLARITY",kr),s(Ir,"microsoftclarity",kr),s(Ir,"microsoftClarity",kr),Ir),Cr="SENDINBLUE";s({},"Sendinblue","Sendinblue");var Sr,Or=(s(br={},Cr,Cr),s(br,"Sendinblue",Cr),s(br,"sendinblue",Cr),s(br,"SendinBlue",Cr),br),Tr="OLARK";s({},"Olark","Olark");var wr,_r=(s(Sr={},Tr,Tr),s(Sr,"Olark",Tr),s(Sr,"olark",Tr),Sr),Rr="LEMNISK";s({},"Lemnisk","Lemnisk");var Pr,xr=(s(wr={},Rr,Rr),s(wr,"LEMNISK_MARKETING_AUTOMATION",Rr),s(wr,"Lemnisk Marketing Automation",Rr),s(wr,"LemniskMarketingAutomation",Rr),s(wr,"lemniskmarketingautomation",Rr),s(wr,"lemniskMarketingAutomation",Rr),s(wr,"lemnisk",Rr),s(wr,"Lemnisk",Rr),wr),Dr="TIKTOK_ADS";s({},"TikTok Ads","TiktokAds");var Lr,Mr=(s(Pr={},Dr,Dr),s(Pr,"TiktokAds",Dr),s(Pr,"Tiktok ads",Dr),s(Pr,"Tiktok Ads",Dr),s(Pr,"Tik Tok Ads",Dr),s(Pr,"tik tok ads",Dr),s(Pr,"tiktokads",Dr),Pr),Br="ACTIVE_CAMPAIGN";s({},"Active Campaign","ActiveCampaign");var Nr=(s(Lr={ActiveCampaign:Br,"Active Campaign":Br,"ACTIVE CAMPAIGN":Br},Br,Br),s(Lr,"activecampaign",Br),s(Lr,"active campaign",Br),s(Lr,"Active campaign",Br),s(Lr,"active Campaign",Br),s(Lr,"active_campaign",Br),Lr),Gr=t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t(t({All:"All"},L),N),U),Q),q),Y),$),te),ie),ae),le),de),ye),Ie),be),Se),un),we),Pe),Le),Ne),Ue),Qe),qe),Ye),$e),tt),it),at),lt),dt),yt),It),bt),St),wt),Pt),Lt),Nt),Ut),Qt),qt),Yt),$t),tn),on),hn),pn),vn),An),En),_n),xn),Mn),Gn),jn),Hn),Vn),Xn),Zn),nr),On),or),ur),hr),pr),vr),Ar),Er),Or),_r),xr),Mr),Nr),Fr=4,Ur={setLogLevel:function(e){switch(e.toUpperCase()){case"INFO":Fr=1;break;case"DEBUG":Fr=2;break;case"WARN":Fr=3;break;default:Fr=4}},info:function(){var e;Fr<=1&&(e=console).info.apply(e,arguments)},debug:function(){var e;Fr<=2&&(e=console).log.apply(e,arguments)},warn:function(){var e;Fr<=3&&(e=console).warn.apply(e,arguments)},error:function(){var e;Fr<=4&&(e=console).error.apply(e,arguments)}},jr=1e4,Kr=1e3,Qr="RS_JS_SDK",Hr="Request failed with status:",zr=[Hr],qr="errorReporting",Vr=function(e){var t=window.RudderStackGlobals&&window.RudderStackGlobals[qr];t&&e instanceof Error&&t.notify(e)},Wr=function(e,t){return JSON.stringify(e,function(e){var t=[];return function(r,i){if(!e||null!=i){if("object"!==n(i)||null===i)return i;for(;t.length>0&&t[t.length-1]!==this;)t.pop();return t.includes(i)?(Ur.debug("Circular Reference detected for key: ".concat(r)),"[Circular Reference]"):(t.push(i),i)}}}(t))},Yr=function(e,t,r){var i,o;try{i="string"==typeof e?e:e instanceof Error||e.message?e.message:Wr(e)}catch(e){i=""}if("object"===n(o=e)&&null!==o&&"target"in o){if(e.target&&"script"!==e.target.localName)return"";if(e.target.dataset&&(e.target.dataset.loader!==Qr||"true"!==e.target.dataset.isnonnativesdk))return"";if(i="error in script loading:: src:: ".concat(e.target.src," id:: ").concat(e.target.id),"ad-block"===e.target.id)return r.page("RudderJS-Initiated","ad-block page request",{path:"/ad-blocked",title:i},r.sendAdblockPageOptions),""}return"[handleError]::".concat(t||"",' "').concat(i,'"')},Xr=function(e,t,n){var r;try{r=Yr(e,t,n)}catch(t){Ur.error("[handleError] Exception:: ",t),Ur.error("[handleError] Original error:: ",Wr(e)),Vr(t)}r&&(Ur.error(r),function(e){return!e.message||!zr.some((function(t){return e.message.includes(t)}))}(e)&&Vr(e))},Jr={exports:{}};var $r,Zr={exports:{}},ei=d(Object.freeze({__proto__:null,default:{}}));function ti(){return $r||($r=1,Zr.exports=(e=e||function(e,t){var n;if("undefined"!=typeof window&&window.crypto&&(n=window.crypto),"undefined"!=typeof self&&self.crypto&&(n=self.crypto),"undefined"!=typeof globalThis&&globalThis.crypto&&(n=globalThis.crypto),!n&&"undefined"!=typeof window&&window.msCrypto&&(n=window.msCrypto),!n&&void 0!==h&&h.crypto&&(n=h.crypto),!n)try{n=ei}catch(e){}var r=function(){if(n){if("function"==typeof n.getRandomValues)try{return n.getRandomValues(new Uint32Array(1))[0]}catch(e){}if("function"==typeof n.randomBytes)try{return n.randomBytes(4).readInt32LE()}catch(e){}}throw new Error("Native crypto module could not be used to get secure random number.")},i=Object.create||function(){function e(){}return function(t){var n;return e.prototype=t,n=new e,e.prototype=null,n}}(),o={},s=o.lib={},a=s.Base={extend:function(e){var t=i(this);return e&&t.mixIn(e),t.hasOwnProperty("init")&&this.init!==t.init||(t.init=function(){t.$super.init.apply(this,arguments)}),t.init.prototype=t,t.$super=this,t},create:function(){var e=this.extend();return e.init.apply(e,arguments),e},init:function(){},mixIn:function(e){for(var t in e)e.hasOwnProperty(t)&&(this[t]=e[t]);e.hasOwnProperty("toString")&&(this.toString=e.toString)},clone:function(){return this.init.prototype.extend(this)}},u=s.WordArray=a.extend({init:function(e,n){e=this.words=e||[],this.sigBytes=n!=t?n:4*e.length},toString:function(e){return(e||l).stringify(this)},concat:function(e){var t=this.words,n=e.words,r=this.sigBytes,i=e.sigBytes;if(this.clamp(),r%4)for(var o=0;o<i;o++){var s=n[o>>>2]>>>24-o%4*8&255;t[r+o>>>2]|=s<<24-(r+o)%4*8}else for(var a=0;a<i;a+=4)t[r+a>>>2]=n[a>>>2];return this.sigBytes+=i,this},clamp:function(){var t=this.words,n=this.sigBytes;t[n>>>2]&=4294967295<<32-n%4*8,t.length=e.ceil(n/4)},clone:function(){var e=a.clone.call(this);return e.words=this.words.slice(0),e},random:function(e){for(var t=[],n=0;n<e;n+=4)t.push(r());return new u.init(t,e)}}),c=o.enc={},l=c.Hex={stringify:function(e){for(var t=e.words,n=e.sigBytes,r=[],i=0;i<n;i++){var o=t[i>>>2]>>>24-i%4*8&255;r.push((o>>>4).toString(16)),r.push((15&o).toString(16))}return r.join("")},parse:function(e){for(var t=e.length,n=[],r=0;r<t;r+=2)n[r>>>3]|=parseInt(e.substr(r,2),16)<<24-r%8*4;return new u.init(n,t/2)}},f=c.Latin1={stringify:function(e){for(var t=e.words,n=e.sigBytes,r=[],i=0;i<n;i++){var o=t[i>>>2]>>>24-i%4*8&255;r.push(String.fromCharCode(o))}return r.join("")},parse:function(e){for(var t=e.length,n=[],r=0;r<t;r++)n[r>>>2]|=(255&e.charCodeAt(r))<<24-r%4*8;return new u.init(n,t)}},d=c.Utf8={stringify:function(e){try{return decodeURIComponent(escape(f.stringify(e)))}catch(e){throw new Error("Malformed UTF-8 data")}},parse:function(e){return f.parse(unescape(encodeURIComponent(e)))}},p=s.BufferedBlockAlgorithm=a.extend({reset:function(){this._data=new u.init,this._nDataBytes=0},_append:function(e){"string"==typeof e&&(e=d.parse(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes},_process:function(t){var n,r=this._data,i=r.words,o=r.sigBytes,s=this.blockSize,a=o/(4*s),c=(a=t?e.ceil(a):e.max((0|a)-this._minBufferSize,0))*s,l=e.min(4*c,o);if(c){for(var h=0;h<c;h+=s)this._doProcessBlock(i,h);n=i.splice(0,c),r.sigBytes-=l}return new u.init(n,l)},clone:function(){var e=a.clone.call(this);return e._data=this._data.clone(),e},_minBufferSize:0});s.Hasher=p.extend({cfg:a.extend(),init:function(e){this.cfg=this.cfg.extend(e),this.reset()},reset:function(){p.reset.call(this),this._doReset()},update:function(e){return this._append(e),this._process(),this},finalize:function(e){return e&&this._append(e),this._doFinalize()},blockSize:16,_createHelper:function(e){return function(t,n){return new e.init(n).finalize(t)}},_createHmacHelper:function(e){return function(t,n){return new g.HMAC.init(e,n).finalize(t)}}});var g=o.algo={};return o}(Math),e)),Zr.exports;var e}var ni,ri={exports:{}};function ii(){return ni||(ni=1,ri.exports=(e=ti(),function(){var t=e,n=t.lib.WordArray;function r(e,t,r){for(var i=[],o=0,s=0;s<t;s++)if(s%4){var a=r[e.charCodeAt(s-1)]<<s%4*2|r[e.charCodeAt(s)]>>>6-s%4*2;i[o>>>2]|=a<<24-o%4*8,o++}return n.create(i,o)}t.enc.Base64={stringify:function(e){var t=e.words,n=e.sigBytes,r=this._map;e.clamp();for(var i=[],o=0;o<n;o+=3)for(var s=(t[o>>>2]>>>24-o%4*8&255)<<16|(t[o+1>>>2]>>>24-(o+1)%4*8&255)<<8|t[o+2>>>2]>>>24-(o+2)%4*8&255,a=0;a<4&&o+.75*a<n;a++)i.push(r.charAt(s>>>6*(3-a)&63));var u=r.charAt(64);if(u)for(;i.length%4;)i.push(u);return i.join("")},parse:function(e){var t=e.length,n=this._map,i=this._reverseMap;if(!i){i=this._reverseMap=[];for(var o=0;o<n.length;o++)i[n.charCodeAt(o)]=o}var s=n.charAt(64);if(s){var a=e.indexOf(s);-1!==a&&(t=a)}return r(e,t,i)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="}}(),e.enc.Base64)),ri.exports;var e}var oi,si={exports:{}};function ai(){return oi||(oi=1,si.exports=(e=ti(),function(t){var n=e,r=n.lib,i=r.WordArray,o=r.Hasher,s=n.algo,a=[];!function(){for(var e=0;e<64;e++)a[e]=4294967296*t.abs(t.sin(e+1))|0}();var u=s.MD5=o.extend({_doReset:function(){this._hash=new i.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(e,t){for(var n=0;n<16;n++){var r=t+n,i=e[r];e[r]=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8)}var o=this._hash.words,s=e[t+0],u=e[t+1],d=e[t+2],p=e[t+3],g=e[t+4],y=e[t+5],v=e[t+6],m=e[t+7],I=e[t+8],A=e[t+9],k=e[t+10],b=e[t+11],E=e[t+12],C=e[t+13],S=e[t+14],O=e[t+15],T=o[0],w=o[1],_=o[2],R=o[3];T=c(T,w,_,R,s,7,a[0]),R=c(R,T,w,_,u,12,a[1]),_=c(_,R,T,w,d,17,a[2]),w=c(w,_,R,T,p,22,a[3]),T=c(T,w,_,R,g,7,a[4]),R=c(R,T,w,_,y,12,a[5]),_=c(_,R,T,w,v,17,a[6]),w=c(w,_,R,T,m,22,a[7]),T=c(T,w,_,R,I,7,a[8]),R=c(R,T,w,_,A,12,a[9]),_=c(_,R,T,w,k,17,a[10]),w=c(w,_,R,T,b,22,a[11]),T=c(T,w,_,R,E,7,a[12]),R=c(R,T,w,_,C,12,a[13]),_=c(_,R,T,w,S,17,a[14]),T=l(T,w=c(w,_,R,T,O,22,a[15]),_,R,u,5,a[16]),R=l(R,T,w,_,v,9,a[17]),_=l(_,R,T,w,b,14,a[18]),w=l(w,_,R,T,s,20,a[19]),T=l(T,w,_,R,y,5,a[20]),R=l(R,T,w,_,k,9,a[21]),_=l(_,R,T,w,O,14,a[22]),w=l(w,_,R,T,g,20,a[23]),T=l(T,w,_,R,A,5,a[24]),R=l(R,T,w,_,S,9,a[25]),_=l(_,R,T,w,p,14,a[26]),w=l(w,_,R,T,I,20,a[27]),T=l(T,w,_,R,C,5,a[28]),R=l(R,T,w,_,d,9,a[29]),_=l(_,R,T,w,m,14,a[30]),T=h(T,w=l(w,_,R,T,E,20,a[31]),_,R,y,4,a[32]),R=h(R,T,w,_,I,11,a[33]),_=h(_,R,T,w,b,16,a[34]),w=h(w,_,R,T,S,23,a[35]),T=h(T,w,_,R,u,4,a[36]),R=h(R,T,w,_,g,11,a[37]),_=h(_,R,T,w,m,16,a[38]),w=h(w,_,R,T,k,23,a[39]),T=h(T,w,_,R,C,4,a[40]),R=h(R,T,w,_,s,11,a[41]),_=h(_,R,T,w,p,16,a[42]),w=h(w,_,R,T,v,23,a[43]),T=h(T,w,_,R,A,4,a[44]),R=h(R,T,w,_,E,11,a[45]),_=h(_,R,T,w,O,16,a[46]),T=f(T,w=h(w,_,R,T,d,23,a[47]),_,R,s,6,a[48]),R=f(R,T,w,_,m,10,a[49]),_=f(_,R,T,w,S,15,a[50]),w=f(w,_,R,T,y,21,a[51]),T=f(T,w,_,R,E,6,a[52]),R=f(R,T,w,_,p,10,a[53]),_=f(_,R,T,w,k,15,a[54]),w=f(w,_,R,T,u,21,a[55]),T=f(T,w,_,R,I,6,a[56]),R=f(R,T,w,_,O,10,a[57]),_=f(_,R,T,w,v,15,a[58]),w=f(w,_,R,T,C,21,a[59]),T=f(T,w,_,R,g,6,a[60]),R=f(R,T,w,_,b,10,a[61]),_=f(_,R,T,w,d,15,a[62]),w=f(w,_,R,T,A,21,a[63]),o[0]=o[0]+T|0,o[1]=o[1]+w|0,o[2]=o[2]+_|0,o[3]=o[3]+R|0},_doFinalize:function(){var e=this._data,n=e.words,r=8*this._nDataBytes,i=8*e.sigBytes;n[i>>>5]|=128<<24-i%32;var o=t.floor(r/4294967296),s=r;n[15+(i+64>>>9<<4)]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8),n[14+(i+64>>>9<<4)]=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),e.sigBytes=4*(n.length+1),this._process();for(var a=this._hash,u=a.words,c=0;c<4;c++){var l=u[c];u[c]=16711935&(l<<8|l>>>24)|4278255360&(l<<24|l>>>8)}return a},clone:function(){var e=o.clone.call(this);return e._hash=this._hash.clone(),e}});function c(e,t,n,r,i,o,s){var a=e+(t&n|~t&r)+i+s;return(a<<o|a>>>32-o)+t}function l(e,t,n,r,i,o,s){var a=e+(t&r|n&~r)+i+s;return(a<<o|a>>>32-o)+t}function h(e,t,n,r,i,o,s){var a=e+(t^n^r)+i+s;return(a<<o|a>>>32-o)+t}function f(e,t,n,r,i,o,s){var a=e+(n^(t|~r))+i+s;return(a<<o|a>>>32-o)+t}n.MD5=o._createHelper(u),n.HmacMD5=o._createHmacHelper(u)}(Math),e.MD5)),si.exports;var e}var ui,ci={exports:{}},li={exports:{}};function hi(){return ui||(ui=1,li.exports=(a=ti(),t=(e=a).lib,n=t.WordArray,r=t.Hasher,i=e.algo,o=[],s=i.SHA1=r.extend({_doReset:function(){this._hash=new n.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(e,t){for(var n=this._hash.words,r=n[0],i=n[1],s=n[2],a=n[3],u=n[4],c=0;c<80;c++){if(c<16)o[c]=0|e[t+c];else{var l=o[c-3]^o[c-8]^o[c-14]^o[c-16];o[c]=l<<1|l>>>31}var h=(r<<5|r>>>27)+u+o[c];h+=c<20?1518500249+(i&s|~i&a):c<40?1859775393+(i^s^a):c<60?(i&s|i&a|s&a)-1894007588:(i^s^a)-899497514,u=a,a=s,s=i<<30|i>>>2,i=r,r=h}n[0]=n[0]+r|0,n[1]=n[1]+i|0,n[2]=n[2]+s|0,n[3]=n[3]+a|0,n[4]=n[4]+u|0},_doFinalize:function(){var e=this._data,t=e.words,n=8*this._nDataBytes,r=8*e.sigBytes;return t[r>>>5]|=128<<24-r%32,t[14+(r+64>>>9<<4)]=Math.floor(n/4294967296),t[15+(r+64>>>9<<4)]=n,e.sigBytes=4*t.length,this._process(),this._hash},clone:function(){var e=r.clone.call(this);return e._hash=this._hash.clone(),e}}),e.SHA1=r._createHelper(s),e.HmacSHA1=r._createHmacHelper(s),a.SHA1)),li.exports;var e,t,n,r,i,o,s,a}var fi,di,pi={exports:{}};function gi(){return di||(di=1,ci.exports=function(e){return n=(t=e).lib,r=n.Base,i=n.WordArray,o=t.algo,s=o.MD5,a=o.EvpKDF=r.extend({cfg:r.extend({keySize:4,hasher:s,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,t){for(var n,r=this.cfg,o=r.hasher.create(),s=i.create(),a=s.words,u=r.keySize,c=r.iterations;a.length<u;){n&&o.update(n),n=o.update(e).finalize(t),o.reset();for(var l=1;l<c;l++)n=o.finalize(n),o.reset();s.concat(n)}return s.sigBytes=4*u,s}}),t.EvpKDF=function(e,t,n){return a.create(n).compute(e,t)},e.EvpKDF;var t,n,r,i,o,s,a}(ti(),hi(),(fi||(fi=1,pi.exports=(e=ti(),void function(){var t=e,n=t.lib.Base,r=t.enc.Utf8;t.algo.HMAC=n.extend({init:function(e,t){e=this._hasher=new e.init,"string"==typeof t&&(t=r.parse(t));var n=e.blockSize,i=4*n;t.sigBytes>i&&(t=e.finalize(t)),t.clamp();for(var o=this._oKey=t.clone(),s=this._iKey=t.clone(),a=o.words,u=s.words,c=0;c<n;c++)a[c]^=1549556828,u[c]^=909522486;o.sigBytes=s.sigBytes=i,this.reset()},reset:function(){var e=this._hasher;e.reset(),e.update(this._iKey)},update:function(e){return this._hasher.update(e),this},finalize:function(e){var t=this._hasher,n=t.finalize(e);return t.reset(),t.finalize(this._oKey.clone().concat(n))}})}())),pi.exports))),ci.exports;var e}var yi,vi,mi={exports:{}};Jr.exports=function(e){return function(){var t=e,n=t.lib.BlockCipher,r=t.algo,i=[],o=[],s=[],a=[],u=[],c=[],l=[],h=[],f=[],d=[];!function(){for(var e=[],t=0;t<256;t++)e[t]=t<128?t<<1:t<<1^283;var n=0,r=0;for(t=0;t<256;t++){var p=r^r<<1^r<<2^r<<3^r<<4;p=p>>>8^255&p^99,i[n]=p,o[p]=n;var g=e[n],y=e[g],v=e[y],m=257*e[p]^16843008*p;s[n]=m<<24|m>>>8,a[n]=m<<16|m>>>16,u[n]=m<<8|m>>>24,c[n]=m,m=16843009*v^65537*y^257*g^16843008*n,l[p]=m<<24|m>>>8,h[p]=m<<16|m>>>16,f[p]=m<<8|m>>>24,d[p]=m,n?(n=g^e[e[e[v^g]]],r^=e[e[r]]):n=r=1}}();var p=[0,1,2,4,8,16,32,64,128,27,54],g=r.AES=n.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var e=this._keyPriorReset=this._key,t=e.words,n=e.sigBytes/4,r=4*((this._nRounds=n+6)+1),o=this._keySchedule=[],s=0;s<r;s++)s<n?o[s]=t[s]:(c=o[s-1],s%n?n>6&&s%n==4&&(c=i[c>>>24]<<24|i[c>>>16&255]<<16|i[c>>>8&255]<<8|i[255&c]):(c=i[(c=c<<8|c>>>24)>>>24]<<24|i[c>>>16&255]<<16|i[c>>>8&255]<<8|i[255&c],c^=p[s/n|0]<<24),o[s]=o[s-n]^c);for(var a=this._invKeySchedule=[],u=0;u<r;u++){if(s=r-u,u%4)var c=o[s];else c=o[s-4];a[u]=u<4||s<=4?c:l[i[c>>>24]]^h[i[c>>>16&255]]^f[i[c>>>8&255]]^d[i[255&c]]}}},encryptBlock:function(e,t){this._doCryptBlock(e,t,this._keySchedule,s,a,u,c,i)},decryptBlock:function(e,t){var n=e[t+1];e[t+1]=e[t+3],e[t+3]=n,this._doCryptBlock(e,t,this._invKeySchedule,l,h,f,d,o),n=e[t+1],e[t+1]=e[t+3],e[t+3]=n},_doCryptBlock:function(e,t,n,r,i,o,s,a){for(var u=this._nRounds,c=e[t]^n[0],l=e[t+1]^n[1],h=e[t+2]^n[2],f=e[t+3]^n[3],d=4,p=1;p<u;p++){var g=r[c>>>24]^i[l>>>16&255]^o[h>>>8&255]^s[255&f]^n[d++],y=r[l>>>24]^i[h>>>16&255]^o[f>>>8&255]^s[255&c]^n[d++],v=r[h>>>24]^i[f>>>16&255]^o[c>>>8&255]^s[255&l]^n[d++],m=r[f>>>24]^i[c>>>16&255]^o[l>>>8&255]^s[255&h]^n[d++];c=g,l=y,h=v,f=m}g=(a[c>>>24]<<24|a[l>>>16&255]<<16|a[h>>>8&255]<<8|a[255&f])^n[d++],y=(a[l>>>24]<<24|a[h>>>16&255]<<16|a[f>>>8&255]<<8|a[255&c])^n[d++],v=(a[h>>>24]<<24|a[f>>>16&255]<<16|a[c>>>8&255]<<8|a[255&l])^n[d++],m=(a[f>>>24]<<24|a[c>>>16&255]<<16|a[l>>>8&255]<<8|a[255&h])^n[d++],e[t]=g,e[t+1]=y,e[t+2]=v,e[t+3]=m},keySize:8});t.AES=n._createHelper(g)}(),e.AES}(ti(),ii(),ai(),gi(),yi||(yi=1,mi.exports=(vi=ti(),gi(),void(vi.lib.Cipher||function(e){var t=vi,n=t.lib,r=n.Base,i=n.WordArray,o=n.BufferedBlockAlgorithm,s=t.enc;s.Utf8;var a=s.Base64,u=t.algo.EvpKDF,c=n.Cipher=o.extend({cfg:r.extend(),createEncryptor:function(e,t){return this.create(this._ENC_XFORM_MODE,e,t)},createDecryptor:function(e,t){return this.create(this._DEC_XFORM_MODE,e,t)},init:function(e,t,n){this.cfg=this.cfg.extend(n),this._xformMode=e,this._key=t,this.reset()},reset:function(){o.reset.call(this),this._doReset()},process:function(e){return this._append(e),this._process()},finalize:function(e){return e&&this._append(e),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function e(e){return"string"==typeof e?m:y}return function(t){return{encrypt:function(n,r,i){return e(r).encrypt(t,n,r,i)},decrypt:function(n,r,i){return e(r).decrypt(t,n,r,i)}}}}()});n.StreamCipher=c.extend({_doFinalize:function(){return this._process(!0)},blockSize:1});var l=t.mode={},h=n.BlockCipherMode=r.extend({createEncryptor:function(e,t){return this.Encryptor.create(e,t)},createDecryptor:function(e,t){return this.Decryptor.create(e,t)},init:function(e,t){this._cipher=e,this._iv=t}}),f=l.CBC=function(){var t=h.extend();function n(t,n,r){var i,o=this._iv;o?(i=o,this._iv=e):i=this._prevBlock;for(var s=0;s<r;s++)t[n+s]^=i[s]}return t.Encryptor=t.extend({processBlock:function(e,t){var r=this._cipher,i=r.blockSize;n.call(this,e,t,i),r.encryptBlock(e,t),this._prevBlock=e.slice(t,t+i)}}),t.Decryptor=t.extend({processBlock:function(e,t){var r=this._cipher,i=r.blockSize,o=e.slice(t,t+i);r.decryptBlock(e,t),n.call(this,e,t,i),this._prevBlock=o}}),t}(),d=(t.pad={}).Pkcs7={pad:function(e,t){for(var n=4*t,r=n-e.sigBytes%n,o=r<<24|r<<16|r<<8|r,s=[],a=0;a<r;a+=4)s.push(o);var u=i.create(s,r);e.concat(u)},unpad:function(e){var t=255&e.words[e.sigBytes-1>>>2];e.sigBytes-=t}};n.BlockCipher=c.extend({cfg:c.cfg.extend({mode:f,padding:d}),reset:function(){var e;c.reset.call(this);var t=this.cfg,n=t.iv,r=t.mode;this._xformMode==this._ENC_XFORM_MODE?e=r.createEncryptor:(e=r.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==e?this._mode.init(this,n&&n.words):(this._mode=e.call(r,this,n&&n.words),this._mode.__creator=e)},_doProcessBlock:function(e,t){this._mode.processBlock(e,t)},_doFinalize:function(){var e,t=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(t.pad(this._data,this.blockSize),e=this._process(!0)):(e=this._process(!0),t.unpad(e)),e},blockSize:4});var p=n.CipherParams=r.extend({init:function(e){this.mixIn(e)},toString:function(e){return(e||this.formatter).stringify(this)}}),g=(t.format={}).OpenSSL={stringify:function(e){var t=e.ciphertext,n=e.salt;return(n?i.create([1398893684,1701076831]).concat(n).concat(t):t).toString(a)},parse:function(e){var t,n=a.parse(e),r=n.words;return 1398893684==r[0]&&1701076831==r[1]&&(t=i.create(r.slice(2,4)),r.splice(0,4),n.sigBytes-=16),p.create({ciphertext:n,salt:t})}},y=n.SerializableCipher=r.extend({cfg:r.extend({format:g}),encrypt:function(e,t,n,r){r=this.cfg.extend(r);var i=e.createEncryptor(n,r),o=i.finalize(t),s=i.cfg;return p.create({ciphertext:o,key:n,iv:s.iv,algorithm:e,mode:s.mode,padding:s.padding,blockSize:e.blockSize,formatter:r.format})},decrypt:function(e,t,n,r){return r=this.cfg.extend(r),t=this._parse(t,r.format),e.createDecryptor(n,r).finalize(t.ciphertext)},_parse:function(e,t){return"string"==typeof e?t.parse(e,this):e}}),v=(t.kdf={}).OpenSSL={execute:function(e,t,n,r){r||(r=i.random(8));var o=u.create({keySize:t+n}).compute(e,r),s=i.create(o.words.slice(t),4*n);return o.sigBytes=4*t,p.create({key:o,iv:s,salt:r})}},m=n.PasswordBasedCipher=y.extend({cfg:y.cfg.extend({kdf:v}),encrypt:function(e,t,n,r){var i=(r=this.cfg.extend(r)).kdf.execute(n,e.keySize,e.ivSize);r.iv=i.iv;var o=y.encrypt.call(this,e,t,i.key,r);return o.mixIn(i),o},decrypt:function(e,t,n,r){r=this.cfg.extend(r),t=this._parse(t,r.format);var i=r.kdf.execute(n,e.keySize,e.ivSize,t.salt);return r.iv=i.iv,y.decrypt.call(this,e,t,i.key,r)}})}()))));var Ii=f(Jr.exports),Ai={exports:{}};Ai.exports=function(e){return e.enc.Utf8}(ti());var ki=f(Ai.exports),bi=function(e){return null!=e&&"object"===n(e)&&!1===Array.isArray(e)},Ei=function(e,t,n){if(bi(n)||(n={default:n}),!Oi(e))return void 0!==n.default?n.default:e;"number"==typeof t&&(t=String(t));var r=Array.isArray(t),i="string"==typeof t,o=n.separator||".",s=n.joinChar||("string"==typeof o?o:".");if(!i&&!r)return e;if(i&&t in e)return Si(t,e,n)?e[t]:n.default;var a=r?t:function(e,t,n){if("function"==typeof n.split)return n.split(e);return e.split(t)}(t,o,n),u=a.length,c=0;do{var l=a[c];for("number"==typeof l&&(l=String(l));l&&"\\"===l.slice(-1);)l=Ci([l.slice(0,-1),a[++c]||""],s,n);if(l in e){if(!Si(l,e,n))return n.default;e=e[l]}else{for(var h=!1,f=c+1;f<u;)if(h=(l=Ci([l,a[f++]],s,n))in e){if(!Si(l,e,n))return n.default;e=e[l],c=f-1;break}if(!h)return n.default}}while(++c<u&&Oi(e));return c===u?e:n.default};function Ci(e,t,n){return"function"==typeof n.join?n.join(e):e[0]+t+e[1]}function Si(e,t,n){return"function"!=typeof n.isValid||n.isValid(e,t)}function Oi(e){return bi(e)||Array.isArray(e)||"function"==typeof e}var Ti,wi,_i=f(Ei),Ri={exports:{}};function Pi(){if(wi)return Ti;wi=1;var e=1e3,t=60*e,r=60*t,i=24*r,o=7*i,s=365.25*i;function a(e,t,n,r){var i=t>=1.5*n;return Math.round(e/n)+" "+r+(i?"s":"")}return Ti=function(u,c){c=c||{};var l=n(u);if("string"===l&&u.length>0)return function(n){if((n=String(n)).length>100)return;var a=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(n);if(!a)return;var u=parseFloat(a[1]);switch((a[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return u*s;case"weeks":case"week":case"w":return u*o;case"days":case"day":case"d":return u*i;case"hours":case"hour":case"hrs":case"hr":case"h":return u*r;case"minutes":case"minute":case"mins":case"min":case"m":return u*t;case"seconds":case"second":case"secs":case"sec":case"s":return u*e;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return u;default:return}}(u);if("number"===l&&isFinite(u))return c.long?function(n){var o=Math.abs(n);if(o>=i)return a(n,o,i,"day");if(o>=r)return a(n,o,r,"hour");if(o>=t)return a(n,o,t,"minute");if(o>=e)return a(n,o,e,"second");return n+" ms"}(u):function(n){var o=Math.abs(n);if(o>=i)return Math.round(n/i)+"d";if(o>=r)return Math.round(n/r)+"h";if(o>=t)return Math.round(n/t)+"m";if(o>=e)return Math.round(n/e)+"s";return n+"ms"}(u);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(u))},Ti}var xi=function(e){function t(e){var r,i,o,s=null;function a(){for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];if(a.enabled){var o=a,s=Number(new Date),u=s-(r||s);o.diff=u,o.prev=r,o.curr=s,r=s,n[0]=t.coerce(n[0]),"string"!=typeof n[0]&&n.unshift("%O");var c=0;n[0]=n[0].replace(/%([a-zA-Z%])/g,(function(e,r){if("%%"===e)return"%";c++;var i=t.formatters[r];if("function"==typeof i){var s=n[c];e=i.call(o,s),n.splice(c,1),c--}return e})),t.formatArgs.call(o,n),(o.log||t.log).apply(o,n)}}return a.namespace=e,a.useColors=t.useColors(),a.color=t.selectColor(e),a.extend=n,a.destroy=t.destroy,Object.defineProperty(a,"enabled",{enumerable:!0,configurable:!1,get:function(){return null!==s?s:(i!==t.namespaces&&(i=t.namespaces,o=t.enabled(e)),o)},set:function(e){s=e}}),"function"==typeof t.init&&t.init(a),a}function n(e,n){var r=t(this.namespace+(void 0===n?":":n)+e);return r.log=this.log,r}function r(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return t.debug=t,t.default=t,t.coerce=function(e){if(e instanceof Error)return e.stack||e.message;return e},t.disable=function(){var e=[].concat(u(t.names.map(r)),u(t.skips.map(r).map((function(e){return"-"+e})))).join(",");return t.enable(""),e},t.enable=function(e){var n;t.save(e),t.namespaces=e,t.names=[],t.skips=[];var r=("string"==typeof e?e:"").split(/[\s,]+/),i=r.length;for(n=0;n<i;n++)r[n]&&("-"===(e=r[n].replace(/\*/g,".*?"))[0]?t.skips.push(new RegExp("^"+e.slice(1)+"$")):t.names.push(new RegExp("^"+e+"$")))},t.enabled=function(e){if("*"===e[e.length-1])return!0;var n,r;for(n=0,r=t.skips.length;n<r;n++)if(t.skips[n].test(e))return!1;for(n=0,r=t.names.length;n<r;n++)if(t.names[n].test(e))return!0;return!1},t.humanize=Pi(),t.destroy=function(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")},Object.keys(e).forEach((function(n){t[n]=e[n]})),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){for(var n=0,r=0;r<e.length;r++)n=(n<<5)-n+e.charCodeAt(r),n|=0;return t.colors[Math.abs(n)%t.colors.length]},t.enable(t.load()),t};!function(e,t){var n;t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0,i=0;t[0].replace(/%[a-zA-Z%]/g,(function(e){"%%"!==e&&(r++,"%c"===e&&(i=r))})),t.splice(i,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(e){}},t.load=function(){var e;try{e=t.storage.getItem("debug")}catch(e){}!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG);return e},t.useColors=function(){if("undefined"!=typeof window&&window.process&&("renderer"===window.process.type||window.process.__nwjs))return!0;if("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},t.storage=function(){try{return localStorage}catch(e){}}(),t.destroy=(n=!1,function(){n||(n=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||function(){},e.exports=xi(t),e.exports.formatters.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}}(Ri,Ri.exports);var Di=Ri.exports,Li=Di("cookie");function Mi(){var e;try{e=document.cookie}catch(e){return"undefined"!=typeof console&&"function"==typeof console.error&&console.error(e.stack||e),{}}return function(e){var t,n={},r=e.split(/ *; */);if(""==r[0])return n;for(var i=0;i<r.length;++i)n[Ni((t=r[i].split("="))[0])]=Ni(t[1]);return n}(e)}function Bi(e){try{return encodeURIComponent(e)}catch(t){Li("error `encode(%o)` - %o",e,t)}}function Ni(e){try{return decodeURIComponent(e)}catch(t){Li("error `decode(%o)` - %o",e,t)}}var Gi=f((function(e,t,n){switch(arguments.length){case 3:case 2:return function(e,t,n){n=n||{};var r=Bi(e)+"="+Bi(t);null==t&&(n.maxage=-1);n.maxage&&(n.expires=new Date(+new Date+n.maxage));n.path&&(r+="; path="+n.path);n.domain&&(r+="; domain="+n.domain);n.expires&&(r+="; expires="+n.expires.toUTCString());n.samesite&&(r+="; samesite="+n.samesite);n.secure&&(r+="; secure");document.cookie=r}(e,t,n);case 1:return function(e){return Mi()[e]}(e);default:return Mi()}})),Fi={exports:{}},Ui=Math.max,ji=function(e,t){var n=t?t.length:0;if(!n)return[];for(var r=Ui(Number(e)||0,0),i=Ui(n-r,0),o=new Array(i),s=0;s<i;s+=1)o[s]=t[s+r];return o},Ki=Math.max,Qi=function(e){if(null==e||!e.length)return[];for(var t=new Array(Ki(e.length-2,0)),n=1;n<e.length;n+=1)t[n-1]=e[n];return t},Hi=ji,zi=Qi,qi=Object.prototype.hasOwnProperty,Vi=Object.prototype.toString,Wi=function(e){return Boolean(e)&&"[object Object]"===Vi.call(e)},Yi=function(e,t,n,r){return qi.call(t,r)&&void 0===e[r]&&(e[r]=n),t},Xi=function(e,t,n,r){return qi.call(t,r)&&(Wi(e[r])&&Wi(n)?e[r]=$i(e[r],n):void 0===e[r]&&(e[r]=n)),t},Ji=function(e,t){if(r=t,!Boolean(r)||"object"!==n(r))return t;var r;e=e||Yi;for(var i=Hi(2,arguments),o=0;o<i.length;o+=1)for(var s in i[o])e(t,i[o],i[o][s],s);return t},$i=function(e){return Ji.apply(null,[Xi,e].concat(zi(arguments)))};Fi.exports=function(e){return Ji.apply(null,[null,e].concat(zi(arguments)))},Fi.exports.deep=$i;var Zi=f(Fi.exports),eo={exports:{}},to=Di("cookie"),no=function(e,t,n){switch(arguments.length){case 3:case 2:return function(e,t,n){n=n||{};var r=io(e)+"="+io(t);null==t&&(n.maxage=-1);n.maxage&&(n.expires=new Date(+new Date+n.maxage));n.path&&(r+="; path="+n.path);n.domain&&(r+="; domain="+n.domain);n.expires&&(r+="; expires="+n.expires.toUTCString());n.secure&&(r+="; secure");document.cookie=r}(e,t,n);case 1:return function(e){return ro()[e]}(e);default:return ro()}};function ro(){var e;try{e=document.cookie}catch(e){return"undefined"!=typeof console&&"function"==typeof console.error&&console.error(e.stack||e),{}}return function(e){var t,n={},r=e.split(/ *; */);if(""==r[0])return n;for(var i=0;i<r.length;++i)n[oo((t=r[i].split("="))[0])]=oo(t[1]);return n}(e)}function io(e){try{return encodeURIComponent(e)}catch(t){to("error `encode(%o)` - %o",e,t)}}function oo(e){try{return decodeURIComponent(e)}catch(t){to("error `decode(%o)` - %o",e,t)}}!function(e,t){var n=no;function r(e){for(var n=t.cookie,r=t.levels(e),i=0;i<r.length;++i){var o="__tld__",s=r[i],a={domain:"."+s};if(n(o,1,a),n(o))return n(o,null,a),s}return""}r.levels=function(e){var t,n,r=("function"!=typeof window.URL?(t=e,(n=document.createElement("a")).href=t,n.hostname):new URL(e).hostname).split("."),i=r[r.length-1],o=[];if(4===r.length&&i===parseInt(i,10))return o;if(r.length<=1)return o;for(var s=r.length-2;s>=0;--s)o.push(r.slice(s).join("."));return o},r.cookie=n,t=e.exports=r}(eo,eo.exports);var so=f(eo.exports),ao=new(function(){function e(t){r(this,e),this.cOpts={},this.options(t),this.isSupportAvailable=this.checkSupportAvailability()}return o(e,[{key:"options",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(0===arguments.length)return this.cOpts;var t=".".concat(so(window.location.href));return"."===t&&(t=null),this.cOpts=Zi(e,{maxage:31536e6,path:"/",domain:t,samesite:"Lax"}),this.cOpts}},{key:"set",value:function(e,t){try{return Gi(e,t,T(this.cOpts)),!0}catch(e){return Ur.error(e),!1}}},{key:"get",value:function(e){return Gi(e)}},{key:"remove",value:function(e){try{return Gi(e,null,T(this.cOpts)),!0}catch(e){return!1}}},{key:"checkSupportAvailability",value:function(){var e="test_rudder_cookie";return this.set(e,!0),!!this.get(e)&&(this.remove(e),!0)}}]),e}())({}),uo={exports:{}};uo.exports=function(){function e(e){return e=JSON.stringify(e),!!/^\{[\s\S]*\}$/.test(e)}function t(e){return void 0===e||"function"==typeof e?e+"":JSON.stringify(e)}function n(e){if("string"==typeof e)try{return JSON.parse(e)}catch(t){return e}}function r(e){return"[object Function]"==={}.toString.call(e)}function i(e){return"[object Array]"===Object.prototype.toString.call(e)}function o(e){var t="_Is_Incognit",n="yes";try{e||(e=window.localStorage),e.setItem(t,n),e.removeItem(t)}catch(t){var r={_data:{},setItem:function(e,t){return r._data[e]=String(t)},getItem:function(e){return r._data.hasOwnProperty(e)?r._data[e]:void 0},removeItem:function(e){return delete r._data[e]},clear:function(){return r._data={}}};e=r}finally{e.getItem(t)===n&&e.removeItem(t)}return e}var s=o();function a(){if(!(this instanceof a))return new a}a.prototype={set:function(n,r){if(n&&!e(n))s.setItem(n,t(r));else if(e(n))for(var i in n)this.set(i,n[i]);return this},get:function(e){if(!e){var t={};return this.forEach((function(e,n){return t[e]=n})),t}if("?"===e.charAt(0))return this.has(e.substr(1));var r=arguments;if(r.length>1){for(var i={},o=0,a=r.length;o<a;o++){var u=n(s.getItem(r[o]));this.has(r[o])&&(i[r[o]]=u)}return i}return n(s.getItem(e))},clear:function(){return s.clear(),this},remove:function(e){var t=this.get(e);return s.removeItem(e),t},has:function(e){return{}.hasOwnProperty.call(this.get(),e)},keys:function(){var e=[];return this.forEach((function(t){e.push(t)})),e},forEach:function(e){for(var t=0,n=s.length;t<n;t++){var r=s.key(t);e(r,this.get(r))}return this},search:function(e){for(var t=this.keys(),n={},r=0,i=t.length;r<i;r++)t[r].indexOf(e)>-1&&(n[t[r]]=this.get(t[r]));return n}};var u=null;function c(t,n){var o=arguments,s=null;if(u||(u=a()),0===o.length)return u.get();if(1===o.length){if("string"==typeof t)return u.get(t);if(e(t))return u.set(t)}if(2===o.length&&"string"==typeof t){if(!n)return u.remove(t);if(n&&"string"==typeof n)return u.set(t,n);n&&r(n)&&(s=null,s=n(t,u.get(t)),c.set(t,s))}if(2===o.length&&i(t)&&r(n))for(var l=0,h=t.length;l<h;l++)s=n(t[l],u.get(t[l])),c.set(t[l],s);return c}for(var l in a.prototype)c[l]=a.prototype[l];return c}();var co=f(uo.exports),lo=new(function(){function e(t){r(this,e),this.sOpts={},this.enabled=this.checkSupportAvailability(),this.options(t)}return o(e,[{key:"options",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 0===arguments.length||(Zi(e,{enabled:!0}),this.enabled=e.enabled&&this.enabled,this.sOpts=e),this.sOpts}},{key:"set",value:function(e,t){return co.set(e,t)}},{key:"get",value:function(e){return co.get(e)}},{key:"remove",value:function(e){return co.remove(e)}},{key:"checkSupportAvailability",value:function(){var e="test_rudder_ls";return this.set(e,!0),!!this.get(e)&&(this.remove(e),!0)}}]),e}())({}),ho=function(e){return(new TextDecoder).decode((t=e,n=globalThis.atob(t).split("").map((function(e){return e.charCodeAt(0)})),new Uint8Array(n)));var t,n},fo="rl_user_id",po="rl_trait",go="rl_anonymous_id",yo="rl_group_id",vo="rl_group_trait",mo="rl_page_init_referrer",Io="rl_page_init_referring_domain",Ao="rl_session",ko="rl_auth_token",bo="RudderEncrypt:",Eo="RS_ENC_v3_",Co="Rudder",So={segment:"ajs_anonymous_id"};function Oo(e){try{return e?JSON.parse(e):null}catch(t){return Ur.error(t),e||null}}function To(e){return e.replace(/^\s+|\s+$/gm,"")}function wo(e){return e&&"string"==typeof e&&""!==To(e)?e.substring(0,bo.length)===bo?Ii.decrypt(e.substring(bo.length),Co).toString(ki):e.substring(0,Eo.length)===Eo?ho(e.substring(Eo.length)):e:e}for(var _o,Ro=function(){function e(){r(this,e),ao.isSupportAvailable?this.storage=ao:(lo.enabled&&(this.storage=lo),this.storage||Ur.error("No storage is available :: initializing the SDK without storage"))}return o(e,[{key:"options",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.storage.options(e)}},{key:"setItem",value:function(e,t){this.storage.set(e,function(e){return""===To(e)?e:"".concat(bo).concat(Ii.encrypt(e,Co).toString())}(function(e){return JSON.stringify(e)}(t)))}},{key:"setStringItem",value:function(e,t){"string"==typeof t?this.setItem(e,t):Ur.error("[Storage] ".concat(e," should be string"))}},{key:"setUserId",value:function(e){this.setStringItem(fo,e)}},{key:"setUserTraits",value:function(e){this.setItem(po,e)}},{key:"setGroupId",value:function(e){this.setStringItem(yo,e)}},{key:"setGroupTraits",value:function(e){this.setItem(vo,e)}},{key:"setAnonymousId",value:function(e){this.setStringItem(go,e)}},{key:"setInitialReferrer",value:function(e){this.setItem(mo,e)}},{key:"setInitialReferringDomain",value:function(e){this.setItem(Io,e)}},{key:"setSessionInfo",value:function(e){this.setItem(Ao,e)}},{key:"setAuthToken",value:function(e){this.setItem(ko,e)}},{key:"getItem",value:function(e){return Oo(wo(this.storage.get(e)))}},{key:"getUserId",value:function(){return this.getItem(fo)}},{key:"getUserTraits",value:function(){return this.getItem(po)}},{key:"getGroupId",value:function(){return this.getItem(yo)}},{key:"getGroupTraits",value:function(){return this.getItem(vo)}},{key:"fetchExternalAnonymousId",value:function(e){var t,n=e.toLowerCase();return Object.keys(So).includes(n)&&"segment"===n?(lo.enabled&&(t=lo.get(So[n])),!t&&ao.isSupportAvailable&&(t=ao.get(So[n])),t):t}},{key:"getAnonymousId",value:function(e){var t=Oo(wo(this.storage.get(go)));if(t)return t;var n=_i(e,"autoCapture.source");if(!0===_i(e,"autoCapture.enabled")&&"string"==typeof n){var r=this.fetchExternalAnonymousId(n);if(r)return r}return t}},{key:"getInitialReferrer",value:function(){return this.getItem(mo)}},{key:"getInitialReferringDomain",value:function(){return this.getItem(Io)}},{key:"getSessionInfo",value:function(){return this.getItem(Ao)}},{key:"getAuthToken",value:function(){return this.getItem(ko)}},{key:"removeItem",value:function(e){return this.storage.remove(e)}},{key:"removeSessionInfo",value:function(){this.removeItem(Ao)}},{key:"clear",value:function(e){this.storage.remove(fo),this.storage.remove(po),this.storage.remove(yo),this.storage.remove(vo),this.storage.remove(ko),e&&this.storage.remove(go)}}]),e}(),Po=new Ro,xo=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};try{if(document.getElementById(e))return;var r=document.createElement("script");r.src=t,r.async=void 0===n.async||n.async,r.type="text/javascript",r.id=e,!0!==n.skipDatasetAttributes&&(r.setAttribute("data-loader",Qr),void 0!==n.isNonNativeSDK&&r.setAttribute("data-isNonNativeSDK",n.isNonNativeSDK));var i=document.getElementsByTagName("head");if(i.length>0)i[0].insertBefore(r,i[0].firstChild);else{var o=document.getElementsByTagName("script")[0];o.parentNode.insertBefore(r,o)}}catch(o){Xr(o)}},Do=function(e){return null===e},Lo=function(e,t){if(!Array.isArray(e)||!Array.isArray(t))return T(t);var r=T(e);return t.forEach((function(e,t){r[t]=Array.isArray(e)||function(e){return!Do(e)&&"object"===n(e)&&!Array.isArray(e)}(e)?Mo(r[t],e):e})),r},Mo=function(e,t){return R(Lo,e,t)},Bo=function(e){return function(e){return!Do(e)&&"[object Object]"===Object.prototype.toString.call(e)}(e)&&Object.keys(e).length>0},No=256,Go=[];No--;)Go[No]=(No+256).toString(16).substring(1);for(var Fo,Uo=4096,jo=[],Ko=0;Ko<256;Ko++)jo[Ko]=(Ko+256).toString(16).substring(1);function Qo(){var e;(!Fo||Ko+16>Uo)&&(e=Uo,Fo=crypto.getRandomValues(new Uint8Array(e)),Ko=0);for(var t,n=0,r="";n<16;n++)t=Fo[Ko+n],r+=6==n?jo[15&t|64]:8==n?jo[63&t|128]:jo[t],1&n&&n>1&&n<11&&(r+="-");return Ko+=16,r}var Ho={All:"All",GA:"Google Analytics",GOOGLEADS:"Google Ads",BRAZE:"Braze",CHARTBEAT:"Chartbeat",COMSCORE:"Comscore",CUSTOMERIO:"Customer IO",DCM_Floodlight:"DCM Floodlight",FACEBOOK_PIXEL:"Facebook Pixel",GTM:"Google Tag Manager",HOTJAR:"Hotjar",HS:"HubSpot",INTERCOM:"Intercom",KEEN:"Keen",KISSMETRICS:"Kiss Metrics",LOTAME:"Lotame",VWO:"VWO",OPTIMIZELY:"Optimizely Web",FULLSTORY:"Fullstory",TVSQUARED:"TVSquared",GA4:"Google Analytics 4 (GA4)",MOENGAGE:"MoEngage",AM:"Amplitude",PENDO:"Pendo",LYTICS:"Lytics",APPCUES:"Appcues",POSTHOG:"PostHog",PROFITWELL:"ProfitWell",KLAVIYO:"Klaviyo",CLEVERTAP:"CleverTap",BINGADS:"Bing Ads",PINTEREST_TAG:"Pinterest Tag",SNAP_PIXEL:"Snap Pixel",LINKEDIN_INSIGHT_TAG:"Linkedin Insight Tag",REDDIT_PIXEL:"Reddit Pixel",DRIP:"Drip",HEAP:"Heap.io",CRITEO:"Criteo",MP:"Mixpanel",QUALTRICS:"Qualtrics",SENTRY:"Sentry",GOOGLE_OPTIMIZE:"Google Optimize",POST_AFFILIATE_PRO:"Post Affiliate Pro",LAUNCHDARKLY:"LaunchDarkly",GA360:"Google Analytics 360",ADROLL:"Adroll",VERO:"Vero",MATOMO:"Matomo",MOUSEFLOW:"Mouseflow",ROCKERBOX:"Rockerbox",CONVERTFLOW:"ConvertFlow",SNAPENGAGE:"SnapEngage",LIVECHAT:"LiveChat",SHYNET:"Shynet",WOOPRA:"Woopra",ROLLBAR:"RollBar",QUORA_PIXEL:"Quora Pixel",JUNE:"June",ENGAGE:"Engage",ITERABLE:"Iterable",YANDEX_METRICA:"Yandex.Metrica",REFINER:"Refiner",QUALAROO:"Qualaroo",PODSIGHTS:"Podsights",AXEPTIO:"Axeptio",SATISMETER:"Satismeter",MICROSOFT_CLARITY:"Microsoft Clarity",SENDINBLUE:"Sendinblue",OLARK:"Olark",LEMNISK:"Lemnisk",TIKTOK_ADS:"TikTok Ads",ACTIVE_CAMPAIGN:"ActiveCampaign"},zo=["anonymous_id","id","sent_at","received_at","timestamp","original_timestamp","event_text","event"],qo="https://api.rudderstack.com/sourceConfig/?p=npm&v=2.42.1",Vo="v1.1",Wo="js-integrations",Yo="".concat("https://cdn.rudderlabs.com","/").concat(Vo,"/").concat(Wo),Xo=["Lax","None","Strict"],Jo=["US","EU"],$o=["oneTrust","ketch"],Zo=["library","consentManagement"],es=["none","default","full"],ts={All:!0};function ns(e){return e&&e.endsWith("/")?e.replace(/\/+$/,""):e}function rs(){return window.crypto&&"function"==typeof window.crypto.getRandomValues?Qo():function(){var e,t=0,n="";if(!_o||No+16>256){for(_o=Array(t=256);t--;)_o[t]=256*Math.random()|0;t=No=0}for(;t<16;t++)e=_o[No+t],n+=6==t?Go[15&e|64]:8==t?Go[63&e|128]:Go[e],1&t&&t>1&&t<11&&(n+="-");return No++,n}()}function is(){return(new Date).toISOString()}function os(e,t){Object.keys(e).forEach((function(n){e.hasOwnProperty(n)&&(t[n]&&(e[t[n]]=e[n]),"All"!==n&&void 0!==t[n]&&t[n]!==n&&delete e[n])}))}function ss(e){os(e,Gr)}function as(e){os(e,Ho)}function us(e,t){var r=[];if(!t||0===t.length)return r;var i=!0;void 0!==e.All&&(i=e.All);var o=[];return"string"==typeof t[0]?t.forEach((function(e){o.push({intgName:e,intObj:e})})):"object"===n(t[0])&&t.forEach((function(e){o.push({intgName:e.name,intObj:e})})),o.forEach((function(t){var n=t.intgName,o=t.intObj;if(i){var s=!0;void 0!==e[n]&&!1===Boolean(e[n])&&(s=!1),s&&r.push(o)}else void 0!==e[n]&&!0===Boolean(e[n])&&r.push(o)})),r}var cs=function(){for(var e,t=document.getElementsByTagName("script"),n=!1,r=0;r<t.length;r+=1){var i=ns(t[r].getAttribute("src"));if(i){var o=i.match(/^.*rudder-analytics(-staging)?(\.min)?\.js$/);if(o){e=i,n=void 0!==o[1];break}}}return{sdkURL:e,isStaging:n}},ls=function(e){return"string"==typeof e||null==e?e:JSON.stringify(e)},hs=function(e){return"string"==typeof e&&e.trim().length>0},fs=function(e,t,n){try{var r=e.source.dataplanes||{};if(Object.keys(r).length>0){var i=function(e){var t=e?e.residencyServer:void 0;if(t)return"string"==typeof t&&Jo.includes(t.toUpperCase())?t.toUpperCase():void Ur.error("Invalid residencyServer input")}(n),o=r[i]||r.US;if(o){var s=function(e){if(Array.isArray(e)&&e.length>0){var t=e.find((function(e){return!0===e.default}));if(t&&hs(t.url))return t.url}}(o);if(s)return s}}if(hs(t))return t;throw Error("Unable to load the SDK due to invalid data plane url")}catch(e){throw Error(e)}};function ds(){return document.referrer||"$direct"}function ps(e){var t=e.split("/");return t.length>=3?t[2]:""}function gs(){for(var e=document.getElementsByTagName("link"),t=0;e[t];t+=1){var n=e[t];if("canonical"===n.getAttribute("rel"))return n.getAttribute("href")}}function ys(){var e=gs(),t=window.location.pathname;if(e)try{t=new URL(e).pathname}catch(e){}var n=window.location,r=n.search,i=n.href,o=document.title,s=function(e){var t,n=gs(),r=(t=n?n.includes("?")?n:n+e:window.location.href).indexOf("#");return r>-1?t.slice(0,r):t}(r),a=i,u=ds();return{path:t,referrer:u,referring_domain:ps(u),search:r,title:o,url:s,tab_url:a,initial_referrer:Po.getInitialReferrer()||"",initial_referring_domain:Po.getInitialReferringDomain()||""}}for(var vs,ms=o((function e(){r(this,e),this.name="RudderLabs JavaScript SDK",this.namespace="com.rudderlabs.javascript",this.version="2.42.1"})),Is=o((function e(){r(this,e),this.name="RudderLabs JavaScript SDK",this.version="2.42.1"})),As=o((function e(){r(this,e),this.name="",this.version=""})),ks=o((function e(){r(this,e),this.density=0,this.width=0,this.height=0,this.innerWidth=0,this.innerHeight=0})),bs=o((function e(){var t;r(this,e),this.app=new ms,this.traits=null,this.library=new Is,this.userAgent=function(){if("undefined"==typeof navigator)return null;var e=navigator.userAgent,t=navigator.brave;if(t&&Object.getPrototypeOf(t).isBrave){var n=e.match(/(chrome)\/([\w.]+)/i);n&&(e="".concat(e," Brave/").concat(n[2]))}return e}(),this.device=null,this.network=null,this.os=new As,this.locale="undefined"==typeof navigator?null:navigator.language||navigator.browserLanguage,this.screen=(t=new ks,"undefined"==typeof window||(t.width=window.screen.width,t.height=window.screen.height,t.density=window.devicePixelRatio,t.innerWidth=window.innerWidth,t.innerHeight=window.innerHeight),t)})),Es=function(){function e(){r(this,e),this.channel="web",this.context=new bs,this.type=null,this.messageId=rs(),this.originalTimestamp=(new Date).toISOString(),this.anonymousId=null,this.userId=null,this.event=null,this.properties={}}return o(e,[{key:"getProperty",value:function(e){return this.properties[e]}},{key:"addProperty",value:function(e,t){this.properties[e]=t}}]),e}(),Cs=function(){function e(){r(this,e),this.message=new Es}return o(e,[{key:"setType",value:function(e){this.message.type=e}},{key:"setProperty",value:function(e){this.message.properties=e}},{key:"setUserProperty",value:function(e){this.message.user_properties=e}},{key:"setUserId",value:function(e){this.message.userId=e}},{key:"setEventName",value:function(e){this.message.event=e}},{key:"getElementContent",value:function(){return this.message}}]),e}(),Ss=function(){function e(){r(this,e),this.rudderProperty=null,this.rudderUserProperty=null,this.event=null,this.userId=null,this.type=null}return o(e,[{key:"setType",value:function(e){return this.type=e,this}},{key:"build",value:function(){var e=new Cs;return e.setUserId(this.userId),e.setType(this.type),e.setEventName(this.event),e.setProperty(this.rudderProperty),e.setUserProperty(this.rudderUserProperty),e}}]),e}(),Os={},Ts=256,ws=[];Ts--;)ws[Ts]=(Ts+256).toString(16).substring(1);Os.v4=function(){var e,t=0,n="";if(!vs||Ts+16>256){for(vs=Array(t=256);t--;)vs[t]=256*Math.random()|0;t=Ts=0}for(;t<16;t++)e=vs[Ts+t],n+=6==t?ws[15&e|64]:8==t?ws[63&e|128]:ws[e],1&t&&t>1&&t<11&&(n+="-");return Ts++,n};var _s={},Rs=Object.prototype.hasOwnProperty,Ps=String.prototype.charAt,xs=Object.prototype.toString,Ds=function(e,t){return Ps.call(e,t)},Ls=function(e,t){return Rs.call(e,t)},Ms=function(e,t){t=t||Ls;for(var n=[],r=0,i=e.length;r<i;r+=1)t(e,r)&&n.push(String(r));return n},Bs=function(e){return null==e?[]:(t=e,"[object String]"===xs.call(t)?Ms(e,Ds):function(e){return null!=e&&"function"!=typeof e&&"number"==typeof e.length}(e)?Ms(e,Ls):function(e,t){t=t||Ls;var n=[];for(var r in e)t(e,r)&&n.push(String(r));return n}(e));var t},Ns=Bs,Gs=Os.v4,Fs={_data:{},length:0,setItem:function(e,t){return this._data[e]=t,this.length=Ns(this._data).length,t},getItem:function(e){return e in this._data?this._data[e]:null},removeItem:function(e){return e in this._data&&delete this._data[e],this.length=Ns(this._data).length,null},clear:function(){this._data={},this.length=0},key:function(e){return Ns(this._data)[e]}};_s.defaultEngine=function(){try{if(!window.localStorage)return!1;var e=Gs();window.localStorage.setItem(e,"test_value");var t=window.localStorage.getItem(e);return window.localStorage.removeItem(e),"test_value"===t}catch(e){return!1}}()?window.localStorage:Fs,_s.inMemoryEngine=Fs;var Us=Bs,js=Object.prototype.toString,Ks="function"==typeof Array.isArray?Array.isArray:function(e){return"[object Array]"===js.call(e)},Qs=function(e){return null!=e&&(Ks(e)||"function"!==e&&function(e){var t=n(e);return"number"===t||"object"===t&&"[object Number]"===js.call(e)}(e.length))},Hs=function(e,t){for(var n=0;n<t.length&&!1!==e(t[n],n,t);n+=1);},zs=function(e,t){for(var n=Us(t),r=0;r<n.length&&!1!==e(t[n[r]],n[r],t);r+=1);},qs=function(e,t){return(Qs(t)?Hs:zs).call(this,e,t)},Vs=_s.defaultEngine,Ws=_s.inMemoryEngine,Ys=qs,Xs=Bs,Js=JSON;function $s(e,t,n,r){this.id=t,this.name=e,this.keys=n||{},this.engine=r||Vs,this.originalEngine=this.engine}$s.prototype.set=function(e,t){var n=this._createValidKey(e);if(n)try{this.engine.setItem(n,Js.stringify(t))}catch(n){(function(e){var t=!1;if(e.code)switch(e.code){case 22:t=!0;break;case 1014:"NS_ERROR_DOM_QUOTA_REACHED"===e.name&&(t=!0)}else-2147024882===e.number&&(t=!0);return t})(n)&&(this._swapEngine(),this.set(e,t))}},$s.prototype.get=function(e){try{var t=this.engine.getItem(this._createValidKey(e));return null===t?null:Js.parse(t)}catch(e){return null}},$s.prototype.getOriginalEngine=function(){return this.originalEngine},$s.prototype.remove=function(e){this.engine.removeItem(this._createValidKey(e))},$s.prototype._createValidKey=function(e){var t,n=this.name,r=this.id;return Xs(this.keys).length?(Ys((function(i){i===e&&(t=[n,r,e].join("."))}),this.keys),t):[n,r,e].join(".")},$s.prototype._swapEngine=function(){var e=this;Ys((function(t){var n=e.get(t);Ws.setItem([e.name,e.id,t].join("."),n),e.remove(t)}),this.keys),this.engine=Ws};var Zs=$s;var ea=qs,ta={setTimeout:function(e,t){return window.setTimeout(e,t)},clearTimeout:function(e){return window.clearTimeout(e)},Date:window.Date},na=ta,ra={ASAP:1,RESCHEDULE:2,ABANDON:3};function ia(){this.tasks={},this.nextId=1}ia.prototype.now=function(){return+new na.Date},ia.prototype.run=function(e,t,n){var r=this.nextId++;return this.tasks[r]=na.setTimeout(this._handle(r,e,t,n||ra.ASAP),t),r},ia.prototype.cancel=function(e){this.tasks[e]&&(na.clearTimeout(this.tasks[e]),delete this.tasks[e])},ia.prototype.cancelAll=function(){ea(na.clearTimeout,this.tasks),this.tasks={}},ia.prototype._handle=function(e,t,n,r){var i=this,o=i.now();return function(){if(delete i.tasks[e],!(r>=ra.RESCHEDULE&&o+2*n<i.now()))return t();r===ra.RESCHEDULE&&i.run(t,n,r)}},ia.setClock=function(e){na=e},ia.resetClock=function(){na=ta},ia.Modes=ra;var oa=ia,sa=Os.v4,aa=Zs,ua=qs,ca=oa,la=Di("localstorage-retry");function ha(e,t){return function(){return e.apply(t,arguments)}}function fa(e,t,n){"function"==typeof t&&(n=t),this.name=e,this.id=sa(),this.fn=n,this.maxItems=t.maxItems||1/0,this.maxAttempts=t.maxAttempts||1/0,this.backoff={MIN_RETRY_DELAY:t.minRetryDelay||1e3,MAX_RETRY_DELAY:t.maxRetryDelay||3e4,FACTOR:t.backoffFactor||2,JITTER:t.backoffJitter||0},this.timeouts={ACK_TIMER:1e3,RECLAIM_TIMER:3e3,RECLAIM_TIMEOUT:1e4,RECLAIM_WAIT:500},this.keys={IN_PROGRESS:"inProgress",QUEUE:"queue",RECLAIM_START:"reclaimStart",RECLAIM_END:"reclaimEnd",ACK:"ack"},this._schedule=new ca,this._processId=0,this._store=new aa(this.name,this.id,this.keys),this._store.set(this.keys.IN_PROGRESS,{}),this._store.set(this.keys.QUEUE,[]),this._ack=ha(this._ack,this),this._checkReclaim=ha(this._checkReclaim,this),this._processHead=ha(this._processHead,this),this._running=!1}g(fa.prototype),fa.prototype.start=function(){this._running&&this.stop(),this._running=!0,this._ack(),this._checkReclaim(),this._processHead()},fa.prototype.stop=function(){this._schedule.cancelAll(),this._running=!1},fa.prototype.shouldRetry=function(e,t){return!(t>this.maxAttempts)},fa.prototype.getDelay=function(e){var t=this.backoff.MIN_RETRY_DELAY*Math.pow(this.backoff.FACTOR,e);if(this.backoff.JITTER){var n=Math.random(),r=Math.floor(n*this.backoff.JITTER*t);Math.floor(10*n)<5?t-=r:t+=r}return Number(Math.min(t,this.backoff.MAX_RETRY_DELAY).toPrecision(1))},fa.prototype.addItem=function(e){this._enqueue({item:e,attemptNumber:0,time:this._schedule.now(),id:sa()})},fa.prototype.requeue=function(e,t,n,r){this.shouldRetry(e,t,n)?this._enqueue({item:e,attemptNumber:t,time:this._schedule.now()+this.getDelay(t),id:r||sa()}):this.emit("discard",e,t)},fa.prototype._enqueue=function(e){var t=this._store.get(this.keys.QUEUE)||[];(t=t.slice(-(this.maxItems-1))).push(e),t=t.sort((function(e,t){return e.time-t.time})),this._store.set(this.keys.QUEUE,t),this._running&&this._processHead()},fa.prototype._processHead=function(){var e=this,t=this._store;this._schedule.cancel(this._processId);var n=t.get(this.keys.QUEUE)||[],r=t.get(this.keys.IN_PROGRESS)||{},i=this._schedule.now(),o=[];function s(n,r){o.push({item:n.item,done:function(i,o){var s=t.get(e.keys.IN_PROGRESS)||{};delete s[r],t.set(e.keys.IN_PROGRESS,s),e.emit("processed",i,o,n.item),i&&e.requeue(n.item,n.attemptNumber+1,i,n.id)}})}for(var a=Object.keys(r).length;n.length&&n[0].time<=i&&a++<e.maxItems;){var u=n.shift(),c=sa();r[c]={item:u.item,attemptNumber:u.attemptNumber,time:e._schedule.now()},s(u,c)}t.set(this.keys.QUEUE,n),t.set(this.keys.IN_PROGRESS,r),ua((function(t){try{e.fn(t.item,t.done)}catch(e){la("Process function threw error: "+e)}}),o),n=t.get(this.keys.QUEUE)||[],this._schedule.cancel(this._processId),n.length>0&&(this._processId=this._schedule.run(this._processHead,n[0].time-i,ca.Modes.ASAP))},fa.prototype._ack=function(){this._store.set(this.keys.ACK,this._schedule.now()),this._store.set(this.keys.RECLAIM_START,null),this._store.set(this.keys.RECLAIM_END,null),this._schedule.run(this._ack,this.timeouts.ACK_TIMER,ca.Modes.ASAP)},fa.prototype._checkReclaim=function(){var e=this;ua((function(t){t.id!==e.id&&(e._schedule.now()-t.get(e.keys.ACK)<e.timeouts.RECLAIM_TIMEOUT||function(t){t.set(e.keys.RECLAIM_START,e.id),t.set(e.keys.ACK,e._schedule.now()),e._schedule.run((function(){t.get(e.keys.RECLAIM_START)===e.id&&(t.set(e.keys.RECLAIM_END,e.id),e._schedule.run((function(){t.get(e.keys.RECLAIM_END)===e.id&&t.get(e.keys.RECLAIM_START)===e.id&&e._reclaim(t.id)}),e.timeouts.RECLAIM_WAIT,ca.Modes.ABANDON))}),e.timeouts.RECLAIM_WAIT,ca.Modes.ABANDON)}(t))}),function(t){for(var n=[],r=e._store.getOriginalEngine(),i=0;i<r.length;i++){var o=r.key(i);if(null!==o){var s=o.split(".");3===s.length&&s[0]===t&&"ack"===s[2]&&n.push(new aa(t,s[1],e.keys))}}return n}(this.name)),this._schedule.run(this._checkReclaim,this.timeouts.RECLAIM_TIMER,ca.Modes.RESCHEDULE)},fa.prototype._reclaim=function(e){var t=this,n=new aa(this.name,e,this.keys),r={queue:this._store.get(this.keys.QUEUE)||[]},i={inProgress:n.get(this.keys.IN_PROGRESS)||{},queue:n.get(this.keys.QUEUE)||[]},o=[],s=function(e,n){ua((function(e){var i=e.id||sa();o.indexOf(i)>=0?t.emit("duplication",e.item,e.attemptNumber):(r.queue.push({item:e.item,attemptNumber:e.attemptNumber+n,time:t._schedule.now(),id:i}),o.push(i))}),e)};s(i.queue,0),s(i.inProgress,1),r.queue=r.queue.sort((function(e,t){return e.time-t.time})),this._store.set(this.keys.QUEUE,r.queue);try{this._clearOtherQueue(n,1)}catch(e){if("NS_ERROR_STORAGE_BUSY"===e.name||"NS_ERROR_STORAGE_BUSY"===e.code||2153971713===e.code)try{this._clearOtherQueue(n,40)}catch(e){console.error(e)}else console.error(e)}this._processHead()},fa.prototype._clearOtherQueue=function(e,t){var n=this;setTimeout((function(){e.remove(n.keys.IN_PROGRESS),setTimeout((function(){e.remove(n.keys.QUEUE),setTimeout((function(){e.remove(n.keys.RECLAIM_START),setTimeout((function(){e.remove(n.keys.RECLAIM_END),setTimeout((function(){e.remove(n.keys.ACK)}),t)}),t)}),t)}),t)}),t)};var da=f(fa),pa={maxRetryDelay:36e4,minRetryDelay:1e3,backoffFactor:2,maxAttempts:10,maxItems:100},ga=function(){function e(){r(this,e),this.url="",this.writeKey=""}return o(e,[{key:"init",value:function(e,t,n){var r=this;this.url=t,this.writeKey=e,n&&a(pa,n),this.payloadQueue=new da("rudder",pa,(function(e,t){e.message.sentAt=is(),r.processQueueElement(e.url,e.headers,e.message,1e4,(function(e,n){if(e)return t(e);t(null,n)}))})),this.payloadQueue.start()}},{key:"processQueueElement",value:function(e,t,n,r,i){try{var o=new XMLHttpRequest;for(var s in o.open("POST",e,!0),t)o.setRequestHeader(s,t[s]);o.timeout=r,o.ontimeout=i,o.onerror=i,o.onreadystatechange=function(){if(4===o.readyState)if(429===o.status||o.status>=500&&o.status<600){var t="".concat(Hr,' "').concat(o.status,'" status text: "').concat(o.statusText,'" for URL: "').concat(e,'"'),n=new Error(t);Xr(n),i(n)}else i(null,o.status)},o.send(Wr(n,!0))}catch(e){i(e)}}},{key:"enqueue",value:function(e,t){var n={"Content-Type":"application/json",Authorization:"Basic ".concat(btoa("".concat(this.writeKey,":"))),AnonymousId:btoa(e.anonymousId)};this.payloadQueue.addItem({url:"".concat(this.url,"/v1/").concat(t),headers:n,message:e})}}]),e}(),ya="queue",va=64e3,ma=function(){function e(){r(this,e),this.storage=lo,this.maxItems=10,this.flushQueueTimeOut=void 0,this.timeOutActive=!1,this.flushQueueTimeOutInterval=6e5,this.url="",this.writekey="",this.queueName="".concat(ya,".").concat(Date.now())}return o(e,[{key:"sendQueueDataForBeacon",value:function(){this.sendDataFromQueueAndDestroyQueue()}},{key:"init",value:function(e,t,n){this.url=t,this.writekey=e,n.maxItems&&(this.maxItems=n.maxItems),n.flushQueueInterval&&(this.flushQueueTimeOutInterval=n.flushQueueInterval),this.sendQueueDataForBeacon=this.sendQueueDataForBeacon.bind(this),this.attachListeners()}},{key:"attachListeners",value:function(){var e=this;window.addEventListener("visibilitychange",(function(){"hidden"===document.visibilityState&&e.sendQueueDataForBeacon()}))}},{key:"getQueue",value:function(){return this.storage.get(this.queueName)}},{key:"setQueue",value:function(e){this.storage.set(this.queueName,e)}},{key:"enqueue",value:function(e){var t=this.getQueue()||[];(t=t.slice(-(this.maxItems-1))).push(e);var n=t.slice(0);Wr({batch:n},!0).length>va&&(n=t.slice(0,t.length-1),this.flushQueue(n),(t=this.getQueue()).push(e)),this.setQueue(t),this.setTimer(),t.length===this.maxItems&&this.flushQueue(n)}},{key:"sendDataFromQueueAndDestroyQueue",value:function(){this.sendDataFromQueue(),this.storage.remove(this.queueName)}},{key:"sendDataFromQueue",value:function(){var e=this.getQueue();if(e&&e.length>0){var t=e.slice(0,e.length);this.flushQueue(t)}}},{key:"flushQueue",value:function(e){if(e&&e.length>0){e.forEach((function(e){e.sentAt=(new Date).toISOString()}));var t=Wr({batch:e},!0),n=new Blob([t],{type:"text/plain"}),r="".concat(this.url,"?writeKey=").concat(this.writekey);try{"function"!=typeof navigator.sendBeacon&&Xr(new Error("Beacon API is not supported by browser")),navigator.sendBeacon(r,n)||Xr(new Error("Unable to queue data to browser's beacon queue"))}catch(e){e.message="".concat(e.message," - While sending Beacon data to: ").concat(r),Xr(e)}}this.setQueue([]),this.clearTimer()}},{key:"setTimer",value:function(){this.timeOutActive||(this.flushQueueTimeOut=setTimeout(this.sendDataFromQueue.bind(this),this.flushQueueTimeOutInterval),this.timeOutActive=!0)}},{key:"clearTimer",value:function(){this.timeOutActive&&(clearTimeout(this.flushQueueTimeOut),this.timeOutActive=!1)}}]),e}(),Ia=function(){function e(){r(this,e),this.queue=void 0}return o(e,[{key:"initialize",value:function(e,t,r){var i={},o=ns(t);r&&r.useBeacon&&navigator.sendBeacon?(r.beaconQueueOptions&&null!=r.beaconQueueOptions&&"object"===n(r.beaconQueueOptions)&&(i=r.beaconQueueOptions),o="".concat(o,"/beacon/v1/batch"),this.queue=new ma):(r&&r.useBeacon&&Ur.info("[EventRepository] sendBeacon feature not available in this browser :: fallback to XHR"),r&&r.queueOptions&&null!=r.queueOptions&&"object"===n(r.queueOptions)&&(i=r.queueOptions),this.queue=new ga),this.queue.init(e,o,i)}},{key:"enqueue",value:function(e,t){var n=e.getElementContent();n.originalTimestamp=n.originalTimestamp||is(),n.sentAt=is(),Wr(n,!0).length>32e3&&Ur.error("[EventRepository] enqueue:: message length greater 32 Kb ",n),this.queue.enqueue(n,t)}}]),e}(),Aa=new Ia,ka={maxRetryDelay:36e4,minRetryDelay:1e3,backoffFactor:2,maxAttempts:1/0},ba=function(){function e(){r(this,e),this.callback=void 0,this.processQueueElements=!1}return o(e,[{key:"init",value:function(e,t){var n=this;e&&a(ka,e),t&&(this.callback=t),this.payloadQueue=new da("rs_events",ka,(function(e,t){n.processQueueElement(e.type,e.rudderElement,(function(e,n){if(e)return t(e);t(null,n)}))})),this.payloadQueue.start()}},{key:"activateProcessor",value:function(){this.processQueueElements=!0}},{key:"processQueueElement",value:function(e,t,n){try{this.processQueueElements?(Object.setPrototypeOf(t,Cs.prototype),this.callback(e,t),n(null)):n(new Error("The queue elements are not ready to be processed yet"))}catch(e){n(e)}}},{key:"enqueue",value:function(e,t){this.payloadQueue.addItem({type:e,rudderElement:t})}}]),e}(),Ea=function(e){for(var t=function(){for(var e,t=[],n=0;n<256;n++){e=n;for(var r=0;r<8;r++)e=1&e?3988292384^e>>>1:e>>>1;t[n]=e}return t}(),n=-1,r=0;r<e.length;r++)n=n>>>8^t[255&(n^e.charCodeAt(r))];return(-1^n)>>>0},Ca={getUserLanguage:function(){return navigator&&navigator.language},getUserAgent:function(){return navigator&&navigator.userAgent}};function Sa(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return e=e.endsWith("..")?e.substr(0,e.length-2):e,decodeURIComponent(atob(e).split("").map((function(e){return"%".concat("00".concat(e.charCodeAt(0).toString(16)).slice(-2))})).join(""))}var Oa=/^[a-zA-Z0-9\-_.]+$/,Ta=1,wa=1,_a="*";function Ra(e,t,n,r){var i=function(e,t){return[e,(new Date).getTimezoneOffset(),t].join(_a)}(n,r),o=t||0,s=Math.floor(Date.now()/6e4)-o;return Ea([i,s,e].join(_a)).toString(36)}function Pa(e){var t=function(e){var t=e.split(_a),n=t.length%2==0;return t.length<4||!n||Number(t.shift())!==wa?null:{checksum:t.shift(),serializedIds:t.join(_a)}}(e);if(!t)return null;var n=t.checksum,r=t.serializedIds;return function(e,t){for(var n=Ca.getUserAgent(),r=Ca.getUserLanguage(),i=0;i<=Ta;i+=1)if(Ra(e,i,n,r)===t)return!0;return!1}(r,n)?function(e){for(var t={},n=e.split(_a),r=0;r<n.length;r+=2){var i=n[r];if(Oa.test(i)){var o=Sa(n[r+1]);t[i]=o}}return t}(r):null}var xa=function(){function e(){var t=this;if(r(this,e),s(this,"isInitialized",!1),window.OneTrust&&window.OnetrustActiveGroups){this.userSetConsentGroupIds=window.OnetrustActiveGroups.split(",").filter((function(e){return e}));var n=window.OneTrust.GetDomainData().Groups;this.userSetConsentGroupNames=[],this.userDeniedConsentGroupIds=[],n.forEach((function(e){var n=e.CustomGroupId,r=e.GroupName;t.userSetConsentGroupIds.includes(n)?t.userSetConsentGroupNames.push(r.toUpperCase().trim()):t.userDeniedConsentGroupIds.push(n)})),this.userSetConsentGroupIds=this.userSetConsentGroupIds.map((function(e){return e.toUpperCase()})),this.isInitialized=!0}else Ur.error("OneTrust resources are not accessible.")}return o(e,[{key:"isEnabled",value:function(e){var t=this;try{if(!this.isInitialized)return!0;var n=e.oneTrustCookieCategories;if(!n)return!0;var r=n.map((function(e){return e.oneTrustCookieCategory})).filter((function(e){return e}));return r.every((function(e){return t.userSetConsentGroupIds.includes(e.toUpperCase().trim())||t.userSetConsentGroupNames.includes(e.toUpperCase().trim())}))}catch(e){return Ur.error("Error during onetrust cookie consent management ".concat(e)),!0}}},{key:"getDeniedList",value:function(){return this.isInitialized?this.userDeniedConsentGroupIds:[]}}]),e}(),Da=function(){function e(){var t=this;if(r(this,e),s(this,"updatePurposes",(function(e){e&&Object.entries(e).forEach((function(e){var n=e[0];e[1]?t.userConsentedPurposes.push(n):t.userDeniedPurposes.push(n)}))})),this.userConsentedPurposes=[],this.userDeniedPurposes=[],window.updateKetchConsent=function(e){e&&(t.userConsentedPurposes=[],t.userDeniedPurposes=[],t.updatePurposes(e))},window.getKetchUserConsentedPurposes=function(){return t.userConsentedPurposes.slice()},window.getKetchUserDeniedPurposes=function(){return t.userDeniedPurposes.slice()},window.ketchConsent)this.updatePurposes(window.ketchConsent);else{var n=this.getConsent();this.updatePurposes(n)}}return o(e,[{key:"isEnabled",value:function(e){var t=this;try{var n=e.ketchConsentPurposes;if(!n||0===n.length)return!0;var r=n.map((function(e){return e.purpose})).filter((function(e){return e}));return r.some((function(e){return t.userConsentedPurposes.includes(e.trim())}))}catch(e){return Ur.error("Error occured checking ketch consent state ".concat(e)),!0}}},{key:"getDeniedList",value:function(){return this.userDeniedPurposes}},{key:"getConsent",value:function(){var e=ao.get("_ketch_consent_v1_");if(e){var t;try{t=JSON.parse(atob(e))}catch(e){return void Ur.error("Error occurred while parsing consent cookie ".concat(e))}if(t){var n={};return Object.entries(t).forEach((function(e){var t=e[0],r=e[1];r&&r.status&&(n[t]="granted"===r.status)})),n}}}}]),e}(),La=function(e){var t,n;return null!=e&&null!==(t=e.oneTrust)&&void 0!==t&&t.enabled?new xa:null!=e&&null!==(n=e.ketch)&&void 0!==n&&n.enabled?new Da:null},Ma=function(){function e(){r(this,e),this.storage=Po,this.timeout=18e5,this.sessionInfo=this.storage.getSessionInfo()||{autoTrack:!0}}return o(e,[{key:"initialize",value:function(e){try{var t;if(this.sessionInfo.autoTrack=!(!1===(null==e||null===(t=e.sessions)||void 0===t?void 0:t.autoTrack)||this.sessionInfo.manualTrack),null!=e&&e.sessions&&!isNaN(e.sessions.timeout)){var n=e.sessions.timeout;0===n&&(Ur.warn("[Session]:: Provided timeout value 0 will disable the auto session tracking feature."),this.sessionInfo.autoTrack=!1),n>0&&n<1e4&&Ur.warn('[Session]:: It is not advised to set "timeout" less than 10 seconds'),this.timeout=n}this.sessionInfo.autoTrack?this.startAutoTracking():!1!==this.sessionInfo.autoTrack||this.sessionInfo.manualTrack||this.end()}catch(e){Xr(e)}}},{key:"isValidSession",value:function(e){return e<=this.sessionInfo.expiresAt}},{key:"generateSessionId",value:function(){return Date.now()}},{key:"startAutoTracking",value:function(){var e=Date.now();this.isValidSession(e)||(this.sessionInfo={},this.sessionInfo.id=e,this.sessionInfo.expiresAt=e+this.timeout,this.sessionInfo.sessionStart=!0,this.sessionInfo.autoTrack=!0),this.storage.setSessionInfo(this.sessionInfo)}},{key:"validateSessionId",value:function(e){if("number"==typeof e&&e%1==0){var t;if(!(((t=e)?t.toString().length:0)<10))return e;Ur.error('[Session]:: "sessionId" should at least be "'.concat(10,'" digits long'))}else Ur.error('[Session]:: "sessionId" should only be a positive integer')}},{key:"start",value:function(e){var t=e?this.validateSessionId(e):this.generateSessionId();this.sessionInfo={id:t||this.generateSessionId(),sessionStart:!0,manualTrack:!0},this.storage.setSessionInfo(this.sessionInfo)}},{key:"getSessionId",value:function(){return this.sessionInfo.autoTrack&&this.isValidSession(Date.now())||this.sessionInfo.manualTrack?this.sessionInfo.id:null}},{key:"end",value:function(){this.sessionInfo={},this.storage.removeSessionInfo()}},{key:"getSessionInfo",value:function(){var e={};if(this.sessionInfo.autoTrack||this.sessionInfo.manualTrack){if(this.sessionInfo.autoTrack){var t=Date.now();this.isValidSession(t)?this.sessionInfo.expiresAt=t+this.timeout:this.startAutoTracking()}this.sessionInfo.sessionStart&&(e.sessionStart=!0,this.sessionInfo.sessionStart=!1),e.sessionId=this.sessionInfo.id,this.storage.setSessionInfo(this.sessionInfo)}return e}},{key:"reset",value:function(){var e=this.sessionInfo,t=e.manualTrack;e.autoTrack?(this.sessionInfo={},this.startAutoTracking()):t&&this.start()}}]),e}(),Ba=new Ma,Na=["integrations","anonymousId","originalTimestamp"],Ga="rs-bugsnag",Fa="bugsnag",Ua=["Bugsnag",Fa],ja="0d96a60df267f4a13f808bbaa54e535c",Ka=["rudder-analytics.min.js","rudder-analytics-staging.min.js","rudder-analytics.js"].concat(u(Object.keys(P).map((function(e){return"".concat(P[e],".min.js")}))),u(Object.keys(P).map((function(e){return"".concat(P[e],"-staging.min.js")}))),u(Object.keys(P).map((function(e){return"".concat(P[e],".js")})))),Qa=function(e){var t=e&&e._client&&e._client._notifier&&e._client._notifier.version;if(!t){var n=e({apiKey:ja,releaseStage:"version-test",beforeSend:function(){return!1}});t=n.notifier&&n.notifier.version,n=void 0}return t&&"6"===t.charAt(0)},Ha=function(e){Ua.every((function(e){return!function(e,t){if(null==e)throw new TypeError("Cannot convert undefined or null to object");return Object.prototype.hasOwnProperty.call(Object(e),t)}(window,e)}))&&xo(e,"https://d2wy8f7a9ursnm.cloudfront.net/v6/bugsnag.min.js",{isNonNativeSDK:"true",skipDatasetAttributes:!0})},za=function(){function e(t,n){r(this,e),this.pluginName=Ga,this.sourceId=t,this.onClientReady=n,this.initClientOnLibReadyInterval=void 0,this.init()}return o(e,[{key:"init",value:function(){var e=this;if(!window.RudderStackGlobals||!window.RudderStackGlobals[qr]){if(!ja.match(/{{.+}}/)){Ha(this.pluginName);var t=window[Fa];"function"!=typeof t?(this.initClientOnLibReadyInterval=setInterval((function(){var t=window[Fa];"function"==typeof t&&(Qa(t)&&e.initClient(),clearInterval(e.initClientOnLibReadyInterval))}),100),setTimeout((function(){clearInterval(e.initClientOnLibReadyInterval)}),jr)):Qa(t)&&this.initClient()}}}},{key:"initClient",value:function(){var e,t=window[Fa];this.client=t({apiKey:ja,appVersion:"2.42.1",metaData:{SDK:{name:"JS",installType:"npm"}},beforeSend:this.onError(),autoTrackSessions:!1,collectUserIp:!1,enabledBreadcrumbTypes:["error","log","user"],maxEvents:100,releaseStage:(e=window.location.hostname,e&&["www.test-host.com","localhost","127.0.0.1","[::1]"].includes(e)?"development":"production"),networkBreadcrumbsEnabled:!1}),this.onClientReady()}},{key:"onError",value:function(){var e=this.sourceId;return function(t){try{return!!function(e){var t=_i(e,"stacktrace.0.file");if(!t||"string"!=typeof t)return!1;var n=t.substring(t.lastIndexOf("/")+1);return Ka.includes(n)}(t)&&(function(e,t){e.updateMetaData("source",{metadataSource:t});var n=e.errorMessage;e.context=n,n.includes("error in script loading")&&(e.context="Script load failures"),e.severity="error"}(t,e),!0)}catch(e){return!1}}}},{key:"notify",value:function(e){this.client&&this.client.notify(e)}},{key:"leaveBreadcrumb",value:function(e){this.client&&this.client.leaveBreadcrumb(e)}}]),e}(),qa=Ga,Va=[Ga],Wa=function(){function e(t){r(this,e),this.isEnabled=!1,this.providerName=qa,this.provider=void 0,this.logger=t,this.onClientReady=this.onClientReady.bind(this),this.exposeToGlobal=this.exposeToGlobal.bind(this)}return o(e,[{key:"init",value:function(e,t){e&&t?!0===function(e){return _i(e,"statsCollection.errors.enabled")||!1}(e)?(this.enable(),this.setProviderName(function(e){return _i(e,"statsCollection.errors.provider")}(e)),this.initProvider(e,t)):this.disable():this.logger.error("[Analytics] ErrorReporting :: Invalid configuration or missing source id provided.")}},{key:"enable",value:function(){this.isEnabled=!0}},{key:"disable",value:function(){this.isEnabled=!1}},{key:"setProviderName",value:function(e){e?!e||Va.includes(e)?this.providerName=e:this.logger.error("[Analytics] ErrorReporting :: Invalid error reporting provider value. Value should be one of: ".concat(Va.join(","))):this.providerName=qa}},{key:"initProvider",value:function(e,t){if(this.providerName===Ga)this.provider=new za(t,this.onClientReady)}},{key:"onClientReady",value:function(){this.exposeToGlobal()}},{key:"exposeToGlobal",value:function(){window.RudderStackGlobals||(window.RudderStackGlobals={}),window.RudderStackGlobals[qr]=this}},{key:"leaveBreadcrumb",value:function(e){if(this.provider)try{this.provider.leaveBreadcrumb(e)}catch(e){this.logger.error("[Analytics] ErrorReporting :: leaveBreadcrumb method ".concat(e.toString()))}}},{key:"notify",value:function(e){if(this.provider)try{this.provider.notify(e)}catch(e){this.logger.error("[Analytics] ErrorReporting :: notify method ".concat(e.toString()))}}}]),e}(),Ya=new(function(){function e(){r(this,e),this.retryAttempt=3,this.queue=[],this.isTransformationProcessing=!1,this.authToken=null}return o(e,[{key:"init",value:function(e,t,n){this.dataPlaneUrl=ns(t),this.writeKey=e,this.authToken=n||this.authToken,this.start()}},{key:"enqueue",value:function(e,t,n){this.queue.push({event:e,destinationIds:t,cb:n})}},{key:"sendEventForTransformation",value:function(e,t){var n=this;return new Promise((function(r,i){var o="".concat(n.dataPlaneUrl,"/transform"),s={"Content-Type":"application/json",Authorization:"Basic ".concat(btoa("".concat(n.writeKey,":")))};try{var a=new XMLHttpRequest;a.open("POST",o,!0),Object.keys(s).forEach((function(e){return a.setRequestHeader(e,s[e])})),a.timeout=1e4,a.onreadystatechange=function(){if(4===a.readyState)try{var o=a.status,s=a.response;switch(o){case 200:return s=JSON.parse(s),void r({status:o,transformedPayload:s.transformedBatch});case 400:var u=s?"".concat(s):"Invalid request payload";return void r({status:o,errorMessage:u});case 404:return void r({status:o});default:if(t>0){var c=t-1;setTimeout((function(){return n.sendEventForTransformation(e,c).then(r).catch(i)}),500*Math.pow(2,n.retryAttempt-c))}else r({status:o,errorMessage:"Retries exhausted"})}}catch(e){i(e)}},a.send(Wr(e,!0))}catch(e){i(e)}}))}},{key:"checkQueueLengthAndProcess",value:function(){this.queue.length>0&&this.process()}},{key:"process",value:function(){var e=this;this.isTransformationProcessing=!0;var t,n,r=this.queue.shift(),i=(t=r.event,n=r.destinationIds,{metadata:{"Custom-Authorization":this.authToken},batch:[{orderNo:Date.now(),destinationIds:n,event:t.message}]});this.sendEventForTransformation(i,this.retryAttempt).then((function(t){e.isTransformationProcessing=!1,r.cb(t),e.checkQueueLengthAndProcess()})).catch((function(t){Xr("string"==typeof t?t:t.message),e.isTransformationProcessing=!1,r.cb({status:0}),e.checkQueueLengthAndProcess()}))}},{key:"start",value:function(){var e=this;setInterval((function(){e.isTransformationProcessing||e.checkQueueLengthAndProcess()}),100)}},{key:"setAuthToken",value:function(e){this.authToken=e}}]),e}()),Xa=function(){function e(){r(this,e),this.initialized=!1,this.clientIntegrations=[],this.loadOnlyIntegrations={},this.clientIntegrationObjects=void 0,this.successfullyLoadedIntegration=[],this.failedToBeLoadedIntegration=[],this.toBeProcessedArray=[],this.toBeProcessedByIntegrationArray=[],this.storage=Po,this.eventRepository=Aa,this.preProcessQueue=new ba,this.sendAdblockPage=!1,this.sendAdblockPageOptions={},this.clientSuppliedCallbacks={},this.readyCallbacks=[],this.methodToCallbackMapping={syncPixel:"syncPixelCallback"},this.loaded=!1,this.loadIntegration=!0,this.bufferDataPlaneEventsUntilReady=!1,this.dataPlaneEventsBufferTimeout=1e4,this.integrationsData={},this.dynamicallyLoadedIntegrations={},this.destSDKBaseURL=Yo,this.cookieConsentOptions={},this.logLevel=void 0,this.clientIntegrationsReady=!1,this.uSession=Ba,this.version="2.42.1",this.lockIntegrationsVersion=!1,this.errorReporting=new Wa(Ur),this.deniedConsentIds=[],this.transformationHandler=Ya}return o(e,[{key:"initializeUser",value:function(e){this.userId=this.storage.getUserId()||"",this.storage.setUserId(this.userId),this.userTraits=this.storage.getUserTraits()||{},this.storage.setUserTraits(this.userTraits),this.groupId=this.storage.getGroupId()||"",this.storage.setGroupId(this.groupId),this.groupTraits=this.storage.getGroupTraits()||{},this.storage.setGroupTraits(this.groupTraits),this.anonymousId=this.getAnonymousId(e),this.storage.setAnonymousId(this.anonymousId)}},{key:"setInitialPageProperties",value:function(){if(null==this.storage.getInitialReferrer()&&null==this.storage.getInitialReferringDomain()){var e=ds();this.storage.setInitialReferrer(e),this.storage.setInitialReferringDomain(ps(e))}}},{key:"allModulesInitialized",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;return new Promise((function(n){e.clientIntegrations.every((function(t){return null!=e.dynamicallyLoadedIntegrations["".concat(P[t.name]).concat("_RS")]}))||t>=2e4?n(e):e.pause(Kr).then((function(){return e.allModulesInitialized(t+Kr).then(n)}))}))}},{key:"executeReadyCallback",value:function(){this.readyCallbacks.forEach((function(e){return e()}))}},{key:"integrationSDKLoaded",value:function(e,t){return window[e]&&window[e][t]&&window[e][t].prototype&&void 0!==window[e][t].prototype.constructor}},{key:"processResponse",value:function(e,t){var r=this;try{var i=t;try{if("string"==typeof t&&(i=JSON.parse(t)),!i||"object"!==n(i)||Array.isArray(i))return void Ur.error("Invalid source configuration")}catch(e){return void Xr(e)}try{this.errorReporting.init(i.source.config,i.source.id)}catch(e){Xr(e)}if(this.serverUrl=fs(i,this.serverUrl,this.options),this.eventRepository.initialize(this.writeKey,this.serverUrl,this.options),this.loaded=!0,this.transformationHandler.init(this.writeKey,this.serverUrl,this.storage.getAuthToken()),this.options&&"function"==typeof this.options.onLoaded&&this.options.onLoaded(this),function(e){if(e.toBeProcessedArray.length>0)for(;e.toBeProcessedArray.length>0;){var t=u(e.toBeProcessedArray[0]);e.toBeProcessedArray.shift();var n=t[0];t.shift(),e[n].apply(e,u(t))}}(this),i.source.destinations.forEach((function(e){e.enabled&&this.clientIntegrations.push({name:e.destinationDefinition.name,config:e.config,destinationInfo:{shouldApplyDeviceModeTransformation:e.shouldApplyDeviceModeTransformation||!1,propagateEventsUntransformedOnError:e.propagateEventsUntransformedOnError||!1,destinationId:e.id}})}),this),this.clientIntegrations=us(this.loadOnlyIntegrations,this.clientIntegrations),Object.keys(this.cookieConsentOptions).length>0)try{var o=La(this.cookieConsentOptions);this.deniedConsentIds=o&&o.getDeniedList(),this.clientIntegrations=this.clientIntegrations.filter((function(e){return!o||o&&o.isEnabled(e.config)}))}catch(e){Xr(e)}this.clientIntegrations=this.clientIntegrations.filter((function(e){return!!P[e.name]||(Ur.error("[Analytics] Integration:: ".concat(e.name," not available for initialization")),!1)}));var s="";cs().isStaging&&(s="-staging"),this.bufferDataPlaneEventsUntilReady&&setTimeout((function(){r.processBufferedCloudModeEvents()}),this.dataPlaneEventsBufferTimeout),this.errorReporting.leaveBreadcrumb("Starting device-mode initialization"),this.clientIntegrations.forEach((function(e){var t=P[e.name],n="".concat(t).concat("_RS"),i="".concat(r.destSDKBaseURL,"/").concat(t).concat(s,".min.js");window.hasOwnProperty(n)||xo(n,i,{isNonNativeSDK:!0});var o=r,a=setInterval((function(){if(o.integrationSDKLoaded(n,t)){var i,s=window[n];clearInterval(a);try{var u="[Analytics] processResponse :: trying to initialize integration name:: ".concat(n);r.errorReporting.leaveBreadcrumb(u),(i=new s[t](e.config,o,e.destinationInfo)).init(),o.isInitialized(i).then((function(){o.dynamicallyLoadedIntegrations[n]=s[t]}))}catch(e){var c="[Analytics] 'integration.init()' failed :: ".concat(n," :: ").concat(e.message);Xr(e,c),o.failedToBeLoadedIntegration.push(i)}}}),100);setTimeout((function(){clearInterval(a)}),jr)}));var a=this;this.allModulesInitialized().then((function(){if(!a.clientIntegrations||0===a.clientIntegrations.length)return r.clientIntegrationsReady=!0,r.executeReadyCallback(),void(r.toBeProcessedByIntegrationArray=[]);a.replayEvents(a)}))}catch(e){Xr(e)}}},{key:"sendDataToDestination",value:function(e,t,n){try{if(e[n]){var r=T(t);e[n](r)}}catch(t){var i="[sendToNative]:: [Destination: ".concat(e.name,"]:: ");Xr(t,i)}}},{key:"sendTransformedDataToDestination",value:function(e,t,n){var r=this;try{as(t.message.integrations);var i=e.map((function(e){return e.destinationId}));this.transformationHandler.enqueue(t,i,(function(i){var o=i.status,s=i.transformedPayload,a=i.errorMessage;e.forEach((function(e){try{switch(o){case 200:var i=s.find((function(t){return t.id===e.destinationId})),u=[];null==i||i.payload.forEach((function(n){if("200"===n.status)u.push(n);else{var r='[DMT]:: Event transformation unsuccessful for destination "'.concat(e.name,'". Reason: '),i="Unknown";"410"===n.status&&(i="Transformation is not available");var o="Dropping the event",s=Ur.error;!0===e.propagateEventsUntransformedOnError&&(o="Sending untransformed event to the destination",s=Ur.warn,u.push({event:t.message})),s("".concat(r," ").concat(i,". ").concat(o,"."))}})),null==u||u.forEach((function(t){Bo(t.event)&&r.sendDataToDestination(e,{message:t.event},n)}));break;case 404:Ur.warn("[DMT]:: Transformation server access is denied. The configuration data seems to be out of sync. Sending untransformed event to the destination."),r.sendDataToDestination(e,t,n);break;default:!0===e.propagateEventsUntransformedOnError?(Ur.warn("[DMT]::[Destination: ".concat(e.name,"] :: Transformation request failed with status: ").concat(o," ").concat(a,". Sending untransformed event.")),r.sendDataToDestination(e,t,n)):Ur.error("[DMT]::[Destination: ".concat(e.name,"] :: Transformation request failed with status: ").concat(o," ").concat(a,". Dropping the event."))}}catch(t){t instanceof Error&&(t.message="[DMT]::[Destination:".concat(e.name,"]:: ").concat(t.message)),Xr(t)}}))}))}catch(e){e instanceof Error&&(e.message="[DMT]:: ".concat(e.message)),Xr(e)}}},{key:"processAndSendEventsToDeviceMode",value:function(e,t,n){var r=this,i=[],o=[];e.forEach((function(e){!r.IsEventBlackListed(t.message.event,e.name)&&(e.shouldApplyDeviceModeTransformation?o.push(e):i.push(e))})),i.forEach((function(e){r.sendDataToDestination(e,t,n)})),o.length>0&&this.sendTransformedDataToDestination(o,t,n)}},{key:"queueEventForDataPlane",value:function(e,t){var n=t.message.integrations||{All:!0};t.message.integrations=function(e,t){var n=T(e),r=Object.keys(t).filter((function(e){return!(!0===t[e]&&n[e])})).reduce((function(e,n){return e[n]=t[n],e}),{});return Mo(n,r)}(this.integrationsData,n),this.eventRepository.enqueue(t,e)}},{key:"processBufferedCloudModeEvents",value:function(){this.bufferDataPlaneEventsUntilReady&&this.preProcessQueue.activateProcessor()}},{key:"replayEvents",value:function(e){var t,n,r,i=this;this.errorReporting.leaveBreadcrumb("Started replaying buffered events"),e.clientIntegrationObjects=[],e.clientIntegrationObjects=e.successfullyLoadedIntegration,e.clientIntegrationObjects.every((function(e){return!e.isReady||e.isReady()}))&&(this.integrationsData=(t=this.integrationsData,n=e.clientIntegrationObjects,r=T(t),n.forEach((function(e){if(e.getDataForIntegrationsObject)try{r=Mo(r,e.getDataForIntegrationsObject())}catch(e){Ur.debug("[Analytics: prepareDataForIntegrationsObj]",e)}})),r),e.clientIntegrationsReady=!0,e.executeReadyCallback()),this.processBufferedCloudModeEvents(),e.toBeProcessedByIntegrationArray.forEach((function(t){var n=t[0];t.shift(),Object.keys(t[0].message.integrations).length>0&&ss(t[0].message.integrations);var r=us(t[0].message.integrations,e.clientIntegrationObjects);i.processAndSendEventsToDeviceMode(r,t[0],n)})),e.toBeProcessedByIntegrationArray=[]}},{key:"pause",value:function(e){return new Promise((function(t){setTimeout(t,e)}))}},{key:"isInitialized",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return new Promise((function(r){e.isLoaded()?(t.successfullyLoadedIntegration.push(e),r(t)):n>=jr?(t.failedToBeLoadedIntegration.push(e),r(t)):t.pause(Kr).then((function(){return t.isInitialized(e,n+Kr).then(r)}))}))}},{key:"page",value:function(e,t,r,i,o){if(this.errorReporting.leaveBreadcrumb("Page event"),this.loaded){"function"==typeof i&&(o=i,i=null),"function"==typeof r&&(o=r,i=r=null),"function"==typeof t&&(o=t,i=r=t=null),"function"==typeof e&&(o=e,i=r=t=e=null),"object"===n(e)&&null!=e&&null!=e&&(i=t,r=e,t=e=null),"object"===n(t)&&null!=t&&null!=t&&(i=r,r=t,t=null),"string"==typeof e&&"string"!=typeof t&&(t=e,e=null),this.sendAdblockPage&&"RudderJS-Initiated"!=e&&this.sendSampleRequest();var s=T(r),a=T(i),u=(new Ss).setType("page").build();s||(s={}),t&&(u.message.name=s.name=t),e&&(u.message.category=s.category=e),u.message.properties=this.getPageProperties(s),this.processAndSendDataToDestinations("page",u,a,o)}else this.toBeProcessedArray.push(["page"].concat(Array.prototype.slice.call(arguments)))}},{key:"track",value:function(e,t,n,r){if(this.errorReporting.leaveBreadcrumb("Track event"),this.loaded){"function"==typeof n&&(r=n,n=null),"function"==typeof t&&(r=t,n=null,t=null);var i=T(t),o=T(n),s=(new Ss).setType("track").build();e&&s.setEventName(e),s.setProperty(i||{}),this.processAndSendDataToDestinations("track",s,o,r)}else this.toBeProcessedArray.push(["track"].concat(Array.prototype.slice.call(arguments)))}},{key:"identify",value:function(e,t,r,i){if(this.errorReporting.leaveBreadcrumb("Identify event"),this.loaded){"function"==typeof r&&(i=r,r=null),"function"==typeof t&&(i=t,r=null,t=null),"object"===n(e)&&(r=t,t=e,e=this.userId);var o=ls(e);o&&this.userId&&o!==this.userId&&this.reset(),this.userId=o,this.storage.setUserId(this.userId);var s=T(t),a=T(r);if(s){for(var u in s)this.userTraits[u]=s[u];this.storage.setUserTraits(this.userTraits)}var c=(new Ss).setType("identify").build();this.processAndSendDataToDestinations("identify",c,a,i)}else this.toBeProcessedArray.push(["identify"].concat(Array.prototype.slice.call(arguments)))}},{key:"alias",value:function(e,t,r,i){if(this.errorReporting.leaveBreadcrumb("Alias event"),this.loaded){"function"==typeof r&&(i=r,r=null),"function"==typeof t&&(i=t,r=null,t=null),"function"==typeof e&&(i=e,r=null,t=null,e=null),"object"===n(t)&&(r=t,t=null),"object"===n(e)&&(r=e,t=null,e=null);var o=(new Ss).setType("alias").build();o.message.previousId=ls(t)||(this.userId?this.userId:this.getAnonymousId()),o.message.userId=ls(e);var s=T(r);this.processAndSendDataToDestinations("alias",o,s,i)}else this.toBeProcessedArray.push(["alias"].concat(Array.prototype.slice.call(arguments)))}},{key:"group",value:function(e,t,r,i){if(this.errorReporting.leaveBreadcrumb("Group event"),this.loaded){if(0!==arguments.length){"function"==typeof r&&(i=r,r=null),"function"==typeof t&&(i=t,r=null,t=null),"object"===n(e)&&(r=t,t=e,e=this.groupId),"function"==typeof e&&(i=e,r=null,t=null,e=this.groupId),this.groupId=ls(e),this.storage.setGroupId(this.groupId);var o=T(t),s=T(r),a=(new Ss).setType("group").build();if(o)for(var u in o)this.groupTraits[u]=o[u];else this.groupTraits={};this.storage.setGroupTraits(this.groupTraits),this.processAndSendDataToDestinations("group",a,s,i)}}else this.toBeProcessedArray.push(["group"].concat(Array.prototype.slice.call(arguments)))}},{key:"IsEventBlackListed",value:function(e,t){if(!e||"string"!=typeof e)return!1;var n=Gr[t],r=this.clientIntegrations.find((function(e){return e.name===n})).config,i=r.blacklistedEvents,o=r.whitelistedEvents,s=r.eventFilteringOption;if(!s)return!1;var a=e.trim().toUpperCase();switch(s){case"disable":default:return!1;case"blacklistedEvents":return!!Array.isArray(i)&&i.some((function(e){return e.eventName.trim().toUpperCase()===a}));case"whitelistedEvents":return!Array.isArray(o)||!o.some((function(e){return e.eventName.trim().toUpperCase()===a}))}}},{key:"shouldUseGlobalIntegrationsConfigInEvents",value:function(){return this.useGlobalIntegrationsConfigInEvents&&this.loadOnlyIntegrations&&Object.keys(this.loadOnlyIntegrations).length>0}},{key:"processAndSendDataToDestinations",value:function(e,n,r,i){try{this.anonymousId||this.setAnonymousId(),this.errorReporting.leaveBreadcrumb("Started sending data to destinations"),n.message.context.traits=t({},this.userTraits),n.message.anonymousId=this.anonymousId,n.message.userId=n.message.userId?n.message.userId:this.userId,"group"==e&&(this.groupId&&(n.message.groupId=this.groupId),this.groupTraits&&(n.message.traits=t({},this.groupTraits)));try{var o=this.uSession.getSessionInfo(),s=o.sessionId,a=o.sessionStart;n.message.context.sessionId=s,a&&(n.message.context.sessionStart=!0)}catch(e){Xr(e)}h=this.cookieConsentOptions,f=!1,Object.keys(h).forEach((function(e){$o.includes(e)&&"boolean"==typeof h[e].enabled&&!0===h[e].enabled&&(f=!0)})),f&&(n.message.context.consentManagement={deniedConsentIds:this.deniedConsentIds||[]}),this.processOptionsParam(n,r),function(e,t){var n=e.properties,r=e.traits,i=e.context;n&&Object.keys(n).forEach((function(e){zo.indexOf(e.toLowerCase())>=0&&Ur.error("Warning! : Reserved keyword used in properties--\x3e ".concat(e," with ").concat(t," call"))})),r&&Object.keys(r).forEach((function(e){zo.indexOf(e.toLowerCase())>=0&&Ur.error("Warning! : Reserved keyword used in traits--\x3e ".concat(e," with ").concat(t," call"))}));var o=i.traits;o&&Object.keys(o).forEach((function(e){zo.indexOf(e.toLowerCase())>=0&&Ur.error("Warning! : Reserved keyword used in traits --\x3e ".concat(e," with ").concat(t," call"))}))}(n.message,e);var u=n.message.integrations;u?ss(u):u=this.shouldUseGlobalIntegrationsConfigInEvents()?this.loadOnlyIntegrations:ts,n.message.integrations=u;try{n.message.context["ua-ch"]=this.uach}catch(e){Xr(e)}if(this.clientIntegrationObjects){var c=us(u,this.clientIntegrationObjects);this.processAndSendEventsToDeviceMode(c,n,e)}else this.toBeProcessedByIntegrationArray.push([e,n]);var l=T(n);as(l.message.integrations),!this.bufferDataPlaneEventsUntilReady||this.clientIntegrationObjects?this.queueEventForDataPlane(e,l):this.preProcessQueue.enqueue(e,l),i&&"function"==typeof i&&i(l)}catch(e){Xr(e)}var h,f}},{key:"utm",value:function(e){var t={};try{var n=new URL(e),r="utm_";n.searchParams.forEach((function(e,n){if(n.startsWith(r)){var i=n.substring(4);"campaign"===i&&(i="name"),t[i]=e}}))}catch(e){}return t}},{key:"addCampaignInfo",value:function(e){var t=e.message.context;t&&"object"===n(t)&&(e.message.context.campaign=this.utm(window.location.href))}},{key:"processOptionsParam",value:function(e,r){var i=e.message,o=i.type,a=i.properties;this.addCampaignInfo(e),e.message.context.page=this.getContextPageProperties("page"===o?a:void 0),function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};"object"===n(t)&&null!==t&&Object.keys(t).forEach((function(n){Na.includes(n)&&(e[n]=t[n])}))}(e.message,r),e.message.context=function(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=e.context;return"object"!==n(r)||null===r||Object.keys(r).forEach((function(e){if(!Na.includes(e)&&!Zo.includes(e))if("context"!==e)i=Mo(i,s({},e,r[e]));else if("object"===n(r[e])&&null!==r[e]){var o={};Object.keys(r[e]).forEach((function(t){Zo.includes(t)||(o[t]=r[e][t])})),i=Mo(i,t({},o))}else Ur.error("[Analytics: processOptionsParam] context passed in options ".concat(e," is not object."))})),i}(e.message,r)}},{key:"getPageProperties",value:function(e,t){var n=ys(),r=t&&t.page||{};for(var i in n)void 0===e[i]&&(e[i]=r[i]||n[i]);return e}},{key:"getContextPageProperties",value:function(e){var t=ys(),n={};for(var r in t)n[r]=e&&e[r]?e[r]:t[r];return n}},{key:"reset",value:function(e){this.errorReporting.leaveBreadcrumb("reset API :: flag: ".concat(e)),this.loaded?(e&&(this.anonymousId=""),this.userId="",this.userTraits={},this.groupId="",this.groupTraits={},this.uSession.reset(),this.storage.clear(e)):this.toBeProcessedArray.push(["reset",e])}},{key:"getAnonymousId",value:function(e){return this.anonymousId=this.storage.getAnonymousId(e),this.anonymousId||this.setAnonymousId(),this.anonymousId}},{key:"getUserId",value:function(){return this.userId}},{key:"getSessionId",value:function(){return this.uSession.getSessionId()}},{key:"getUserTraits",value:function(){return this.userTraits}},{key:"getGroupId",value:function(){return this.groupId}},{key:"getGroupTraits",value:function(){return this.groupTraits}},{key:"setAnonymousId",value:function(e,t){var n=t?Pa(t):null,r=n?n.rs_amp_id:null;this.anonymousId=e||r||rs(),this.storage.setAnonymousId(this.anonymousId)}},{key:"isValidWriteKey",value:function(e){return e&&"string"==typeof e&&e.trim().length>0}},{key:"isValidServerUrl",value:function(e){return e&&"string"==typeof e&&e.trim().length>0}},{key:"isDatasetAvailable",value:function(){var e=document.createElement("div");return e.setAttribute("data-a-b","c"),!!e.dataset&&"c"===e.dataset.aB}},{key:"loadAfterPolyfill",value:function(e,r,i){var o=this;if("object"===n(r)&&null!==r&&(i=r,r=null),i&&i.logLevel&&(this.logLevel=i.logLevel,Ur.setLogLevel(i.logLevel)),!this.isValidWriteKey(e))throw Error("Unable to load the SDK due to invalid writeKey");if(!this.storage||0===Object.keys(this.storage).length)throw Error("Cannot proceed as no storage is available");i&&i.cookieConsentManager&&(this.cookieConsentOptions=i.cookieConsentManager),this.writeKey=e,this.serverUrl=r,this.options=i;var s={};if(i&&i.setCookieDomain&&(s=t(t({},s),{},{domain:i.setCookieDomain})),i&&"boolean"==typeof i.secureCookie&&(s=t(t({},s),{},{secure:i.secureCookie})),i&&-1!==Xo.indexOf(i.sameSiteCookie)&&(s=t(t({},s),{},{samesite:i.sameSiteCookie})),this.storage.options(s),i&&"string"==typeof i.uaChTrackLevel&&es.includes(i.uaChTrackLevel)&&(this.uaChTrackLevel=i.uaChTrackLevel),navigator.userAgentData&&function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"none";"none"===t&&e(void 0),"default"===t&&e(navigator.userAgentData),"full"===t&&navigator.userAgentData.getHighEntropyValues(["architecture","bitness","brands","mobile","model","platform","platformVersion","uaFullVersion","fullVersionList","wow64"]).then((function(t){e(t)}))}((function(e){o.uach=e}),this.uaChTrackLevel),i&&i.integrations&&(a(this.loadOnlyIntegrations,i.integrations),ss(this.loadOnlyIntegrations)),this.useGlobalIntegrationsConfigInEvents=i&&!0===i.useGlobalIntegrationsConfigInEvents,i&&i.sendAdblockPage&&(this.sendAdblockPage=!0),i&&i.sendAdblockPageOptions&&"object"===n(i.sendAdblockPageOptions)&&(this.sendAdblockPageOptions=i.sendAdblockPageOptions),this.uSession.initialize(i),i&&i.clientSuppliedCallbacks){var u={};Object.keys(this.methodToCallbackMapping).forEach((function(e){o.methodToCallbackMapping.hasOwnProperty(e)&&i.clientSuppliedCallbacks[o.methodToCallbackMapping[e]]&&(u[e]=i.clientSuppliedCallbacks[o.methodToCallbackMapping[e]])})),a(this.clientSuppliedCallbacks,u),this.registerCallbacks(!0)}if(i&&null!=i.loadIntegration&&(this.loadIntegration=!!i.loadIntegration),i&&"boolean"==typeof i.bufferDataPlaneEventsUntilReady&&(this.bufferDataPlaneEventsUntilReady=!0===i.bufferDataPlaneEventsUntilReady,this.bufferDataPlaneEventsUntilReady&&this.preProcessQueue.init(this.options,this.queueEventForDataPlane.bind(this))),i&&"number"==typeof i.dataPlaneEventsBufferTimeout&&(this.dataPlaneEventsBufferTimeout=i.dataPlaneEventsBufferTimeout),i&&void 0!==i.lockIntegrationsVersion&&(this.lockIntegrationsVersion=!0===i.lockIntegrationsVersion),this.initializeUser(i?i.anonymousIdOptions:void 0),this.setInitialPageProperties(),this.destSDKBaseURL=function(e,t,n){var r="";if(n){if(!(r=ns(n))){var i="CDN base URL for integrations is not valid";throw Xr({message:"[Analytics] load:: ".concat(i)}),Error("Failed to load Rudder SDK: ".concat(i))}return r}var o=cs().sdkURL;return r=o?o.split("/").slice(0,-1).concat(Wo).join("/"):Yo,t&&(r=r.replace(Vo,e)),r}(this.version,this.lockIntegrationsVersion,i&&i.destSDKBaseURL),i&&i.getSourceConfig)if("function"!=typeof i.getSourceConfig)Xr(new Error('option "getSourceConfig" must be a function'));else{var c=i.getSourceConfig();c instanceof Promise?c.then((function(e){return o.processResponse(200,e)})).catch(Xr):this.processResponse(200,c)}else{var l=function(e){return qo.concat(qo.includes("?")?"&":"?").concat(e?"writeKey=".concat(e):"")}(e);i&&i.configUrl&&(l=function(e,t){var n=e;-1===n.indexOf("sourceConfig")&&(n="".concat(ns(n),"/sourceConfig/")),n="/"===n.slice(-1)?n:"".concat(n,"/");var r=t.split("?")[1],i=n.split("?");return i.length>1&&i[1]!==r?"".concat(i[0],"?").concat(r):"".concat(n,"?").concat(r)}(i.configUrl,l));try{!function(e,t,n,r){var i=r.bind(e),o=new XMLHttpRequest;o.open("GET",t,!0),o.setRequestHeader("Authorization","Basic ".concat(btoa("".concat(n,":")))),o.onload=function(){var e=o.status,n=o.responseText;200===e?i(200,n):(Xr(new Error("".concat(Hr," ").concat(e," for url: ").concat(t))),i(e))},o.send()}(this,l,e,this.processResponse)}catch(e){Xr(e)}}}},{key:"arePolyfillsRequired",value:function(e){return(!e||"boolean"!=typeof e.polyfillIfRequired||e.polyfillIfRequired)&&(!String.prototype.endsWith||!String.prototype.startsWith||!String.prototype.includes||!Array.prototype.find||!Array.prototype.includes||"function"!=typeof window.URL||"undefined"==typeof Promise||!Object.entries||!Object.values||!String.prototype.replaceAll||!this.isDatasetAvailable()||"function"!=typeof TextDecoder||"function"!=typeof Uint8Array)}},{key:"load",value:function(e,t,n){if(!this.loaded){var r=T(n);if(this.arePolyfillsRequired(r)){var i="polyfill";xo(i,"https://polyfill.io/v3/polyfill.min.js?features=Number.isNaN%2CURL%2CArray.prototype.find%2CArray.prototype.includes%2CPromise%2CString.prototype.endsWith%2CString.prototype.includes%2CString.prototype.startsWith%2CObject.entries%2CObject.values%2CElement.prototype.dataset%2CString.prototype.replaceAll%2CTextDecoder%2Uint8Array",{skipDatasetAttributes:!0});var o=this,s=setInterval((function(){!window.hasOwnProperty(i)&&null===document.getElementById(i)||"undefined"==typeof Promise||(clearInterval(s),o.loadAfterPolyfill(e,t,r))}),100);setTimeout((function(){clearInterval(s)}),jr)}else this.loadAfterPolyfill(e,t,r)}}},{key:"ready",value:function(e){this.loaded?"function"!=typeof e?Ur.error("ready callback is not a function"):this.clientIntegrationsReady?e():this.readyCallbacks.push(e):this.toBeProcessedArray.push(["ready",e])}},{key:"initializeCallbacks",value:function(){var e=this;Object.keys(this.methodToCallbackMapping).forEach((function(t){e.methodToCallbackMapping.hasOwnProperty(t)&&e.on(t,(function(){}))}))}},{key:"registerCallbacks",value:function(e){var t=this;e||Object.keys(this.methodToCallbackMapping).forEach((function(e){t.methodToCallbackMapping.hasOwnProperty(e)&&window.rudderanalytics&&"function"==typeof window.rudderanalytics[t.methodToCallbackMapping[e]]&&(t.clientSuppliedCallbacks[e]=window.rudderanalytics[t.methodToCallbackMapping[e]])})),Object.keys(this.clientSuppliedCallbacks).forEach((function(e){t.clientSuppliedCallbacks.hasOwnProperty(e)&&t.on(e,t.clientSuppliedCallbacks[e])}))}},{key:"sendSampleRequest",value:function(){xo("ad-block","//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js",{isNonNativeSDK:!0})}},{key:"startSession",value:function(e){this.uSession.start(e)}},{key:"endSession",value:function(){this.uSession.end()}},{key:"setAuthToken",value:function(e){"string"==typeof e?(this.storage.setAuthToken(e),this.transformationHandler.setAuthToken(e)):Ur.error("Provided input should be in string format")}}]),e}(),Ja=new Xa;y(Ja),window.addEventListener("error",(function(e){Xr(e,void 0,Ja)}),!0),Ja.initializeCallbacks(),Ja.registerCallbacks(!1);var $a,Za="load",eu=window.rudderanalytics,tu=Array.isArray(eu);if(tu)for(var nu=0;nu<eu.length;){if(eu[nu]&&eu[nu][0]===Za){$a=eu[nu],eu.splice(nu,1);break}nu+=1}!function(e){var t="ajs_trait_",n="ajs_prop_";function r(e,t){var n={};return Object.keys(e).forEach((function(r){r.startsWith(t)&&(n[r.substr(t.length)]=e[r])})),n}var i=function(e){var t={};try{new URL(e).searchParams.forEach((function(e,n){t[n]=e}))}catch(e){}return t}(e);i.ajs_aid&&Ja.toBeProcessedArray.push(["setAnonymousId",i.ajs_aid]),i.ajs_uid&&Ja.toBeProcessedArray.push(["identify",i.ajs_uid,r(i,t)]),i.ajs_event&&Ja.toBeProcessedArray.push(["track",i.ajs_event,r(i,n)])}(window.location.href),tu&&eu.forEach((function(e){return Ja.toBeProcessedArray.push(e)})),$a&&$a.length>0&&($a.shift(),Ja[Za].apply(Ja,u($a)));var ru=Ja.ready.bind(Ja),iu=Ja.identify.bind(Ja),ou=Ja.page.bind(Ja),su=Ja.track.bind(Ja),au=Ja.alias.bind(Ja),uu=Ja.group.bind(Ja),cu=Ja.reset.bind(Ja),lu=Ja.load.bind(Ja),hu=Ja.initialized=!0,fu=Ja.getUserId.bind(Ja),du=Ja.getSessionId.bind(Ja),pu=Ja.getUserTraits.bind(Ja),gu=Ja.getAnonymousId.bind(Ja),yu=Ja.setAnonymousId.bind(Ja),vu=Ja.getGroupId.bind(Ja),mu=Ja.getGroupTraits.bind(Ja),Iu=Ja.startSession.bind(Ja),Au=Ja.endSession.bind(Ja),ku=Ja.setAuthToken.bind(Ja);exports.alias=au,exports.endSession=Au,exports.getAnonymousId=gu,exports.getGroupId=vu,exports.getGroupTraits=mu,exports.getSessionId=du,exports.getUserId=fu,exports.getUserTraits=pu,exports.group=uu,exports.identify=iu,exports.initialized=hu,exports.load=lu,exports.page=ou,exports.ready=ru,exports.reset=cu,exports.setAnonymousId=yu,exports.setAuthToken=ku,exports.startSession=Iu,exports.track=su;
|
@@ -76,7 +76,7 @@ declare module 'rudder-sdk-js' {
|
|
76
76
|
*/
|
77
77
|
interface loadOptions {
|
78
78
|
integrations?: integrationOptions;
|
79
|
-
// defaults to https://api.
|
79
|
+
// defaults to https://api.rudderstack.com
|
80
80
|
configUrl?: string;
|
81
81
|
queueOptions?: queueOptions;
|
82
82
|
// Defaults to true
|