@walkeros/explorer 0.0.7 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/utils/monaco-context-types.ts","walkeros-types:virtual:walkeros-core-types","../src/utils/monaco-types.ts"],"sourcesContent":["/**\n * Monaco Editor Context Type Templates\n *\n * Hand-crafted global namespace declarations for function contexts.\n * These provide full TypeScript IntelliSense in Monaco Editor without\n * requiring import statements.\n *\n * Extracted from @walkeros/core types and simplified for editor use.\n */\n\n/**\n * Type template for 'fn' context (transformation functions)\n *\n * Provides types for:\n * - value: WalkerOS.DeepPartialEvent | unknown\n * - mapping: Mapping.Value\n * - options: Mapping.Options\n */\nexport const FN_CONTEXT_TYPES = `\n// WalkerOS Core Types\ndeclare namespace WalkerOS {\n // Utility types\n type DeepPartial<T> = {\n [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];\n };\n\n type PromiseOrValue<T> = T | Promise<T>;\n\n // Property types\n type PropertyType = boolean | string | number | {\n [key: string]: Property;\n };\n\n type Property = PropertyType | Array<PropertyType>;\n\n interface Properties {\n [key: string]: Property | undefined;\n }\n\n interface OrderedProperties {\n [key: string]: [Property, number] | undefined;\n }\n\n // Consent\n interface Consent {\n [name: string]: boolean;\n }\n\n // User\n interface User extends Properties {\n id?: string;\n device?: string;\n session?: string;\n hash?: string;\n address?: string;\n email?: string;\n phone?: string;\n userAgent?: string;\n browser?: string;\n browserVersion?: string;\n deviceType?: string;\n language?: string;\n country?: string;\n region?: string;\n city?: string;\n zip?: string;\n timezone?: string;\n os?: string;\n osVersion?: string;\n screenSize?: string;\n ip?: string;\n internal?: boolean;\n }\n\n // Version\n interface Version extends Properties {\n source: string;\n tagging: number;\n }\n\n // Source\n type SourceType = 'web' | 'server' | 'app' | 'other' | string;\n\n interface Source extends Properties {\n type: SourceType;\n id: string;\n previous_id: string;\n }\n\n // Entity\n type Entities = Array<Entity>;\n\n interface Entity {\n entity: string;\n data: Properties;\n nested: Entities;\n context: OrderedProperties;\n }\n\n // Event\n interface Event {\n name: string;\n data: Properties;\n context: OrderedProperties;\n globals: Properties;\n custom: Properties;\n user: User;\n nested: Entities;\n consent: Consent;\n id: string;\n trigger: string;\n entity: string;\n action: string;\n timestamp: number;\n timing: number;\n group: string;\n count: number;\n version: Version;\n source: Source;\n }\n\n type DeepPartialEvent = DeepPartial<Event>;\n}\n\n// Mapping Types\ndeclare namespace Mapping {\n type ValueType = string | ValueConfig;\n type Value = ValueType | Array<ValueType>;\n type Values = Array<Value>;\n\n interface ValueConfig {\n condition?: Condition;\n consent?: WalkerOS.Consent;\n fn?: Fn;\n key?: string;\n loop?: Loop;\n map?: Map;\n set?: Value[];\n validate?: Validate;\n value?: WalkerOS.PropertyType;\n }\n\n type Loop = [Value, Value];\n\n type Map = {\n [key: string]: Value;\n };\n\n interface Options {\n consent?: WalkerOS.Consent;\n collector?: Collector.Instance;\n props?: unknown;\n }\n\n type Condition = (\n value: WalkerOS.DeepPartialEvent | unknown,\n mapping?: Value,\n collector?: Collector.Instance\n ) => WalkerOS.PromiseOrValue<boolean>;\n\n type Fn = (\n value: WalkerOS.DeepPartialEvent | unknown,\n mapping: Value,\n options: Options\n ) => WalkerOS.PromiseOrValue<WalkerOS.Property | unknown>;\n\n type Validate = (value?: unknown) => WalkerOS.PromiseOrValue<boolean>;\n}\n\n// Collector Types (minimal for fn context)\ndeclare namespace Collector {\n interface Instance {\n push: any;\n command: any;\n allowed: boolean;\n config: any;\n consent: WalkerOS.Consent;\n count: number;\n custom: WalkerOS.Properties;\n globals: WalkerOS.Properties;\n group: string;\n queue: any[];\n round: number;\n session: any;\n timing: number;\n user: WalkerOS.User;\n version: string;\n [key: string]: any;\n }\n}\n\n// Parameter declarations for fn context\ndeclare const value: WalkerOS.DeepPartialEvent | unknown;\ndeclare const mapping: Mapping.Value;\ndeclare const options: Mapping.Options;\n`;\n\n/**\n * Type template for 'condition' context (conditional functions)\n *\n * Provides types for:\n * - value: WalkerOS.DeepPartialEvent | unknown\n * - mapping: Mapping.Value\n * - collector: Collector.Instance | undefined\n */\nexport const CONDITION_CONTEXT_TYPES = `\n// WalkerOS Core Types\ndeclare namespace WalkerOS {\n // Utility types\n type DeepPartial<T> = {\n [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];\n };\n\n type PromiseOrValue<T> = T | Promise<T>;\n\n // Property types\n type PropertyType = boolean | string | number | {\n [key: string]: Property;\n };\n\n type Property = PropertyType | Array<PropertyType>;\n\n interface Properties {\n [key: string]: Property | undefined;\n }\n\n interface OrderedProperties {\n [key: string]: [Property, number] | undefined;\n }\n\n // Consent\n interface Consent {\n [name: string]: boolean;\n }\n\n // User\n interface User extends Properties {\n id?: string;\n device?: string;\n session?: string;\n hash?: string;\n address?: string;\n email?: string;\n phone?: string;\n userAgent?: string;\n browser?: string;\n browserVersion?: string;\n deviceType?: string;\n language?: string;\n country?: string;\n region?: string;\n city?: string;\n zip?: string;\n timezone?: string;\n os?: string;\n osVersion?: string;\n screenSize?: string;\n ip?: string;\n internal?: boolean;\n }\n\n // Version\n interface Version extends Properties {\n source: string;\n tagging: number;\n }\n\n // Source\n type SourceType = 'web' | 'server' | 'app' | 'other' | string;\n\n interface Source extends Properties {\n type: SourceType;\n id: string;\n previous_id: string;\n }\n\n // Entity\n type Entities = Array<Entity>;\n\n interface Entity {\n entity: string;\n data: Properties;\n nested: Entities;\n context: OrderedProperties;\n }\n\n // Event\n interface Event {\n name: string;\n data: Properties;\n context: OrderedProperties;\n globals: Properties;\n custom: Properties;\n user: User;\n nested: Entities;\n consent: Consent;\n id: string;\n trigger: string;\n entity: string;\n action: string;\n timestamp: number;\n timing: number;\n group: string;\n count: number;\n version: Version;\n source: Source;\n }\n\n type DeepPartialEvent = DeepPartial<Event>;\n}\n\n// Mapping Types\ndeclare namespace Mapping {\n type ValueType = string | ValueConfig;\n type Value = ValueType | Array<ValueType>;\n\n interface ValueConfig {\n condition?: Condition;\n consent?: WalkerOS.Consent;\n fn?: Fn;\n key?: string;\n loop?: Loop;\n map?: Map;\n set?: Value[];\n validate?: Validate;\n value?: WalkerOS.PropertyType;\n }\n\n type Loop = [Value, Value];\n\n type Map = {\n [key: string]: Value;\n };\n\n type Condition = (\n value: WalkerOS.DeepPartialEvent | unknown,\n mapping?: Value,\n collector?: Collector.Instance\n ) => WalkerOS.PromiseOrValue<boolean>;\n\n type Fn = (\n value: WalkerOS.DeepPartialEvent | unknown,\n mapping: Value,\n options: any\n ) => WalkerOS.PromiseOrValue<WalkerOS.Property | unknown>;\n\n type Validate = (value?: unknown) => WalkerOS.PromiseOrValue<boolean>;\n}\n\n// Collector Types (full interface for condition context)\ndeclare namespace Collector {\n interface SessionData extends WalkerOS.Properties {\n isStart: boolean;\n storage: boolean;\n id?: string;\n start?: number;\n marketing?: true;\n updated?: number;\n isNew?: boolean;\n device?: string;\n count?: number;\n runs?: number;\n }\n\n interface Config {\n run?: boolean;\n tagging: number;\n globalsStatic: WalkerOS.Properties;\n sessionStatic: Partial<SessionData>;\n verbose: boolean;\n onError?: any;\n onLog?: any;\n }\n\n interface Instance {\n push: any;\n command: any;\n allowed: boolean;\n config: Config;\n consent: WalkerOS.Consent;\n count: number;\n custom: WalkerOS.Properties;\n sources: any;\n destinations: any;\n globals: WalkerOS.Properties;\n group: string;\n hooks: any;\n on: any;\n queue: any[];\n round: number;\n session: undefined | SessionData;\n timing: number;\n user: WalkerOS.User;\n version: string;\n }\n}\n\n// Parameter declarations for condition context\ndeclare const value: WalkerOS.DeepPartialEvent | unknown;\ndeclare const mapping: Mapping.Value;\ndeclare const collector: Collector.Instance | undefined;\n`;\n\n/**\n * Type template for 'validate' context (validation functions)\n *\n * Provides types for:\n * - value: unknown\n */\nexport const VALIDATE_CONTEXT_TYPES = `\n// Parameter declaration for validate context\ndeclare const value: unknown;\n`;\n\n/**\n * Get the type template for a specific function context\n */\nexport function getContextTypes(contextType: 'fn' | 'condition' | 'validate'): string {\n switch (contextType) {\n case 'fn':\n return FN_CONTEXT_TYPES;\n case 'condition':\n return CONDITION_CONTEXT_TYPES;\n case 'validate':\n return VALIDATE_CONTEXT_TYPES;\n default:\n return '';\n }\n}\n","export default \"import * as zod_to_json_schema from 'zod-to-json-schema';\\nexport { zodToJsonSchema } from 'zod-to-json-schema';\\nimport { z } from 'zod';\\nexport { z } from 'zod';\\n\\n/**\\n * Core collector configuration interface\\n */\\ninterface Config$5 {\\n /** Whether to run collector automatically */\\n run?: boolean;\\n /** Version for event tagging */\\n tagging: number;\\n /** Static global properties even on a new run */\\n globalsStatic: Properties;\\n /** Static session data even on a new run */\\n sessionStatic: Partial<SessionData>;\\n /** Enable verbose logging */\\n verbose: boolean;\\n /** Error handler */\\n onError?: Error;\\n /** Log handler */\\n onLog?: Log;\\n}\\n/**\\n * Initialization configuration that extends Config with initial state\\n */\\ninterface InitConfig$1 extends Partial<Config$5> {\\n /** Initial consent state */\\n consent?: Consent;\\n /** Initial user data */\\n user?: User;\\n /** Initial global properties */\\n globals?: Properties;\\n /** Source configurations */\\n sources?: InitSources;\\n /** Destination configurations */\\n destinations?: InitDestinations;\\n /** Initial custom properties */\\n custom?: Properties;\\n}\\ninterface SessionData extends Properties {\\n isStart: boolean;\\n storage: boolean;\\n id?: string;\\n start?: number;\\n marketing?: true;\\n updated?: number;\\n isNew?: boolean;\\n device?: string;\\n count?: number;\\n runs?: number;\\n}\\ninterface Sources {\\n [id: string]: Instance;\\n}\\ninterface Destinations$1 {\\n [id: string]: Instance$1;\\n}\\ntype CommandType = 'action' | 'config' | 'consent' | 'context' | 'destination' | 'elb' | 'globals' | 'hook' | 'init' | 'link' | 'run' | 'user' | 'walker' | string;\\n/**\\n * Context passed to collector.push for source mapping\\n */\\ninterface PushContext$1 {\\n mapping?: Config$2;\\n}\\n/**\\n * Push function signature - handles events only\\n */\\ninterface PushFn$1 {\\n (event: DeepPartialEvent, context?: PushContext$1): Promise<PushResult>;\\n}\\n/**\\n * Command function signature - handles walker commands only\\n */\\ninterface CommandFn {\\n (command: 'config', config: Partial<Config$5>): Promise<PushResult>;\\n (command: 'consent', consent: Consent): Promise<PushResult>;\\n <T extends Types$2>(command: 'destination', destination: Init$1<T> | Instance$1<T>, config?: Config$4<T>): Promise<PushResult>;\\n <K extends keyof Functions>(command: 'hook', name: K, hookFn: Functions[K]): Promise<PushResult>;\\n (command: 'on', type: Types$1, rules: SingleOrArray<Options>): Promise<PushResult>;\\n (command: 'user', user: User): Promise<PushResult>;\\n (command: 'run', runState?: {\\n consent?: Consent;\\n user?: User;\\n globals?: Properties;\\n custom?: Properties;\\n }): Promise<PushResult>;\\n (command: string, data?: unknown, options?: unknown): Promise<PushResult>;\\n}\\ninterface Instance$2 {\\n push: PushFn$1;\\n command: CommandFn;\\n allowed: boolean;\\n config: Config$5;\\n consent: Consent;\\n count: number;\\n custom: Properties;\\n sources: Sources;\\n destinations: Destinations$1;\\n globals: Properties;\\n group: string;\\n hooks: Functions;\\n on: OnConfig;\\n queue: Events;\\n round: number;\\n session: undefined | SessionData;\\n timing: number;\\n user: User;\\n version: string;\\n}\\n\\ntype collector$1_CommandFn = CommandFn;\\ntype collector$1_CommandType = CommandType;\\ntype collector$1_SessionData = SessionData;\\ntype collector$1_Sources = Sources;\\ndeclare namespace collector$1 {\\n export type { collector$1_CommandFn as CommandFn, collector$1_CommandType as CommandType, Config$5 as Config, Destinations$1 as Destinations, InitConfig$1 as InitConfig, Instance$2 as Instance, PushContext$1 as PushContext, PushFn$1 as PushFn, collector$1_SessionData as SessionData, collector$1_Sources as Sources };\\n}\\n\\ninterface Contract$1 {\\n version: string;\\n globals: Globals;\\n context: Contexts;\\n entities: Entities$1;\\n}\\ninterface Globals {\\n [name: string]: Global;\\n}\\ninterface Contexts {\\n [name: string]: Context$3;\\n}\\ninterface Entities$1 {\\n [name: string]: Entity$1;\\n}\\ninterface Properties$2 {\\n [name: string]: Property$2;\\n}\\ninterface Global extends Property$2 {\\n}\\ninterface Context$3 extends Property$2 {\\n}\\ninterface Entity$1 {\\n data: Properties$2;\\n actions: Actions;\\n}\\ninterface Actions {\\n [name: string]: Action;\\n}\\ninterface Action {\\n trigger?: Trigger;\\n}\\ntype Trigger = string;\\ninterface Property$2 {\\n type?: PropertyType$1;\\n required?: boolean;\\n values?: PropertyValues;\\n}\\ntype PropertyType$1 = 'boolean' | 'string' | 'number';\\ntype PropertyValues = Array<Property>;\\n\\ntype data_Action = Action;\\ntype data_Actions = Actions;\\ntype data_Contexts = Contexts;\\ntype data_Global = Global;\\ntype data_Globals = Globals;\\ntype data_PropertyValues = PropertyValues;\\ntype data_Trigger = Trigger;\\ndeclare namespace data {\\n export type { data_Action as Action, data_Actions as Actions, Context$3 as Context, data_Contexts as Contexts, Contract$1 as Contract, Entities$1 as Entities, Entity$1 as Entity, data_Global as Global, data_Globals as Globals, Properties$2 as Properties, Property$2 as Property, PropertyType$1 as PropertyType, data_PropertyValues as PropertyValues, data_Trigger as Trigger };\\n}\\n\\n/**\\n * Base environment requirements interface for walkerOS destinations\\n *\\n * This defines the core interface that destinations can use to declare\\n * their runtime environment requirements. Platform-specific extensions\\n * should extend this interface.\\n */\\ninterface BaseEnv$1 {\\n /**\\n * Generic global properties that destinations may require\\n * Platform-specific implementations can extend this interface\\n */\\n [key: string]: unknown;\\n}\\n/**\\n * Type bundle for destination generics.\\n * Groups Settings, Mapping, and Env into a single type parameter.\\n */\\ninterface Types$2<S = unknown, M = unknown, E = BaseEnv$1> {\\n settings: S;\\n mapping: M;\\n env: E;\\n}\\n/**\\n * Generic constraint for Types - ensures T has required properties for indexed access\\n */\\ntype TypesGeneric$1 = {\\n settings: any;\\n mapping: any;\\n env: any;\\n};\\n/**\\n * Type extractors for consistent usage with Types bundle\\n */\\ntype Settings$1<T extends TypesGeneric$1 = Types$2> = T['settings'];\\ntype Mapping$1<T extends TypesGeneric$1 = Types$2> = T['mapping'];\\ntype Env$1<T extends TypesGeneric$1 = Types$2> = T['env'];\\n/**\\n * Inference helper: Extract Types from Instance\\n */\\ntype TypesOf$1<I> = I extends Instance$1<infer T> ? T : never;\\ninterface Instance$1<T extends TypesGeneric$1 = Types$2> {\\n config: Config$4<T>;\\n queue?: Events;\\n dlq?: DLQ;\\n type?: string;\\n env?: Env$1<T>;\\n init?: InitFn<T>;\\n push: PushFn<T>;\\n pushBatch?: PushBatchFn<T>;\\n on?: OnFn;\\n}\\ninterface Config$4<T extends TypesGeneric$1 = Types$2> {\\n consent?: Consent;\\n settings?: Settings$1<T>;\\n data?: Value | Values;\\n env?: Env$1<T>;\\n id?: string;\\n init?: boolean;\\n loadScript?: boolean;\\n mapping?: Rules<Rule<Mapping$1<T>>>;\\n policy?: Policy$1;\\n queue?: boolean;\\n verbose?: boolean;\\n onError?: Error;\\n onLog?: Log;\\n}\\ntype PartialConfig$1<T extends TypesGeneric$1 = Types$2> = Config$4<Types$2<Partial<Settings$1<T>> | Settings$1<T>, Partial<Mapping$1<T>> | Mapping$1<T>, Env$1<T>>>;\\ninterface Policy$1 {\\n [key: string]: Value;\\n}\\ntype Init$1<T extends TypesGeneric$1 = Types$2> = {\\n code: Instance$1<T>;\\n config?: Partial<Config$4<T>>;\\n env?: Partial<Env$1<T>>;\\n};\\ninterface InitDestinations {\\n [key: string]: Init$1<any>;\\n}\\ninterface Destinations {\\n [key: string]: Instance$1;\\n}\\ninterface Context$2<T extends TypesGeneric$1 = Types$2> {\\n collector: Instance$2;\\n config: Config$4<T>;\\n data?: Data$1;\\n env: Env$1<T>;\\n}\\ninterface InitContext<T extends TypesGeneric$1 = Types$2> {\\n collector: Instance$2;\\n config: Config$4<Types$2<Partial<Settings$1<T>>, Mapping$1<T>, Env$1<T>>>;\\n data?: Data$1;\\n env: Env$1<T>;\\n}\\ninterface PushContext<T extends TypesGeneric$1 = Types$2> extends Context$2<T> {\\n mapping?: Rule<Mapping$1<T>>;\\n}\\ninterface PushBatchContext<T extends TypesGeneric$1 = Types$2> extends Context$2<T> {\\n mapping?: Rule<Mapping$1<T>>;\\n}\\ntype InitFn<T extends TypesGeneric$1 = Types$2> = (context: InitContext<T>) => PromiseOrValue<void | false | Config$4<T>>;\\ntype PushFn<T extends TypesGeneric$1 = Types$2> = (event: Event, context: PushContext<T>) => PromiseOrValue<void>;\\ntype PushBatchFn<T extends TypesGeneric$1 = Types$2> = (batch: Batch<Mapping$1<T>>, context: PushBatchContext<T>) => void;\\ntype PushEvent<Mapping = unknown> = {\\n event: Event;\\n mapping?: Rule<Mapping>;\\n};\\ntype PushEvents<Mapping = unknown> = Array<PushEvent<Mapping>>;\\ninterface Batch<Mapping> {\\n key: string;\\n events: Events;\\n data: Array<Data$1>;\\n mapping?: Rule<Mapping>;\\n}\\ntype Data$1 = Property | undefined | Array<Property | undefined>;\\ntype Ref = {\\n id: string;\\n destination: Instance$1;\\n};\\ntype Push$1 = {\\n queue?: Events;\\n error?: unknown;\\n};\\ntype DLQ = Array<[Event, unknown]>;\\ntype Result$1 = {\\n successful: Array<Ref>;\\n queued: Array<Ref>;\\n failed: Array<Ref>;\\n};\\n\\ntype destination$1_Batch<Mapping> = Batch<Mapping>;\\ntype destination$1_DLQ = DLQ;\\ntype destination$1_Destinations = Destinations;\\ntype destination$1_InitContext<T extends TypesGeneric$1 = Types$2> = InitContext<T>;\\ntype destination$1_InitDestinations = InitDestinations;\\ntype destination$1_InitFn<T extends TypesGeneric$1 = Types$2> = InitFn<T>;\\ntype destination$1_PushBatchContext<T extends TypesGeneric$1 = Types$2> = PushBatchContext<T>;\\ntype destination$1_PushBatchFn<T extends TypesGeneric$1 = Types$2> = PushBatchFn<T>;\\ntype destination$1_PushContext<T extends TypesGeneric$1 = Types$2> = PushContext<T>;\\ntype destination$1_PushEvent<Mapping = unknown> = PushEvent<Mapping>;\\ntype destination$1_PushEvents<Mapping = unknown> = PushEvents<Mapping>;\\ntype destination$1_PushFn<T extends TypesGeneric$1 = Types$2> = PushFn<T>;\\ntype destination$1_Ref = Ref;\\ndeclare namespace destination$1 {\\n export type { BaseEnv$1 as BaseEnv, destination$1_Batch as Batch, Config$4 as Config, Context$2 as Context, destination$1_DLQ as DLQ, Data$1 as Data, destination$1_Destinations as Destinations, Env$1 as Env, Init$1 as Init, destination$1_InitContext as InitContext, destination$1_InitDestinations as InitDestinations, destination$1_InitFn as InitFn, Instance$1 as Instance, Mapping$1 as Mapping, PartialConfig$1 as PartialConfig, Policy$1 as Policy, Push$1 as Push, destination$1_PushBatchContext as PushBatchContext, destination$1_PushBatchFn as PushBatchFn, destination$1_PushContext as PushContext, destination$1_PushEvent as PushEvent, destination$1_PushEvents as PushEvents, destination$1_PushFn as PushFn, destination$1_Ref as Ref, Result$1 as Result, Settings$1 as Settings, Types$2 as Types, TypesGeneric$1 as TypesGeneric, TypesOf$1 as TypesOf };\\n}\\n\\ninterface EventFn<R = Promise<PushResult>> {\\n (partialEvent: DeepPartialEvent): R;\\n (event: string): R;\\n (event: string, data: Properties): R;\\n}\\ninterface Fn$1<R = Promise<PushResult>, Config = unknown> extends EventFn<R>, WalkerCommands<R, Config> {\\n}\\ninterface WalkerCommands<R = Promise<PushResult>, Config = unknown> {\\n (event: 'walker config', config: Partial<Config>): R;\\n (event: 'walker consent', consent: Consent): R;\\n <T extends Types$2>(event: 'walker destination', destination: Init$1<T> | Instance$1<T>, config?: Config$4<T>): R;\\n <K extends keyof Functions>(event: 'walker hook', name: K, hookFn: Functions[K]): R;\\n (event: 'walker on', type: Types$1, rules: SingleOrArray<Options>): R;\\n (event: 'walker user', user: User): R;\\n (event: 'walker run', runState: {\\n consent?: Consent;\\n user?: User;\\n globals?: Properties;\\n custom?: Properties;\\n }): R;\\n}\\ntype Event$1<R = Promise<PushResult>> = (partialEvent: DeepPartialEvent) => R;\\ntype PushData<Config = unknown> = DeepPartial<Config> | Consent | User | Properties;\\ninterface PushResult extends Result$1 {\\n event?: Event;\\n ok: boolean;\\n}\\ntype Layer = Array<IArguments | DeepPartialEvent | unknown[]>;\\n\\ntype elb_EventFn<R = Promise<PushResult>> = EventFn<R>;\\ntype elb_Layer = Layer;\\ntype elb_PushData<Config = unknown> = PushData<Config>;\\ntype elb_PushResult = PushResult;\\ntype elb_WalkerCommands<R = Promise<PushResult>, Config = unknown> = WalkerCommands<R, Config>;\\ndeclare namespace elb {\\n export type { Event$1 as Event, elb_EventFn as EventFn, Fn$1 as Fn, elb_Layer as Layer, elb_PushData as PushData, elb_PushResult as PushResult, elb_WalkerCommands as WalkerCommands };\\n}\\n\\n/**\\n * Flow configuration interface for dynamic walkerOS setup\\n * Used by bundlers and other tools to configure walkerOS dynamically\\n */\\ninterface Config$3 {\\n /** Collector configuration - uses existing Collector.Config from core */\\n collector: Config$5;\\n /** NPM packages required for this configuration */\\n packages: Record<string, string>;\\n}\\n\\ndeclare namespace flow {\\n export type { Config$3 as Config };\\n}\\n\\ntype Error = (error: unknown, state?: unknown) => void;\\ntype Log = (message: string, verbose?: boolean) => void;\\n\\ntype handler_Error = Error;\\ntype handler_Log = Log;\\ndeclare namespace handler {\\n export type { handler_Error as Error, handler_Log as Log };\\n}\\n\\ntype AnyFunction$1<P extends unknown[] = never[], R = unknown> = (...args: P) => R;\\ntype Functions = {\\n [key: string]: AnyFunction$1;\\n};\\ninterface Parameter<P extends unknown[], R> {\\n fn: (...args: P) => R;\\n result?: R;\\n}\\ntype HookFn<T extends AnyFunction$1> = (params: Parameter<Parameters<T>, ReturnType<T>>, ...args: Parameters<T>) => ReturnType<T>;\\n\\ntype hooks_Functions = Functions;\\ntype hooks_HookFn<T extends AnyFunction$1> = HookFn<T>;\\ndeclare namespace hooks {\\n export type { AnyFunction$1 as AnyFunction, hooks_Functions as Functions, hooks_HookFn as HookFn };\\n}\\n\\n/**\\n * Shared mapping configuration interface.\\n * Used by both Source.Config and Destination.Config.\\n */\\ninterface Config$2<T = unknown> {\\n consent?: Consent;\\n data?: Value | Values;\\n mapping?: Rules<Rule<T>>;\\n policy?: Policy;\\n}\\ninterface Policy {\\n [key: string]: Value;\\n}\\ninterface Rules<T = Rule> {\\n [entity: string]: Record<string, T | Array<T>> | undefined;\\n}\\ninterface Rule<Settings = unknown> {\\n batch?: number;\\n batchFn?: (destination: Instance$1, collector: Instance$2) => void;\\n batched?: Batch<Settings>;\\n condition?: Condition;\\n consent?: Consent;\\n settings?: Settings;\\n data?: Data;\\n ignore?: boolean;\\n name?: string;\\n policy?: Policy;\\n}\\ninterface Result {\\n eventMapping?: Rule;\\n mappingKey?: string;\\n}\\ntype Data = Value | Values;\\ntype Value = ValueType | Array<ValueType>;\\ntype Values = Array<Value>;\\ntype ValueType = string | ValueConfig;\\ninterface ValueConfig {\\n condition?: Condition;\\n consent?: Consent;\\n fn?: Fn;\\n key?: string;\\n loop?: Loop;\\n map?: Map;\\n set?: Value[];\\n validate?: Validate;\\n value?: PropertyType;\\n}\\ntype Condition = (value: DeepPartialEvent | unknown, mapping?: Value, collector?: Instance$2) => PromiseOrValue<boolean>;\\ntype Fn = (value: DeepPartialEvent | unknown, mapping: Value, options: Options$1) => PromiseOrValue<Property | unknown>;\\ntype Loop = [Value, Value];\\ntype Map = {\\n [key: string]: Value;\\n};\\ninterface Options$1 {\\n consent?: Consent;\\n collector?: Instance$2;\\n props?: unknown;\\n}\\ntype Validate = (value?: unknown) => PromiseOrValue<boolean>;\\n\\ntype mapping$1_Condition = Condition;\\ntype mapping$1_Data = Data;\\ntype mapping$1_Fn = Fn;\\ntype mapping$1_Loop = Loop;\\ntype mapping$1_Map = Map;\\ntype mapping$1_Policy = Policy;\\ntype mapping$1_Result = Result;\\ntype mapping$1_Rule<Settings = unknown> = Rule<Settings>;\\ntype mapping$1_Rules<T = Rule> = Rules<T>;\\ntype mapping$1_Validate = Validate;\\ntype mapping$1_Value = Value;\\ntype mapping$1_ValueConfig = ValueConfig;\\ntype mapping$1_ValueType = ValueType;\\ntype mapping$1_Values = Values;\\ndeclare namespace mapping$1 {\\n export type { mapping$1_Condition as Condition, Config$2 as Config, mapping$1_Data as Data, mapping$1_Fn as Fn, mapping$1_Loop as Loop, mapping$1_Map as Map, Options$1 as Options, mapping$1_Policy as Policy, mapping$1_Result as Result, mapping$1_Rule as Rule, mapping$1_Rules as Rules, mapping$1_Validate as Validate, mapping$1_Value as Value, mapping$1_ValueConfig as ValueConfig, mapping$1_ValueType as ValueType, mapping$1_Values as Values };\\n}\\n\\ntype Config$1 = {\\n consent?: Array<ConsentConfig>;\\n ready?: Array<ReadyConfig>;\\n run?: Array<RunConfig>;\\n session?: Array<SessionConfig>;\\n};\\ntype Types$1 = keyof Config$1;\\ninterface EventContextMap {\\n consent: Consent;\\n session: SessionData;\\n ready: undefined;\\n run: undefined;\\n}\\ntype EventContext<T extends Types$1> = EventContextMap[T];\\ntype AnyEventContext = EventContextMap[keyof EventContextMap];\\ninterface Context$1 {\\n consent?: Consent;\\n session?: unknown;\\n}\\ntype Options = ConsentConfig | ReadyConfig | RunConfig | SessionConfig;\\ninterface ConsentConfig {\\n [key: string]: ConsentFn;\\n}\\ntype ConsentFn = (collector: Instance$2, consent: Consent) => void;\\ntype ReadyConfig = ReadyFn;\\ntype ReadyFn = (collector: Instance$2) => void;\\ntype RunConfig = RunFn;\\ntype RunFn = (collector: Instance$2) => void;\\ntype SessionConfig = SessionFn;\\ntype SessionFn = (collector: Instance$2, session?: unknown) => void;\\ninterface OnConfig {\\n consent?: ConsentConfig[];\\n ready?: ReadyConfig[];\\n run?: RunConfig[];\\n session?: SessionConfig[];\\n [key: string]: ConsentConfig[] | ReadyConfig[] | RunConfig[] | SessionConfig[] | undefined;\\n}\\ntype OnFn = <T extends Types$1>(event: T, context: EventContextMap[T]) => PromiseOrValue<void>;\\ntype OnFnRuntime = (event: Types$1, context: AnyEventContext) => PromiseOrValue<void>;\\n\\ntype on_AnyEventContext = AnyEventContext;\\ntype on_ConsentConfig = ConsentConfig;\\ntype on_ConsentFn = ConsentFn;\\ntype on_EventContext<T extends Types$1> = EventContext<T>;\\ntype on_EventContextMap = EventContextMap;\\ntype on_OnConfig = OnConfig;\\ntype on_OnFn = OnFn;\\ntype on_OnFnRuntime = OnFnRuntime;\\ntype on_Options = Options;\\ntype on_ReadyConfig = ReadyConfig;\\ntype on_ReadyFn = ReadyFn;\\ntype on_RunConfig = RunConfig;\\ntype on_RunFn = RunFn;\\ntype on_SessionConfig = SessionConfig;\\ntype on_SessionFn = SessionFn;\\ndeclare namespace on {\\n export type { on_AnyEventContext as AnyEventContext, Config$1 as Config, on_ConsentConfig as ConsentConfig, on_ConsentFn as ConsentFn, Context$1 as Context, on_EventContext as EventContext, on_EventContextMap as EventContextMap, on_OnConfig as OnConfig, on_OnFn as OnFn, on_OnFnRuntime as OnFnRuntime, on_Options as Options, on_ReadyConfig as ReadyConfig, on_ReadyFn as ReadyFn, on_RunConfig as RunConfig, on_RunFn as RunFn, on_SessionConfig as SessionConfig, on_SessionFn as SessionFn, Types$1 as Types };\\n}\\n\\ninterface Context {\\n city?: string;\\n country?: string;\\n encoding?: string;\\n hash?: string;\\n ip?: string;\\n language?: string;\\n origin?: string;\\n region?: string;\\n userAgent?: string;\\n [key: string]: string | undefined;\\n}\\n\\ntype request_Context = Context;\\ndeclare namespace request {\\n export type { request_Context as Context };\\n}\\n\\ntype Contracts = Array<Contract>;\\ntype Contract = {\\n [entity: string]: {\\n [action: string]: Properties$1;\\n };\\n};\\ntype Properties$1 = {\\n [key: string]: Property$1 | undefined;\\n};\\ntype Property$1 = {\\n allowedKeys?: string[];\\n allowedValues?: unknown[];\\n maxLength?: number;\\n max?: number;\\n min?: number;\\n required?: boolean;\\n schema?: Properties$1;\\n strict?: boolean;\\n type?: string;\\n validate?: (value: unknown, key: string, event: AnyObject) => Property;\\n};\\n\\ntype schema_Contract = Contract;\\ntype schema_Contracts = Contracts;\\ndeclare namespace schema {\\n export type { schema_Contract as Contract, schema_Contracts as Contracts, Properties$1 as Properties, Property$1 as Property };\\n}\\n\\n/**\\n * Base Env interface for dependency injection into sources.\\n *\\n * Sources receive all their dependencies through this environment object,\\n * making them platform-agnostic and easily testable.\\n */\\ninterface BaseEnv {\\n [key: string]: unknown;\\n push: PushFn$1;\\n command: CommandFn;\\n sources?: Sources;\\n elb: Fn$1;\\n}\\n/**\\n * Type bundle for source generics.\\n * Groups Settings, Mapping, Push, and Env into a single type parameter.\\n *\\n * @template S - Settings configuration type\\n * @template M - Mapping configuration type\\n * @template P - Push function signature (flexible to support HTTP handlers, etc.)\\n * @template E - Environment dependencies type\\n */\\ninterface Types<S = unknown, M = unknown, P = Fn$1, E = BaseEnv> {\\n settings: S;\\n mapping: M;\\n push: P;\\n env: E;\\n}\\n/**\\n * Generic constraint for Types - ensures T has required properties for indexed access\\n */\\ntype TypesGeneric = {\\n settings: any;\\n mapping: any;\\n push: any;\\n env: any;\\n};\\n/**\\n * Type extractors for consistent usage with Types bundle\\n */\\ntype Settings<T extends TypesGeneric = Types> = T['settings'];\\ntype Mapping<T extends TypesGeneric = Types> = T['mapping'];\\ntype Push<T extends TypesGeneric = Types> = T['push'];\\ntype Env<T extends TypesGeneric = Types> = T['env'];\\n/**\\n * Inference helper: Extract Types from Instance\\n */\\ntype TypesOf<I> = I extends Instance<infer T> ? T : never;\\ninterface Config<T extends TypesGeneric = Types> extends Config$2<Mapping<T>> {\\n settings?: Settings<T>;\\n env?: Env<T>;\\n id?: string;\\n onError?: Error;\\n disabled?: boolean;\\n primary?: boolean;\\n}\\ntype PartialConfig<T extends TypesGeneric = Types> = Config<Types<Partial<Settings<T>> | Settings<T>, Partial<Mapping<T>> | Mapping<T>, Push<T>, Env<T>>>;\\ninterface Instance<T extends TypesGeneric = Types> {\\n type: string;\\n config: Config<T>;\\n push: Push<T>;\\n destroy?(): void | Promise<void>;\\n on?(event: Types$1, context?: unknown): void | Promise<void>;\\n}\\ntype Init<T extends TypesGeneric = Types> = (config: Partial<Config<T>>, env: Env<T>) => Instance<T> | Promise<Instance<T>>;\\ntype InitSource<T extends TypesGeneric = Types> = {\\n code: Init<T>;\\n config?: Partial<Config<T>>;\\n env?: Partial<Env<T>>;\\n primary?: boolean;\\n};\\n/**\\n * Sources configuration for collector.\\n * Maps source IDs to their initialization configurations.\\n */\\ninterface InitSources {\\n [sourceId: string]: InitSource<any>;\\n}\\n\\ntype source$1_BaseEnv = BaseEnv;\\ntype source$1_Config<T extends TypesGeneric = Types> = Config<T>;\\ntype source$1_Env<T extends TypesGeneric = Types> = Env<T>;\\ntype source$1_Init<T extends TypesGeneric = Types> = Init<T>;\\ntype source$1_InitSource<T extends TypesGeneric = Types> = InitSource<T>;\\ntype source$1_InitSources = InitSources;\\ntype source$1_Instance<T extends TypesGeneric = Types> = Instance<T>;\\ntype source$1_Mapping<T extends TypesGeneric = Types> = Mapping<T>;\\ntype source$1_PartialConfig<T extends TypesGeneric = Types> = PartialConfig<T>;\\ntype source$1_Push<T extends TypesGeneric = Types> = Push<T>;\\ntype source$1_Settings<T extends TypesGeneric = Types> = Settings<T>;\\ntype source$1_Types<S = unknown, M = unknown, P = Fn$1, E = BaseEnv> = Types<S, M, P, E>;\\ntype source$1_TypesGeneric = TypesGeneric;\\ntype source$1_TypesOf<I> = TypesOf<I>;\\ndeclare namespace source$1 {\\n export type { source$1_BaseEnv as BaseEnv, source$1_Config as Config, source$1_Env as Env, source$1_Init as Init, source$1_InitSource as InitSource, source$1_InitSources as InitSources, source$1_Instance as Instance, source$1_Mapping as Mapping, source$1_PartialConfig as PartialConfig, source$1_Push as Push, source$1_Settings as Settings, source$1_Types as Types, source$1_TypesGeneric as TypesGeneric, source$1_TypesOf as TypesOf };\\n}\\n\\ntype AnyObject<T = unknown> = Record<string, T>;\\ntype Elb = Fn$1;\\ntype AnyFunction = (...args: unknown[]) => unknown;\\ntype SingleOrArray<T> = T | Array<T>;\\ntype Events = Array<Event>;\\ntype PartialEvent = Partial<Event>;\\ntype DeepPartialEvent = DeepPartial<Event>;\\ninterface Event {\\n name: string;\\n data: Properties;\\n context: OrderedProperties;\\n globals: Properties;\\n custom: Properties;\\n user: User;\\n nested: Entities;\\n consent: Consent;\\n id: string;\\n trigger: string;\\n entity: string;\\n action: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n count: number;\\n version: Version;\\n source: Source;\\n}\\ninterface Consent {\\n [name: string]: boolean;\\n}\\ninterface User extends Properties {\\n id?: string;\\n device?: string;\\n session?: string;\\n hash?: string;\\n address?: string;\\n email?: string;\\n phone?: string;\\n userAgent?: string;\\n browser?: string;\\n browserVersion?: string;\\n deviceType?: string;\\n language?: string;\\n country?: string;\\n region?: string;\\n city?: string;\\n zip?: string;\\n timezone?: string;\\n os?: string;\\n osVersion?: string;\\n screenSize?: string;\\n ip?: string;\\n internal?: boolean;\\n}\\ninterface Version extends Properties {\\n source: string;\\n tagging: number;\\n}\\ninterface Source extends Properties {\\n type: SourceType;\\n id: string;\\n previous_id: string;\\n}\\ntype SourceType = 'web' | 'server' | 'app' | 'other' | string;\\ntype PropertyType = boolean | string | number | {\\n [key: string]: Property;\\n};\\ntype Property = PropertyType | Array<PropertyType>;\\ninterface Properties {\\n [key: string]: Property | undefined;\\n}\\ninterface OrderedProperties {\\n [key: string]: [Property, number] | undefined;\\n}\\ntype Entities = Array<Entity>;\\ninterface Entity {\\n entity: string;\\n data: Properties;\\n nested: Entities;\\n context: OrderedProperties;\\n}\\ntype ConsentHandler = Record<string, AnyFunction>;\\ntype ActionHandler = AnyFunction;\\ntype DeepPartial<T> = {\\n [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];\\n};\\ntype PromiseOrValue<T> = T | Promise<T>;\\n\\ntype walkeros$1_ActionHandler = ActionHandler;\\ntype walkeros$1_AnyFunction = AnyFunction;\\ntype walkeros$1_AnyObject<T = unknown> = AnyObject<T>;\\ntype walkeros$1_Consent = Consent;\\ntype walkeros$1_ConsentHandler = ConsentHandler;\\ntype walkeros$1_DeepPartial<T> = DeepPartial<T>;\\ntype walkeros$1_DeepPartialEvent = DeepPartialEvent;\\ntype walkeros$1_Elb = Elb;\\ntype walkeros$1_Entities = Entities;\\ntype walkeros$1_Entity = Entity;\\ntype walkeros$1_Event = Event;\\ntype walkeros$1_Events = Events;\\ntype walkeros$1_OrderedProperties = OrderedProperties;\\ntype walkeros$1_PartialEvent = PartialEvent;\\ntype walkeros$1_PromiseOrValue<T> = PromiseOrValue<T>;\\ntype walkeros$1_Properties = Properties;\\ntype walkeros$1_Property = Property;\\ntype walkeros$1_PropertyType = PropertyType;\\ntype walkeros$1_SingleOrArray<T> = SingleOrArray<T>;\\ntype walkeros$1_Source = Source;\\ntype walkeros$1_SourceType = SourceType;\\ntype walkeros$1_User = User;\\ntype walkeros$1_Version = Version;\\ndeclare namespace walkeros$1 {\\n export type { walkeros$1_ActionHandler as ActionHandler, walkeros$1_AnyFunction as AnyFunction, walkeros$1_AnyObject as AnyObject, walkeros$1_Consent as Consent, walkeros$1_ConsentHandler as ConsentHandler, walkeros$1_DeepPartial as DeepPartial, walkeros$1_DeepPartialEvent as DeepPartialEvent, walkeros$1_Elb as Elb, walkeros$1_Entities as Entities, walkeros$1_Entity as Entity, walkeros$1_Event as Event, walkeros$1_Events as Events, walkeros$1_OrderedProperties as OrderedProperties, walkeros$1_PartialEvent as PartialEvent, walkeros$1_PromiseOrValue as PromiseOrValue, walkeros$1_Properties as Properties, walkeros$1_Property as Property, walkeros$1_PropertyType as PropertyType, walkeros$1_SingleOrArray as SingleOrArray, walkeros$1_Source as Source, walkeros$1_SourceType as SourceType, walkeros$1_User as User, walkeros$1_Version as Version };\\n}\\n\\ntype StorageType = 'local' | 'session' | 'cookie';\\ndeclare const Const: {\\n readonly Utils: {\\n readonly Storage: {\\n readonly Local: \\\"local\\\";\\n readonly Session: \\\"session\\\";\\n readonly Cookie: \\\"cookie\\\";\\n };\\n };\\n};\\n\\ntype SendDataValue = Property | Properties;\\ntype SendHeaders = {\\n [key: string]: string;\\n};\\ninterface SendResponse {\\n ok: boolean;\\n data?: unknown;\\n error?: string;\\n}\\n\\n/**\\n * Primitive Schema Definitions\\n *\\n * Reusable primitive schemas following DRY principle.\\n * These are the building blocks used throughout all schemas to ensure consistency.\\n *\\n * Benefits:\\n * - Single source of truth for common patterns\\n * - Consistent descriptions across all schemas\\n * - Easier maintenance and updates\\n * - Better IntelliSense/autocomplete\\n */\\n/**\\n * Required string field\\n * Used for required text fields throughout schemas\\n */\\ndeclare const RequiredString: z.ZodString;\\n/**\\n * Required number field\\n * Used for required numeric fields throughout schemas\\n */\\ndeclare const RequiredNumber: z.ZodNumber;\\n/**\\n * Required boolean field\\n * Used for required flag fields throughout schemas\\n */\\ndeclare const RequiredBoolean: z.ZodBoolean;\\n/**\\n * Identifier - Required unique string identifier\\n * Used for entity IDs, session IDs, etc.\\n */\\ndeclare const Identifier: z.ZodString;\\n/**\\n * Timestamp - Unix timestamp in milliseconds\\n * Used for event timestamps, session timestamps, etc.\\n */\\ndeclare const Timestamp: z.ZodNumber;\\n/**\\n * Counter - Sequential counter (non-negative integer)\\n * Used for event counts, session counts, etc.\\n */\\ndeclare const Counter: z.ZodNumber;\\n/**\\n * TaggingVersion - Version number for event tagging\\n * Standardized description used in both Version and Config schemas\\n */\\ndeclare const TaggingVersion: z.ZodNumber;\\n/**\\n * PrimitiveValue - Basic primitive types\\n * Union of string, number, and boolean\\n * Used in Property definitions and value transformations\\n */\\ndeclare const PrimitiveValue: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>;\\n/**\\n * OptionalPrimitiveValue - Optional primitive value\\n */\\ndeclare const OptionalPrimitiveValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;\\n\\n/**\\n * Common Schema Patterns\\n *\\n * Reusable schema patterns that appear across multiple domain schemas.\\n * These patterns combine primitives into commonly used configurations.\\n *\\n * Benefits:\\n * - DRY principle for complex patterns\\n * - Consistent configuration interfaces\\n * - Single source of truth for common configs\\n * - Easier to maintain and update patterns globally\\n */\\n/**\\n * HandlersConfig - Error and log handler configuration\\n * Used in: Destination.Config, Collector.Config, Source.Config\\n */\\ndeclare const HandlersConfig: z.ZodObject<{\\n onError: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n onLog: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n onError?: any;\\n onLog?: any;\\n}, {\\n onError?: any;\\n onLog?: any;\\n}>;\\n/**\\n * VerboseConfig - Verbose logging configuration\\n * Used in: Destination.Config, Collector.Config\\n */\\ndeclare const VerboseConfig: z.ZodObject<{\\n verbose: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n}, {\\n verbose?: boolean | undefined;\\n}>;\\n/**\\n * QueueConfig - Event queueing configuration\\n * Used in: Destination.Config\\n */\\ndeclare const QueueConfig: z.ZodObject<{\\n queue: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n queue?: boolean | undefined;\\n}, {\\n queue?: boolean | undefined;\\n}>;\\n/**\\n * IdConfig - ID configuration pattern\\n * Used in: Destination.Config, Source.Config\\n */\\ndeclare const IdConfig: z.ZodObject<{}, \\\"strip\\\", z.ZodTypeAny, {}, {}>;\\n/**\\n * InitConfig - Initialization configuration pattern\\n * Used in: Destination.Config\\n */\\ndeclare const InitConfig: z.ZodObject<{\\n init: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n loadScript: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n init?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n}, {\\n init?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n}>;\\n/**\\n * DisabledConfig - Disabled flag configuration\\n * Used in: Source.Config\\n */\\ndeclare const DisabledConfig: z.ZodObject<{\\n disabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n disabled?: boolean | undefined;\\n}, {\\n disabled?: boolean | undefined;\\n}>;\\n/**\\n * PrimaryConfig - Primary flag configuration\\n * Used in: Source.Config, Source.InitSource\\n */\\ndeclare const PrimaryConfig: z.ZodObject<{\\n primary: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n primary?: boolean | undefined;\\n}, {\\n primary?: boolean | undefined;\\n}>;\\n/**\\n * GenericSettingsConfig - Generic settings configuration\\n * Used in: Destination.Config, Source.Config, Collector runtime\\n * Settings are implementation-specific and can't be validated generically\\n */\\ndeclare const GenericSettingsConfig: z.ZodObject<{\\n settings: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n settings?: any;\\n}, {\\n settings?: any;\\n}>;\\n/**\\n * GenericEnvConfig - Generic environment configuration\\n * Used in: Destination.Config, Source.Config, Source.BaseEnv\\n * Environment is platform-specific and can't be validated generically\\n */\\ndeclare const GenericEnvConfig: z.ZodObject<{\\n env: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n env?: any;\\n}, {\\n env?: any;\\n}>;\\n/**\\n * DataTransformationConfig - Data transformation configuration\\n * Used in: Destination.Config, Mapping.Config, Mapping.Rule\\n *\\n * Note: This creates a forward reference to ValueSchema/ValuesSchema\\n * Import from mapping.ts to avoid circular dependencies\\n */\\ndeclare function createDataTransformationConfig(ValueSchema: z.ZodTypeAny, ValuesSchema: z.ZodTypeAny): z.ZodObject<{\\n data: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodTypeAny]>>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n data?: any;\\n}, {\\n data?: any;\\n}>;\\n/**\\n * MappingRulesConfig - Mapping rules configuration\\n * Used in: Destination.Config, Source.Config (via Mapping.Config)\\n *\\n * Note: This creates a forward reference to RulesSchema\\n * Import from mapping.ts to avoid circular dependencies\\n */\\ndeclare function createMappingRulesConfig(RulesSchema: z.ZodTypeAny): z.ZodObject<{\\n mapping: z.ZodOptional<z.ZodOptional<z.ZodTypeAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n mapping?: any;\\n}, {\\n mapping?: any;\\n}>;\\n/**\\n * PolicyConfig - Policy rules configuration\\n * Used in: Destination.Config, Mapping.Config, Mapping.Rule\\n *\\n * Note: This creates a forward reference to PolicySchema\\n * Import from mapping.ts to avoid circular dependencies\\n */\\ndeclare function createPolicyConfig(PolicySchema: z.ZodTypeAny): z.ZodObject<{\\n policy: z.ZodOptional<z.ZodOptional<z.ZodTypeAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n policy?: any;\\n}, {\\n policy?: any;\\n}>;\\n/**\\n * ConsentConfig - Consent requirements configuration\\n * Used in: Destination.Config, Mapping.Config, Mapping.Rule, Event\\n *\\n * Note: This creates a forward reference to ConsentSchema\\n * Import from walkeros.ts to avoid circular dependencies\\n */\\ndeclare function createConsentConfig(ConsentSchema: z.ZodTypeAny): z.ZodObject<{\\n consent: z.ZodOptional<z.ZodOptional<z.ZodTypeAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: any;\\n}, {\\n consent?: any;\\n}>;\\n/**\\n * RuntimeInstanceConfig - Runtime instance configuration\\n * Used in: Destination.Instance, Source.Instance, Collector.Instance\\n *\\n * Common fields for runtime instances:\\n * - type: Instance type identifier\\n * - config: Configuration object\\n * - Functions (push, init, etc.) are instance-specific\\n */\\ndeclare const RuntimeInstanceConfig: z.ZodObject<{\\n type: z.ZodOptional<z.ZodOptional<z.ZodString>>;\\n config: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config?: any;\\n type?: string | undefined;\\n}, {\\n config?: any;\\n type?: string | undefined;\\n}>;\\n/**\\n * BaseContextConfig - Base context configuration\\n * Used in: Destination.Context, Source contexts\\n *\\n * Common fields for contexts:\\n * - collector: Collector instance (runtime)\\n * - config: Configuration\\n * - env: Environment dependencies\\n */\\ndeclare const BaseContextConfig: z.ZodObject<{\\n collector: z.ZodOptional<z.ZodAny>;\\n config: z.ZodOptional<z.ZodAny>;\\n env: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config?: any;\\n env?: any;\\n collector?: any;\\n}, {\\n config?: any;\\n env?: any;\\n collector?: any;\\n}>;\\n/**\\n * BatchConfig - Batch processing configuration\\n * Used in: Mapping.Rule\\n */\\ndeclare const BatchConfig: z.ZodObject<{\\n batch: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;\\n batched: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n batch?: number | undefined;\\n batched?: any;\\n}, {\\n batch?: number | undefined;\\n batched?: any;\\n}>;\\n/**\\n * ProcessingControlConfig - Processing control flags\\n * Used in: Mapping.Rule\\n */\\ndeclare const ProcessingControlConfig: z.ZodObject<{\\n ignore: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n condition: z.ZodOptional<z.ZodOptional<z.ZodString>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n}, {\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n}>;\\n/**\\n * SourcesMapConfig - Sources collection pattern\\n * Used in: Collector.Instance\\n */\\ndeclare const SourcesMapConfig: z.ZodObject<{\\n sources: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n sources?: Record<string, any> | undefined;\\n}, {\\n sources?: Record<string, any> | undefined;\\n}>;\\n/**\\n * DestinationsMapConfig - Destinations collection pattern\\n * Used in: Collector.Instance\\n */\\ndeclare const DestinationsMapConfig: z.ZodObject<{\\n destinations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n destinations?: Record<string, any> | undefined;\\n}, {\\n destinations?: Record<string, any> | undefined;\\n}>;\\n\\n/**\\n * Core walkerOS Event Model Schemas\\n *\\n * Mirrors: types/walkeros.ts\\n * Purpose: Runtime validation and JSON Schema generation for MCP tools, Explorer UI, and API boundaries\\n *\\n * These schemas provide:\\n * 1. Runtime validation for event data\\n * 2. JSON Schema generation for RJSF/Explorer\\n * 3. Type documentation via .describe()\\n * 4. Compile-time type checking (schemas mirror TypeScript types)\\n *\\n * Note: TypeScript types in types/walkeros.ts remain the source of truth for development.\\n * These Zod schemas are for validation and JSON Schema generation at runtime boundaries.\\n */\\n/**\\n * PropertyType - Base property value types\\n * Can be primitive (boolean, string, number) or nested object with Property values\\n */\\ndeclare const PropertyTypeSchema: z.ZodTypeAny;\\n/**\\n * Property - PropertyType or array of PropertyType\\n * Recursive structure allows nested objects and arrays\\n */\\ndeclare const PropertySchema: z.ZodTypeAny;\\n/**\\n * Properties - Record of string keys to Property values\\n * Used throughout event structure (data, globals, custom, etc.)\\n */\\ndeclare const PropertiesSchema: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n/**\\n * OrderedProperties - Record with [value, order] tuples\\n * Used for context data where order matters\\n */\\ndeclare const OrderedPropertiesSchema: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n/**\\n * SourceType - Event source identifier\\n * Standard types: web, server, app, other\\n * Extensible: allows custom string values\\n */\\ndeclare const SourceTypeSchema: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n/**\\n * Consent - Consent state mapping\\n * Maps consent group names to boolean states\\n * Used in Event and Destination/Source configs\\n */\\ndeclare const ConsentSchema: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n/**\\n * User - User identification and attributes\\n * Extends Properties with specific optional fields\\n * Contains IDs, demographics, device info, and location data\\n */\\ndeclare const UserSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n}, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n}>>;\\n/**\\n * Version - Walker version information\\n * Tracks source implementation and tagging version\\n */\\ndeclare const VersionSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n}, {\\n tagging: number;\\n source: string;\\n}>>;\\n/**\\n * Source - Event source information\\n * Identifies where the event originated\\n */\\ndeclare const SourceSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n}, {\\n id: string;\\n type: string;\\n previous_id: string;\\n}>>;\\n/**\\n * Entity - Nested entity structure\\n * Allows events to contain related entities with their own data and context\\n * Recursive: entities can contain nested entities\\n */\\ndeclare const EntitySchema: z.ZodTypeAny;\\n/**\\n * Entities - Array of Entity objects\\n */\\ndeclare const EntitiesSchema: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n/**\\n * Event - Complete walkerOS event structure\\n *\\n * Core fields:\\n * - name: Event identifier in \\\"entity action\\\" format (e.g., \\\"page view\\\")\\n * - data: Event-specific properties\\n * - context: Ordered context properties\\n * - globals: Global properties shared across events\\n * - custom: Custom properties specific to implementation\\n * - user: User identification and attributes\\n * - nested: Related entities\\n * - consent: Consent states at event time\\n *\\n * System-generated fields:\\n * - id: Unique event identifier\\n * - timestamp: Event creation time (milliseconds since epoch)\\n * - entity: Parsed entity name from event.name\\n * - action: Parsed action name from event.name\\n * - trigger: Event trigger identifier\\n * - timing: Event processing timing information\\n * - group: Event grouping identifier\\n * - count: Event count in session\\n * - version: Walker version information\\n * - source: Event source information\\n */\\ndeclare const EventSchema: z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n}, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n}>;\\n/**\\n * PartialEvent - Event with all fields optional\\n * Used for event creation where not all fields are provided\\n */\\ndeclare const PartialEventSchema: z.ZodObject<{\\n name: z.ZodOptional<z.ZodString>;\\n data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>>;\\n context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>>;\\n globals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>>;\\n custom: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>>;\\n user: z.ZodOptional<z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>>;\\n nested: z.ZodOptional<z.ZodArray<z.ZodTypeAny, \\\"many\\\">>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n id: z.ZodOptional<z.ZodString>;\\n trigger: z.ZodOptional<z.ZodString>;\\n entity: z.ZodOptional<z.ZodString>;\\n action: z.ZodOptional<z.ZodString>;\\n timestamp: z.ZodOptional<z.ZodNumber>;\\n timing: z.ZodOptional<z.ZodNumber>;\\n group: z.ZodOptional<z.ZodString>;\\n count: z.ZodOptional<z.ZodNumber>;\\n version: z.ZodOptional<z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>>;\\n source: z.ZodOptional<z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n user?: (Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }) | undefined;\\n globals?: Record<string, any> | undefined;\\n custom?: Record<string, any> | undefined;\\n id?: string | undefined;\\n count?: number | undefined;\\n action?: string | undefined;\\n context?: Record<string, [any, number] | undefined> | undefined;\\n name?: string | undefined;\\n data?: Record<string, any> | undefined;\\n nested?: any[] | undefined;\\n trigger?: string | undefined;\\n entity?: string | undefined;\\n timestamp?: number | undefined;\\n timing?: number | undefined;\\n group?: string | undefined;\\n version?: (Record<string, any> & {\\n tagging: number;\\n source: string;\\n }) | undefined;\\n source?: (Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n }) | undefined;\\n}, {\\n consent?: Record<string, boolean> | undefined;\\n user?: (Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }) | undefined;\\n globals?: Record<string, any> | undefined;\\n custom?: Record<string, any> | undefined;\\n id?: string | undefined;\\n count?: number | undefined;\\n action?: string | undefined;\\n context?: Record<string, [any, number] | undefined> | undefined;\\n name?: string | undefined;\\n data?: Record<string, any> | undefined;\\n nested?: any[] | undefined;\\n trigger?: string | undefined;\\n entity?: string | undefined;\\n timestamp?: number | undefined;\\n timing?: number | undefined;\\n group?: string | undefined;\\n version?: (Record<string, any> & {\\n tagging: number;\\n source: string;\\n }) | undefined;\\n source?: (Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n }) | undefined;\\n}>;\\n/**\\n * DeepPartialEvent - Event with deeply nested optional fields\\n * Used for event updates and patches\\n */\\ndeclare const DeepPartialEventSchema: z.ZodTypeAny;\\ndeclare const eventJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const partialEventJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const userJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const propertiesJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const orderedPropertiesJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const entityJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const sourceTypeJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const consentJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\n\\ndeclare const walkeros_ConsentSchema: typeof ConsentSchema;\\ndeclare const walkeros_DeepPartialEventSchema: typeof DeepPartialEventSchema;\\ndeclare const walkeros_EntitiesSchema: typeof EntitiesSchema;\\ndeclare const walkeros_EntitySchema: typeof EntitySchema;\\ndeclare const walkeros_EventSchema: typeof EventSchema;\\ndeclare const walkeros_OrderedPropertiesSchema: typeof OrderedPropertiesSchema;\\ndeclare const walkeros_PartialEventSchema: typeof PartialEventSchema;\\ndeclare const walkeros_PropertiesSchema: typeof PropertiesSchema;\\ndeclare const walkeros_PropertySchema: typeof PropertySchema;\\ndeclare const walkeros_PropertyTypeSchema: typeof PropertyTypeSchema;\\ndeclare const walkeros_SourceSchema: typeof SourceSchema;\\ndeclare const walkeros_SourceTypeSchema: typeof SourceTypeSchema;\\ndeclare const walkeros_UserSchema: typeof UserSchema;\\ndeclare const walkeros_VersionSchema: typeof VersionSchema;\\ndeclare const walkeros_consentJsonSchema: typeof consentJsonSchema;\\ndeclare const walkeros_entityJsonSchema: typeof entityJsonSchema;\\ndeclare const walkeros_eventJsonSchema: typeof eventJsonSchema;\\ndeclare const walkeros_orderedPropertiesJsonSchema: typeof orderedPropertiesJsonSchema;\\ndeclare const walkeros_partialEventJsonSchema: typeof partialEventJsonSchema;\\ndeclare const walkeros_propertiesJsonSchema: typeof propertiesJsonSchema;\\ndeclare const walkeros_sourceTypeJsonSchema: typeof sourceTypeJsonSchema;\\ndeclare const walkeros_userJsonSchema: typeof userJsonSchema;\\ndeclare namespace walkeros {\\n export { walkeros_ConsentSchema as ConsentSchema, walkeros_DeepPartialEventSchema as DeepPartialEventSchema, walkeros_EntitiesSchema as EntitiesSchema, walkeros_EntitySchema as EntitySchema, walkeros_EventSchema as EventSchema, walkeros_OrderedPropertiesSchema as OrderedPropertiesSchema, walkeros_PartialEventSchema as PartialEventSchema, walkeros_PropertiesSchema as PropertiesSchema, walkeros_PropertySchema as PropertySchema, walkeros_PropertyTypeSchema as PropertyTypeSchema, walkeros_SourceSchema as SourceSchema, walkeros_SourceTypeSchema as SourceTypeSchema, walkeros_UserSchema as UserSchema, walkeros_VersionSchema as VersionSchema, walkeros_consentJsonSchema as consentJsonSchema, walkeros_entityJsonSchema as entityJsonSchema, walkeros_eventJsonSchema as eventJsonSchema, walkeros_orderedPropertiesJsonSchema as orderedPropertiesJsonSchema, walkeros_partialEventJsonSchema as partialEventJsonSchema, walkeros_propertiesJsonSchema as propertiesJsonSchema, walkeros_sourceTypeJsonSchema as sourceTypeJsonSchema, walkeros_userJsonSchema as userJsonSchema };\\n}\\n\\n/**\\n * Mapping System Schemas\\n *\\n * Mirrors: types/mapping.ts\\n * Purpose: Runtime validation and JSON Schema generation for event transformation rules\\n *\\n * The mapping system allows flexible transformation of events as they flow through\\n * the collector to destinations. This includes:\\n * - Value extraction and transformation\\n * - Conditional logic\\n * - Data mapping and restructuring\\n * - Array processing (loops)\\n * - Consent-based filtering\\n *\\n * Key Features:\\n * - Recursive value definitions (Value → ValueConfig → Value)\\n * - Loop vs Set distinction via JSON Schema (minItems/maxItems)\\n * - Lazy evaluation for circular dependencies\\n * - Function serialization support (functions as strings)\\n */\\n/**\\n * Value - Core value type for mapping transformations\\n *\\n * Can be:\\n * - Primitive: string, number, boolean\\n * - ValueConfig: Complex transformation object\\n * - Array: Multiple values/configs\\n *\\n * Recursive structure allows nested transformations\\n */\\ndeclare const ValueSchema: z.ZodTypeAny;\\n/**\\n * Values - Array of Value objects\\n * Used for multiple data transformations\\n */\\ndeclare const ValuesSchema: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n/**\\n * Loop - Tuple for array processing\\n * Format: [source, transform]\\n *\\n * IMPORTANT: z.tuple() generates JSON Schema with minItems/maxItems = 2\\n * This is how Explorer distinguishes Loop from Set\\n *\\n * Example: ['nested', { map: { id: 'data.id' } }]\\n * Means: Iterate over event.nested array, transform each item\\n */\\ndeclare const LoopSchema: z.ZodTypeAny;\\n/**\\n * Set - Array of values for selection/combination\\n * Format: [value1, value2, ...]\\n *\\n * IMPORTANT: z.array() generates JSON Schema without minItems/maxItems\\n * This distinguishes Set from Loop\\n *\\n * Example: ['data.firstName', ' ', 'data.lastName']\\n * Means: Combine multiple values\\n */\\ndeclare const SetSchema: z.ZodTypeAny;\\n/**\\n * Map - Object mapping for data transformation\\n * Format: { outputKey: value, ... }\\n *\\n * Example: { item_id: 'data.id', item_name: 'data.name' }\\n * Means: Transform event data to destination format\\n */\\ndeclare const MapSchema: z.ZodTypeAny;\\n/**\\n * ValueConfig - Configuration object for value transformations\\n *\\n * Supports multiple transformation strategies:\\n * - key: Extract property from event (e.g., \\\"data.id\\\")\\n * - value: Static primitive value\\n * - fn: Custom transformation function (as string)\\n * - map: Object mapping for structured output\\n * - loop: Array iteration and transformation\\n * - set: Value combination/selection\\n * - consent: Consent-based filtering\\n * - condition: Conditional transformation\\n * - validate: Value validation\\n *\\n * At least one property must be present.\\n */\\ndeclare const ValueConfigSchema: z.ZodTypeAny;\\n\\n/**\\n * Policy - Pre-processing rules\\n * Applied before event mapping\\n * Maps policy keys to transformation values\\n *\\n * Example: { 'consent.marketing': true }\\n * Means: Only process events with marketing consent\\n */\\ndeclare const PolicySchema: z.ZodRecord<z.ZodString, z.ZodTypeAny>;\\n/**\\n * Rule - Event-specific mapping configuration\\n *\\n * Defines how to transform events for a specific entity-action combination\\n * Can include:\\n * - Batching configuration\\n * - Conditional processing\\n * - Consent requirements\\n * - Custom settings\\n * - Data transformation\\n * - Event naming\\n * - Policy overrides\\n */\\ndeclare const RuleSchema: z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n}, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n}>;\\n/**\\n * Rules - Nested mapping rules structure\\n * Format: { entity: { action: Rule | Rule[], ... }, ... }\\n *\\n * Supports:\\n * - Specific entity-action mappings\\n * - Wildcard patterns (entity: *, action: *)\\n * - Multiple rules per entity-action (array)\\n *\\n * Example:\\n * {\\n * product: {\\n * view: { name: 'view_item' },\\n * add: { name: 'add_to_cart' }\\n * },\\n * page: {\\n * '*': { name: 'page_interaction' }\\n * }\\n * }\\n */\\ndeclare const RulesSchema: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n}, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n}>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n}, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n}>, \\\"many\\\">]>>>>;\\n/**\\n * Config - Shared mapping configuration\\n * Used by both Source.Config and Destination.Config\\n *\\n * Provides:\\n * - Consent requirements\\n * - Global data transformations\\n * - Entity-action mapping rules\\n * - Pre-processing policies\\n */\\ndeclare const ConfigSchema$3: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n}, {\\n consent?: Record<string, boolean> | undefined;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n}>;\\n/**\\n * Result - Mapping resolution result\\n * Contains the resolved mapping rule and key used\\n */\\ndeclare const ResultSchema$1: z.ZodObject<{\\n eventMapping: z.ZodOptional<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>>;\\n mappingKey: z.ZodOptional<z.ZodString>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n eventMapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n mappingKey?: string | undefined;\\n}, {\\n eventMapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n mappingKey?: string | undefined;\\n}>;\\ndeclare const valueJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const valueConfigJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const loopJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const setJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const mapJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const policyJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const ruleJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const rulesJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const configJsonSchema$3: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\n\\ndeclare const mapping_LoopSchema: typeof LoopSchema;\\ndeclare const mapping_MapSchema: typeof MapSchema;\\ndeclare const mapping_PolicySchema: typeof PolicySchema;\\ndeclare const mapping_RuleSchema: typeof RuleSchema;\\ndeclare const mapping_RulesSchema: typeof RulesSchema;\\ndeclare const mapping_SetSchema: typeof SetSchema;\\ndeclare const mapping_ValueConfigSchema: typeof ValueConfigSchema;\\ndeclare const mapping_ValueSchema: typeof ValueSchema;\\ndeclare const mapping_ValuesSchema: typeof ValuesSchema;\\ndeclare const mapping_loopJsonSchema: typeof loopJsonSchema;\\ndeclare const mapping_mapJsonSchema: typeof mapJsonSchema;\\ndeclare const mapping_policyJsonSchema: typeof policyJsonSchema;\\ndeclare const mapping_ruleJsonSchema: typeof ruleJsonSchema;\\ndeclare const mapping_rulesJsonSchema: typeof rulesJsonSchema;\\ndeclare const mapping_setJsonSchema: typeof setJsonSchema;\\ndeclare const mapping_valueConfigJsonSchema: typeof valueConfigJsonSchema;\\ndeclare const mapping_valueJsonSchema: typeof valueJsonSchema;\\ndeclare namespace mapping {\\n export { ConfigSchema$3 as ConfigSchema, mapping_LoopSchema as LoopSchema, mapping_MapSchema as MapSchema, mapping_PolicySchema as PolicySchema, ResultSchema$1 as ResultSchema, mapping_RuleSchema as RuleSchema, mapping_RulesSchema as RulesSchema, mapping_SetSchema as SetSchema, mapping_ValueConfigSchema as ValueConfigSchema, mapping_ValueSchema as ValueSchema, mapping_ValuesSchema as ValuesSchema, configJsonSchema$3 as configJsonSchema, mapping_loopJsonSchema as loopJsonSchema, mapping_mapJsonSchema as mapJsonSchema, mapping_policyJsonSchema as policyJsonSchema, mapping_ruleJsonSchema as ruleJsonSchema, mapping_rulesJsonSchema as rulesJsonSchema, mapping_setJsonSchema as setJsonSchema, mapping_valueConfigJsonSchema as valueConfigJsonSchema, mapping_valueJsonSchema as valueJsonSchema };\\n}\\n\\n/**\\n * Destination Schemas\\n *\\n * Mirrors: types/destination.ts\\n * Purpose: Runtime validation and JSON Schema generation for destination configurations\\n *\\n * Destinations are the endpoints where processed events are sent (analytics tools,\\n * marketing platforms, data warehouses, etc.). This file defines schemas for:\\n * - Destination configuration\\n * - Type bundles for generic constraints\\n * - Push contexts\\n * - Batching structures\\n */\\n/**\\n * Config - Destination configuration\\n *\\n * Defines how a destination processes events:\\n * - Consent requirements\\n * - Settings (destination-specific)\\n * - Data transformations\\n * - Environment dependencies\\n * - Initialization options\\n * - Mapping rules\\n * - Processing policies\\n * - Queueing behavior\\n * - Logging verbosity\\n * - Error/log handlers\\n *\\n * Generic note: settings, env, and mapping can have destination-specific types\\n * but for schema validation we use z.any() to allow flexibility\\n */\\ndeclare const ConfigSchema$2: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n}, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n}>;\\n/**\\n * PartialConfig - Config with all fields optional and partial settings\\n * Used for config updates and overrides\\n */\\ndeclare const PartialConfigSchema$1: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;\\n settings: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n data: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>>;\\n env: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n id: z.ZodOptional<z.ZodOptional<z.ZodString>>;\\n init: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n loadScript: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n mapping: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>>;\\n policy: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>>;\\n queue: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n verbose: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n onError: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n onLog: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n}, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n}>;\\n/**\\n * Policy - Processing policy rules\\n * Maps policy keys to transformation values\\n * Applied before event mapping\\n */\\ndeclare const DestinationPolicySchema: z.ZodRecord<z.ZodString, z.ZodTypeAny>;\\n/**\\n * Context - Base destination context\\n * Passed to init and push functions\\n * Contains collector instance, config, data, and environment\\n *\\n * Note: collector is runtime instance, not easily serializable\\n */\\ndeclare const ContextSchema: z.ZodObject<{\\n collector: z.ZodAny;\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodAny, z.ZodUndefined, z.ZodArray<z.ZodUnion<[z.ZodAny, z.ZodUndefined]>, \\\"many\\\">]>>;\\n env: z.ZodAny;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n env?: any;\\n data?: any;\\n collector?: any;\\n}, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n env?: any;\\n data?: any;\\n collector?: any;\\n}>;\\n/**\\n * PushContext - Context for push function\\n * Extends Context with mapping rule information\\n */\\ndeclare const PushContextSchema$1: z.ZodObject<{\\n collector: z.ZodAny;\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodAny, z.ZodUndefined, z.ZodArray<z.ZodUnion<[z.ZodAny, z.ZodUndefined]>, \\\"many\\\">]>>;\\n env: z.ZodAny;\\n} & {\\n mapping: z.ZodOptional<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n env?: any;\\n data?: any;\\n collector?: any;\\n}, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n env?: any;\\n data?: any;\\n collector?: any;\\n}>;\\n/**\\n * PushBatchContext - Context for pushBatch function\\n * Same as PushContext but for batch processing\\n */\\ndeclare const PushBatchContextSchema: z.ZodObject<{\\n collector: z.ZodAny;\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodAny, z.ZodUndefined, z.ZodArray<z.ZodUnion<[z.ZodAny, z.ZodUndefined]>, \\\"many\\\">]>>;\\n env: z.ZodAny;\\n} & {\\n mapping: z.ZodOptional<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n env?: any;\\n data?: any;\\n collector?: any;\\n}, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n env?: any;\\n data?: any;\\n collector?: any;\\n}>;\\n/**\\n * PushEvent - Single event with mapping in a batch\\n */\\ndeclare const PushEventSchema: z.ZodObject<{\\n event: z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>;\\n mapping: z.ZodOptional<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n event: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n };\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n}, {\\n event: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n };\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n}>;\\n/**\\n * PushEvents - Array of PushEvent\\n */\\ndeclare const PushEventsSchema: z.ZodArray<z.ZodObject<{\\n event: z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>;\\n mapping: z.ZodOptional<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n event: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n };\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n}, {\\n event: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n };\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n}>, \\\"many\\\">;\\n/**\\n * Batch - Batched events for processing\\n * Groups events by mapping key for efficient batch sends\\n */\\ndeclare const BatchSchema: z.ZodObject<{\\n key: z.ZodString;\\n events: z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">;\\n data: z.ZodArray<z.ZodUnion<[z.ZodAny, z.ZodUndefined, z.ZodArray<z.ZodUnion<[z.ZodAny, z.ZodUndefined]>, \\\"many\\\">]>, \\\"many\\\">;\\n mapping: z.ZodOptional<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n data: any[];\\n key: string;\\n events: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[];\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n}, {\\n data: any[];\\n key: string;\\n events: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[];\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | undefined;\\n}>;\\n/**\\n * Data - Transformed event data types\\n * Can be single property, undefined, or array of properties\\n */\\ndeclare const DataSchema: z.ZodUnion<[z.ZodAny, z.ZodUndefined, z.ZodArray<z.ZodUnion<[z.ZodAny, z.ZodUndefined]>, \\\"many\\\">]>;\\n/**\\n * Instance - Destination instance (runtime object)\\n *\\n * Note: This schema is primarily for documentation\\n * Runtime functions (init, push, pushBatch) cannot be validated\\n * Use z.any() for function fields\\n */\\ndeclare const InstanceSchema$2: z.ZodObject<{\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n dlq: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, z.ZodAny], null>, \\\"many\\\">>;\\n type: z.ZodOptional<z.ZodString>;\\n env: z.ZodOptional<z.ZodAny>;\\n init: z.ZodOptional<z.ZodAny>;\\n push: z.ZodAny;\\n pushBatch: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n}, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n}>;\\n/**\\n * Init - Initialization config\\n * Contains destination code and configuration\\n */\\ndeclare const InitSchema$1: z.ZodObject<{\\n code: z.ZodObject<{\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n dlq: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, z.ZodAny], null>, \\\"many\\\">>;\\n type: z.ZodOptional<z.ZodString>;\\n env: z.ZodOptional<z.ZodAny>;\\n init: z.ZodOptional<z.ZodAny>;\\n push: z.ZodAny;\\n pushBatch: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }>;\\n config: z.ZodOptional<z.ZodObject<{\\n consent: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;\\n settings: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n data: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>>;\\n env: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n id: z.ZodOptional<z.ZodOptional<z.ZodString>>;\\n init: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n loadScript: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n mapping: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>>;\\n policy: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>>;\\n queue: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n verbose: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n onError: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n onLog: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>>;\\n env: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n code: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n config?: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n env?: any;\\n}, {\\n code: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n config?: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n env?: any;\\n}>;\\n/**\\n * InitDestinations - Map of destination IDs to Init configs\\n */\\ndeclare const InitDestinationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{\\n code: z.ZodObject<{\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n dlq: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, z.ZodAny], null>, \\\"many\\\">>;\\n type: z.ZodOptional<z.ZodString>;\\n env: z.ZodOptional<z.ZodAny>;\\n init: z.ZodOptional<z.ZodAny>;\\n push: z.ZodAny;\\n pushBatch: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }>;\\n config: z.ZodOptional<z.ZodObject<{\\n consent: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;\\n settings: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n data: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>>;\\n env: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n id: z.ZodOptional<z.ZodOptional<z.ZodString>>;\\n init: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n loadScript: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n mapping: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>>;\\n policy: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>>;\\n queue: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n verbose: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n onError: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n onLog: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>>;\\n env: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n code: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n config?: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n env?: any;\\n}, {\\n code: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n config?: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n env?: any;\\n}>>;\\n/**\\n * Destinations - Map of destination IDs to instances\\n */\\ndeclare const DestinationsSchema$1: z.ZodRecord<z.ZodString, z.ZodObject<{\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n dlq: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, z.ZodAny], null>, \\\"many\\\">>;\\n type: z.ZodOptional<z.ZodString>;\\n env: z.ZodOptional<z.ZodAny>;\\n init: z.ZodOptional<z.ZodAny>;\\n push: z.ZodAny;\\n pushBatch: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n}, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n}>>;\\n/**\\n * Ref - Destination reference\\n * Links destination ID to instance\\n */\\ndeclare const RefSchema: z.ZodObject<{\\n id: z.ZodString;\\n destination: z.ZodObject<{\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n dlq: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, z.ZodAny], null>, \\\"many\\\">>;\\n type: z.ZodOptional<z.ZodString>;\\n env: z.ZodOptional<z.ZodAny>;\\n init: z.ZodOptional<z.ZodAny>;\\n push: z.ZodAny;\\n pushBatch: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n}, {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n}>;\\n/**\\n * Push - Push operation result\\n */\\ndeclare const PushResultSchema: z.ZodObject<{\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n error: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n error?: any;\\n}, {\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n error?: any;\\n}>;\\n/**\\n * Result - Overall processing result\\n * Categorizes destinations by processing outcome\\n */\\ndeclare const ResultSchema: z.ZodObject<{\\n successful: z.ZodArray<z.ZodObject<{\\n id: z.ZodString;\\n destination: z.ZodObject<{\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n dlq: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, z.ZodAny], null>, \\\"many\\\">>;\\n type: z.ZodOptional<z.ZodString>;\\n env: z.ZodOptional<z.ZodAny>;\\n init: z.ZodOptional<z.ZodAny>;\\n push: z.ZodAny;\\n pushBatch: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }, {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }>, \\\"many\\\">;\\n queued: z.ZodArray<z.ZodObject<{\\n id: z.ZodString;\\n destination: z.ZodObject<{\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n dlq: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, z.ZodAny], null>, \\\"many\\\">>;\\n type: z.ZodOptional<z.ZodString>;\\n env: z.ZodOptional<z.ZodAny>;\\n init: z.ZodOptional<z.ZodAny>;\\n push: z.ZodAny;\\n pushBatch: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }, {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }>, \\\"many\\\">;\\n failed: z.ZodArray<z.ZodObject<{\\n id: z.ZodString;\\n destination: z.ZodObject<{\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n env: z.ZodOptional<z.ZodAny>;\\n id: z.ZodOptional<z.ZodString>;\\n init: z.ZodOptional<z.ZodBoolean>;\\n loadScript: z.ZodOptional<z.ZodBoolean>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n queue: z.ZodOptional<z.ZodBoolean>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n queue: z.ZodOptional<z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">>;\\n dlq: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, z.ZodAny], null>, \\\"many\\\">>;\\n type: z.ZodOptional<z.ZodString>;\\n env: z.ZodOptional<z.ZodAny>;\\n init: z.ZodOptional<z.ZodAny>;\\n push: z.ZodAny;\\n pushBatch: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }, {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n }>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }, {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }>, \\\"many\\\">;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n successful: {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }[];\\n queued: {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }[];\\n failed: {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }[];\\n}, {\\n successful: {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }[];\\n queued: {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }[];\\n failed: {\\n id: string;\\n destination: {\\n config: {\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n init?: boolean | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: any;\\n data?: any;\\n queue?: boolean | undefined;\\n loadScript?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n init?: any;\\n on?: any;\\n env?: any;\\n push?: any;\\n type?: string | undefined;\\n queue?: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[] | undefined;\\n dlq?: [{\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, any][] | undefined;\\n pushBatch?: any;\\n };\\n }[];\\n}>;\\n/**\\n * DLQ - Dead Letter Queue\\n * Array of failed events with their errors\\n */\\ndeclare const DLQSchema: z.ZodArray<z.ZodTuple<[z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n}, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n}>, z.ZodAny], null>, \\\"many\\\">;\\ndeclare const configJsonSchema$2: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const partialConfigJsonSchema$1: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const contextJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const pushContextJsonSchema$1: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const batchJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const instanceJsonSchema$2: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const resultJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\n\\ndeclare const destination_BatchSchema: typeof BatchSchema;\\ndeclare const destination_ContextSchema: typeof ContextSchema;\\ndeclare const destination_DLQSchema: typeof DLQSchema;\\ndeclare const destination_DataSchema: typeof DataSchema;\\ndeclare const destination_DestinationPolicySchema: typeof DestinationPolicySchema;\\ndeclare const destination_InitDestinationsSchema: typeof InitDestinationsSchema;\\ndeclare const destination_PushBatchContextSchema: typeof PushBatchContextSchema;\\ndeclare const destination_PushEventSchema: typeof PushEventSchema;\\ndeclare const destination_PushEventsSchema: typeof PushEventsSchema;\\ndeclare const destination_PushResultSchema: typeof PushResultSchema;\\ndeclare const destination_RefSchema: typeof RefSchema;\\ndeclare const destination_ResultSchema: typeof ResultSchema;\\ndeclare const destination_batchJsonSchema: typeof batchJsonSchema;\\ndeclare const destination_contextJsonSchema: typeof contextJsonSchema;\\ndeclare const destination_resultJsonSchema: typeof resultJsonSchema;\\ndeclare namespace destination {\\n export { destination_BatchSchema as BatchSchema, ConfigSchema$2 as ConfigSchema, destination_ContextSchema as ContextSchema, destination_DLQSchema as DLQSchema, destination_DataSchema as DataSchema, destination_DestinationPolicySchema as DestinationPolicySchema, DestinationsSchema$1 as DestinationsSchema, destination_InitDestinationsSchema as InitDestinationsSchema, InitSchema$1 as InitSchema, InstanceSchema$2 as InstanceSchema, PartialConfigSchema$1 as PartialConfigSchema, destination_PushBatchContextSchema as PushBatchContextSchema, PushContextSchema$1 as PushContextSchema, destination_PushEventSchema as PushEventSchema, destination_PushEventsSchema as PushEventsSchema, destination_PushResultSchema as PushResultSchema, destination_RefSchema as RefSchema, destination_ResultSchema as ResultSchema, destination_batchJsonSchema as batchJsonSchema, configJsonSchema$2 as configJsonSchema, destination_contextJsonSchema as contextJsonSchema, instanceJsonSchema$2 as instanceJsonSchema, partialConfigJsonSchema$1 as partialConfigJsonSchema, pushContextJsonSchema$1 as pushContextJsonSchema, destination_resultJsonSchema as resultJsonSchema };\\n}\\n\\n/**\\n * Collector Schemas\\n *\\n * Mirrors: types/collector.ts\\n * Purpose: Runtime validation and JSON Schema generation for collector configurations\\n *\\n * The collector is the central event processing engine in walkerOS:\\n * - Receives events from sources\\n * - Processes events with consent and context\\n * - Routes events to destinations\\n * - Manages session state and globals\\n * - Handles lifecycle hooks\\n *\\n * This file defines schemas for collector configuration, commands, and state management.\\n */\\n/**\\n * CommandType - Walker command identifiers\\n *\\n * Standard commands:\\n * - action: TODO - need documentation\\n * - config: Update collector configuration\\n * - consent: Update consent state\\n * - context: TODO - need documentation\\n * - destination: Add/update destination\\n * - elb: TODO - need documentation\\n * - globals: Update global properties\\n * - hook: Register lifecycle hook\\n * - init: Initialize collector\\n * - link: TODO - need documentation\\n * - run: Start/restart collector with state\\n * - user: Update user data\\n * - walker: TODO - need documentation\\n *\\n * Extensible: allows custom command strings\\n */\\ndeclare const CommandTypeSchema: z.ZodUnion<[z.ZodEnum<[\\\"action\\\", \\\"config\\\", \\\"consent\\\", \\\"context\\\", \\\"destination\\\", \\\"elb\\\", \\\"globals\\\", \\\"hook\\\", \\\"init\\\", \\\"link\\\", \\\"run\\\", \\\"user\\\", \\\"walker\\\"]>, z.ZodString]>;\\n/**\\n * Config - Core collector configuration\\n *\\n * Controls collector behavior:\\n * - run: Auto-run on initialization\\n * - tagging: Version number for event tagging\\n * - globalsStatic: Static globals (persist across runs)\\n * - sessionStatic: Static session data (persist across runs)\\n * - verbose: Enable verbose logging\\n * - onError: Error handler\\n * - onLog: Log handler\\n */\\ndeclare const ConfigSchema$1: z.ZodObject<{\\n run: z.ZodOptional<z.ZodBoolean>;\\n tagging: z.ZodNumber;\\n globalsStatic: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n sessionStatic: z.ZodRecord<z.ZodString, z.ZodAny>;\\n verbose: z.ZodBoolean;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n globalsStatic: Record<string, any>;\\n sessionStatic: Record<string, any>;\\n verbose: boolean;\\n run?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n}, {\\n tagging: number;\\n globalsStatic: Record<string, any>;\\n sessionStatic: Record<string, any>;\\n verbose: boolean;\\n run?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n}>;\\n/**\\n * SessionData - Session state management\\n *\\n * Tracks session-level information:\\n * - IDs and lifecycle\\n * - Storage state\\n * - Marketing tracking\\n * - Timestamps\\n * - Counters\\n *\\n * Extends Properties to allow custom session data\\n */\\ndeclare const SessionDataSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n isStart: z.ZodBoolean;\\n storage: z.ZodBoolean;\\n id: z.ZodOptional<z.ZodString>;\\n start: z.ZodOptional<z.ZodNumber>;\\n marketing: z.ZodOptional<z.ZodLiteral<true>>;\\n updated: z.ZodOptional<z.ZodNumber>;\\n isNew: z.ZodOptional<z.ZodBoolean>;\\n device: z.ZodOptional<z.ZodString>;\\n count: z.ZodOptional<z.ZodNumber>;\\n runs: z.ZodOptional<z.ZodNumber>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n isStart: boolean;\\n storage: boolean;\\n id?: string | undefined;\\n start?: number | undefined;\\n marketing?: true | undefined;\\n updated?: number | undefined;\\n isNew?: boolean | undefined;\\n device?: string | undefined;\\n count?: number | undefined;\\n runs?: number | undefined;\\n}, {\\n isStart: boolean;\\n storage: boolean;\\n id?: string | undefined;\\n start?: number | undefined;\\n marketing?: true | undefined;\\n updated?: number | undefined;\\n isNew?: boolean | undefined;\\n device?: string | undefined;\\n count?: number | undefined;\\n runs?: number | undefined;\\n}>>;\\n/**\\n * InitConfig - Initialization configuration\\n *\\n * Extends Config with initial state:\\n * - Initial consent\\n * - Initial user data\\n * - Initial globals\\n * - Source configurations\\n * - Destination configurations\\n * - Initial custom properties\\n */\\ndeclare const InitConfigSchema: z.ZodObject<{\\n run: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n tagging: z.ZodOptional<z.ZodNumber>;\\n globalsStatic: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>>;\\n sessionStatic: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;\\n verbose: z.ZodOptional<z.ZodBoolean>;\\n onError: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n onLog: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n} & {\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n user: z.ZodOptional<z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>>;\\n globals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>>;\\n sources: z.ZodOptional<z.ZodAny>;\\n destinations: z.ZodOptional<z.ZodAny>;\\n custom: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n run?: boolean | undefined;\\n tagging?: number | undefined;\\n globalsStatic?: Record<string, any> | undefined;\\n sessionStatic?: Record<string, any> | undefined;\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n user?: (Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }) | undefined;\\n globals?: Record<string, any> | undefined;\\n sources?: any;\\n destinations?: any;\\n custom?: Record<string, any> | undefined;\\n}, {\\n run?: boolean | undefined;\\n tagging?: number | undefined;\\n globalsStatic?: Record<string, any> | undefined;\\n sessionStatic?: Record<string, any> | undefined;\\n verbose?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n consent?: Record<string, boolean> | undefined;\\n user?: (Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }) | undefined;\\n globals?: Record<string, any> | undefined;\\n sources?: any;\\n destinations?: any;\\n custom?: Record<string, any> | undefined;\\n}>;\\n/**\\n * PushContext - Context for collector.push\\n *\\n * Provides source-level mapping configuration\\n * Applied before destination-specific mappings\\n */\\ndeclare const PushContextSchema: z.ZodObject<{\\n mapping: z.ZodOptional<z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n }>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n}, {\\n mapping?: {\\n consent?: Record<string, boolean> | undefined;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n}>;\\n/**\\n * Sources - Map of source IDs to instances\\n */\\ndeclare const SourcesSchema: z.ZodRecord<z.ZodString, z.ZodAny>;\\n/**\\n * Destinations - Map of destination IDs to instances\\n */\\ndeclare const DestinationsSchema: z.ZodRecord<z.ZodString, z.ZodAny>;\\n/**\\n * Instance - Collector instance (runtime object)\\n *\\n * The main collector interface with all state and methods\\n *\\n * State:\\n * - config: Current configuration\\n * - consent: Current consent state\\n * - user: Current user data\\n * - globals: Current global properties\\n * - custom: Custom properties\\n * - session: Session state\\n * - sources: Registered sources\\n * - destinations: Registered destinations\\n * - hooks: Lifecycle hooks\\n * - on: Event lifecycle config\\n * - queue: Queued events\\n *\\n * Flags:\\n * - allowed: Processing allowed\\n * - count: Event count\\n * - round: Collector run count\\n * - timing: Processing timing\\n * - group: Event grouping ID\\n *\\n * Methods (not validated):\\n * - push: Process events\\n * - command: Execute commands\\n */\\ndeclare const InstanceSchema$1: z.ZodObject<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n allowed: z.ZodBoolean;\\n config: z.ZodObject<{\\n run: z.ZodOptional<z.ZodBoolean>;\\n tagging: z.ZodNumber;\\n globalsStatic: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n sessionStatic: z.ZodRecord<z.ZodString, z.ZodAny>;\\n verbose: z.ZodBoolean;\\n onError: z.ZodOptional<z.ZodAny>;\\n onLog: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n globalsStatic: Record<string, any>;\\n sessionStatic: Record<string, any>;\\n verbose: boolean;\\n run?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n }, {\\n tagging: number;\\n globalsStatic: Record<string, any>;\\n sessionStatic: Record<string, any>;\\n verbose: boolean;\\n run?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n }>;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n count: z.ZodNumber;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n sources: z.ZodRecord<z.ZodString, z.ZodAny>;\\n destinations: z.ZodRecord<z.ZodString, z.ZodAny>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n group: z.ZodString;\\n hooks: z.ZodAny;\\n on: z.ZodAny;\\n queue: z.ZodArray<z.ZodObject<{\\n name: z.ZodString;\\n data: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n context: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTuple<[z.ZodTypeAny, z.ZodNumber], null>>>;\\n globals: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n custom: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n nested: z.ZodArray<z.ZodTypeAny, \\\"many\\\">;\\n consent: z.ZodRecord<z.ZodString, z.ZodBoolean>;\\n id: z.ZodString;\\n trigger: z.ZodString;\\n entity: z.ZodString;\\n action: z.ZodString;\\n timestamp: z.ZodNumber;\\n timing: z.ZodNumber;\\n group: z.ZodString;\\n count: z.ZodNumber;\\n version: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n source: z.ZodString;\\n tagging: z.ZodNumber;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n tagging: number;\\n source: string;\\n }, {\\n tagging: number;\\n source: string;\\n }>>;\\n source: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n type: z.ZodUnion<[z.ZodEnum<[\\\"web\\\", \\\"server\\\", \\\"app\\\", \\\"other\\\"]>, z.ZodString]>;\\n id: z.ZodString;\\n previous_id: z.ZodString;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }, {\\n id: string;\\n type: string;\\n previous_id: string;\\n }>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }>, \\\"many\\\">;\\n round: z.ZodNumber;\\n session: z.ZodUnion<[z.ZodUndefined, z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n isStart: z.ZodBoolean;\\n storage: z.ZodBoolean;\\n id: z.ZodOptional<z.ZodString>;\\n start: z.ZodOptional<z.ZodNumber>;\\n marketing: z.ZodOptional<z.ZodLiteral<true>>;\\n updated: z.ZodOptional<z.ZodNumber>;\\n isNew: z.ZodOptional<z.ZodBoolean>;\\n device: z.ZodOptional<z.ZodString>;\\n count: z.ZodOptional<z.ZodNumber>;\\n runs: z.ZodOptional<z.ZodNumber>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n isStart: boolean;\\n storage: boolean;\\n id?: string | undefined;\\n start?: number | undefined;\\n marketing?: true | undefined;\\n updated?: number | undefined;\\n isNew?: boolean | undefined;\\n device?: string | undefined;\\n count?: number | undefined;\\n runs?: number | undefined;\\n }, {\\n isStart: boolean;\\n storage: boolean;\\n id?: string | undefined;\\n start?: number | undefined;\\n marketing?: true | undefined;\\n updated?: number | undefined;\\n isNew?: boolean | undefined;\\n device?: string | undefined;\\n count?: number | undefined;\\n runs?: number | undefined;\\n }>>]>;\\n timing: z.ZodNumber;\\n user: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodTypeAny>>, z.ZodObject<{\\n id: z.ZodOptional<z.ZodString>;\\n device: z.ZodOptional<z.ZodString>;\\n session: z.ZodOptional<z.ZodString>;\\n hash: z.ZodOptional<z.ZodString>;\\n address: z.ZodOptional<z.ZodString>;\\n email: z.ZodOptional<z.ZodString>;\\n phone: z.ZodOptional<z.ZodString>;\\n userAgent: z.ZodOptional<z.ZodString>;\\n browser: z.ZodOptional<z.ZodString>;\\n browserVersion: z.ZodOptional<z.ZodString>;\\n deviceType: z.ZodOptional<z.ZodString>;\\n os: z.ZodOptional<z.ZodString>;\\n osVersion: z.ZodOptional<z.ZodString>;\\n screenSize: z.ZodOptional<z.ZodString>;\\n language: z.ZodOptional<z.ZodString>;\\n country: z.ZodOptional<z.ZodString>;\\n region: z.ZodOptional<z.ZodString>;\\n city: z.ZodOptional<z.ZodString>;\\n zip: z.ZodOptional<z.ZodString>;\\n timezone: z.ZodOptional<z.ZodString>;\\n ip: z.ZodOptional<z.ZodString>;\\n internal: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }, {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n }>>;\\n version: z.ZodString;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n sources: Record<string, any>;\\n destinations: Record<string, any>;\\n custom: Record<string, any>;\\n count: number;\\n config: {\\n tagging: number;\\n globalsStatic: Record<string, any>;\\n sessionStatic: Record<string, any>;\\n verbose: boolean;\\n run?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n };\\n timing: number;\\n group: string;\\n version: string;\\n queue: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[];\\n allowed: boolean;\\n round: number;\\n on?: any;\\n session?: (Record<string, any> & {\\n isStart: boolean;\\n storage: boolean;\\n id?: string | undefined;\\n start?: number | undefined;\\n marketing?: true | undefined;\\n updated?: number | undefined;\\n isNew?: boolean | undefined;\\n device?: string | undefined;\\n count?: number | undefined;\\n runs?: number | undefined;\\n }) | undefined;\\n push?: any;\\n command?: any;\\n hooks?: any;\\n}, {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n sources: Record<string, any>;\\n destinations: Record<string, any>;\\n custom: Record<string, any>;\\n count: number;\\n config: {\\n tagging: number;\\n globalsStatic: Record<string, any>;\\n sessionStatic: Record<string, any>;\\n verbose: boolean;\\n run?: boolean | undefined;\\n onError?: any;\\n onLog?: any;\\n };\\n timing: number;\\n group: string;\\n version: string;\\n queue: {\\n consent: Record<string, boolean>;\\n user: Record<string, any> & {\\n id?: string | undefined;\\n device?: string | undefined;\\n session?: string | undefined;\\n city?: string | undefined;\\n country?: string | undefined;\\n hash?: string | undefined;\\n ip?: string | undefined;\\n language?: string | undefined;\\n region?: string | undefined;\\n userAgent?: string | undefined;\\n address?: string | undefined;\\n email?: string | undefined;\\n phone?: string | undefined;\\n browser?: string | undefined;\\n browserVersion?: string | undefined;\\n deviceType?: string | undefined;\\n zip?: string | undefined;\\n timezone?: string | undefined;\\n os?: string | undefined;\\n osVersion?: string | undefined;\\n screenSize?: string | undefined;\\n internal?: boolean | undefined;\\n };\\n globals: Record<string, any>;\\n custom: Record<string, any>;\\n id: string;\\n count: number;\\n action: string;\\n context: Record<string, [any, number] | undefined>;\\n name: string;\\n data: Record<string, any>;\\n nested: any[];\\n trigger: string;\\n entity: string;\\n timestamp: number;\\n timing: number;\\n group: string;\\n version: Record<string, any> & {\\n tagging: number;\\n source: string;\\n };\\n source: Record<string, any> & {\\n id: string;\\n type: string;\\n previous_id: string;\\n };\\n }[];\\n allowed: boolean;\\n round: number;\\n on?: any;\\n session?: (Record<string, any> & {\\n isStart: boolean;\\n storage: boolean;\\n id?: string | undefined;\\n start?: number | undefined;\\n marketing?: true | undefined;\\n updated?: number | undefined;\\n isNew?: boolean | undefined;\\n device?: string | undefined;\\n count?: number | undefined;\\n runs?: number | undefined;\\n }) | undefined;\\n push?: any;\\n command?: any;\\n hooks?: any;\\n}>;\\ndeclare const commandTypeJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const configJsonSchema$1: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const sessionDataJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const initConfigJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const pushContextJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const instanceJsonSchema$1: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\n\\ndeclare const collector_CommandTypeSchema: typeof CommandTypeSchema;\\ndeclare const collector_DestinationsSchema: typeof DestinationsSchema;\\ndeclare const collector_InitConfigSchema: typeof InitConfigSchema;\\ndeclare const collector_PushContextSchema: typeof PushContextSchema;\\ndeclare const collector_SessionDataSchema: typeof SessionDataSchema;\\ndeclare const collector_SourcesSchema: typeof SourcesSchema;\\ndeclare const collector_commandTypeJsonSchema: typeof commandTypeJsonSchema;\\ndeclare const collector_initConfigJsonSchema: typeof initConfigJsonSchema;\\ndeclare const collector_pushContextJsonSchema: typeof pushContextJsonSchema;\\ndeclare const collector_sessionDataJsonSchema: typeof sessionDataJsonSchema;\\ndeclare namespace collector {\\n export { collector_CommandTypeSchema as CommandTypeSchema, ConfigSchema$1 as ConfigSchema, collector_DestinationsSchema as DestinationsSchema, collector_InitConfigSchema as InitConfigSchema, InstanceSchema$1 as InstanceSchema, collector_PushContextSchema as PushContextSchema, collector_SessionDataSchema as SessionDataSchema, collector_SourcesSchema as SourcesSchema, collector_commandTypeJsonSchema as commandTypeJsonSchema, configJsonSchema$1 as configJsonSchema, collector_initConfigJsonSchema as initConfigJsonSchema, instanceJsonSchema$1 as instanceJsonSchema, collector_pushContextJsonSchema as pushContextJsonSchema, collector_sessionDataJsonSchema as sessionDataJsonSchema };\\n}\\n\\n/**\\n * Source Schemas\\n *\\n * Mirrors: types/source.ts\\n * Purpose: Runtime validation and JSON Schema generation for source configurations\\n *\\n * Sources are the entry points where events enter walkerOS:\\n * - Browser sources (DOM events, dataLayer)\\n * - Server sources (HTTP handlers, cloud functions)\\n * - App sources (mobile, desktop)\\n *\\n * Sources are platform-agnostic through dependency injection via BaseEnv.\\n * All platform-specific dependencies (DOM, HTTP, etc.) are provided through\\n * the env object, making sources testable and portable.\\n *\\n * Key concept: Source.push IS the handler - no wrappers needed\\n * Example: http('handler', source.push) for direct deployment\\n */\\n/**\\n * BaseEnv - Base environment interface for dependency injection\\n *\\n * Sources receive all dependencies through this environment object:\\n * - push: Collector push function\\n * - command: Collector command function\\n * - sources: Other registered sources\\n * - elb: Public API function (alias for collector.push)\\n *\\n * Platform-specific sources extend this with their requirements\\n * (e.g., window, document, fetch, req, res)\\n *\\n * This makes sources:\\n * - Platform-agnostic (no direct dependencies)\\n * - Testable (mock env for tests)\\n * - Composable (share env between sources)\\n */\\ndeclare const BaseEnvSchema: z.ZodObject<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n}, \\\"strip\\\", z.ZodUnknown, z.objectOutputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n}, z.ZodUnknown, \\\"strip\\\">, z.objectInputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n}, z.ZodUnknown, \\\"strip\\\">>;\\n/**\\n * Config - Source configuration\\n *\\n * Extends Mapping.Config with source-specific options:\\n * - consent: Required consent to process events\\n * - data: Global data transformations\\n * - mapping: Entity-action mapping rules\\n * - policy: Pre-processing policies\\n * - settings: Source-specific settings\\n * - env: Environment dependencies\\n * - id: Source identifier\\n * - onError: Error handler\\n * - disabled: Disable source\\n * - primary: Primary source flag (only one can be primary)\\n *\\n * Generic note: settings, env, and mapping can have source-specific types\\n */\\ndeclare const ConfigSchema: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n} & {\\n settings: z.ZodOptional<z.ZodAny>;\\n env: z.ZodOptional<z.ZodObject<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, \\\"strip\\\", z.ZodUnknown, z.objectOutputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\">, z.objectInputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\">>>;\\n id: z.ZodOptional<z.ZodString>;\\n onError: z.ZodOptional<z.ZodAny>;\\n disabled: z.ZodOptional<z.ZodBoolean>;\\n primary: z.ZodOptional<z.ZodBoolean>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n}, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n}>;\\n/**\\n * PartialConfig - Config with all fields optional\\n * Used for config updates and overrides\\n */\\ndeclare const PartialConfigSchema: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;\\n data: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>>;\\n mapping: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>>;\\n policy: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>>;\\n settings: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n env: z.ZodOptional<z.ZodOptional<z.ZodObject<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodUnknown, z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">, z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">>>>;\\n id: z.ZodOptional<z.ZodOptional<z.ZodString>>;\\n onError: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n disabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n primary: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n}, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n}>;\\n/**\\n * Instance - Source instance (runtime object)\\n *\\n * Contains:\\n * - type: Source type identifier\\n * - config: Current configuration\\n * - push: Push function (THE HANDLER)\\n * - destroy: Cleanup function\\n * - on: Lifecycle hook function\\n *\\n * Key concept: push IS the handler\\n * The push function signature is flexible to support different platforms:\\n * - Browser: push(event, data) => Promise<void>\\n * - HTTP: push(req, res) => Promise<void>\\n * - Cloud: push(event, context) => Promise<void>\\n *\\n * This flexibility allows direct deployment without wrappers:\\n * - http.createServer(source.push)\\n * - functions.https.onRequest(source.push)\\n * - addEventListener('click', source.push)\\n */\\ndeclare const InstanceSchema: z.ZodObject<{\\n type: z.ZodString;\\n config: z.ZodObject<{\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n mapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n } & {\\n settings: z.ZodOptional<z.ZodAny>;\\n env: z.ZodOptional<z.ZodObject<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, \\\"strip\\\", z.ZodUnknown, z.objectOutputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\">, z.objectInputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\">>>;\\n id: z.ZodOptional<z.ZodString>;\\n onError: z.ZodOptional<z.ZodAny>;\\n disabled: z.ZodOptional<z.ZodBoolean>;\\n primary: z.ZodOptional<z.ZodBoolean>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>;\\n push: z.ZodAny;\\n destroy: z.ZodOptional<z.ZodAny>;\\n on: z.ZodOptional<z.ZodAny>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config: {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n type: string;\\n on?: any;\\n push?: any;\\n destroy?: any;\\n}, {\\n config: {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodAny;\\n command: z.ZodAny;\\n sources: z.ZodOptional<z.ZodAny>;\\n elb: z.ZodAny;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n };\\n type: string;\\n on?: any;\\n push?: any;\\n destroy?: any;\\n}>;\\n/**\\n * Init - Source initialization function\\n *\\n * Factory function that creates a source instance:\\n * (config, env) => Instance | Promise<Instance>\\n *\\n * Receives:\\n * - config: Partial configuration\\n * - env: Environment dependencies\\n *\\n * Returns:\\n * - Source instance with push function\\n *\\n * The init function sets up the source (e.g., attach DOM listeners,\\n * start HTTP server, subscribe to events) and returns the instance.\\n */\\ndeclare const InitSchema: z.ZodAny;\\n/**\\n * InitSource - Initialization configuration\\n *\\n * Contains:\\n * - code: Init function\\n * - config: Partial config overrides\\n * - env: Partial env overrides\\n * - primary: Primary source flag\\n */\\ndeclare const InitSourceSchema: z.ZodObject<{\\n code: z.ZodAny;\\n config: z.ZodOptional<z.ZodObject<{\\n consent: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;\\n data: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>>;\\n mapping: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>>;\\n policy: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>>;\\n settings: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n env: z.ZodOptional<z.ZodOptional<z.ZodObject<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodUnknown, z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">, z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">>>>;\\n id: z.ZodOptional<z.ZodOptional<z.ZodString>>;\\n onError: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n disabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n primary: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>>;\\n env: z.ZodOptional<z.ZodObject<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodUnknown, z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">, z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">>>;\\n primary: z.ZodOptional<z.ZodBoolean>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config?: {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n primary?: boolean | undefined;\\n code?: any;\\n}, {\\n config?: {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n primary?: boolean | undefined;\\n code?: any;\\n}>;\\n/**\\n * InitSources - Map of source IDs to init configs\\n */\\ndeclare const InitSourcesSchema: z.ZodRecord<z.ZodString, z.ZodObject<{\\n code: z.ZodAny;\\n config: z.ZodOptional<z.ZodObject<{\\n consent: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>>;\\n data: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>>;\\n mapping: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, z.ZodArray<z.ZodObject<{\\n batch: z.ZodOptional<z.ZodNumber>;\\n condition: z.ZodOptional<z.ZodString>;\\n consent: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;\\n settings: z.ZodOptional<z.ZodAny>;\\n data: z.ZodOptional<z.ZodUnion<[z.ZodTypeAny, z.ZodArray<z.ZodTypeAny, \\\"many\\\">]>>;\\n ignore: z.ZodOptional<z.ZodBoolean>;\\n name: z.ZodOptional<z.ZodString>;\\n policy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }>, \\\"many\\\">]>>>>>>;\\n policy: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodTypeAny>>>;\\n settings: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n env: z.ZodOptional<z.ZodOptional<z.ZodObject<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodUnknown, z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">, z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">>>>;\\n id: z.ZodOptional<z.ZodOptional<z.ZodString>>;\\n onError: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n disabled: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n primary: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;\\n }, \\\"strip\\\", z.ZodTypeAny, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }, {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n }>>;\\n env: z.ZodOptional<z.ZodObject<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, \\\"strip\\\", z.ZodUnknown, z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">, z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\">>>;\\n primary: z.ZodOptional<z.ZodBoolean>;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n config?: {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n env?: z.objectOutputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n primary?: boolean | undefined;\\n code?: any;\\n}, {\\n config?: {\\n onError?: any;\\n consent?: Record<string, boolean> | undefined;\\n id?: string | undefined;\\n settings?: any;\\n mapping?: Record<string, Record<string, {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n } | {\\n consent?: Record<string, boolean> | undefined;\\n settings?: any;\\n name?: string | undefined;\\n data?: any;\\n policy?: Record<string, any> | undefined;\\n batch?: number | undefined;\\n ignore?: boolean | undefined;\\n condition?: string | undefined;\\n }[]> | undefined> | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n data?: any;\\n disabled?: boolean | undefined;\\n primary?: boolean | undefined;\\n policy?: Record<string, any> | undefined;\\n } | undefined;\\n env?: z.objectInputType<{\\n push: z.ZodOptional<z.ZodAny>;\\n command: z.ZodOptional<z.ZodAny>;\\n sources: z.ZodOptional<z.ZodOptional<z.ZodAny>>;\\n elb: z.ZodOptional<z.ZodAny>;\\n }, z.ZodUnknown, \\\"strip\\\"> | undefined;\\n primary?: boolean | undefined;\\n code?: any;\\n}>>;\\ndeclare const baseEnvJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const configJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const partialConfigJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const instanceJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const initSourceJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const initSourcesJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\n\\ndeclare const source_BaseEnvSchema: typeof BaseEnvSchema;\\ndeclare const source_ConfigSchema: typeof ConfigSchema;\\ndeclare const source_InitSchema: typeof InitSchema;\\ndeclare const source_InitSourceSchema: typeof InitSourceSchema;\\ndeclare const source_InitSourcesSchema: typeof InitSourcesSchema;\\ndeclare const source_InstanceSchema: typeof InstanceSchema;\\ndeclare const source_PartialConfigSchema: typeof PartialConfigSchema;\\ndeclare const source_baseEnvJsonSchema: typeof baseEnvJsonSchema;\\ndeclare const source_configJsonSchema: typeof configJsonSchema;\\ndeclare const source_initSourceJsonSchema: typeof initSourceJsonSchema;\\ndeclare const source_initSourcesJsonSchema: typeof initSourcesJsonSchema;\\ndeclare const source_instanceJsonSchema: typeof instanceJsonSchema;\\ndeclare const source_partialConfigJsonSchema: typeof partialConfigJsonSchema;\\ndeclare namespace source {\\n export { source_BaseEnvSchema as BaseEnvSchema, source_ConfigSchema as ConfigSchema, source_InitSchema as InitSchema, source_InitSourceSchema as InitSourceSchema, source_InitSourcesSchema as InitSourcesSchema, source_InstanceSchema as InstanceSchema, source_PartialConfigSchema as PartialConfigSchema, source_baseEnvJsonSchema as baseEnvJsonSchema, source_configJsonSchema as configJsonSchema, source_initSourceJsonSchema as initSourceJsonSchema, source_initSourcesJsonSchema as initSourcesJsonSchema, source_instanceJsonSchema as instanceJsonSchema, source_partialConfigJsonSchema as partialConfigJsonSchema };\\n}\\n\\n/**\\n * Utility Schemas\\n *\\n * Mirrors: types/storage.ts, types/handler.ts, and other utility types\\n * Purpose: Runtime validation and JSON Schema generation for utility types\\n *\\n * Small, standalone schemas for utility types used throughout walkerOS:\\n * - Storage types\\n * - Handler functions\\n * - Error/log management\\n */\\n/**\\n * StorageType - Storage mechanism identifier\\n *\\n * Standard storage types:\\n * - local: localStorage (persistent)\\n * - session: sessionStorage (session-scoped)\\n * - cookie: document.cookie (configurable expiry)\\n *\\n * Used for session persistence and user tracking\\n */\\ndeclare const StorageTypeSchema: z.ZodEnum<[\\\"local\\\", \\\"session\\\", \\\"cookie\\\"]>;\\n/**\\n * Storage - Storage type constants\\n * Provides const values for type-safe storage type references\\n */\\ndeclare const StorageSchema: z.ZodObject<{\\n Local: z.ZodLiteral<\\\"local\\\">;\\n Session: z.ZodLiteral<\\\"session\\\">;\\n Cookie: z.ZodLiteral<\\\"cookie\\\">;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n Local: \\\"local\\\";\\n Session: \\\"session\\\";\\n Cookie: \\\"cookie\\\";\\n}, {\\n Local: \\\"local\\\";\\n Session: \\\"session\\\";\\n Cookie: \\\"cookie\\\";\\n}>;\\n/**\\n * Error - Error handler function type\\n *\\n * Signature: (error: unknown, state?: unknown) => void\\n *\\n * Called when errors occur during:\\n * - Event processing\\n * - Destination push operations\\n * - Source event handling\\n * - Mapping transformations\\n *\\n * Parameters:\\n * - error: The error that occurred\\n * - state: Optional state information for debugging\\n *\\n * Note: Function schemas use z.any() as functions aren't serializable\\n */\\ndeclare const ErrorHandlerSchema: z.ZodAny;\\n/**\\n * Log - Log handler function type\\n *\\n * Signature: (message: string, verbose?: boolean) => void\\n *\\n * Called for logging during:\\n * - Event processing\\n * - Configuration updates\\n * - Debugging (when verbose enabled)\\n *\\n * Parameters:\\n * - message: Log message\\n * - verbose: Whether this is a verbose-only log\\n *\\n * Note: Function schemas use z.any() as functions aren't serializable\\n */\\ndeclare const LogHandlerSchema: z.ZodAny;\\n/**\\n * Handler - Combined handler interface\\n * Groups Error and Log handlers\\n */\\ndeclare const HandlerSchema: z.ZodObject<{\\n Error: z.ZodAny;\\n Log: z.ZodAny;\\n}, \\\"strip\\\", z.ZodTypeAny, {\\n Error?: any;\\n Log?: any;\\n}, {\\n Error?: any;\\n Log?: any;\\n}>;\\ndeclare const storageTypeJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const storageJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const errorHandlerJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const logHandlerJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\ndeclare const handlerJsonSchema: zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\n\\ndeclare const utilities_ErrorHandlerSchema: typeof ErrorHandlerSchema;\\ndeclare const utilities_HandlerSchema: typeof HandlerSchema;\\ndeclare const utilities_LogHandlerSchema: typeof LogHandlerSchema;\\ndeclare const utilities_StorageSchema: typeof StorageSchema;\\ndeclare const utilities_StorageTypeSchema: typeof StorageTypeSchema;\\ndeclare const utilities_errorHandlerJsonSchema: typeof errorHandlerJsonSchema;\\ndeclare const utilities_handlerJsonSchema: typeof handlerJsonSchema;\\ndeclare const utilities_logHandlerJsonSchema: typeof logHandlerJsonSchema;\\ndeclare const utilities_storageJsonSchema: typeof storageJsonSchema;\\ndeclare const utilities_storageTypeJsonSchema: typeof storageTypeJsonSchema;\\ndeclare namespace utilities {\\n export { utilities_ErrorHandlerSchema as ErrorHandlerSchema, utilities_HandlerSchema as HandlerSchema, utilities_LogHandlerSchema as LogHandlerSchema, utilities_StorageSchema as StorageSchema, utilities_StorageTypeSchema as StorageTypeSchema, utilities_errorHandlerJsonSchema as errorHandlerJsonSchema, utilities_handlerJsonSchema as handlerJsonSchema, utilities_logHandlerJsonSchema as logHandlerJsonSchema, utilities_storageJsonSchema as storageJsonSchema, utilities_storageTypeJsonSchema as storageTypeJsonSchema };\\n}\\n\\n/**\\n * JSON Schema type\\n */\\ntype JSONSchema = Record<string, unknown>;\\n/**\\n * Schema Builder - DRY utility for creating JSON Schemas\\n *\\n * This utility allows destinations to define schemas using simple objects,\\n * without needing Zod as a dependency. The core package handles conversion.\\n *\\n * Benefits:\\n * - Single source of schema generation logic\\n * - No Zod dependency in destination packages\\n * - Simple, declarative schema definitions\\n * - Type-safe with TypeScript\\n * - Follows DRY principle\\n *\\n * @example\\n * // In destination package (NO Zod needed!)\\n * import { createObjectSchema, createArraySchema } from '@walkeros/core/schemas';\\n *\\n * export const settingsSchema = createObjectSchema({\\n * pixelId: {\\n * type: 'string',\\n * required: true,\\n * pattern: '^[0-9]+$',\\n * description: 'Your Meta Pixel ID',\\n * },\\n * });\\n */\\n/**\\n * Property definition for schema builder\\n */\\ninterface PropertyDef {\\n type: 'string' | 'number' | 'boolean' | 'object' | 'array';\\n required?: boolean;\\n description?: string;\\n pattern?: string;\\n minLength?: number;\\n maxLength?: number;\\n minimum?: number;\\n maximum?: number;\\n enum?: readonly string[] | readonly number[];\\n properties?: Record<string, PropertyDef>;\\n items?: PropertyDef;\\n default?: unknown;\\n}\\n/**\\n * Create object schema from property definitions\\n *\\n * @param properties - Property definitions\\n * @param title - Optional schema title\\n * @returns JSON Schema\\n *\\n * @example\\n * const schema = createObjectSchema({\\n * pixelId: {\\n * type: 'string',\\n * required: true,\\n * pattern: '^[0-9]+$',\\n * description: 'Your Meta Pixel ID',\\n * },\\n * eventName: {\\n * type: 'string',\\n * enum: ['PageView', 'Purchase'],\\n * },\\n * }, 'Meta Pixel Settings');\\n */\\ndeclare function createObjectSchema(properties: Record<string, PropertyDef>, title?: string): JSONSchema;\\n/**\\n * Create array schema\\n *\\n * @param itemDef - Definition for array items\\n * @param options - Optional array constraints\\n * @returns JSON Schema\\n *\\n * @example\\n * // Simple string array\\n * const tagsSchema = createArraySchema({ type: 'string' });\\n *\\n * // Tuple (loop pattern) - exactly 2 items\\n * const loopSchema = createArraySchema(\\n * { type: 'object' },\\n * { minItems: 2, maxItems: 2 }\\n * );\\n *\\n * // Array with enum\\n * const includeSchema = createArraySchema({\\n * type: 'string',\\n * enum: ['data', 'context', 'globals'],\\n * });\\n */\\ndeclare function createArraySchema(itemDef: PropertyDef, options?: {\\n minItems?: number;\\n maxItems?: number;\\n description?: string;\\n title?: string;\\n}): JSONSchema;\\n/**\\n * Create enum schema\\n *\\n * @param values - Allowed values\\n * @param type - Value type ('string' or 'number')\\n * @param options - Optional constraints\\n * @returns JSON Schema\\n *\\n * @example\\n * const eventTypeSchema = createEnumSchema(\\n * ['PageView', 'Purchase', 'AddToCart'],\\n * 'string',\\n * { description: 'Meta Pixel standard event' }\\n * );\\n */\\ndeclare function createEnumSchema(values: readonly string[] | readonly number[], type?: 'string' | 'number', options?: {\\n description?: string;\\n title?: string;\\n}): JSONSchema;\\n/**\\n * Create tuple schema (Loop pattern)\\n *\\n * Creates an array schema with exactly 2 items, which the Explorer\\n * type detector recognizes as a \\\"loop\\\" pattern.\\n *\\n * @param firstItem - Definition for first element (source)\\n * @param secondItem - Definition for second element (transform)\\n * @param description - Optional description\\n * @returns JSON Schema with minItems=2, maxItems=2\\n *\\n * @example\\n * const loopSchema = createTupleSchema(\\n * { type: 'string' },\\n * { type: 'object' },\\n * 'Loop: [source, transform]'\\n * );\\n */\\ndeclare function createTupleSchema(firstItem: PropertyDef, secondItem: PropertyDef, description?: string): JSONSchema;\\n\\n/**\\n * Utility to convert Zod schema to JSON Schema with consistent defaults\\n *\\n * This wrapper ensures all destinations use the same JSON Schema configuration:\\n * - target: 'jsonSchema7' (JSON Schema Draft 7 format)\\n * - $refStrategy: 'none' (inline all references, no $ref pointers)\\n *\\n * Usage in destinations:\\n * import { zodToSchema } from '@walkeros/core';\\n * export const settings = zodToSchema(SettingsSchema);\\n */\\ndeclare function zodToSchema(schema: z.ZodTypeAny): zod_to_json_schema.JsonSchema7Type & {\\n $schema?: string | undefined;\\n definitions?: {\\n [key: string]: zod_to_json_schema.JsonSchema7Type;\\n } | undefined;\\n};\\n\\n/**\\n * Anonymizes an IPv4 address by setting the last octet to 0.\\n *\\n * @param ip The IP address to anonymize.\\n * @returns The anonymized IP address or an empty string if the IP is invalid.\\n */\\ndeclare function anonymizeIP(ip: string): string;\\n\\n/**\\n * @interface Assign\\n * @description Options for the assign function.\\n * @property merge - Merge array properties instead of overriding them.\\n * @property shallow - Create a shallow copy instead of updating the target object.\\n * @property extend - Extend the target with new properties instead of only updating existing ones.\\n */\\ninterface Assign {\\n merge?: boolean;\\n shallow?: boolean;\\n extend?: boolean;\\n}\\n/**\\n * Merges objects with advanced options.\\n *\\n * @template T, U\\n * @param target - The target object to merge into.\\n * @param obj - The source object to merge from.\\n * @param options - Options for merging.\\n * @returns The merged object.\\n */\\ndeclare function assign<T extends object, U extends object>(target: T, obj?: U, options?: Assign): T & U;\\n\\n/**\\n * Gets a value from an object by a dot-notation string.\\n * Supports wildcards for arrays.\\n *\\n * @example\\n * getByPath({ data: { id: 1 } }, \\\"data.id\\\") // Returns 1\\n *\\n * @param event - The object to get the value from.\\n * @param key - The dot-notation string.\\n * @param defaultValue - The default value to return if the key is not found.\\n * @returns The value from the object or the default value.\\n */\\ndeclare function getByPath(event: unknown, key?: string, defaultValue?: unknown): unknown;\\n/**\\n * Sets a value in an object by a dot-notation string.\\n *\\n * @param obj - The object to set the value in.\\n * @param key - The dot-notation string.\\n * @param value - The value to set.\\n * @returns A new object with the updated value.\\n */\\ndeclare function setByPath<T = unknown>(obj: T, key: string, value: unknown): T;\\n\\n/**\\n * Casts a value to a specific type.\\n *\\n * @param value The value to cast.\\n * @returns The casted value.\\n */\\ndeclare function castValue(value: unknown): PropertyType;\\n\\n/**\\n * Creates a deep clone of a value.\\n * Supports primitive values, objects, arrays, dates, and regular expressions.\\n * Handles circular references.\\n *\\n * @template T\\n * @param org - The value to clone.\\n * @param visited - A map of visited objects to handle circular references.\\n * @returns The cloned value.\\n */\\ndeclare function clone<T>(org: T, visited?: WeakMap<object, unknown>): T;\\n\\n/**\\n * Checks if the required consent is granted.\\n *\\n * @param required - The required consent states.\\n * @param state - The current consent states.\\n * @param individual - Individual consent states to prioritize.\\n * @returns The granted consent states or false if not granted.\\n */\\ndeclare function getGrantedConsent(required: Consent | undefined, state?: Consent, individual?: Consent): false | Consent;\\n\\n/**\\n * Creates a new destination instance by merging a base destination with additional configuration.\\n *\\n * This utility enables elegant destination configuration while avoiding config side-effects\\n * that could occur when reusing destination objects across multiple collector instances.\\n *\\n * @param baseDestination - The base destination to extend\\n * @param config - Additional configuration to merge with the base destination's config\\n * @returns A new destination instance with merged configuration\\n *\\n * @example\\n * ```typescript\\n * // Types are inferred automatically from destinationGtag\\n * elb('walker destination', createDestination(destinationGtag, {\\n * settings: { ga4: { measurementId: 'G-123' } }\\n * }));\\n * ```\\n */\\ndeclare function createDestination<I extends Instance$1>(baseDestination: I, config: Partial<Config$4<TypesOf$1<I>>>): I;\\n\\n/**\\n * Creates a complete event with default values.\\n * Used for testing and debugging.\\n *\\n * @param props - Properties to override the default values.\\n * @returns A complete event.\\n */\\ndeclare function createEvent(props?: DeepPartialEvent): Event;\\n/**\\n * Creates a complete event with default values based on the event name.\\n * Used for testing and debugging.\\n *\\n * @param name - The name of the event to create.\\n * @param props - Properties to override the default values.\\n * @returns A complete event.\\n */\\ndeclare function getEvent(name?: string, props?: DeepPartialEvent): Event;\\n\\n/**\\n * Generates a random string of a given length.\\n *\\n * @param length - The length of the random string.\\n * @returns The random string.\\n */\\ndeclare function getId(length?: number): string;\\n\\ninterface MarketingParameters {\\n [key: string]: string;\\n}\\n/**\\n * Extracts marketing parameters from a URL.\\n *\\n * @param url - The URL to extract the parameters from.\\n * @param custom - Custom marketing parameters to extract.\\n * @returns The extracted marketing parameters.\\n */\\ndeclare function getMarketingParameters(url: URL, custom?: MarketingParameters): Properties;\\n\\n/**\\n * Creates a debounced function that delays invoking `fn` until after `wait`\\n * milliseconds have elapsed since the last time the debounced function was\\n * invoked. The debounced function comes with a `cancel` method to cancel\\n * delayed `fn` invocations and a `flush` method to immediately invoke them.\\n *\\n * @template P, R\\n * @param fn The function to debounce.\\n * @param wait The number of milliseconds to delay.\\n * @param immediate Trigger the function on the leading edge, instead of the trailing.\\n * @returns The new debounced function.\\n */\\ndeclare function debounce<P extends unknown[], R>(fn: (...args: P) => R, wait?: number, immediate?: boolean): (...args: P) => Promise<R>;\\ndeclare function throttle<P extends unknown[], R>(fn: (...args: P) => R | undefined, delay?: number): (...args: P) => R | undefined;\\n\\n/**\\n * Checks if a value is an arguments object.\\n *\\n * @param value The value to check.\\n * @returns True if the value is an arguments object, false otherwise.\\n */\\ndeclare function isArguments(value: unknown): value is IArguments;\\n/**\\n * Checks if a value is an array.\\n *\\n * @param value The value to check.\\n * @returns True if the value is an array, false otherwise.\\n */\\ndeclare function isArray<T>(value: unknown): value is T[];\\n/**\\n * Checks if a value is a boolean.\\n *\\n * @param value The value to check.\\n * @returns True if the value is a boolean, false otherwise.\\n */\\ndeclare function isBoolean(value: unknown): value is boolean;\\n/**\\n * Checks if an entity is a walker command.\\n *\\n * @param entity The entity to check.\\n * @returns True if the entity is a walker command, false otherwise.\\n */\\ndeclare function isCommand(entity: string): entity is \\\"walker\\\";\\n/**\\n * Checks if a value is defined.\\n *\\n * @param value The value to check.\\n * @returns True if the value is defined, false otherwise.\\n */\\ndeclare function isDefined<T>(val: T | undefined): val is T;\\n/**\\n * Checks if a value is an element or the document.\\n *\\n * @param elem The value to check.\\n * @returns True if the value is an element or the document, false otherwise.\\n */\\ndeclare function isElementOrDocument(elem: unknown): elem is Element;\\n/**\\n * Checks if a value is a function.\\n *\\n * @param value The value to check.\\n * @returns True if the value is a function, false otherwise.\\n */\\ndeclare function isFunction(value: unknown): value is Function;\\n/**\\n * Checks if a value is a number.\\n *\\n * @param value The value to check.\\n * @returns True if the value is a number, false otherwise.\\n */\\ndeclare function isNumber(value: unknown): value is number;\\n/**\\n * Checks if a value is an object.\\n *\\n * @param value The value to check.\\n * @returns True if the value is an object, false otherwise.\\n */\\ndeclare function isObject(value: unknown): value is AnyObject;\\n/**\\n * Checks if two variables have the same type.\\n *\\n * @param variable The first variable.\\n * @param type The second variable.\\n * @returns True if the variables have the same type, false otherwise.\\n */\\ndeclare function isSameType<T>(variable: unknown, type: T): variable is typeof type;\\n/**\\n * Checks if a value is a string.\\n *\\n * @param value The value to check.\\n * @returns True if the value is a string, false otherwise.\\n */\\ndeclare function isString(value: unknown): value is string;\\n\\n/**\\n * Gets the mapping for an event.\\n *\\n * @param event The event to get the mapping for (can be partial or full).\\n * @param mapping The mapping rules.\\n * @returns The mapping result.\\n */\\ndeclare function getMappingEvent(event: DeepPartialEvent | PartialEvent | Event, mapping?: Rules): Promise<Result>;\\n/**\\n * Gets a value from a mapping.\\n *\\n * @param value The value to get the mapping from.\\n * @param data The mapping data.\\n * @param options The mapping options.\\n * @returns The mapped value.\\n */\\ndeclare function getMappingValue(value: DeepPartialEvent | unknown | undefined, data?: Data, options?: Options$1): Promise<Property | undefined>;\\n/**\\n * Processes an event through mapping configuration.\\n *\\n * This is the unified mapping logic used by both sources and destinations.\\n * It applies transformations in this order:\\n * 1. Config-level policy - modifies the event itself (global rules)\\n * 2. Mapping rules - finds matching rule based on entity-action\\n * 3. Event-level policy - modifies the event based on specific mapping rule\\n * 4. Data transformation - creates context data\\n * 5. Ignore check and name override\\n *\\n * Sources can pass partial events, destinations pass full events.\\n * getMappingValue works with both partial and full events.\\n *\\n * @param event - The event to process (can be partial or full, will be mutated by policies)\\n * @param config - Mapping configuration (mapping, data, policy, consent)\\n * @param collector - Collector instance for context\\n * @returns Object with transformed event, data, mapping rule, and ignore flag\\n */\\ndeclare function processEventMapping<T extends DeepPartialEvent | Event>(event: T, config: Config$2, collector: Instance$2): Promise<{\\n event: T;\\n data?: Property;\\n mapping?: Rule;\\n mappingKey?: string;\\n ignore: boolean;\\n}>;\\n\\n/**\\n * Environment mocking utilities for walkerOS destinations\\n *\\n * Provides standardized tools for intercepting function calls in environment objects,\\n * enabling consistent testing patterns across all destinations.\\n */\\ntype InterceptorFn = (path: string[], args: unknown[], original?: Function) => unknown;\\n/**\\n * Creates a proxied environment that intercepts function calls\\n *\\n * Uses Proxy to wrap environment objects and capture all function calls,\\n * allowing for call recording, mocking, or simulation.\\n *\\n * @param env - The environment object to wrap\\n * @param interceptor - Function called for each intercepted call\\n * @returns Proxied environment with interceptor applied\\n *\\n * @example\\n * ```typescript\\n * const calls: Array<{ path: string[]; args: unknown[] }> = [];\\n *\\n * const testEnv = mockEnv(env.push, (path, args) => {\\n * calls.push({ path, args });\\n * });\\n *\\n * // Use testEnv with destination\\n * await destination.push(event, { env: testEnv });\\n *\\n * // Analyze captured calls\\n * expect(calls).toContainEqual({\\n * path: ['window', 'gtag'],\\n * args: ['event', 'purchase', { value: 99.99 }]\\n * });\\n * ```\\n */\\ndeclare function mockEnv<T extends object>(env: T, interceptor: InterceptorFn): T;\\n/**\\n * Traverses environment object and replaces values using a replacer function\\n *\\n * Alternative to mockEnv for environments where Proxy is not suitable.\\n * Performs deep traversal and allows value transformation at each level.\\n *\\n * @param env - The environment object to traverse\\n * @param replacer - Function to transform values during traversal\\n * @returns New environment object with transformed values\\n *\\n * @example\\n * ```typescript\\n * const recordedCalls: APICall[] = [];\\n *\\n * const recordingEnv = traverseEnv(originalEnv, (value, path) => {\\n * if (typeof value === 'function') {\\n * return (...args: unknown[]) => {\\n * recordedCalls.push({\\n * path: path.join('.'),\\n * args: structuredClone(args)\\n * });\\n * return value(...args);\\n * };\\n * }\\n * return value;\\n * });\\n * ```\\n */\\ndeclare function traverseEnv<T extends object>(env: T, replacer: (value: unknown, path: string[]) => unknown): T;\\n\\n/**\\n * Logs a message to the console if verbose logging is enabled.\\n *\\n * @param message The message to log.\\n * @param verbose Whether to log the message.\\n */\\ndeclare function onLog(message: unknown, verbose?: boolean): void;\\n\\n/**\\n * Checks if a value is a valid property type.\\n *\\n * @param value The value to check.\\n * @returns True if the value is a valid property type, false otherwise.\\n */\\ndeclare function isPropertyType(value: unknown): value is PropertyType;\\n/**\\n * Filters a value to only include valid property types.\\n *\\n * @param value The value to filter.\\n * @returns The filtered value or undefined.\\n */\\ndeclare function filterValues(value: unknown): Property | undefined;\\n/**\\n * Casts a value to a valid property type.\\n *\\n * @param value The value to cast.\\n * @returns The casted value or undefined.\\n */\\ndeclare function castToProperty(value: unknown): Property | undefined;\\n\\n/**\\n * Converts a request string to a data object.\\n *\\n * @param parameter The request string to convert.\\n * @returns The data object or undefined.\\n */\\ndeclare function requestToData(parameter: unknown): AnyObject | undefined;\\n/**\\n * Converts a data object to a request string.\\n *\\n * @param data The data object to convert.\\n * @returns The request string.\\n */\\ndeclare function requestToParameter(data: AnyObject | PropertyType): string;\\n\\n/**\\n * Transforms data to a string.\\n *\\n * @param data The data to transform.\\n * @returns The transformed data.\\n */\\ndeclare function transformData(data?: SendDataValue): string | undefined;\\n/**\\n * Gets the headers for a request.\\n *\\n * @param headers The headers to merge with the default headers.\\n * @returns The merged headers.\\n */\\ndeclare function getHeaders(headers?: SendHeaders): SendHeaders;\\n\\n/**\\n * Throws an error.\\n *\\n * @param error The error to throw.\\n */\\ndeclare function throwError(error: unknown): never;\\n\\n/**\\n * Trims quotes and whitespaces from a string.\\n *\\n * @param str The string to trim.\\n * @returns The trimmed string.\\n */\\ndeclare function trim(str: string): string;\\n\\n/**\\n * A utility function that wraps a function in a try-catch block.\\n *\\n * @template P, R, S\\n * @param fn The function to wrap.\\n * @param onError A function to call when an error is caught.\\n * @param onFinally A function to call in the finally block.\\n * @returns The wrapped function.\\n */\\ndeclare function tryCatch<P extends unknown[], R, S>(fn: (...args: P) => R | undefined, onError: (err: unknown) => S, onFinally?: () => void): (...args: P) => R | S;\\ndeclare function tryCatch<P extends unknown[], R>(fn: (...args: P) => R | undefined, onError?: undefined, onFinally?: () => void): (...args: P) => R | undefined;\\n/**\\n * A utility function that wraps an async function in a try-catch block.\\n *\\n * @template P, R, S\\n * @param fn The async function to wrap.\\n * @param onError A function to call when an error is caught.\\n * @param onFinally A function to call in the finally block.\\n * @returns The wrapped async function.\\n */\\ndeclare function tryCatchAsync<P extends unknown[], R, S>(fn: (...args: P) => R, onError: (err: unknown) => S, onFinally?: () => void | Promise<void>): (...args: P) => Promise<R | S>;\\ndeclare function tryCatchAsync<P extends unknown[], R>(fn: (...args: P) => R, onError?: undefined, onFinally?: () => void | Promise<void>): (...args: P) => Promise<R | undefined>;\\n\\n/**\\n * A utility function that wraps a function with hooks.\\n *\\n * @template P, R\\n * @param fn The function to wrap.\\n * @param name The name of the function.\\n * @param hooks The hooks to use.\\n * @returns The wrapped function.\\n */\\ndeclare function useHooks<P extends unknown[], R>(fn: (...args: P) => R, name: string, hooks: Functions): (...args: P) => R;\\n\\n/**\\n * Parses a user agent string to extract browser, OS, and device information.\\n *\\n * @param userAgent The user agent string to parse.\\n * @returns An object containing the parsed user agent information.\\n */\\ndeclare function parseUserAgent(userAgent?: string): User;\\n/**\\n * Gets the browser name from a user agent string.\\n *\\n * @param userAgent The user agent string.\\n * @returns The browser name or undefined.\\n */\\ndeclare function getBrowser(userAgent: string): string | undefined;\\n/**\\n * Gets the browser version from a user agent string.\\n *\\n * @param userAgent The user agent string.\\n * @returns The browser version or undefined.\\n */\\ndeclare function getBrowserVersion(userAgent: string): string | undefined;\\n/**\\n * Gets the OS name from a user agent string.\\n *\\n * @param userAgent The user agent string.\\n * @returns The OS name or undefined.\\n */\\ndeclare function getOS(userAgent: string): string | undefined;\\n/**\\n * Gets the OS version from a user agent string.\\n *\\n * @param userAgent The user agent string.\\n * @returns The OS version or undefined.\\n */\\ndeclare function getOSVersion(userAgent: string): string | undefined;\\n/**\\n * Gets the device type from a user agent string.\\n *\\n * @param userAgent The user agent string.\\n * @returns The device type or undefined.\\n */\\ndeclare function getDeviceType(userAgent: string): string | undefined;\\n\\n/**\\n * Validates an event against a set of contracts.\\n *\\n * @param obj The event to validate.\\n * @param customContracts The custom contracts to use.\\n * @returns The validated event.\\n */\\ndeclare function validateEvent(obj: unknown, customContracts?: Contracts): Event | never;\\n/**\\n * Validates a property against a schema.\\n *\\n * @param obj The object to validate.\\n * @param key The key of the property to validate.\\n * @param value The value of the property to validate.\\n * @param schema The schema to validate against.\\n * @returns The validated property.\\n */\\ndeclare function validateProperty(obj: AnyObject, key: string, value: unknown, schema: Property$1): Property | never;\\n\\nexport { BaseContextConfig, BatchConfig, collector$1 as Collector, collector as CollectorSchemas, ConsentSchema, Const, Counter, data as Data, DeepPartialEventSchema, destination$1 as Destination, destination as DestinationSchemas, DestinationsMapConfig, DisabledConfig, elb as Elb, EntitiesSchema, EntitySchema, EventSchema, flow as Flow, GenericEnvConfig, GenericSettingsConfig, handler as Handler, HandlersConfig, hooks as Hooks, IdConfig, Identifier, InitConfig, type JSONSchema, LoopSchema, MapSchema, mapping$1 as Mapping, ResultSchema$1 as MappingResultSchema, mapping as MappingSchemas, type MarketingParameters, on as On, OptionalPrimitiveValue, OrderedPropertiesSchema, PartialEventSchema, PolicySchema, PrimaryConfig, PrimitiveValue, ProcessingControlConfig, PropertiesSchema, type PropertyDef, PropertySchema, PropertyTypeSchema, QueueConfig, request as Request, RequiredBoolean, RequiredNumber, RequiredString, RuleSchema, RulesSchema, RuntimeInstanceConfig, schema as Schema, type SendDataValue, type SendHeaders, type SendResponse, SetSchema, source$1 as Source, SourceSchema, source as SourceSchemas, SourceTypeSchema, SourcesMapConfig, type StorageType, TaggingVersion, Timestamp, UserSchema, utilities as UtilitySchemas, ValueConfigSchema, ValueSchema, ValuesSchema, VerboseConfig, VersionSchema, walkeros$1 as WalkerOS, walkeros as WalkerOSSchemas, anonymizeIP, assign, castToProperty, castValue, clone, consentJsonSchema, createArraySchema, createConsentConfig, createDataTransformationConfig, createDestination, createEnumSchema, createEvent, createMappingRulesConfig, createObjectSchema, createPolicyConfig, createTupleSchema, debounce, entityJsonSchema, eventJsonSchema, filterValues, getBrowser, getBrowserVersion, getByPath, getDeviceType, getEvent, getGrantedConsent, getHeaders, getId, getMappingEvent, getMappingValue, getMarketingParameters, getOS, getOSVersion, isArguments, isArray, isBoolean, isCommand, isDefined, isElementOrDocument, isFunction, isNumber, isObject, isPropertyType, isSameType, isString, loopJsonSchema, mapJsonSchema, mockEnv, onLog, orderedPropertiesJsonSchema, parseUserAgent, partialEventJsonSchema, policyJsonSchema, processEventMapping, propertiesJsonSchema, requestToData, requestToParameter, ruleJsonSchema, rulesJsonSchema, setByPath, setJsonSchema, sourceTypeJsonSchema, throttle, throwError, transformData, traverseEnv, trim, tryCatch, tryCatchAsync, useHooks, userJsonSchema, validateEvent, validateProperty, valueConfigJsonSchema, valueJsonSchema, zodToSchema };\\n\"","/**\n * Monaco Editor TypeScript Type Management\n *\n * This utility manages TypeScript type definitions in Monaco Editor for:\n * 1. Static walkerOS core types (bundled at build time via Vite ?raw import)\n * 2. Dynamic destination types (loaded on-the-fly when destinations are added)\n * 3. Context-specific function signatures (condition, fn, validate)\n *\n * Architecture:\n * - Uses monaco.languages.typescript.typescriptDefaults.addExtraLib()\n * - Each type definition gets a unique file path (e.g., 'file:///destinations/gtag.d.ts')\n * - Types can be added/removed dynamically without page reload\n * - Core types are bundled for offline support and predictable versioning\n */\n\nimport type { Monaco } from '@monaco-editor/react';\nimport { getContextTypes } from './monaco-context-types';\n\n// This import will be replaced by tsup plugin with actual TypeScript content\nimport walkerosCoreTypesBundled from 'virtual:walkeros-core-types';\n\n/**\n * Type library entry - tracks loaded type definitions\n */\ninterface TypeLibrary {\n uri: string; // Unique identifier (e.g., 'file:///walkeros-core.d.ts')\n content: string; // TypeScript definition content\n disposable?: { dispose: () => void }; // Monaco disposable for cleanup\n}\n\n/**\n * Registry of loaded type libraries\n */\nconst typeLibraries = new Map<string, TypeLibrary>();\n\n/**\n * Configuration for TypeScript compiler options\n */\nexport function configureMonacoTypeScript(monaco: Monaco) {\n monaco.languages.typescript.javascriptDefaults.setCompilerOptions({\n target: monaco.languages.typescript.ScriptTarget.ES2020,\n lib: ['es2020'],\n allowNonTsExtensions: true,\n moduleResolution: monaco.languages.typescript.ModuleResolutionKind.NodeJs,\n module: monaco.languages.typescript.ModuleKind.CommonJS,\n noEmit: true,\n esModuleInterop: true,\n jsx: monaco.languages.typescript.JsxEmit.React,\n allowJs: true,\n checkJs: false,\n strict: false,\n noImplicitAny: false,\n strictNullChecks: false,\n });\n\n monaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\n noSemanticValidation: false,\n noSyntaxValidation: false,\n diagnosticCodesToIgnore: [\n 1108,\n 1005,\n ],\n });\n\n monaco.languages.typescript.typescriptDefaults.setCompilerOptions({\n target: monaco.languages.typescript.ScriptTarget.ES2020,\n lib: ['es2020'],\n allowNonTsExtensions: true,\n moduleResolution: monaco.languages.typescript.ModuleResolutionKind.NodeJs,\n module: monaco.languages.typescript.ModuleKind.CommonJS,\n noEmit: true,\n esModuleInterop: true,\n jsx: monaco.languages.typescript.JsxEmit.React,\n strict: false,\n });\n}\n\n/**\n * Add a type library from a string\n *\n * @param monaco - Monaco instance\n * @param uri - Unique identifier (e.g., 'file:///destinations/gtag.d.ts')\n * @param content - TypeScript definition content\n * @returns True if added, false if already exists\n */\nexport function addTypeLibrary(\n monaco: Monaco,\n uri: string,\n content: string,\n): boolean {\n // Check if already loaded\n if (typeLibraries.has(uri)) {\n return false;\n }\n\n // Add to both JavaScript and TypeScript language services\n // This ensures types work whether the editor is in JS or TS mode\n const jsDisposable = monaco.languages.typescript.javascriptDefaults.addExtraLib(\n content,\n uri,\n );\n\n const tsDisposable = monaco.languages.typescript.typescriptDefaults.addExtraLib(\n content,\n uri,\n );\n\n // Track in registry (store both disposables)\n typeLibraries.set(uri, {\n uri,\n content,\n disposable: {\n dispose: () => {\n jsDisposable.dispose();\n tsDisposable.dispose();\n }\n },\n });\n\n return true;\n}\n\n/**\n * Remove a type library\n *\n * @param uri - URI to remove\n * @returns True if removed, false if not found\n */\nexport function removeTypeLibrary(uri: string): boolean {\n const lib = typeLibraries.get(uri);\n if (!lib) {\n return false;\n }\n\n // Dispose Monaco resource\n lib.disposable?.dispose();\n\n // Remove from registry\n typeLibraries.delete(uri);\n\n return true;\n}\n\n/**\n * Update a type library (remove + add)\n *\n * @param monaco - Monaco instance\n * @param uri - URI to update\n * @param content - New content\n */\nexport function updateTypeLibrary(\n monaco: Monaco,\n uri: string,\n content: string,\n) {\n removeTypeLibrary(uri);\n addTypeLibrary(monaco, uri, content);\n}\n\n/**\n * Load type definitions from a URL\n *\n * @param monaco - Monaco instance\n * @param url - URL to .d.ts file\n * @param uri - Optional custom URI (defaults to URL)\n */\nexport async function loadTypeLibraryFromURL(\n monaco: Monaco,\n url: string,\n uri?: string,\n): Promise<boolean> {\n try {\n const response = await fetch(url);\n if (!response.ok) {\n return false;\n }\n\n const content = await response.text();\n const typeUri = uri || `file:///${url}`;\n\n return addTypeLibrary(monaco, typeUri, content);\n } catch {\n return false;\n }\n}\n\n/**\n * Options for loading package types dynamically\n */\nexport interface LoadPackageTypesOptions {\n /** Package name (e.g., '@walkeros/destination-gtag') */\n package: string;\n /** Version to load (e.g., '0.1.0', 'latest') */\n version?: string;\n /** CDN to use ('unpkg' or 'jsdelivr') */\n cdn?: 'unpkg' | 'jsdelivr';\n /** Path to .d.ts file within package (defaults to '/dist/index.d.ts') */\n typesPath?: string;\n}\n\n/**\n * Strip problematic imports from type definition content\n *\n * Removes import statements that Monaco can't resolve, while preserving:\n * - Type declarations\n * - Export statements\n * - Re-export statements (export * from / export { } from)\n *\n * Uses multiple strategies for robustness:\n * 1. Simple single-line imports (fast path)\n * 2. Multi-line imports (comprehensive)\n * 3. Import type assertions\n *\n * Does NOT remove:\n * - export { } from 'module' (re-exports)\n * - export * from 'module' (re-exports)\n * - Triple-slash directives (/// <reference types=\"...\" />)\n *\n * @param content - Raw .d.ts file content\n * @returns Cleaned content safe for Monaco\n */\nfunction stripExternalImports(content: string): string {\n // Strategy 1: Remove simple single-line imports\n // Matches: import ... from '...';\n // Handles: import type, import *, import { }, default imports\n let cleaned = content.replace(\n /^import\\s+(?:type\\s+)?(?:\\*\\s+as\\s+\\w+|\\{[^}]*\\}|[\\w$]+)(?:\\s*,\\s*(?:\\{[^}]*\\}|\\*\\s+as\\s+\\w+))?\\s+from\\s+['\"][^'\"]+['\"];?\\s*$/gm,\n ''\n );\n\n // Strategy 2: Remove multi-line imports (more aggressive)\n // Matches imports that span multiple lines\n cleaned = cleaned.replace(\n /^import\\s+(?:type\\s+)?(?:\\{[^}]*\\}|\\*\\s+as\\s+\\w+|[\\w$]+)\\s+from\\s+['\"][^'\"]+['\"];?\\s*$/gms,\n ''\n );\n\n // Strategy 3: Remove import type assertions\n // Matches: import('module')\n cleaned = cleaned.replace(\n /import\\s*\\(\\s*['\"][^'\"]+['\"]\\s*\\)/g,\n 'any'\n );\n\n // Clean up excessive blank lines (more than 2 consecutive)\n cleaned = cleaned.replace(/\\n{3,}/g, '\\n\\n');\n\n return cleaned;\n}\n\nexport interface LoadPackageTypesOptions {\n package: string;\n version?: string;\n}\n\nexport async function loadPackageTypes(\n monaco: Monaco,\n options: LoadPackageTypesOptions,\n): Promise<boolean> {\n const { package: packageName, version = 'latest' } = options;\n const uri = `file:///node_modules/${packageName}/index.d.ts`;\n\n if (typeLibraries.has(uri)) {\n return true;\n }\n\n const url = `https://cdn.jsdelivr.net/npm/${packageName}@${version}/dist/index.d.ts`;\n\n try {\n const response = await fetch(url);\n if (!response.ok) {\n console.warn(`Failed to load types for ${packageName}@${version}: ${response.status}`);\n return false;\n }\n\n let content = await response.text();\n content = stripExternalImports(content);\n\n const moduleContent = `declare module '${packageName}' {\\n${content}\\n}`;\n const success = addTypeLibrary(monaco, uri, moduleContent);\n\n return success;\n } catch (error) {\n console.error(`Error loading types for ${packageName}:`, error);\n return false;\n }\n}\n\n/**\n * Load walkerOS core types (bundled at build time)\n *\n * Uses bundled types imported via Vite's ?raw import.\n * This ensures types are always available offline and match the installed version.\n */\nexport function loadWalkerOSCoreTypes(monaco: Monaco): boolean {\n const uri = 'file:///node_modules/@walkeros/core/index.d.ts';\n\n // Check if already loaded\n if (typeLibraries.has(uri)) {\n return true;\n }\n\n // Clean the types using the same robust stripping function\n const cleanedTypes = stripExternalImports(walkerosCoreTypesBundled);\n\n // Wrap in module declaration\n const moduleContent = `declare module '@walkeros/core' {\n${cleanedTypes}\n}`;\n\n return addTypeLibrary(monaco, uri, moduleContent);\n}\n\n/**\n * Minimal fallback types if we can't load from node_modules\n */\nfunction getMinimalWalkerOSTypes(): string {\n return `\ndeclare namespace WalkerOS {\n export interface Event {\n entity: string;\n action: string;\n data?: Record<string, unknown>;\n context?: Record<string, unknown>;\n user?: {\n id?: string;\n device?: string;\n session?: string;\n [key: string]: unknown;\n };\n nested?: unknown[];\n consent?: Record<string, boolean>;\n id?: string;\n trigger?: string;\n timestamp?: number;\n timing?: number;\n count?: number;\n version?: {\n client?: string;\n tagging?: number;\n };\n }\n\n export interface Properties {\n [key: string]: unknown;\n }\n\n export interface Mapping {\n [key: string]: unknown;\n }\n\n export interface Collector {\n push: (event: Partial<Event>) => Promise<unknown>;\n [key: string]: unknown;\n }\n\n export namespace Destination {\n export interface Config<T = unknown> {\n id?: string;\n mapping?: Mapping;\n custom?: T;\n [key: string]: unknown;\n }\n }\n}\n`;\n}\n\n/**\n * Type of function context (fn, condition, validate)\n */\nexport type FunctionType = 'condition' | 'fn' | 'validate';\n\n/**\n * Add context-specific globals for function editors\n *\n * Provides type definitions for inline function parameters without imports.\n * Supports three function types:\n * - fn: Transform functions (value, mapping, options) => Property\n * - condition: Condition functions (value, mapping, collector) => boolean\n * - validate: Validation functions (value) => boolean\n */\nexport interface FunctionContext {\n type: FunctionType;\n valueType?: string; // Optional: Custom type for 'value' parameter\n}\n\nexport function addFunctionContextTypes(\n monaco: Monaco,\n context: FunctionContext,\n) {\n const uri = `file:///context/${context.type}.d.ts`;\n\n // Use hand-crafted type templates from monaco-context-types\n const contextTypes = getContextTypes(context.type);\n\n // Update or add\n updateTypeLibrary(monaco, uri, contextTypes);\n}\n\n/**\n * Add destination-specific types dynamically\n *\n * @param monaco - Monaco instance\n * @param destinationId - Unique destination identifier (e.g., 'gtag', 'fbq')\n * @param typeDefinition - TypeScript definition for destination's custom config/event\n *\n * @example\n * ```typescript\n * addDestinationType(monaco, 'gtag', `\n * declare namespace Gtag {\n * interface Settings {\n * measurementId: string;\n * sendPageView?: boolean;\n * }\n *\n * interface EventParams {\n * event_category?: string;\n * event_label?: string;\n * value?: number;\n * }\n * }\n *\n * // Extend WalkerOS namespace\n * declare namespace WalkerOS {\n * namespace Destination {\n * interface ConfigMap {\n * gtag: Gtag.Settings;\n * }\n * }\n * }\n * `);\n * ```\n */\nexport function addDestinationType(\n monaco: Monaco,\n destinationId: string,\n typeDefinition: string,\n) {\n const uri = `file:///destinations/${destinationId}.d.ts`;\n updateTypeLibrary(monaco, uri, typeDefinition);\n}\n\n/**\n * Remove destination types when destination is removed\n */\nexport function removeDestinationType(destinationId: string) {\n const uri = `file:///destinations/${destinationId}.d.ts`;\n removeTypeLibrary(uri);\n}\n\n/**\n * Simple helper to register only walkerOS core types\n *\n * Use this for basic scenarios where you just need @walkeros/core types.\n * For advanced usage (destinations, function contexts), use initializeMonacoTypes.\n *\n * @param monaco - Monaco editor instance\n *\n * @example\n * ```typescript\n * const handleBeforeMount = (monaco: Monaco) => {\n * registerWalkerOSTypes(monaco);\n * };\n * ```\n */\nexport function registerWalkerOSTypes(monaco: Monaco): void {\n configureMonacoTypeScript(monaco);\n loadWalkerOSCoreTypes(monaco);\n}\n\n/**\n * Initialize Monaco with walkerOS types (full setup)\n *\n * Call this once in CodeBox's beforeMount handler.\n * Includes core types, TypeScript config, and default function context.\n *\n * @param monaco - Monaco editor instance\n *\n * @example\n * ```typescript\n * const handleBeforeMount = (monaco: Monaco) => {\n * initializeMonacoTypes(monaco);\n * };\n * ```\n */\nexport function initializeMonacoTypes(monaco: Monaco): void {\n // Configure compiler\n configureMonacoTypeScript(monaco);\n\n // Load core types (now synchronous with bundled types)\n loadWalkerOSCoreTypes(monaco);\n\n // Add default function context (condition)\n addFunctionContextTypes(monaco, { type: 'condition' });\n}\n\n/**\n * Get all loaded type libraries (for debugging)\n */\nexport function getLoadedTypeLibraries(): string[] {\n return Array.from(typeLibraries.keys());\n}\n\n/**\n * Clear all type libraries (for testing)\n */\nexport function clearAllTypeLibraries() {\n for (const [uri, lib] of typeLibraries.entries()) {\n lib.disposable?.dispose();\n }\n typeLibraries.clear();\n}\n"],"mappings":";;;AAkBO,IAAM,mBAAmB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AA2LzB,IAAM,0BAA0B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AA4MhC,IAAM,yBAAyB;AAAA;AAAA;AAAA;AAQ/B,SAAS,gBAAgB,aAAsD;AACpF,UAAQ,aAAa;AAAA,IACnB,KAAK;AACH,aAAO;AAAA,IACT,KAAK;AACH,aAAO;AAAA,IACT,KAAK;AACH,aAAO;AAAA,IACT;AACE,aAAO;AAAA,EACX;AACF;;;AC5aA,IAAO,sCAAQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACiCf,IAAM,gBAAgB,oBAAI,IAAyB;AAK5C,SAAS,0BAA0B,QAAgB;AACxD,SAAO,UAAU,WAAW,mBAAmB,mBAAmB;AAAA,IAChE,QAAQ,OAAO,UAAU,WAAW,aAAa;AAAA,IACjD,KAAK,CAAC,QAAQ;AAAA,IACd,sBAAsB;AAAA,IACtB,kBAAkB,OAAO,UAAU,WAAW,qBAAqB;AAAA,IACnE,QAAQ,OAAO,UAAU,WAAW,WAAW;AAAA,IAC/C,QAAQ;AAAA,IACR,iBAAiB;AAAA,IACjB,KAAK,OAAO,UAAU,WAAW,QAAQ;AAAA,IACzC,SAAS;AAAA,IACT,SAAS;AAAA,IACT,QAAQ;AAAA,IACR,eAAe;AAAA,IACf,kBAAkB;AAAA,EACpB,CAAC;AAED,SAAO,UAAU,WAAW,mBAAmB,sBAAsB;AAAA,IACnE,sBAAsB;AAAA,IACtB,oBAAoB;AAAA,IACpB,yBAAyB;AAAA,MACvB;AAAA,MACA;AAAA,IACF;AAAA,EACF,CAAC;AAED,SAAO,UAAU,WAAW,mBAAmB,mBAAmB;AAAA,IAChE,QAAQ,OAAO,UAAU,WAAW,aAAa;AAAA,IACjD,KAAK,CAAC,QAAQ;AAAA,IACd,sBAAsB;AAAA,IACtB,kBAAkB,OAAO,UAAU,WAAW,qBAAqB;AAAA,IACnE,QAAQ,OAAO,UAAU,WAAW,WAAW;AAAA,IAC/C,QAAQ;AAAA,IACR,iBAAiB;AAAA,IACjB,KAAK,OAAO,UAAU,WAAW,QAAQ;AAAA,IACzC,QAAQ;AAAA,EACV,CAAC;AACH;AAUO,SAAS,eACd,QACA,KACA,SACS;AAET,MAAI,cAAc,IAAI,GAAG,GAAG;AAC1B,WAAO;AAAA,EACT;AAIA,QAAM,eAAe,OAAO,UAAU,WAAW,mBAAmB;AAAA,IAClE;AAAA,IACA;AAAA,EACF;AAEA,QAAM,eAAe,OAAO,UAAU,WAAW,mBAAmB;AAAA,IAClE;AAAA,IACA;AAAA,EACF;AAGA,gBAAc,IAAI,KAAK;AAAA,IACrB;AAAA,IACA;AAAA,IACA,YAAY;AAAA,MACV,SAAS,MAAM;AACb,qBAAa,QAAQ;AACrB,qBAAa,QAAQ;AAAA,MACvB;AAAA,IACF;AAAA,EACF,CAAC;AAED,SAAO;AACT;AAQO,SAAS,kBAAkB,KAAsB;AACtD,QAAM,MAAM,cAAc,IAAI,GAAG;AACjC,MAAI,CAAC,KAAK;AACR,WAAO;AAAA,EACT;AAGA,MAAI,YAAY,QAAQ;AAGxB,gBAAc,OAAO,GAAG;AAExB,SAAO;AACT;AASO,SAAS,kBACd,QACA,KACA,SACA;AACA,oBAAkB,GAAG;AACrB,iBAAe,QAAQ,KAAK,OAAO;AACrC;AASA,eAAsB,uBACpB,QACA,KACA,KACkB;AAClB,MAAI;AACF,UAAM,WAAW,MAAM,MAAM,GAAG;AAChC,QAAI,CAAC,SAAS,IAAI;AAChB,aAAO;AAAA,IACT;AAEA,UAAM,UAAU,MAAM,SAAS,KAAK;AACpC,UAAM,UAAU,OAAO,WAAW,GAAG;AAErC,WAAO,eAAe,QAAQ,SAAS,OAAO;AAAA,EAChD,QAAQ;AACN,WAAO;AAAA,EACT;AACF;AAqCA,SAAS,qBAAqB,SAAyB;AAIrD,MAAI,UAAU,QAAQ;AAAA,IACpB;AAAA,IACA;AAAA,EACF;AAIA,YAAU,QAAQ;AAAA,IAChB;AAAA,IACA;AAAA,EACF;AAIA,YAAU,QAAQ;AAAA,IAChB;AAAA,IACA;AAAA,EACF;AAGA,YAAU,QAAQ,QAAQ,WAAW,MAAM;AAE3C,SAAO;AACT;AAOA,eAAsB,iBACpB,QACA,SACkB;AAClB,QAAM,EAAE,SAAS,aAAa,UAAU,SAAS,IAAI;AACrD,QAAM,MAAM,wBAAwB,WAAW;AAE/C,MAAI,cAAc,IAAI,GAAG,GAAG;AAC1B,WAAO;AAAA,EACT;AAEA,QAAM,MAAM,gCAAgC,WAAW,IAAI,OAAO;AAElE,MAAI;AACF,UAAM,WAAW,MAAM,MAAM,GAAG;AAChC,QAAI,CAAC,SAAS,IAAI;AAChB,cAAQ,KAAK,4BAA4B,WAAW,IAAI,OAAO,KAAK,SAAS,MAAM,EAAE;AACrF,aAAO;AAAA,IACT;AAEA,QAAI,UAAU,MAAM,SAAS,KAAK;AAClC,cAAU,qBAAqB,OAAO;AAEtC,UAAM,gBAAgB,mBAAmB,WAAW;AAAA,EAAQ,OAAO;AAAA;AACnE,UAAM,UAAU,eAAe,QAAQ,KAAK,aAAa;AAEzD,WAAO;AAAA,EACT,SAAS,OAAO;AACd,YAAQ,MAAM,2BAA2B,WAAW,KAAK,KAAK;AAC9D,WAAO;AAAA,EACT;AACF;AAQO,SAAS,sBAAsB,QAAyB;AAC7D,QAAM,MAAM;AAGZ,MAAI,cAAc,IAAI,GAAG,GAAG;AAC1B,WAAO;AAAA,EACT;AAGA,QAAM,eAAe,qBAAqB,mCAAwB;AAGlE,QAAM,gBAAgB;AAAA,EACtB,YAAY;AAAA;AAGZ,SAAO,eAAe,QAAQ,KAAK,aAAa;AAClD;AA4EO,SAAS,wBACd,QACA,SACA;AACA,QAAM,MAAM,mBAAmB,QAAQ,IAAI;AAG3C,QAAM,eAAe,gBAAgB,QAAQ,IAAI;AAGjD,oBAAkB,QAAQ,KAAK,YAAY;AAC7C;AAoCO,SAAS,mBACd,QACA,eACA,gBACA;AACA,QAAM,MAAM,wBAAwB,aAAa;AACjD,oBAAkB,QAAQ,KAAK,cAAc;AAC/C;AAKO,SAAS,sBAAsB,eAAuB;AAC3D,QAAM,MAAM,wBAAwB,aAAa;AACjD,oBAAkB,GAAG;AACvB;AAiBO,SAAS,sBAAsB,QAAsB;AAC1D,4BAA0B,MAAM;AAChC,wBAAsB,MAAM;AAC9B;AAiBO,SAAS,sBAAsB,QAAsB;AAE1D,4BAA0B,MAAM;AAGhC,wBAAsB,MAAM;AAG5B,0BAAwB,QAAQ,EAAE,MAAM,YAAY,CAAC;AACvD;AAKO,SAAS,yBAAmC;AACjD,SAAO,MAAM,KAAK,cAAc,KAAK,CAAC;AACxC;AAKO,SAAS,wBAAwB;AACtC,aAAW,CAAC,KAAK,GAAG,KAAK,cAAc,QAAQ,GAAG;AAChD,QAAI,YAAY,QAAQ;AAAA,EAC1B;AACA,gBAAc,MAAM;AACtB;","names":[]}