[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-posthog-posthog-debugger":3,"mdc--ybi9qb-key":37,"related-org-posthog-posthog-debugger":11399,"related-repo-posthog-posthog-debugger":11566},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"posthog-debugger","debug PostHog website implementations","Debug and inspect PostHog implementations on any website. Use this skill when a user wants to understand how PostHog is implemented on a page, troubleshoot tracking issues, verify configuration, check what events are being sent, or audit a PostHog setup. Works with Chrome DevTools MCP and Playwright MCP to inspect live websites.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"posthog","PostHog","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fposthog.png",[12,16,17,20,23],{"name":13,"slug":14,"type":15},"Observability","observability","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Web Development","web-development",{"name":21,"slug":22,"type":15},"Frontend","frontend",{"name":24,"slug":25,"type":15},"Debugging","debugging",56,"https:\u002F\u002Fgithub.com\u002FPostHog\u002Fskills","2026-04-06T18:46:38.460242",null,4,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"PostHog skills (under construction)","https:\u002F\u002Fgithub.com\u002FPostHog\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fteam\u002Fcustomer-success\u002Fposthog-debugger","---\nname: posthog-debugger\ndescription: Debug and inspect PostHog implementations on any website. Use this skill when a user wants to understand how PostHog is implemented on a page, troubleshoot tracking issues, verify configuration, check what events are being sent, or audit a PostHog setup. Works with Chrome DevTools MCP and Playwright MCP to inspect live websites.\n---\n\n# PostHog Debugger\n\nInspect and debug PostHog implementations on any website using browser automation tools. This skill helps developers and product teams understand exactly how PostHog is configured and what data is being captured.\n\n## Critical Rules\n\n1. **Always ask for the URL first** if not provided.\n2. **Always ask if the page requires login.** If yes, guide the user to log in via Chrome first.\n3. **Use browser tools to navigate and inspect.** Prefer Chrome DevTools MCP (`mcp__chrome-devtools__*`) or Playwright MCP (`mcp__playwright__*`) tools.\n4. **Check multiple signals.** PostHog can be implemented in various ways - check scripts, network requests, and the window object.\n5. **Report findings clearly.** Summarize what you find in a structured format.\n6. **Never modify anything.** This is read-only inspection.\n\n## Initial Flow\n\nWhen a user asks to inspect a PostHog implementation:\n\n1. **Get the URL** (if not provided)\n2. **Navigate to the URL** with `?__posthog_debug=true` appended\n3. **Check if login is required** by taking a snapshot and looking for login indicators\n4. **If login required**, ask the user to authenticate in the browser\n5. **Once authenticated**, proceed with inspection\n\n## Detecting Login Pages\n\nAfter navigating, take a snapshot and look for login indicators:\n- Page title contains \"login\", \"sign in\", \"authenticate\"\n- URL contains \"login\", \"signin\", \"auth\", \"sso\"\n- Page has username\u002Fpassword fields\n- Page shows \"Sign in with Google\u002FGitHub\u002Fetc.\" buttons\n\n## Authenticated Pages Workflow\n\nIf you detect a login page or the user mentions the page requires auth:\n\n1. **Keep the browser open** - you've already navigated there\n2. **Ask the user to log in:**\n   ```\n   \"This page requires authentication. Please log in using the Chrome browser I just opened. Let me know when you're logged in and on the page you want to inspect.\"\n   ```\n\n3. **Once the user confirms**, take a new snapshot to verify they're authenticated\n\n4. **Add the debug parameter** if not already present and reload if needed\n\n5. **Proceed with inspection**\n\n## Available Browser Tools\n\n### Chrome DevTools MCP\n- `mcp__chrome-devtools__navigate_page` - Navigate to URL\n- `mcp__chrome-devtools__take_snapshot` - Get page accessibility tree\n- `mcp__chrome-devtools__evaluate_script` - Run JavaScript to inspect PostHog\n- `mcp__chrome-devtools__list_network_requests` - See network traffic\n- `mcp__chrome-devtools__get_network_request` - Get request details\n- `mcp__chrome-devtools__list_console_messages` - Check for errors\n\n### Playwright MCP\n- `mcp__playwright__browser_navigate` - Navigate to URL\n- `mcp__playwright__browser_snapshot` - Get page snapshot\n- `mcp__playwright__browser_evaluate` - Run JavaScript\n- `mcp__playwright__browser_network_requests` - See network traffic\n- `mcp__playwright__browser_console_messages` - Check console\n\n## Inspection Workflow\n\n### Step 1: Navigate to the Page with Debug Mode\n\n**Always add `?__posthog_debug=true`** to the URL to enable PostHog's debug mode. This outputs detailed logs to the console.\n\n- If URL has no query string: `https:\u002F\u002Fexample.com?__posthog_debug=true`\n- If URL already has query string: `https:\u002F\u002Fexample.com?foo=bar&__posthog_debug=true`\n\n**Workflow:**\n\n1. **Navigate to the URL** with the debug parameter\n2. **Take a snapshot** to see what loaded\n3. **Check for login page indicators:**\n   - URL redirected to `\u002Flogin`, `\u002Fsignin`, `\u002Fauth`, `\u002Fsso`\n   - Page title contains \"log in\", \"sign in\"\n   - Page has login form fields\n4. **If login detected:**\n   - Tell the user: \"I've opened the page but it requires login. Please log in using Chrome, then let me know when you're ready.\"\n   - Wait for user confirmation\n   - Take a new snapshot to verify authentication\n   - Add debug parameter to the new URL if needed\n5. **If no login needed:** Proceed with inspection\n\n### Step 2: Check PostHog Global Object\n\nExecute JavaScript to inspect the `posthog` object on the window:\n\n```javascript\n(() => {\n  if (typeof posthog === 'undefined') {\n    return { installed: false };\n  }\n\n  const ph = posthog;\n  return {\n    installed: true,\n    version: ph.version || ph.LIB_VERSION || 'unknown',\n    config: {\n      token: ph.config?.token || ph.get_config?.('token') || 'not accessible',\n      apiHost: ph.config?.api_host || ph.get_config?.('api_host') || 'not accessible',\n      autocapture: ph.config?.autocapture ?? ph.get_config?.('autocapture') ?? 'not accessible',\n      capturePageview: ph.config?.capture_pageview ?? ph.get_config?.('capture_pageview') ?? 'not accessible',\n      capturePageleave: ph.config?.capture_pageleave ?? ph.get_config?.('capture_pageleave') ?? 'not accessible',\n      sessionRecording: ph.config?.enable_recording_console_log !== undefined ||\n                        ph.sessionRecording?.started ||\n                        'check network',\n      persistence: ph.config?.persistence || ph.get_config?.('persistence') || 'not accessible',\n      debug: ph.config?.debug ?? ph.get_config?.('debug') ?? false\n    },\n    distinctId: ph.get_distinct_id?.() || 'not accessible',\n    sessionId: ph.get_session_id?.() || 'not accessible',\n    featureFlags: ph.getFeatureFlag ? Object.keys(ph.featureFlags?.flags || {}) : [],\n    activeFeatureFlags: ph.getFeatureFlag ?\n      Object.entries(ph.featureFlags?.flags || {})\n        .filter(([_, v]) => v)\n        .map(([k]) => k) : []\n  };\n})()\n```\n\n### Step 2b: Check for Bundled PostHog (Remote Config)\n\nIf `posthog` is not on `window`, check for bundled implementations that use `_POSTHOG_REMOTE_CONFIG`:\n\n```javascript\n(() => {\n  const remoteConfig = window._POSTHOG_REMOTE_CONFIG;\n  if (!remoteConfig) {\n    return { found: false };\n  }\n\n  const tokens = Object.keys(remoteConfig);\n  const configs = tokens.map(token => {\n    const cfg = remoteConfig[token]?.config || {};\n    return {\n      token,\n      hasFeatureFlags: cfg.hasFeatureFlags || false,\n      autocapture: !cfg.autocapture_opt_out,\n      sessionRecording: cfg.sessionRecording || false,\n      heatmaps: cfg.heatmaps || false,\n      surveys: cfg.surveys || false,\n      capturePerformance: cfg.capturePerformance || {},\n      defaultIdentifiedOnly: cfg.defaultIdentifiedOnly || false\n    };\n  });\n\n  return {\n    found: true,\n    bundled: true,\n    configs\n  };\n})()\n```\n\n### Step 2c: Check Console for PostHog Debug Messages\n\nWith `?__posthog_debug=true`, PostHog outputs detailed logs. Use `list_console_messages` and look for `[PostHog.js]` entries:\n\n**Key messages to look for:**\n- `[PostHog.js] Persistence loaded` - Shows persistence type (localStorage, sessionStorage, cookie)\n- `[PostHog.js] [Surveys] Surveys loaded successfully` - Surveys module loaded\n- `[PostHog.js] [Surveys] flags response received, isSurveysEnabled: X` - Whether surveys are enabled\n- `[PostHog.js] [SessionRecording]` - Session recording status\n- `[PostHog.js] [WebExperiments]` - Web experiments\u002Ffeature flags\n- `[PostHog.js] set_config` - Configuration changes\n\n**Important distinction:**\n- **Module loaded** = The JavaScript file loaded successfully\n- **Feature enabled** = The feature is turned on in PostHog settings\n\nA module can load but still be disabled. For example:\n```\n[PostHog.js] [Surveys] Surveys loaded successfully  \u003C- Module loaded\n[PostHog.js] [Surveys] flags response received, isSurveysEnabled: false  \u003C- Feature disabled\n```\n\n### Step 3: Check for PostHog Script\n\nLook for PostHog scripts in the page:\n\n```javascript\n(() => {\n  const scripts = Array.from(document.querySelectorAll('script'));\n  const posthogScripts = scripts.filter(s =>\n    (s.src && (s.src.includes('posthog') || s.src.includes('ph.js'))) ||\n    (s.textContent && (s.textContent.includes('posthog.init') || s.textContent.includes('!function(t,e)')))\n  );\n\n  return {\n    found: posthogScripts.length > 0,\n    scripts: posthogScripts.map(s => ({\n      src: s.src || 'inline',\n      async: s.async,\n      defer: s.defer,\n      type: s.type || 'text\u002Fjavascript'\n    }))\n  };\n})()\n```\n\n### Step 4: Check Network Requests\n\nFilter network requests to find PostHog traffic. PostHog may use:\n\n**Standard domains:**\n- `*.posthog.com`\n- `us.i.posthog.com` \u002F `eu.i.posthog.com`\n- `us-assets.i.posthog.com` \u002F `eu-assets.i.posthog.com`\n\n**Custom proxy domains** (common patterns):\n- `ph.yourcompany.com`\n- `analytics.yourcompany.com`\n- `t.yourcompany.com`\n- Any domain with `\u002Farray\u002Fphc_` in the path (PostHog config)\n\n**Endpoints to look for:**\n- `\u002Fe\u002F` or `\u002Fcapture\u002F` - Events\n- `\u002Fs\u002F` - Session recording\n- `\u002Fdecide\u002F` or `\u002Fflags\u002F` - Feature flags\n- `\u002Fbatch\u002F` - Batched events\n- `\u002Farray\u002Fphc_*\u002Fconfig.js` - Remote config (bundled implementations)\n- `\u002Fstatic\u002Fsurveys.js` - Surveys module\n- `\u002Fstatic\u002Frecorder.js` - Session recording module\n\n**How to identify a custom proxy:**\n1. Look for requests with PostHog-specific paths (`\u002Fflags\u002F`, `\u002Farray\u002Fphc_`)\n2. Check network request details for PostHog headers\n3. Look for `phc_` tokens in request URLs or bodies\n\n### Step 5: Check for Common Issues\n\nRun diagnostics:\n\n```javascript\n(() => {\n  const issues = [];\n\n  \u002F\u002F Check if posthog exists\n  if (typeof posthog === 'undefined') {\n    issues.push('PostHog not found on window object');\n    return { issues };\n  }\n\n  \u002F\u002F Check for multiple instances\n  if (window.__POSTHOG_INSTANCES__ && window.__POSTHOG_INSTANCES__.length > 1) {\n    issues.push('Multiple PostHog instances detected - may cause duplicate events');\n  }\n\n  \u002F\u002F Check if initialized\n  if (!posthog.get_distinct_id || !posthog.get_distinct_id()) {\n    issues.push('PostHog may not be fully initialized');\n  }\n\n  \u002F\u002F Check consent mode\n  if (posthog.has_opted_out_capturing && posthog.has_opted_out_capturing()) {\n    issues.push('User has opted out of tracking');\n  }\n\n  \u002F\u002F Check for debug mode in production\n  const isDebug = posthog.config?.debug || posthog.get_config?.('debug');\n  const hostname = window.location.hostname;\n  if (isDebug && !hostname.includes('localhost') && !hostname.includes('127.0.0.1')) {\n    issues.push('Debug mode is enabled in production');\n  }\n\n  \u002F\u002F Check autocapture\n  const autocapture = posthog.config?.autocapture ?? posthog.get_config?.('autocapture');\n  if (autocapture === false) {\n    issues.push('Autocapture is disabled - only manual events will be tracked');\n  }\n\n  return {\n    issues: issues.length > 0 ? issues : ['No issues detected'],\n    checksRun: true\n  };\n})()\n```\n\n### Step 6: Capture Recent Events (if debug available)\n\nIf debug mode is on or we can access the queue:\n\n```javascript\n(() => {\n  if (typeof posthog === 'undefined') return { events: [] };\n\n  \u002F\u002F Try to get queued events\n  const queue = posthog._requestQueue?.queue ||\n                posthog.requestQueue?.queue ||\n                [];\n\n  \u002F\u002F Get recent events from persistence if available\n  const stored = posthog.persistence?.props?.$stored_events || [];\n\n  return {\n    queuedEvents: queue.length,\n    recentEventTypes: [...new Set([...queue, ...stored].map(e => e?.event || 'unknown').slice(0, 20))]\n  };\n})()\n```\n\n### Step 7: Detect Other Analytics Tools\n\nScan network requests and scripts to identify all analytics\u002Ftracking tools on the page. Use known patterns for named tools, and detect unknown tracking scripts as a fallback.\n\n```javascript\n(() => {\n  const scripts = Array.from(document.querySelectorAll('script[src]')).map(s => s.src);\n  const hostname = window.location.hostname.replace('www.', '');\n  const knownTools = [];\n  const matchedScripts = new Set();\n\n  const patterns = {\n    'Google Analytics': \u002Fgoogle-analytics\\.com|gtag\\\u002Fjs\u002Fi,\n    'Google Tag Manager': \u002Fgoogletagmanager\\.com\\\u002Fgtm\u002Fi,\n    'Facebook Pixel': \u002Fconnect\\.facebook\\.net.*fbevents\u002Fi,\n    'LinkedIn Insight': \u002Fsnap\\.licdn\\.com\u002Fi,\n    'HubSpot': \u002Fjs\\.hs-scripts\\.com|js\\.hsforms\\.com\u002Fi,\n    'Hotjar': \u002Fstatic\\.hotjar\\.com\u002Fi,\n    'Segment': \u002Fcdn\\.segment\\.com\u002Fi,\n    'Mixpanel': \u002Fcdn\\.mxpnl\\.com|mixpanel\\.com\u002Fi,\n    'Amplitude': \u002Fcdn\\.amplitude\\.com\u002Fi,\n    'Heap': \u002Fheap-analytics\\.com|heapanalytics\\.com\u002Fi,\n    'Intercom': \u002Fwidget\\.intercom\\.io|intercomcdn\\.com\u002Fi,\n    'Drift': \u002Fjs\\.driftt\\.com\u002Fi,\n    'Zendesk': \u002Fstatic\\.zdassets\\.com\u002Fi,\n    'Crisp': \u002Fclient\\.crisp\\.chat\u002Fi,\n    'FullStory': \u002Ffullstory\\.com\\\u002Fs\\\u002Ffs\\.js\u002Fi,\n    'LogRocket': \u002Fcdn\\.logrocket\\.com\u002Fi,\n    'Sentry': \u002Fbrowser\\.sentry-cdn\\.com\u002Fi,\n    'Datadog': \u002Fdatadoghq\\.com\u002Fi,\n    'Snowplow': \u002Fcdn\\.snowplow\u002Fi,\n    'Rudderstack': \u002Fcdn\\.rudderlabs\\.com\u002Fi,\n    'Clearbit': \u002Ftag\\.clearbitscripts\\.com\u002Fi,\n    'Dreamdata': \u002Fcdn\\.dreamdata\\.cloud\u002Fi,\n    'GrowthBook': \u002Fcdn\\.growthbook\\.io\u002Fi,\n    'LaunchDarkly': \u002Fsdk\\.launchdarkly\\.com\u002Fi,\n    'Optimizely': \u002Fcdn\\.optimizely\\.com\u002Fi,\n    'VWO': \u002Fdev\\.visualwebsiteoptimizer\\.com\u002Fi,\n    'Ahrefs': \u002Fanalytics\\.ahrefs\\.com\u002Fi,\n    'AdRoll': \u002Fs\\.adroll\\.com\u002Fi,\n    'Factors.ai': \u002Fapp\\.factors\\.ai\u002Fi,\n    'Vector': \u002Fcdn\\.vector\\.co\u002Fi,\n    'Leadfeeder': \u002Fsc\\.lfeeder\\.com\u002Fi,\n    'Pendo': \u002Fcdn\\.pendo\\.io\u002Fi,\n    'Chameleon': \u002Ffast\\.chameleon\\.io\u002Fi,\n    'Appcues': \u002Ffast\\.appcues\\.com\u002Fi,\n    'UserPilot': \u002Fjs\\.userpilot\\.io\u002Fi,\n    'Mouseflow': \u002Fcdn\\.mouseflow\\.com\u002Fi,\n    'Lucky Orange': \u002Ftools\\.luckyorange\\.com\u002Fi,\n    'Crazy Egg': \u002Fscript\\.crazyegg\\.com\u002Fi,\n    'Plausible': \u002Fplausible\\.io\\\u002Fjs\u002Fi,\n    'Fathom': \u002Fcdn\\.usefathom\\.com\u002Fi,\n    'Simple Analytics': \u002Fscripts\\.simpleanalyticscdn\\.com\u002Fi,\n    'Matomo': \u002Fmatomo\\.js|piwik\\.js\u002Fi,\n    'Klaviyo': \u002Fstatic\\.klaviyo\\.com\u002Fi,\n    'Customer.io': \u002Ftrack\\.customer\\.io\u002Fi,\n    'Braze': \u002Fsdk\\.iad-\\d+\\.braze\\.com\u002Fi,\n    'OneSignal': \u002Fcdn\\.onesignal\\.com\u002Fi,\n    'Insider': \u002Finsr\\.io\u002Fi,\n    'Mutiny': \u002Fcdn\\.mutinycdn\\.com\u002Fi,\n    'Qualified': \u002Fjs\\.qualified\\.com\u002Fi,\n    'Chilipiper': \u002Fjs\\.chilipiper\\.com\u002Fi,\n    'Typekit': \u002Fuse\\.typekit\\.net\u002Fi,\n    'Google Fonts': \u002Ffonts\\.googleapis\\.com\u002Fi,\n    'Cookiebot': \u002Fconsent\\.cookiebot\\.com\u002Fi,\n    'OneTrust': \u002Fcdn\\.cookielaw\\.org\u002Fi,\n    'TrustArc': \u002Fconsent\\.trustarc\\.com\u002Fi,\n    'Osano': \u002Fcmp\\.osano\\.com\u002Fi,\n    'Usercentrics': \u002Fapp\\.usercentrics\\.eu\u002Fi,\n    'OpenLI\u002FLegal Monster': \u002Fwidgets\\.legalmonster\\.com|openli\\.com\u002Fi,\n    'Nelio A\u002FB Testing': \u002Fnelio-ab-testing\u002Fi,\n    'Mesh': \u002Fmesh-interactive|withmesh\\.com\u002Fi,\n    'Reddit Pixel': \u002Fredditstatic\\.com|rdt\\.li\u002Fi,\n    'Webflow': \u002Fwdfl\\.co|webflow\\.com\\\u002Fjs\u002Fi,\n    'Dub.co': \u002Fdubcdn\\.com|dub\\.co\u002Fi\n  };\n\n  \u002F\u002F Match known tools\n  for (const [name, pattern] of Object.entries(patterns)) {\n    for (const src of scripts) {\n      if (pattern.test(src)) {\n        knownTools.push(name);\n        matchedScripts.add(src);\n        break;\n      }\n    }\n  }\n\n  \u002F\u002F Find unknown tracking scripts\n  const trackingKeywords = \u002Ftrack|analytics|pixel|tag|beacon|collect|measure|metric|event|telemetry|monitor\u002Fi;\n  const unknownScripts = scripts.filter(src => {\n    if (matchedScripts.has(src)) return false;\n    try {\n      const url = new URL(src);\n      const scriptHost = url.hostname.replace('www.', '');\n      \u002F\u002F Skip same-domain scripts\n      if (scriptHost === hostname || scriptHost.endsWith('.' + hostname)) return false;\n      \u002F\u002F Skip common CDNs that host non-tracking code\n      if (\u002Funpkg\\.com|jsdelivr\\.net|cdnjs\\.cloudflare\\.com|ajax\\.googleapis\\.com\u002Fi.test(scriptHost)) return false;\n      \u002F\u002F Include if it has tracking-like keywords or is from a third-party\n      return trackingKeywords.test(src) || true;\n    } catch {\n      return false;\n    }\n  });\n\n  \u002F\u002F Extract just the domain from unknown scripts for cleaner output\n  const unknownDomains = [...new Set(unknownScripts.map(src => {\n    try {\n      return new URL(src).hostname;\n    } catch {\n      return src;\n    }\n  }))].sort();\n\n  return {\n    knownTools: [...new Set(knownTools)].sort(),\n    unknownScripts: unknownDomains\n  };\n})()\n```\n\n## Response Format\n\nAfter inspection, provide a structured summary. Be factual and concise - no commentary or recommendations unless asked. Use emojis to indicate status at a glance.\n\n**Status emojis:**\n- ✅ = Yes \u002F Enabled \u002F Active \u002F Installed\n- ❌ = No \u002F Disabled \u002F Not found\n- ⚠️ = Warning \u002F Issue detected\n\n```\n## PostHog Implementation Summary\n\n### Status\n✅ Installed \u002F ✅ Installed (bundled) \u002F ❌ Not Found\n\n### Implementation Type\n[Global window.posthog \u002F Bundled (not exposed globally) \u002F Custom proxy]\n\n### Configuration\n- **Version:** [version]\n- **API Host:** [host] ([US\u002FEU Cloud] \u002F [Custom proxy] \u002F [Self-hosted])\n- **Project Token:** [full token]\n- **Persistence:** [localStorage\u002FsessionStorage\u002Fcookie\u002Fmemory]\n\n### Features (Module Loaded → Feature Enabled)\n| Feature | Module Loaded | Enabled |\n|---------|---------------|---------|\n| Autocapture | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Session Recording | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Surveys | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Heatmaps | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Feature Flags | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Web Vitals | ✅ \u002F ❌ | ✅ \u002F ❌ |\n\n### Identifiers\n- **Distinct ID:** [id]\n- **Session ID:** [id]\n\n### Feature Flags\n[List of active flags or \"None loaded\"]\n\n### Network Activity\n- Events endpoint: ✅ \u002F ❌\n- Session recording: ✅ \u002F ❌\n- Decide\u002Fflags endpoint: ✅ \u002F ❌\n- Surveys endpoint: ✅ \u002F ❌\n\n### Issues Found\n✅ None detected\n— or —\n⚠️ [Issue description]\n\n### Script Loading\n- **Source:** [CDN\u002FSelf-hosted\u002FNPM bundle\u002FCustom proxy]\n- **Loading:** [Async\u002FSync\u002FDefer]\n\n### Other Analytics Tools Detected\n[List of recognized analytics, tracking, and marketing tools]\n\n### Other External Scripts\n[Third-party script domains not matched to known tools]\n```\n\n## Common Questions and How to Answer Them\n\n### \"How is PostHog implemented on this page?\"\nRun full inspection workflow and provide complete summary.\n\n### \"Is PostHog tracking working?\"\n1. Check if posthog object exists\n2. Verify network requests are being sent\n3. Check for any errors in console\n4. Look for opted-out status\n\n### \"What events are being tracked?\"\n1. Check autocapture status\n2. Look at network requests to `\u002Fe\u002F` or `\u002Fcapture\u002F`\n3. Try to access event queue\n4. Note if $pageview, $pageleave, etc. are enabled\n\n### \"Is session recording enabled?\"\n1. Check config for recording settings\n2. Look for `\u002Fs\u002F` network requests\n3. Check sessionRecording object state\n\n### \"What feature flags are active?\"\n1. Check featureFlags object on posthog\n2. Look for `\u002Fdecide\u002F` network request\n3. List all flags and their values\n\n### \"Are there any issues with the implementation?\"\nRun the diagnostic checks and report findings.\n\n### \"Is this using the EU or US cloud?\"\nCheck the api_host configuration:\n- `us.i.posthog.com` = US Cloud\n- `eu.i.posthog.com` = EU Cloud\n- `app.posthog.com` = Legacy (defaults to US)\n- Custom domain = Self-hosted or proxy\n\n## Example Conversation\n\n**User:** \"How is PostHog implemented on https:\u002F\u002Fexample.com?\"\n\n**Claude:** \"I'll navigate to example.com with debug mode enabled and inspect the PostHog implementation.\"\n\n[Navigates to https:\u002F\u002Fexample.com?__posthog_debug=true]\n[Runs JavaScript checks]\n[Checks console for PostHog debug messages]\n[Analyzes network requests]\n\n**Claude:**\n```\n## PostHog Implementation Summary\n\n### Status\n✅ Installed\n\n### Implementation Type\nGlobal window.posthog\n\n### Configuration\n- **Version:** 1.96.1\n- **API Host:** https:\u002F\u002Fus.i.posthog.com (US Cloud)\n- **Project Token:** phc_abc123def456ghi789jkl012mno345\n- **Persistence:** localStorage+cookie\n\n### Features (Module Loaded → Feature Enabled)\n| Feature | Module Loaded | Enabled |\n|---------|---------------|---------|\n| Autocapture | ✅ | ✅ |\n| Session Recording | ✅ | ✅ |\n| Surveys | ✅ | ❌ |\n| Heatmaps | ❌ | ❌ |\n| Feature Flags | ✅ | ✅ |\n| Web Vitals | ✅ | ✅ |\n\n### Identifiers\n- **Distinct ID:** 018d4f2a-1234-7abc-def0-123456789abc\n- **Session ID:** 018d4f2a-5678-7xyz-abc0-987654321xyz\n\n### Feature Flags\n- `new-checkout-flow` ✅\n- `beta-features` ❌\n\n### Network Activity\n- Events endpoint: ✅\n- Session recording: ✅\n- Decide\u002Fflags endpoint: ✅\n- Surveys endpoint: ✅\n\n### Issues Found\n✅ None detected\n\n### Script Loading\n- **Source:** CDN (us-assets.i.posthog.com)\n- **Loading:** Async\n\n### Other Analytics Tools Detected\n- Google Tag Manager\n- Google Analytics\n- HubSpot\n\n### Other External Scripts\n- cdn.example-vendor.com\n```\n\n---\n\n**Example 2: Authenticated page with custom proxy**\n\n**User:** \"Check PostHog on https:\u002F\u002Fapp.example.com\u002Fdashboard\"\n\n**Claude:** \"I'll navigate to that page with debug mode enabled.\"\n\n[Navigates to https:\u002F\u002Fapp.example.com\u002Fdashboard?__posthog_debug=true]\n[Takes snapshot, sees login page]\n\n**Claude:** \"I've opened the page but it requires login. Please log in using the Chrome browser I just opened. Let me know when you're on the dashboard.\"\n\n**User:** \"I'm logged in\"\n\n**Claude:** [Takes new snapshot, verifies authenticated, runs inspection]\n\n```\n## PostHog Implementation Summary\n\n### Status\n✅ Installed (bundled)\n\n### Implementation Type\nBundled (not exposed globally) via custom proxy\n\n### Configuration\n- **Version:** 1.257.2\n- **API Host:** ph.example.com (Custom proxy)\n- **Project Token:** phc_abc123def456ghi789jkl012mno345\n- **Persistence:** sessionStorage\n\n### Features (Module Loaded → Feature Enabled)\n| Feature | Module Loaded | Enabled |\n|---------|---------------|---------|\n| Autocapture | ✅ | ❌ |\n| Session Recording | ❌ | ❌ |\n| Surveys | ✅ | ❌ |\n| Heatmaps | ❌ | ❌ |\n| Feature Flags | ✅ | ✅ |\n| Web Vitals | ✅ | ❌ |\n\n### Identifiers\n- **Distinct ID:** (not accessible - bundled)\n- **Session ID:** (not accessible - bundled)\n\n### Network Activity\n- Events endpoint: ✅\n- Session recording: ❌\n- Decide\u002Fflags endpoint: ✅\n- Surveys endpoint: ✅ (module loaded, feature disabled)\n\n### Issues Found\n✅ None detected\n\n### Script Loading\n- **Source:** Custom proxy (ph.example.com)\n- **Loading:** Bundled in app\n```\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,50,56,63,146,152,157,218,224,229,253,259,264,325,331,338,407,413,469,475,481,496,521,529,646,652,664,2148,2154,2181,2829,2835,2863,2871,2940,2948,2971,2976,2985,2991,2996,3666,3672,3677,3685,3730,3740,3783,3791,3886,3894,3932,3938,3943,5071,5077,5082,5554,5560,5565,10963,10969,10974,10982,11000,11009,11015,11021,11026,11032,11055,11061,11095,11101,11125,11131,11155,11161,11166,11172,11177,11216,11222,11242,11252,11280,11287,11296,11300,11308,11325,11334,11352,11361,11370,11384,11393],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":49},"text","PostHog Debugger",{"type":43,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Inspect and debug PostHog implementations on any website using browser automation tools. This skill helps developers and product teams understand exactly how PostHog is configured and what data is being captured.",{"type":43,"tag":57,"props":58,"children":60},"h2",{"id":59},"critical-rules",[61],{"type":48,"value":62},"Critical Rules",{"type":43,"tag":64,"props":65,"children":66},"ol",{},[67,79,89,116,126,136],{"type":43,"tag":68,"props":69,"children":70},"li",{},[71,77],{"type":43,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":48,"value":76},"Always ask for the URL first",{"type":48,"value":78}," if not provided.",{"type":43,"tag":68,"props":80,"children":81},{},[82,87],{"type":43,"tag":72,"props":83,"children":84},{},[85],{"type":48,"value":86},"Always ask if the page requires login.",{"type":48,"value":88}," If yes, guide the user to log in via Chrome first.",{"type":43,"tag":68,"props":90,"children":91},{},[92,97,99,106,108,114],{"type":43,"tag":72,"props":93,"children":94},{},[95],{"type":48,"value":96},"Use browser tools to navigate and inspect.",{"type":48,"value":98}," Prefer Chrome DevTools MCP (",{"type":43,"tag":100,"props":101,"children":103},"code",{"className":102},[],[104],{"type":48,"value":105},"mcp__chrome-devtools__*",{"type":48,"value":107},") or Playwright MCP (",{"type":43,"tag":100,"props":109,"children":111},{"className":110},[],[112],{"type":48,"value":113},"mcp__playwright__*",{"type":48,"value":115},") tools.",{"type":43,"tag":68,"props":117,"children":118},{},[119,124],{"type":43,"tag":72,"props":120,"children":121},{},[122],{"type":48,"value":123},"Check multiple signals.",{"type":48,"value":125}," PostHog can be implemented in various ways - check scripts, network requests, and the window object.",{"type":43,"tag":68,"props":127,"children":128},{},[129,134],{"type":43,"tag":72,"props":130,"children":131},{},[132],{"type":48,"value":133},"Report findings clearly.",{"type":48,"value":135}," Summarize what you find in a structured format.",{"type":43,"tag":68,"props":137,"children":138},{},[139,144],{"type":43,"tag":72,"props":140,"children":141},{},[142],{"type":48,"value":143},"Never modify anything.",{"type":48,"value":145}," This is read-only inspection.",{"type":43,"tag":57,"props":147,"children":149},{"id":148},"initial-flow",[150],{"type":48,"value":151},"Initial Flow",{"type":43,"tag":51,"props":153,"children":154},{},[155],{"type":48,"value":156},"When a user asks to inspect a PostHog implementation:",{"type":43,"tag":64,"props":158,"children":159},{},[160,170,188,198,208],{"type":43,"tag":68,"props":161,"children":162},{},[163,168],{"type":43,"tag":72,"props":164,"children":165},{},[166],{"type":48,"value":167},"Get the URL",{"type":48,"value":169}," (if not provided)",{"type":43,"tag":68,"props":171,"children":172},{},[173,178,180,186],{"type":43,"tag":72,"props":174,"children":175},{},[176],{"type":48,"value":177},"Navigate to the URL",{"type":48,"value":179}," with ",{"type":43,"tag":100,"props":181,"children":183},{"className":182},[],[184],{"type":48,"value":185},"?__posthog_debug=true",{"type":48,"value":187}," appended",{"type":43,"tag":68,"props":189,"children":190},{},[191,196],{"type":43,"tag":72,"props":192,"children":193},{},[194],{"type":48,"value":195},"Check if login is required",{"type":48,"value":197}," by taking a snapshot and looking for login indicators",{"type":43,"tag":68,"props":199,"children":200},{},[201,206],{"type":43,"tag":72,"props":202,"children":203},{},[204],{"type":48,"value":205},"If login required",{"type":48,"value":207},", ask the user to authenticate in the browser",{"type":43,"tag":68,"props":209,"children":210},{},[211,216],{"type":43,"tag":72,"props":212,"children":213},{},[214],{"type":48,"value":215},"Once authenticated",{"type":48,"value":217},", proceed with inspection",{"type":43,"tag":57,"props":219,"children":221},{"id":220},"detecting-login-pages",[222],{"type":48,"value":223},"Detecting Login Pages",{"type":43,"tag":51,"props":225,"children":226},{},[227],{"type":48,"value":228},"After navigating, take a snapshot and look for login indicators:",{"type":43,"tag":230,"props":231,"children":232},"ul",{},[233,238,243,248],{"type":43,"tag":68,"props":234,"children":235},{},[236],{"type":48,"value":237},"Page title contains \"login\", \"sign in\", \"authenticate\"",{"type":43,"tag":68,"props":239,"children":240},{},[241],{"type":48,"value":242},"URL contains \"login\", \"signin\", \"auth\", \"sso\"",{"type":43,"tag":68,"props":244,"children":245},{},[246],{"type":48,"value":247},"Page has username\u002Fpassword fields",{"type":43,"tag":68,"props":249,"children":250},{},[251],{"type":48,"value":252},"Page shows \"Sign in with Google\u002FGitHub\u002Fetc.\" buttons",{"type":43,"tag":57,"props":254,"children":256},{"id":255},"authenticated-pages-workflow",[257],{"type":48,"value":258},"Authenticated Pages Workflow",{"type":43,"tag":51,"props":260,"children":261},{},[262],{"type":48,"value":263},"If you detect a login page or the user mentions the page requires auth:",{"type":43,"tag":64,"props":265,"children":266},{},[267,277,297,307,317],{"type":43,"tag":68,"props":268,"children":269},{},[270,275],{"type":43,"tag":72,"props":271,"children":272},{},[273],{"type":48,"value":274},"Keep the browser open",{"type":48,"value":276}," - you've already navigated there",{"type":43,"tag":68,"props":278,"children":279},{},[280,285],{"type":43,"tag":72,"props":281,"children":282},{},[283],{"type":48,"value":284},"Ask the user to log in:",{"type":43,"tag":286,"props":287,"children":291},"pre",{"className":288,"code":290,"language":48},[289],"language-text","\"This page requires authentication. Please log in using the Chrome browser I just opened. Let me know when you're logged in and on the page you want to inspect.\"\n",[292],{"type":43,"tag":100,"props":293,"children":295},{"__ignoreMap":294},"",[296],{"type":48,"value":290},{"type":43,"tag":68,"props":298,"children":299},{},[300,305],{"type":43,"tag":72,"props":301,"children":302},{},[303],{"type":48,"value":304},"Once the user confirms",{"type":48,"value":306},", take a new snapshot to verify they're authenticated",{"type":43,"tag":68,"props":308,"children":309},{},[310,315],{"type":43,"tag":72,"props":311,"children":312},{},[313],{"type":48,"value":314},"Add the debug parameter",{"type":48,"value":316}," if not already present and reload if needed",{"type":43,"tag":68,"props":318,"children":319},{},[320],{"type":43,"tag":72,"props":321,"children":322},{},[323],{"type":48,"value":324},"Proceed with inspection",{"type":43,"tag":57,"props":326,"children":328},{"id":327},"available-browser-tools",[329],{"type":48,"value":330},"Available Browser Tools",{"type":43,"tag":332,"props":333,"children":335},"h3",{"id":334},"chrome-devtools-mcp",[336],{"type":48,"value":337},"Chrome DevTools MCP",{"type":43,"tag":230,"props":339,"children":340},{},[341,352,363,374,385,396],{"type":43,"tag":68,"props":342,"children":343},{},[344,350],{"type":43,"tag":100,"props":345,"children":347},{"className":346},[],[348],{"type":48,"value":349},"mcp__chrome-devtools__navigate_page",{"type":48,"value":351}," - Navigate to URL",{"type":43,"tag":68,"props":353,"children":354},{},[355,361],{"type":43,"tag":100,"props":356,"children":358},{"className":357},[],[359],{"type":48,"value":360},"mcp__chrome-devtools__take_snapshot",{"type":48,"value":362}," - Get page accessibility tree",{"type":43,"tag":68,"props":364,"children":365},{},[366,372],{"type":43,"tag":100,"props":367,"children":369},{"className":368},[],[370],{"type":48,"value":371},"mcp__chrome-devtools__evaluate_script",{"type":48,"value":373}," - Run JavaScript to inspect PostHog",{"type":43,"tag":68,"props":375,"children":376},{},[377,383],{"type":43,"tag":100,"props":378,"children":380},{"className":379},[],[381],{"type":48,"value":382},"mcp__chrome-devtools__list_network_requests",{"type":48,"value":384}," - See network traffic",{"type":43,"tag":68,"props":386,"children":387},{},[388,394],{"type":43,"tag":100,"props":389,"children":391},{"className":390},[],[392],{"type":48,"value":393},"mcp__chrome-devtools__get_network_request",{"type":48,"value":395}," - Get request details",{"type":43,"tag":68,"props":397,"children":398},{},[399,405],{"type":43,"tag":100,"props":400,"children":402},{"className":401},[],[403],{"type":48,"value":404},"mcp__chrome-devtools__list_console_messages",{"type":48,"value":406}," - Check for errors",{"type":43,"tag":332,"props":408,"children":410},{"id":409},"playwright-mcp",[411],{"type":48,"value":412},"Playwright MCP",{"type":43,"tag":230,"props":414,"children":415},{},[416,426,437,448,458],{"type":43,"tag":68,"props":417,"children":418},{},[419,425],{"type":43,"tag":100,"props":420,"children":422},{"className":421},[],[423],{"type":48,"value":424},"mcp__playwright__browser_navigate",{"type":48,"value":351},{"type":43,"tag":68,"props":427,"children":428},{},[429,435],{"type":43,"tag":100,"props":430,"children":432},{"className":431},[],[433],{"type":48,"value":434},"mcp__playwright__browser_snapshot",{"type":48,"value":436}," - Get page snapshot",{"type":43,"tag":68,"props":438,"children":439},{},[440,446],{"type":43,"tag":100,"props":441,"children":443},{"className":442},[],[444],{"type":48,"value":445},"mcp__playwright__browser_evaluate",{"type":48,"value":447}," - Run JavaScript",{"type":43,"tag":68,"props":449,"children":450},{},[451,457],{"type":43,"tag":100,"props":452,"children":454},{"className":453},[],[455],{"type":48,"value":456},"mcp__playwright__browser_network_requests",{"type":48,"value":384},{"type":43,"tag":68,"props":459,"children":460},{},[461,467],{"type":43,"tag":100,"props":462,"children":464},{"className":463},[],[465],{"type":48,"value":466},"mcp__playwright__browser_console_messages",{"type":48,"value":468}," - Check console",{"type":43,"tag":57,"props":470,"children":472},{"id":471},"inspection-workflow",[473],{"type":48,"value":474},"Inspection Workflow",{"type":43,"tag":332,"props":476,"children":478},{"id":477},"step-1-navigate-to-the-page-with-debug-mode",[479],{"type":48,"value":480},"Step 1: Navigate to the Page with Debug Mode",{"type":43,"tag":51,"props":482,"children":483},{},[484,494],{"type":43,"tag":72,"props":485,"children":486},{},[487,489],{"type":48,"value":488},"Always add ",{"type":43,"tag":100,"props":490,"children":492},{"className":491},[],[493],{"type":48,"value":185},{"type":48,"value":495}," to the URL to enable PostHog's debug mode. This outputs detailed logs to the console.",{"type":43,"tag":230,"props":497,"children":498},{},[499,510],{"type":43,"tag":68,"props":500,"children":501},{},[502,504],{"type":48,"value":503},"If URL has no query string: ",{"type":43,"tag":100,"props":505,"children":507},{"className":506},[],[508],{"type":48,"value":509},"https:\u002F\u002Fexample.com?__posthog_debug=true",{"type":43,"tag":68,"props":511,"children":512},{},[513,515],{"type":48,"value":514},"If URL already has query string: ",{"type":43,"tag":100,"props":516,"children":518},{"className":517},[],[519],{"type":48,"value":520},"https:\u002F\u002Fexample.com?foo=bar&__posthog_debug=true",{"type":43,"tag":51,"props":522,"children":523},{},[524],{"type":43,"tag":72,"props":525,"children":526},{},[527],{"type":48,"value":528},"Workflow:",{"type":43,"tag":64,"props":530,"children":531},{},[532,541,551,605,636],{"type":43,"tag":68,"props":533,"children":534},{},[535,539],{"type":43,"tag":72,"props":536,"children":537},{},[538],{"type":48,"value":177},{"type":48,"value":540}," with the debug parameter",{"type":43,"tag":68,"props":542,"children":543},{},[544,549],{"type":43,"tag":72,"props":545,"children":546},{},[547],{"type":48,"value":548},"Take a snapshot",{"type":48,"value":550}," to see what loaded",{"type":43,"tag":68,"props":552,"children":553},{},[554,559],{"type":43,"tag":72,"props":555,"children":556},{},[557],{"type":48,"value":558},"Check for login page indicators:",{"type":43,"tag":230,"props":560,"children":561},{},[562,595,600],{"type":43,"tag":68,"props":563,"children":564},{},[565,567,573,575,581,582,588,589],{"type":48,"value":566},"URL redirected to ",{"type":43,"tag":100,"props":568,"children":570},{"className":569},[],[571],{"type":48,"value":572},"\u002Flogin",{"type":48,"value":574},", ",{"type":43,"tag":100,"props":576,"children":578},{"className":577},[],[579],{"type":48,"value":580},"\u002Fsignin",{"type":48,"value":574},{"type":43,"tag":100,"props":583,"children":585},{"className":584},[],[586],{"type":48,"value":587},"\u002Fauth",{"type":48,"value":574},{"type":43,"tag":100,"props":590,"children":592},{"className":591},[],[593],{"type":48,"value":594},"\u002Fsso",{"type":43,"tag":68,"props":596,"children":597},{},[598],{"type":48,"value":599},"Page title contains \"log in\", \"sign in\"",{"type":43,"tag":68,"props":601,"children":602},{},[603],{"type":48,"value":604},"Page has login form fields",{"type":43,"tag":68,"props":606,"children":607},{},[608,613],{"type":43,"tag":72,"props":609,"children":610},{},[611],{"type":48,"value":612},"If login detected:",{"type":43,"tag":230,"props":614,"children":615},{},[616,621,626,631],{"type":43,"tag":68,"props":617,"children":618},{},[619],{"type":48,"value":620},"Tell the user: \"I've opened the page but it requires login. Please log in using Chrome, then let me know when you're ready.\"",{"type":43,"tag":68,"props":622,"children":623},{},[624],{"type":48,"value":625},"Wait for user confirmation",{"type":43,"tag":68,"props":627,"children":628},{},[629],{"type":48,"value":630},"Take a new snapshot to verify authentication",{"type":43,"tag":68,"props":632,"children":633},{},[634],{"type":48,"value":635},"Add debug parameter to the new URL if needed",{"type":43,"tag":68,"props":637,"children":638},{},[639,644],{"type":43,"tag":72,"props":640,"children":641},{},[642],{"type":48,"value":643},"If no login needed:",{"type":48,"value":645}," Proceed with inspection",{"type":43,"tag":332,"props":647,"children":649},{"id":648},"step-2-check-posthog-global-object",[650],{"type":48,"value":651},"Step 2: Check PostHog Global Object",{"type":43,"tag":51,"props":653,"children":654},{},[655,657,662],{"type":48,"value":656},"Execute JavaScript to inspect the ",{"type":43,"tag":100,"props":658,"children":660},{"className":659},[],[661],{"type":48,"value":8},{"type":48,"value":663}," object on the window:",{"type":43,"tag":286,"props":665,"children":669},{"className":666,"code":667,"language":668,"meta":294,"style":294},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","(() => {\n  if (typeof posthog === 'undefined') {\n    return { installed: false };\n  }\n\n  const ph = posthog;\n  return {\n    installed: true,\n    version: ph.version || ph.LIB_VERSION || 'unknown',\n    config: {\n      token: ph.config?.token || ph.get_config?.('token') || 'not accessible',\n      apiHost: ph.config?.api_host || ph.get_config?.('api_host') || 'not accessible',\n      autocapture: ph.config?.autocapture ?? ph.get_config?.('autocapture') ?? 'not accessible',\n      capturePageview: ph.config?.capture_pageview ?? ph.get_config?.('capture_pageview') ?? 'not accessible',\n      capturePageleave: ph.config?.capture_pageleave ?? ph.get_config?.('capture_pageleave') ?? 'not accessible',\n      sessionRecording: ph.config?.enable_recording_console_log !== undefined ||\n                        ph.sessionRecording?.started ||\n                        'check network',\n      persistence: ph.config?.persistence || ph.get_config?.('persistence') || 'not accessible',\n      debug: ph.config?.debug ?? ph.get_config?.('debug') ?? false\n    },\n    distinctId: ph.get_distinct_id?.() || 'not accessible',\n    sessionId: ph.get_session_id?.() || 'not accessible',\n    featureFlags: ph.getFeatureFlag ? Object.keys(ph.featureFlags?.flags || {}) : [],\n    activeFeatureFlags: ph.getFeatureFlag ?\n      Object.entries(ph.featureFlags?.flags || {})\n        .filter(([_, v]) => v)\n        .map(([k]) => k) : []\n  };\n})()\n","javascript",[670],{"type":43,"tag":100,"props":671,"children":672},{"__ignoreMap":294},[673,702,759,794,802,812,840,853,876,942,959,1059,1153,1249,1343,1437,1486,1517,1539,1633,1716,1725,1780,1834,1932,1962,2017,2073,2125,2134],{"type":43,"tag":674,"props":675,"children":678},"span",{"class":676,"line":677},"line",1,[679,685,691,697],{"type":43,"tag":674,"props":680,"children":682},{"style":681},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[683],{"type":48,"value":684},"(",{"type":43,"tag":674,"props":686,"children":688},{"style":687},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[689],{"type":48,"value":690},"()",{"type":43,"tag":674,"props":692,"children":694},{"style":693},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[695],{"type":48,"value":696}," =>",{"type":43,"tag":674,"props":698,"children":699},{"style":687},[700],{"type":48,"value":701}," {\n",{"type":43,"tag":674,"props":703,"children":705},{"class":676,"line":704},2,[706,712,718,723,728,733,738,744,749,754],{"type":43,"tag":674,"props":707,"children":709},{"style":708},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[710],{"type":48,"value":711},"  if",{"type":43,"tag":674,"props":713,"children":715},{"style":714},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[716],{"type":48,"value":717}," (",{"type":43,"tag":674,"props":719,"children":720},{"style":687},[721],{"type":48,"value":722},"typeof",{"type":43,"tag":674,"props":724,"children":725},{"style":681},[726],{"type":48,"value":727}," posthog",{"type":43,"tag":674,"props":729,"children":730},{"style":687},[731],{"type":48,"value":732}," ===",{"type":43,"tag":674,"props":734,"children":735},{"style":687},[736],{"type":48,"value":737}," '",{"type":43,"tag":674,"props":739,"children":741},{"style":740},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[742],{"type":48,"value":743},"undefined",{"type":43,"tag":674,"props":745,"children":746},{"style":687},[747],{"type":48,"value":748},"'",{"type":43,"tag":674,"props":750,"children":751},{"style":714},[752],{"type":48,"value":753},") ",{"type":43,"tag":674,"props":755,"children":756},{"style":687},[757],{"type":48,"value":758},"{\n",{"type":43,"tag":674,"props":760,"children":762},{"class":676,"line":761},3,[763,768,773,778,783,789],{"type":43,"tag":674,"props":764,"children":765},{"style":708},[766],{"type":48,"value":767},"    return",{"type":43,"tag":674,"props":769,"children":770},{"style":687},[771],{"type":48,"value":772}," {",{"type":43,"tag":674,"props":774,"children":775},{"style":714},[776],{"type":48,"value":777}," installed",{"type":43,"tag":674,"props":779,"children":780},{"style":687},[781],{"type":48,"value":782},":",{"type":43,"tag":674,"props":784,"children":786},{"style":785},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[787],{"type":48,"value":788}," false",{"type":43,"tag":674,"props":790,"children":791},{"style":687},[792],{"type":48,"value":793}," };\n",{"type":43,"tag":674,"props":795,"children":796},{"class":676,"line":30},[797],{"type":43,"tag":674,"props":798,"children":799},{"style":687},[800],{"type":48,"value":801},"  }\n",{"type":43,"tag":674,"props":803,"children":805},{"class":676,"line":804},5,[806],{"type":43,"tag":674,"props":807,"children":809},{"emptyLinePlaceholder":808},true,[810],{"type":48,"value":811},"\n",{"type":43,"tag":674,"props":813,"children":815},{"class":676,"line":814},6,[816,821,826,831,835],{"type":43,"tag":674,"props":817,"children":818},{"style":693},[819],{"type":48,"value":820},"  const",{"type":43,"tag":674,"props":822,"children":823},{"style":681},[824],{"type":48,"value":825}," ph",{"type":43,"tag":674,"props":827,"children":828},{"style":687},[829],{"type":48,"value":830}," =",{"type":43,"tag":674,"props":832,"children":833},{"style":681},[834],{"type":48,"value":727},{"type":43,"tag":674,"props":836,"children":837},{"style":687},[838],{"type":48,"value":839},";\n",{"type":43,"tag":674,"props":841,"children":843},{"class":676,"line":842},7,[844,849],{"type":43,"tag":674,"props":845,"children":846},{"style":708},[847],{"type":48,"value":848},"  return",{"type":43,"tag":674,"props":850,"children":851},{"style":687},[852],{"type":48,"value":701},{"type":43,"tag":674,"props":854,"children":856},{"class":676,"line":855},8,[857,862,866,871],{"type":43,"tag":674,"props":858,"children":859},{"style":714},[860],{"type":48,"value":861},"    installed",{"type":43,"tag":674,"props":863,"children":864},{"style":687},[865],{"type":48,"value":782},{"type":43,"tag":674,"props":867,"children":868},{"style":785},[869],{"type":48,"value":870}," true",{"type":43,"tag":674,"props":872,"children":873},{"style":687},[874],{"type":48,"value":875},",\n",{"type":43,"tag":674,"props":877,"children":879},{"class":676,"line":878},9,[880,885,889,893,898,903,908,912,916,921,925,929,934,938],{"type":43,"tag":674,"props":881,"children":882},{"style":714},[883],{"type":48,"value":884},"    version",{"type":43,"tag":674,"props":886,"children":887},{"style":687},[888],{"type":48,"value":782},{"type":43,"tag":674,"props":890,"children":891},{"style":681},[892],{"type":48,"value":825},{"type":43,"tag":674,"props":894,"children":895},{"style":687},[896],{"type":48,"value":897},".",{"type":43,"tag":674,"props":899,"children":900},{"style":681},[901],{"type":48,"value":902},"version",{"type":43,"tag":674,"props":904,"children":905},{"style":687},[906],{"type":48,"value":907}," ||",{"type":43,"tag":674,"props":909,"children":910},{"style":681},[911],{"type":48,"value":825},{"type":43,"tag":674,"props":913,"children":914},{"style":687},[915],{"type":48,"value":897},{"type":43,"tag":674,"props":917,"children":918},{"style":681},[919],{"type":48,"value":920},"LIB_VERSION",{"type":43,"tag":674,"props":922,"children":923},{"style":687},[924],{"type":48,"value":907},{"type":43,"tag":674,"props":926,"children":927},{"style":687},[928],{"type":48,"value":737},{"type":43,"tag":674,"props":930,"children":931},{"style":740},[932],{"type":48,"value":933},"unknown",{"type":43,"tag":674,"props":935,"children":936},{"style":687},[937],{"type":48,"value":748},{"type":43,"tag":674,"props":939,"children":940},{"style":687},[941],{"type":48,"value":875},{"type":43,"tag":674,"props":943,"children":945},{"class":676,"line":944},10,[946,951,955],{"type":43,"tag":674,"props":947,"children":948},{"style":714},[949],{"type":48,"value":950},"    config",{"type":43,"tag":674,"props":952,"children":953},{"style":687},[954],{"type":48,"value":782},{"type":43,"tag":674,"props":956,"children":957},{"style":687},[958],{"type":48,"value":701},{"type":43,"tag":674,"props":960,"children":962},{"class":676,"line":961},11,[963,968,972,976,980,985,990,995,999,1003,1007,1013,1017,1021,1025,1029,1033,1037,1042,1046,1051,1055],{"type":43,"tag":674,"props":964,"children":965},{"style":714},[966],{"type":48,"value":967},"      token",{"type":43,"tag":674,"props":969,"children":970},{"style":687},[971],{"type":48,"value":782},{"type":43,"tag":674,"props":973,"children":974},{"style":681},[975],{"type":48,"value":825},{"type":43,"tag":674,"props":977,"children":978},{"style":687},[979],{"type":48,"value":897},{"type":43,"tag":674,"props":981,"children":982},{"style":681},[983],{"type":48,"value":984},"config",{"type":43,"tag":674,"props":986,"children":987},{"style":687},[988],{"type":48,"value":989},"?.",{"type":43,"tag":674,"props":991,"children":992},{"style":681},[993],{"type":48,"value":994},"token",{"type":43,"tag":674,"props":996,"children":997},{"style":687},[998],{"type":48,"value":907},{"type":43,"tag":674,"props":1000,"children":1001},{"style":681},[1002],{"type":48,"value":825},{"type":43,"tag":674,"props":1004,"children":1005},{"style":687},[1006],{"type":48,"value":897},{"type":43,"tag":674,"props":1008,"children":1010},{"style":1009},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1011],{"type":48,"value":1012},"get_config",{"type":43,"tag":674,"props":1014,"children":1015},{"style":687},[1016],{"type":48,"value":989},{"type":43,"tag":674,"props":1018,"children":1019},{"style":714},[1020],{"type":48,"value":684},{"type":43,"tag":674,"props":1022,"children":1023},{"style":687},[1024],{"type":48,"value":748},{"type":43,"tag":674,"props":1026,"children":1027},{"style":740},[1028],{"type":48,"value":994},{"type":43,"tag":674,"props":1030,"children":1031},{"style":687},[1032],{"type":48,"value":748},{"type":43,"tag":674,"props":1034,"children":1035},{"style":714},[1036],{"type":48,"value":753},{"type":43,"tag":674,"props":1038,"children":1039},{"style":687},[1040],{"type":48,"value":1041},"||",{"type":43,"tag":674,"props":1043,"children":1044},{"style":687},[1045],{"type":48,"value":737},{"type":43,"tag":674,"props":1047,"children":1048},{"style":740},[1049],{"type":48,"value":1050},"not accessible",{"type":43,"tag":674,"props":1052,"children":1053},{"style":687},[1054],{"type":48,"value":748},{"type":43,"tag":674,"props":1056,"children":1057},{"style":687},[1058],{"type":48,"value":875},{"type":43,"tag":674,"props":1060,"children":1062},{"class":676,"line":1061},12,[1063,1068,1072,1076,1080,1084,1088,1093,1097,1101,1105,1109,1113,1117,1121,1125,1129,1133,1137,1141,1145,1149],{"type":43,"tag":674,"props":1064,"children":1065},{"style":714},[1066],{"type":48,"value":1067},"      apiHost",{"type":43,"tag":674,"props":1069,"children":1070},{"style":687},[1071],{"type":48,"value":782},{"type":43,"tag":674,"props":1073,"children":1074},{"style":681},[1075],{"type":48,"value":825},{"type":43,"tag":674,"props":1077,"children":1078},{"style":687},[1079],{"type":48,"value":897},{"type":43,"tag":674,"props":1081,"children":1082},{"style":681},[1083],{"type":48,"value":984},{"type":43,"tag":674,"props":1085,"children":1086},{"style":687},[1087],{"type":48,"value":989},{"type":43,"tag":674,"props":1089,"children":1090},{"style":681},[1091],{"type":48,"value":1092},"api_host",{"type":43,"tag":674,"props":1094,"children":1095},{"style":687},[1096],{"type":48,"value":907},{"type":43,"tag":674,"props":1098,"children":1099},{"style":681},[1100],{"type":48,"value":825},{"type":43,"tag":674,"props":1102,"children":1103},{"style":687},[1104],{"type":48,"value":897},{"type":43,"tag":674,"props":1106,"children":1107},{"style":1009},[1108],{"type":48,"value":1012},{"type":43,"tag":674,"props":1110,"children":1111},{"style":687},[1112],{"type":48,"value":989},{"type":43,"tag":674,"props":1114,"children":1115},{"style":714},[1116],{"type":48,"value":684},{"type":43,"tag":674,"props":1118,"children":1119},{"style":687},[1120],{"type":48,"value":748},{"type":43,"tag":674,"props":1122,"children":1123},{"style":740},[1124],{"type":48,"value":1092},{"type":43,"tag":674,"props":1126,"children":1127},{"style":687},[1128],{"type":48,"value":748},{"type":43,"tag":674,"props":1130,"children":1131},{"style":714},[1132],{"type":48,"value":753},{"type":43,"tag":674,"props":1134,"children":1135},{"style":687},[1136],{"type":48,"value":1041},{"type":43,"tag":674,"props":1138,"children":1139},{"style":687},[1140],{"type":48,"value":737},{"type":43,"tag":674,"props":1142,"children":1143},{"style":740},[1144],{"type":48,"value":1050},{"type":43,"tag":674,"props":1146,"children":1147},{"style":687},[1148],{"type":48,"value":748},{"type":43,"tag":674,"props":1150,"children":1151},{"style":687},[1152],{"type":48,"value":875},{"type":43,"tag":674,"props":1154,"children":1156},{"class":676,"line":1155},13,[1157,1162,1166,1170,1174,1178,1182,1187,1192,1196,1200,1204,1208,1212,1216,1220,1224,1228,1233,1237,1241,1245],{"type":43,"tag":674,"props":1158,"children":1159},{"style":714},[1160],{"type":48,"value":1161},"      autocapture",{"type":43,"tag":674,"props":1163,"children":1164},{"style":687},[1165],{"type":48,"value":782},{"type":43,"tag":674,"props":1167,"children":1168},{"style":681},[1169],{"type":48,"value":825},{"type":43,"tag":674,"props":1171,"children":1172},{"style":687},[1173],{"type":48,"value":897},{"type":43,"tag":674,"props":1175,"children":1176},{"style":681},[1177],{"type":48,"value":984},{"type":43,"tag":674,"props":1179,"children":1180},{"style":687},[1181],{"type":48,"value":989},{"type":43,"tag":674,"props":1183,"children":1184},{"style":681},[1185],{"type":48,"value":1186},"autocapture",{"type":43,"tag":674,"props":1188,"children":1189},{"style":687},[1190],{"type":48,"value":1191}," ??",{"type":43,"tag":674,"props":1193,"children":1194},{"style":681},[1195],{"type":48,"value":825},{"type":43,"tag":674,"props":1197,"children":1198},{"style":687},[1199],{"type":48,"value":897},{"type":43,"tag":674,"props":1201,"children":1202},{"style":1009},[1203],{"type":48,"value":1012},{"type":43,"tag":674,"props":1205,"children":1206},{"style":687},[1207],{"type":48,"value":989},{"type":43,"tag":674,"props":1209,"children":1210},{"style":714},[1211],{"type":48,"value":684},{"type":43,"tag":674,"props":1213,"children":1214},{"style":687},[1215],{"type":48,"value":748},{"type":43,"tag":674,"props":1217,"children":1218},{"style":740},[1219],{"type":48,"value":1186},{"type":43,"tag":674,"props":1221,"children":1222},{"style":687},[1223],{"type":48,"value":748},{"type":43,"tag":674,"props":1225,"children":1226},{"style":714},[1227],{"type":48,"value":753},{"type":43,"tag":674,"props":1229,"children":1230},{"style":687},[1231],{"type":48,"value":1232},"??",{"type":43,"tag":674,"props":1234,"children":1235},{"style":687},[1236],{"type":48,"value":737},{"type":43,"tag":674,"props":1238,"children":1239},{"style":740},[1240],{"type":48,"value":1050},{"type":43,"tag":674,"props":1242,"children":1243},{"style":687},[1244],{"type":48,"value":748},{"type":43,"tag":674,"props":1246,"children":1247},{"style":687},[1248],{"type":48,"value":875},{"type":43,"tag":674,"props":1250,"children":1252},{"class":676,"line":1251},14,[1253,1258,1262,1266,1270,1274,1278,1283,1287,1291,1295,1299,1303,1307,1311,1315,1319,1323,1327,1331,1335,1339],{"type":43,"tag":674,"props":1254,"children":1255},{"style":714},[1256],{"type":48,"value":1257},"      capturePageview",{"type":43,"tag":674,"props":1259,"children":1260},{"style":687},[1261],{"type":48,"value":782},{"type":43,"tag":674,"props":1263,"children":1264},{"style":681},[1265],{"type":48,"value":825},{"type":43,"tag":674,"props":1267,"children":1268},{"style":687},[1269],{"type":48,"value":897},{"type":43,"tag":674,"props":1271,"children":1272},{"style":681},[1273],{"type":48,"value":984},{"type":43,"tag":674,"props":1275,"children":1276},{"style":687},[1277],{"type":48,"value":989},{"type":43,"tag":674,"props":1279,"children":1280},{"style":681},[1281],{"type":48,"value":1282},"capture_pageview",{"type":43,"tag":674,"props":1284,"children":1285},{"style":687},[1286],{"type":48,"value":1191},{"type":43,"tag":674,"props":1288,"children":1289},{"style":681},[1290],{"type":48,"value":825},{"type":43,"tag":674,"props":1292,"children":1293},{"style":687},[1294],{"type":48,"value":897},{"type":43,"tag":674,"props":1296,"children":1297},{"style":1009},[1298],{"type":48,"value":1012},{"type":43,"tag":674,"props":1300,"children":1301},{"style":687},[1302],{"type":48,"value":989},{"type":43,"tag":674,"props":1304,"children":1305},{"style":714},[1306],{"type":48,"value":684},{"type":43,"tag":674,"props":1308,"children":1309},{"style":687},[1310],{"type":48,"value":748},{"type":43,"tag":674,"props":1312,"children":1313},{"style":740},[1314],{"type":48,"value":1282},{"type":43,"tag":674,"props":1316,"children":1317},{"style":687},[1318],{"type":48,"value":748},{"type":43,"tag":674,"props":1320,"children":1321},{"style":714},[1322],{"type":48,"value":753},{"type":43,"tag":674,"props":1324,"children":1325},{"style":687},[1326],{"type":48,"value":1232},{"type":43,"tag":674,"props":1328,"children":1329},{"style":687},[1330],{"type":48,"value":737},{"type":43,"tag":674,"props":1332,"children":1333},{"style":740},[1334],{"type":48,"value":1050},{"type":43,"tag":674,"props":1336,"children":1337},{"style":687},[1338],{"type":48,"value":748},{"type":43,"tag":674,"props":1340,"children":1341},{"style":687},[1342],{"type":48,"value":875},{"type":43,"tag":674,"props":1344,"children":1346},{"class":676,"line":1345},15,[1347,1352,1356,1360,1364,1368,1372,1377,1381,1385,1389,1393,1397,1401,1405,1409,1413,1417,1421,1425,1429,1433],{"type":43,"tag":674,"props":1348,"children":1349},{"style":714},[1350],{"type":48,"value":1351},"      capturePageleave",{"type":43,"tag":674,"props":1353,"children":1354},{"style":687},[1355],{"type":48,"value":782},{"type":43,"tag":674,"props":1357,"children":1358},{"style":681},[1359],{"type":48,"value":825},{"type":43,"tag":674,"props":1361,"children":1362},{"style":687},[1363],{"type":48,"value":897},{"type":43,"tag":674,"props":1365,"children":1366},{"style":681},[1367],{"type":48,"value":984},{"type":43,"tag":674,"props":1369,"children":1370},{"style":687},[1371],{"type":48,"value":989},{"type":43,"tag":674,"props":1373,"children":1374},{"style":681},[1375],{"type":48,"value":1376},"capture_pageleave",{"type":43,"tag":674,"props":1378,"children":1379},{"style":687},[1380],{"type":48,"value":1191},{"type":43,"tag":674,"props":1382,"children":1383},{"style":681},[1384],{"type":48,"value":825},{"type":43,"tag":674,"props":1386,"children":1387},{"style":687},[1388],{"type":48,"value":897},{"type":43,"tag":674,"props":1390,"children":1391},{"style":1009},[1392],{"type":48,"value":1012},{"type":43,"tag":674,"props":1394,"children":1395},{"style":687},[1396],{"type":48,"value":989},{"type":43,"tag":674,"props":1398,"children":1399},{"style":714},[1400],{"type":48,"value":684},{"type":43,"tag":674,"props":1402,"children":1403},{"style":687},[1404],{"type":48,"value":748},{"type":43,"tag":674,"props":1406,"children":1407},{"style":740},[1408],{"type":48,"value":1376},{"type":43,"tag":674,"props":1410,"children":1411},{"style":687},[1412],{"type":48,"value":748},{"type":43,"tag":674,"props":1414,"children":1415},{"style":714},[1416],{"type":48,"value":753},{"type":43,"tag":674,"props":1418,"children":1419},{"style":687},[1420],{"type":48,"value":1232},{"type":43,"tag":674,"props":1422,"children":1423},{"style":687},[1424],{"type":48,"value":737},{"type":43,"tag":674,"props":1426,"children":1427},{"style":740},[1428],{"type":48,"value":1050},{"type":43,"tag":674,"props":1430,"children":1431},{"style":687},[1432],{"type":48,"value":748},{"type":43,"tag":674,"props":1434,"children":1435},{"style":687},[1436],{"type":48,"value":875},{"type":43,"tag":674,"props":1438,"children":1440},{"class":676,"line":1439},16,[1441,1446,1450,1454,1458,1462,1466,1471,1476,1481],{"type":43,"tag":674,"props":1442,"children":1443},{"style":714},[1444],{"type":48,"value":1445},"      sessionRecording",{"type":43,"tag":674,"props":1447,"children":1448},{"style":687},[1449],{"type":48,"value":782},{"type":43,"tag":674,"props":1451,"children":1452},{"style":681},[1453],{"type":48,"value":825},{"type":43,"tag":674,"props":1455,"children":1456},{"style":687},[1457],{"type":48,"value":897},{"type":43,"tag":674,"props":1459,"children":1460},{"style":681},[1461],{"type":48,"value":984},{"type":43,"tag":674,"props":1463,"children":1464},{"style":687},[1465],{"type":48,"value":989},{"type":43,"tag":674,"props":1467,"children":1468},{"style":681},[1469],{"type":48,"value":1470},"enable_recording_console_log",{"type":43,"tag":674,"props":1472,"children":1473},{"style":687},[1474],{"type":48,"value":1475}," !==",{"type":43,"tag":674,"props":1477,"children":1478},{"style":687},[1479],{"type":48,"value":1480}," undefined",{"type":43,"tag":674,"props":1482,"children":1483},{"style":687},[1484],{"type":48,"value":1485}," ||\n",{"type":43,"tag":674,"props":1487,"children":1489},{"class":676,"line":1488},17,[1490,1495,1499,1504,1508,1513],{"type":43,"tag":674,"props":1491,"children":1492},{"style":681},[1493],{"type":48,"value":1494},"                        ph",{"type":43,"tag":674,"props":1496,"children":1497},{"style":687},[1498],{"type":48,"value":897},{"type":43,"tag":674,"props":1500,"children":1501},{"style":681},[1502],{"type":48,"value":1503},"sessionRecording",{"type":43,"tag":674,"props":1505,"children":1506},{"style":687},[1507],{"type":48,"value":989},{"type":43,"tag":674,"props":1509,"children":1510},{"style":681},[1511],{"type":48,"value":1512},"started",{"type":43,"tag":674,"props":1514,"children":1515},{"style":687},[1516],{"type":48,"value":1485},{"type":43,"tag":674,"props":1518,"children":1520},{"class":676,"line":1519},18,[1521,1526,1531,1535],{"type":43,"tag":674,"props":1522,"children":1523},{"style":687},[1524],{"type":48,"value":1525},"                        '",{"type":43,"tag":674,"props":1527,"children":1528},{"style":740},[1529],{"type":48,"value":1530},"check network",{"type":43,"tag":674,"props":1532,"children":1533},{"style":687},[1534],{"type":48,"value":748},{"type":43,"tag":674,"props":1536,"children":1537},{"style":687},[1538],{"type":48,"value":875},{"type":43,"tag":674,"props":1540,"children":1542},{"class":676,"line":1541},19,[1543,1548,1552,1556,1560,1564,1568,1573,1577,1581,1585,1589,1593,1597,1601,1605,1609,1613,1617,1621,1625,1629],{"type":43,"tag":674,"props":1544,"children":1545},{"style":714},[1546],{"type":48,"value":1547},"      persistence",{"type":43,"tag":674,"props":1549,"children":1550},{"style":687},[1551],{"type":48,"value":782},{"type":43,"tag":674,"props":1553,"children":1554},{"style":681},[1555],{"type":48,"value":825},{"type":43,"tag":674,"props":1557,"children":1558},{"style":687},[1559],{"type":48,"value":897},{"type":43,"tag":674,"props":1561,"children":1562},{"style":681},[1563],{"type":48,"value":984},{"type":43,"tag":674,"props":1565,"children":1566},{"style":687},[1567],{"type":48,"value":989},{"type":43,"tag":674,"props":1569,"children":1570},{"style":681},[1571],{"type":48,"value":1572},"persistence",{"type":43,"tag":674,"props":1574,"children":1575},{"style":687},[1576],{"type":48,"value":907},{"type":43,"tag":674,"props":1578,"children":1579},{"style":681},[1580],{"type":48,"value":825},{"type":43,"tag":674,"props":1582,"children":1583},{"style":687},[1584],{"type":48,"value":897},{"type":43,"tag":674,"props":1586,"children":1587},{"style":1009},[1588],{"type":48,"value":1012},{"type":43,"tag":674,"props":1590,"children":1591},{"style":687},[1592],{"type":48,"value":989},{"type":43,"tag":674,"props":1594,"children":1595},{"style":714},[1596],{"type":48,"value":684},{"type":43,"tag":674,"props":1598,"children":1599},{"style":687},[1600],{"type":48,"value":748},{"type":43,"tag":674,"props":1602,"children":1603},{"style":740},[1604],{"type":48,"value":1572},{"type":43,"tag":674,"props":1606,"children":1607},{"style":687},[1608],{"type":48,"value":748},{"type":43,"tag":674,"props":1610,"children":1611},{"style":714},[1612],{"type":48,"value":753},{"type":43,"tag":674,"props":1614,"children":1615},{"style":687},[1616],{"type":48,"value":1041},{"type":43,"tag":674,"props":1618,"children":1619},{"style":687},[1620],{"type":48,"value":737},{"type":43,"tag":674,"props":1622,"children":1623},{"style":740},[1624],{"type":48,"value":1050},{"type":43,"tag":674,"props":1626,"children":1627},{"style":687},[1628],{"type":48,"value":748},{"type":43,"tag":674,"props":1630,"children":1631},{"style":687},[1632],{"type":48,"value":875},{"type":43,"tag":674,"props":1634,"children":1636},{"class":676,"line":1635},20,[1637,1642,1646,1650,1654,1658,1662,1667,1671,1675,1679,1683,1687,1691,1695,1699,1703,1707,1711],{"type":43,"tag":674,"props":1638,"children":1639},{"style":714},[1640],{"type":48,"value":1641},"      debug",{"type":43,"tag":674,"props":1643,"children":1644},{"style":687},[1645],{"type":48,"value":782},{"type":43,"tag":674,"props":1647,"children":1648},{"style":681},[1649],{"type":48,"value":825},{"type":43,"tag":674,"props":1651,"children":1652},{"style":687},[1653],{"type":48,"value":897},{"type":43,"tag":674,"props":1655,"children":1656},{"style":681},[1657],{"type":48,"value":984},{"type":43,"tag":674,"props":1659,"children":1660},{"style":687},[1661],{"type":48,"value":989},{"type":43,"tag":674,"props":1663,"children":1664},{"style":681},[1665],{"type":48,"value":1666},"debug",{"type":43,"tag":674,"props":1668,"children":1669},{"style":687},[1670],{"type":48,"value":1191},{"type":43,"tag":674,"props":1672,"children":1673},{"style":681},[1674],{"type":48,"value":825},{"type":43,"tag":674,"props":1676,"children":1677},{"style":687},[1678],{"type":48,"value":897},{"type":43,"tag":674,"props":1680,"children":1681},{"style":1009},[1682],{"type":48,"value":1012},{"type":43,"tag":674,"props":1684,"children":1685},{"style":687},[1686],{"type":48,"value":989},{"type":43,"tag":674,"props":1688,"children":1689},{"style":714},[1690],{"type":48,"value":684},{"type":43,"tag":674,"props":1692,"children":1693},{"style":687},[1694],{"type":48,"value":748},{"type":43,"tag":674,"props":1696,"children":1697},{"style":740},[1698],{"type":48,"value":1666},{"type":43,"tag":674,"props":1700,"children":1701},{"style":687},[1702],{"type":48,"value":748},{"type":43,"tag":674,"props":1704,"children":1705},{"style":714},[1706],{"type":48,"value":753},{"type":43,"tag":674,"props":1708,"children":1709},{"style":687},[1710],{"type":48,"value":1232},{"type":43,"tag":674,"props":1712,"children":1713},{"style":785},[1714],{"type":48,"value":1715}," false\n",{"type":43,"tag":674,"props":1717,"children":1719},{"class":676,"line":1718},21,[1720],{"type":43,"tag":674,"props":1721,"children":1722},{"style":687},[1723],{"type":48,"value":1724},"    },\n",{"type":43,"tag":674,"props":1726,"children":1728},{"class":676,"line":1727},22,[1729,1734,1738,1742,1746,1751,1755,1760,1764,1768,1772,1776],{"type":43,"tag":674,"props":1730,"children":1731},{"style":714},[1732],{"type":48,"value":1733},"    distinctId",{"type":43,"tag":674,"props":1735,"children":1736},{"style":687},[1737],{"type":48,"value":782},{"type":43,"tag":674,"props":1739,"children":1740},{"style":681},[1741],{"type":48,"value":825},{"type":43,"tag":674,"props":1743,"children":1744},{"style":687},[1745],{"type":48,"value":897},{"type":43,"tag":674,"props":1747,"children":1748},{"style":1009},[1749],{"type":48,"value":1750},"get_distinct_id",{"type":43,"tag":674,"props":1752,"children":1753},{"style":687},[1754],{"type":48,"value":989},{"type":43,"tag":674,"props":1756,"children":1757},{"style":714},[1758],{"type":48,"value":1759},"() ",{"type":43,"tag":674,"props":1761,"children":1762},{"style":687},[1763],{"type":48,"value":1041},{"type":43,"tag":674,"props":1765,"children":1766},{"style":687},[1767],{"type":48,"value":737},{"type":43,"tag":674,"props":1769,"children":1770},{"style":740},[1771],{"type":48,"value":1050},{"type":43,"tag":674,"props":1773,"children":1774},{"style":687},[1775],{"type":48,"value":748},{"type":43,"tag":674,"props":1777,"children":1778},{"style":687},[1779],{"type":48,"value":875},{"type":43,"tag":674,"props":1781,"children":1783},{"class":676,"line":1782},23,[1784,1789,1793,1797,1801,1806,1810,1814,1818,1822,1826,1830],{"type":43,"tag":674,"props":1785,"children":1786},{"style":714},[1787],{"type":48,"value":1788},"    sessionId",{"type":43,"tag":674,"props":1790,"children":1791},{"style":687},[1792],{"type":48,"value":782},{"type":43,"tag":674,"props":1794,"children":1795},{"style":681},[1796],{"type":48,"value":825},{"type":43,"tag":674,"props":1798,"children":1799},{"style":687},[1800],{"type":48,"value":897},{"type":43,"tag":674,"props":1802,"children":1803},{"style":1009},[1804],{"type":48,"value":1805},"get_session_id",{"type":43,"tag":674,"props":1807,"children":1808},{"style":687},[1809],{"type":48,"value":989},{"type":43,"tag":674,"props":1811,"children":1812},{"style":714},[1813],{"type":48,"value":1759},{"type":43,"tag":674,"props":1815,"children":1816},{"style":687},[1817],{"type":48,"value":1041},{"type":43,"tag":674,"props":1819,"children":1820},{"style":687},[1821],{"type":48,"value":737},{"type":43,"tag":674,"props":1823,"children":1824},{"style":740},[1825],{"type":48,"value":1050},{"type":43,"tag":674,"props":1827,"children":1828},{"style":687},[1829],{"type":48,"value":748},{"type":43,"tag":674,"props":1831,"children":1832},{"style":687},[1833],{"type":48,"value":875},{"type":43,"tag":674,"props":1835,"children":1837},{"class":676,"line":1836},24,[1838,1843,1847,1851,1855,1860,1865,1870,1874,1879,1883,1888,1892,1897,1901,1906,1910,1915,1919,1923,1928],{"type":43,"tag":674,"props":1839,"children":1840},{"style":714},[1841],{"type":48,"value":1842},"    featureFlags",{"type":43,"tag":674,"props":1844,"children":1845},{"style":687},[1846],{"type":48,"value":782},{"type":43,"tag":674,"props":1848,"children":1849},{"style":681},[1850],{"type":48,"value":825},{"type":43,"tag":674,"props":1852,"children":1853},{"style":687},[1854],{"type":48,"value":897},{"type":43,"tag":674,"props":1856,"children":1857},{"style":681},[1858],{"type":48,"value":1859},"getFeatureFlag",{"type":43,"tag":674,"props":1861,"children":1862},{"style":687},[1863],{"type":48,"value":1864}," ?",{"type":43,"tag":674,"props":1866,"children":1867},{"style":681},[1868],{"type":48,"value":1869}," Object",{"type":43,"tag":674,"props":1871,"children":1872},{"style":687},[1873],{"type":48,"value":897},{"type":43,"tag":674,"props":1875,"children":1876},{"style":1009},[1877],{"type":48,"value":1878},"keys",{"type":43,"tag":674,"props":1880,"children":1881},{"style":714},[1882],{"type":48,"value":684},{"type":43,"tag":674,"props":1884,"children":1885},{"style":681},[1886],{"type":48,"value":1887},"ph",{"type":43,"tag":674,"props":1889,"children":1890},{"style":687},[1891],{"type":48,"value":897},{"type":43,"tag":674,"props":1893,"children":1894},{"style":681},[1895],{"type":48,"value":1896},"featureFlags",{"type":43,"tag":674,"props":1898,"children":1899},{"style":687},[1900],{"type":48,"value":989},{"type":43,"tag":674,"props":1902,"children":1903},{"style":681},[1904],{"type":48,"value":1905},"flags",{"type":43,"tag":674,"props":1907,"children":1908},{"style":687},[1909],{"type":48,"value":907},{"type":43,"tag":674,"props":1911,"children":1912},{"style":687},[1913],{"type":48,"value":1914}," {}",{"type":43,"tag":674,"props":1916,"children":1917},{"style":714},[1918],{"type":48,"value":753},{"type":43,"tag":674,"props":1920,"children":1921},{"style":687},[1922],{"type":48,"value":782},{"type":43,"tag":674,"props":1924,"children":1925},{"style":714},[1926],{"type":48,"value":1927}," []",{"type":43,"tag":674,"props":1929,"children":1930},{"style":687},[1931],{"type":48,"value":875},{"type":43,"tag":674,"props":1933,"children":1935},{"class":676,"line":1934},25,[1936,1941,1945,1949,1953,1957],{"type":43,"tag":674,"props":1937,"children":1938},{"style":714},[1939],{"type":48,"value":1940},"    activeFeatureFlags",{"type":43,"tag":674,"props":1942,"children":1943},{"style":687},[1944],{"type":48,"value":782},{"type":43,"tag":674,"props":1946,"children":1947},{"style":681},[1948],{"type":48,"value":825},{"type":43,"tag":674,"props":1950,"children":1951},{"style":687},[1952],{"type":48,"value":897},{"type":43,"tag":674,"props":1954,"children":1955},{"style":681},[1956],{"type":48,"value":1859},{"type":43,"tag":674,"props":1958,"children":1959},{"style":687},[1960],{"type":48,"value":1961}," ?\n",{"type":43,"tag":674,"props":1963,"children":1965},{"class":676,"line":1964},26,[1966,1971,1975,1980,1984,1988,1992,1996,2000,2004,2008,2012],{"type":43,"tag":674,"props":1967,"children":1968},{"style":681},[1969],{"type":48,"value":1970},"      Object",{"type":43,"tag":674,"props":1972,"children":1973},{"style":687},[1974],{"type":48,"value":897},{"type":43,"tag":674,"props":1976,"children":1977},{"style":1009},[1978],{"type":48,"value":1979},"entries",{"type":43,"tag":674,"props":1981,"children":1982},{"style":714},[1983],{"type":48,"value":684},{"type":43,"tag":674,"props":1985,"children":1986},{"style":681},[1987],{"type":48,"value":1887},{"type":43,"tag":674,"props":1989,"children":1990},{"style":687},[1991],{"type":48,"value":897},{"type":43,"tag":674,"props":1993,"children":1994},{"style":681},[1995],{"type":48,"value":1896},{"type":43,"tag":674,"props":1997,"children":1998},{"style":687},[1999],{"type":48,"value":989},{"type":43,"tag":674,"props":2001,"children":2002},{"style":681},[2003],{"type":48,"value":1905},{"type":43,"tag":674,"props":2005,"children":2006},{"style":687},[2007],{"type":48,"value":907},{"type":43,"tag":674,"props":2009,"children":2010},{"style":687},[2011],{"type":48,"value":1914},{"type":43,"tag":674,"props":2013,"children":2014},{"style":714},[2015],{"type":48,"value":2016},")\n",{"type":43,"tag":674,"props":2018,"children":2020},{"class":676,"line":2019},27,[2021,2026,2031,2035,2040,2046,2051,2056,2061,2065,2069],{"type":43,"tag":674,"props":2022,"children":2023},{"style":687},[2024],{"type":48,"value":2025},"        .",{"type":43,"tag":674,"props":2027,"children":2028},{"style":1009},[2029],{"type":48,"value":2030},"filter",{"type":43,"tag":674,"props":2032,"children":2033},{"style":714},[2034],{"type":48,"value":684},{"type":43,"tag":674,"props":2036,"children":2037},{"style":687},[2038],{"type":48,"value":2039},"([",{"type":43,"tag":674,"props":2041,"children":2043},{"style":2042},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[2044],{"type":48,"value":2045},"_",{"type":43,"tag":674,"props":2047,"children":2048},{"style":687},[2049],{"type":48,"value":2050},",",{"type":43,"tag":674,"props":2052,"children":2053},{"style":2042},[2054],{"type":48,"value":2055}," v",{"type":43,"tag":674,"props":2057,"children":2058},{"style":687},[2059],{"type":48,"value":2060},"])",{"type":43,"tag":674,"props":2062,"children":2063},{"style":693},[2064],{"type":48,"value":696},{"type":43,"tag":674,"props":2066,"children":2067},{"style":681},[2068],{"type":48,"value":2055},{"type":43,"tag":674,"props":2070,"children":2071},{"style":714},[2072],{"type":48,"value":2016},{"type":43,"tag":674,"props":2074,"children":2076},{"class":676,"line":2075},28,[2077,2081,2086,2090,2094,2099,2103,2107,2112,2116,2120],{"type":43,"tag":674,"props":2078,"children":2079},{"style":687},[2080],{"type":48,"value":2025},{"type":43,"tag":674,"props":2082,"children":2083},{"style":1009},[2084],{"type":48,"value":2085},"map",{"type":43,"tag":674,"props":2087,"children":2088},{"style":714},[2089],{"type":48,"value":684},{"type":43,"tag":674,"props":2091,"children":2092},{"style":687},[2093],{"type":48,"value":2039},{"type":43,"tag":674,"props":2095,"children":2096},{"style":2042},[2097],{"type":48,"value":2098},"k",{"type":43,"tag":674,"props":2100,"children":2101},{"style":687},[2102],{"type":48,"value":2060},{"type":43,"tag":674,"props":2104,"children":2105},{"style":693},[2106],{"type":48,"value":696},{"type":43,"tag":674,"props":2108,"children":2109},{"style":681},[2110],{"type":48,"value":2111}," k",{"type":43,"tag":674,"props":2113,"children":2114},{"style":714},[2115],{"type":48,"value":753},{"type":43,"tag":674,"props":2117,"children":2118},{"style":687},[2119],{"type":48,"value":782},{"type":43,"tag":674,"props":2121,"children":2122},{"style":714},[2123],{"type":48,"value":2124}," []\n",{"type":43,"tag":674,"props":2126,"children":2128},{"class":676,"line":2127},29,[2129],{"type":43,"tag":674,"props":2130,"children":2131},{"style":687},[2132],{"type":48,"value":2133},"  };\n",{"type":43,"tag":674,"props":2135,"children":2137},{"class":676,"line":2136},30,[2138,2143],{"type":43,"tag":674,"props":2139,"children":2140},{"style":687},[2141],{"type":48,"value":2142},"}",{"type":43,"tag":674,"props":2144,"children":2145},{"style":681},[2146],{"type":48,"value":2147},")()\n",{"type":43,"tag":332,"props":2149,"children":2151},{"id":2150},"step-2b-check-for-bundled-posthog-remote-config",[2152],{"type":48,"value":2153},"Step 2b: Check for Bundled PostHog (Remote Config)",{"type":43,"tag":51,"props":2155,"children":2156},{},[2157,2159,2164,2166,2172,2174,2180],{"type":48,"value":2158},"If ",{"type":43,"tag":100,"props":2160,"children":2162},{"className":2161},[],[2163],{"type":48,"value":8},{"type":48,"value":2165}," is not on ",{"type":43,"tag":100,"props":2167,"children":2169},{"className":2168},[],[2170],{"type":48,"value":2171},"window",{"type":48,"value":2173},", check for bundled implementations that use ",{"type":43,"tag":100,"props":2175,"children":2177},{"className":2176},[],[2178],{"type":48,"value":2179},"_POSTHOG_REMOTE_CONFIG",{"type":48,"value":782},{"type":43,"tag":286,"props":2182,"children":2184},{"className":666,"code":2183,"language":668,"meta":294,"style":294},"(() => {\n  const remoteConfig = window._POSTHOG_REMOTE_CONFIG;\n  if (!remoteConfig) {\n    return { found: false };\n  }\n\n  const tokens = Object.keys(remoteConfig);\n  const configs = tokens.map(token => {\n    const cfg = remoteConfig[token]?.config || {};\n    return {\n      token,\n      hasFeatureFlags: cfg.hasFeatureFlags || false,\n      autocapture: !cfg.autocapture_opt_out,\n      sessionRecording: cfg.sessionRecording || false,\n      heatmaps: cfg.heatmaps || false,\n      surveys: cfg.surveys || false,\n      capturePerformance: cfg.capturePerformance || {},\n      defaultIdentifiedOnly: cfg.defaultIdentifiedOnly || false\n    };\n  });\n\n  return {\n    found: true,\n    bundled: true,\n    configs\n  };\n})()\n",[2185],{"type":43,"tag":100,"props":2186,"children":2187},{"__ignoreMap":294},[2188,2207,2240,2269,2297,2304,2311,2356,2400,2452,2463,2474,2511,2545,2580,2617,2654,2688,2721,2729,2745,2752,2763,2783,2803,2811,2818],{"type":43,"tag":674,"props":2189,"children":2190},{"class":676,"line":677},[2191,2195,2199,2203],{"type":43,"tag":674,"props":2192,"children":2193},{"style":681},[2194],{"type":48,"value":684},{"type":43,"tag":674,"props":2196,"children":2197},{"style":687},[2198],{"type":48,"value":690},{"type":43,"tag":674,"props":2200,"children":2201},{"style":693},[2202],{"type":48,"value":696},{"type":43,"tag":674,"props":2204,"children":2205},{"style":687},[2206],{"type":48,"value":701},{"type":43,"tag":674,"props":2208,"children":2209},{"class":676,"line":704},[2210,2214,2219,2223,2228,2232,2236],{"type":43,"tag":674,"props":2211,"children":2212},{"style":693},[2213],{"type":48,"value":820},{"type":43,"tag":674,"props":2215,"children":2216},{"style":681},[2217],{"type":48,"value":2218}," remoteConfig",{"type":43,"tag":674,"props":2220,"children":2221},{"style":687},[2222],{"type":48,"value":830},{"type":43,"tag":674,"props":2224,"children":2225},{"style":681},[2226],{"type":48,"value":2227}," window",{"type":43,"tag":674,"props":2229,"children":2230},{"style":687},[2231],{"type":48,"value":897},{"type":43,"tag":674,"props":2233,"children":2234},{"style":681},[2235],{"type":48,"value":2179},{"type":43,"tag":674,"props":2237,"children":2238},{"style":687},[2239],{"type":48,"value":839},{"type":43,"tag":674,"props":2241,"children":2242},{"class":676,"line":761},[2243,2247,2251,2256,2261,2265],{"type":43,"tag":674,"props":2244,"children":2245},{"style":708},[2246],{"type":48,"value":711},{"type":43,"tag":674,"props":2248,"children":2249},{"style":714},[2250],{"type":48,"value":717},{"type":43,"tag":674,"props":2252,"children":2253},{"style":687},[2254],{"type":48,"value":2255},"!",{"type":43,"tag":674,"props":2257,"children":2258},{"style":681},[2259],{"type":48,"value":2260},"remoteConfig",{"type":43,"tag":674,"props":2262,"children":2263},{"style":714},[2264],{"type":48,"value":753},{"type":43,"tag":674,"props":2266,"children":2267},{"style":687},[2268],{"type":48,"value":758},{"type":43,"tag":674,"props":2270,"children":2271},{"class":676,"line":30},[2272,2276,2280,2285,2289,2293],{"type":43,"tag":674,"props":2273,"children":2274},{"style":708},[2275],{"type":48,"value":767},{"type":43,"tag":674,"props":2277,"children":2278},{"style":687},[2279],{"type":48,"value":772},{"type":43,"tag":674,"props":2281,"children":2282},{"style":714},[2283],{"type":48,"value":2284}," found",{"type":43,"tag":674,"props":2286,"children":2287},{"style":687},[2288],{"type":48,"value":782},{"type":43,"tag":674,"props":2290,"children":2291},{"style":785},[2292],{"type":48,"value":788},{"type":43,"tag":674,"props":2294,"children":2295},{"style":687},[2296],{"type":48,"value":793},{"type":43,"tag":674,"props":2298,"children":2299},{"class":676,"line":804},[2300],{"type":43,"tag":674,"props":2301,"children":2302},{"style":687},[2303],{"type":48,"value":801},{"type":43,"tag":674,"props":2305,"children":2306},{"class":676,"line":814},[2307],{"type":43,"tag":674,"props":2308,"children":2309},{"emptyLinePlaceholder":808},[2310],{"type":48,"value":811},{"type":43,"tag":674,"props":2312,"children":2313},{"class":676,"line":842},[2314,2318,2323,2327,2331,2335,2339,2343,2347,2352],{"type":43,"tag":674,"props":2315,"children":2316},{"style":693},[2317],{"type":48,"value":820},{"type":43,"tag":674,"props":2319,"children":2320},{"style":681},[2321],{"type":48,"value":2322}," tokens",{"type":43,"tag":674,"props":2324,"children":2325},{"style":687},[2326],{"type":48,"value":830},{"type":43,"tag":674,"props":2328,"children":2329},{"style":681},[2330],{"type":48,"value":1869},{"type":43,"tag":674,"props":2332,"children":2333},{"style":687},[2334],{"type":48,"value":897},{"type":43,"tag":674,"props":2336,"children":2337},{"style":1009},[2338],{"type":48,"value":1878},{"type":43,"tag":674,"props":2340,"children":2341},{"style":714},[2342],{"type":48,"value":684},{"type":43,"tag":674,"props":2344,"children":2345},{"style":681},[2346],{"type":48,"value":2260},{"type":43,"tag":674,"props":2348,"children":2349},{"style":714},[2350],{"type":48,"value":2351},")",{"type":43,"tag":674,"props":2353,"children":2354},{"style":687},[2355],{"type":48,"value":839},{"type":43,"tag":674,"props":2357,"children":2358},{"class":676,"line":855},[2359,2363,2368,2372,2376,2380,2384,2388,2392,2396],{"type":43,"tag":674,"props":2360,"children":2361},{"style":693},[2362],{"type":48,"value":820},{"type":43,"tag":674,"props":2364,"children":2365},{"style":681},[2366],{"type":48,"value":2367}," configs",{"type":43,"tag":674,"props":2369,"children":2370},{"style":687},[2371],{"type":48,"value":830},{"type":43,"tag":674,"props":2373,"children":2374},{"style":681},[2375],{"type":48,"value":2322},{"type":43,"tag":674,"props":2377,"children":2378},{"style":687},[2379],{"type":48,"value":897},{"type":43,"tag":674,"props":2381,"children":2382},{"style":1009},[2383],{"type":48,"value":2085},{"type":43,"tag":674,"props":2385,"children":2386},{"style":714},[2387],{"type":48,"value":684},{"type":43,"tag":674,"props":2389,"children":2390},{"style":2042},[2391],{"type":48,"value":994},{"type":43,"tag":674,"props":2393,"children":2394},{"style":693},[2395],{"type":48,"value":696},{"type":43,"tag":674,"props":2397,"children":2398},{"style":687},[2399],{"type":48,"value":701},{"type":43,"tag":674,"props":2401,"children":2402},{"class":676,"line":878},[2403,2408,2413,2417,2421,2426,2430,2435,2439,2443,2447],{"type":43,"tag":674,"props":2404,"children":2405},{"style":693},[2406],{"type":48,"value":2407},"    const",{"type":43,"tag":674,"props":2409,"children":2410},{"style":681},[2411],{"type":48,"value":2412}," cfg",{"type":43,"tag":674,"props":2414,"children":2415},{"style":687},[2416],{"type":48,"value":830},{"type":43,"tag":674,"props":2418,"children":2419},{"style":681},[2420],{"type":48,"value":2218},{"type":43,"tag":674,"props":2422,"children":2423},{"style":714},[2424],{"type":48,"value":2425},"[",{"type":43,"tag":674,"props":2427,"children":2428},{"style":681},[2429],{"type":48,"value":994},{"type":43,"tag":674,"props":2431,"children":2432},{"style":714},[2433],{"type":48,"value":2434},"]",{"type":43,"tag":674,"props":2436,"children":2437},{"style":687},[2438],{"type":48,"value":989},{"type":43,"tag":674,"props":2440,"children":2441},{"style":681},[2442],{"type":48,"value":984},{"type":43,"tag":674,"props":2444,"children":2445},{"style":687},[2446],{"type":48,"value":907},{"type":43,"tag":674,"props":2448,"children":2449},{"style":687},[2450],{"type":48,"value":2451}," {};\n",{"type":43,"tag":674,"props":2453,"children":2454},{"class":676,"line":944},[2455,2459],{"type":43,"tag":674,"props":2456,"children":2457},{"style":708},[2458],{"type":48,"value":767},{"type":43,"tag":674,"props":2460,"children":2461},{"style":687},[2462],{"type":48,"value":701},{"type":43,"tag":674,"props":2464,"children":2465},{"class":676,"line":961},[2466,2470],{"type":43,"tag":674,"props":2467,"children":2468},{"style":681},[2469],{"type":48,"value":967},{"type":43,"tag":674,"props":2471,"children":2472},{"style":687},[2473],{"type":48,"value":875},{"type":43,"tag":674,"props":2475,"children":2476},{"class":676,"line":1061},[2477,2482,2486,2490,2494,2499,2503,2507],{"type":43,"tag":674,"props":2478,"children":2479},{"style":714},[2480],{"type":48,"value":2481},"      hasFeatureFlags",{"type":43,"tag":674,"props":2483,"children":2484},{"style":687},[2485],{"type":48,"value":782},{"type":43,"tag":674,"props":2487,"children":2488},{"style":681},[2489],{"type":48,"value":2412},{"type":43,"tag":674,"props":2491,"children":2492},{"style":687},[2493],{"type":48,"value":897},{"type":43,"tag":674,"props":2495,"children":2496},{"style":681},[2497],{"type":48,"value":2498},"hasFeatureFlags",{"type":43,"tag":674,"props":2500,"children":2501},{"style":687},[2502],{"type":48,"value":907},{"type":43,"tag":674,"props":2504,"children":2505},{"style":785},[2506],{"type":48,"value":788},{"type":43,"tag":674,"props":2508,"children":2509},{"style":687},[2510],{"type":48,"value":875},{"type":43,"tag":674,"props":2512,"children":2513},{"class":676,"line":1155},[2514,2518,2522,2527,2532,2536,2541],{"type":43,"tag":674,"props":2515,"children":2516},{"style":714},[2517],{"type":48,"value":1161},{"type":43,"tag":674,"props":2519,"children":2520},{"style":687},[2521],{"type":48,"value":782},{"type":43,"tag":674,"props":2523,"children":2524},{"style":687},[2525],{"type":48,"value":2526}," !",{"type":43,"tag":674,"props":2528,"children":2529},{"style":681},[2530],{"type":48,"value":2531},"cfg",{"type":43,"tag":674,"props":2533,"children":2534},{"style":687},[2535],{"type":48,"value":897},{"type":43,"tag":674,"props":2537,"children":2538},{"style":681},[2539],{"type":48,"value":2540},"autocapture_opt_out",{"type":43,"tag":674,"props":2542,"children":2543},{"style":687},[2544],{"type":48,"value":875},{"type":43,"tag":674,"props":2546,"children":2547},{"class":676,"line":1251},[2548,2552,2556,2560,2564,2568,2572,2576],{"type":43,"tag":674,"props":2549,"children":2550},{"style":714},[2551],{"type":48,"value":1445},{"type":43,"tag":674,"props":2553,"children":2554},{"style":687},[2555],{"type":48,"value":782},{"type":43,"tag":674,"props":2557,"children":2558},{"style":681},[2559],{"type":48,"value":2412},{"type":43,"tag":674,"props":2561,"children":2562},{"style":687},[2563],{"type":48,"value":897},{"type":43,"tag":674,"props":2565,"children":2566},{"style":681},[2567],{"type":48,"value":1503},{"type":43,"tag":674,"props":2569,"children":2570},{"style":687},[2571],{"type":48,"value":907},{"type":43,"tag":674,"props":2573,"children":2574},{"style":785},[2575],{"type":48,"value":788},{"type":43,"tag":674,"props":2577,"children":2578},{"style":687},[2579],{"type":48,"value":875},{"type":43,"tag":674,"props":2581,"children":2582},{"class":676,"line":1345},[2583,2588,2592,2596,2600,2605,2609,2613],{"type":43,"tag":674,"props":2584,"children":2585},{"style":714},[2586],{"type":48,"value":2587},"      heatmaps",{"type":43,"tag":674,"props":2589,"children":2590},{"style":687},[2591],{"type":48,"value":782},{"type":43,"tag":674,"props":2593,"children":2594},{"style":681},[2595],{"type":48,"value":2412},{"type":43,"tag":674,"props":2597,"children":2598},{"style":687},[2599],{"type":48,"value":897},{"type":43,"tag":674,"props":2601,"children":2602},{"style":681},[2603],{"type":48,"value":2604},"heatmaps",{"type":43,"tag":674,"props":2606,"children":2607},{"style":687},[2608],{"type":48,"value":907},{"type":43,"tag":674,"props":2610,"children":2611},{"style":785},[2612],{"type":48,"value":788},{"type":43,"tag":674,"props":2614,"children":2615},{"style":687},[2616],{"type":48,"value":875},{"type":43,"tag":674,"props":2618,"children":2619},{"class":676,"line":1439},[2620,2625,2629,2633,2637,2642,2646,2650],{"type":43,"tag":674,"props":2621,"children":2622},{"style":714},[2623],{"type":48,"value":2624},"      surveys",{"type":43,"tag":674,"props":2626,"children":2627},{"style":687},[2628],{"type":48,"value":782},{"type":43,"tag":674,"props":2630,"children":2631},{"style":681},[2632],{"type":48,"value":2412},{"type":43,"tag":674,"props":2634,"children":2635},{"style":687},[2636],{"type":48,"value":897},{"type":43,"tag":674,"props":2638,"children":2639},{"style":681},[2640],{"type":48,"value":2641},"surveys",{"type":43,"tag":674,"props":2643,"children":2644},{"style":687},[2645],{"type":48,"value":907},{"type":43,"tag":674,"props":2647,"children":2648},{"style":785},[2649],{"type":48,"value":788},{"type":43,"tag":674,"props":2651,"children":2652},{"style":687},[2653],{"type":48,"value":875},{"type":43,"tag":674,"props":2655,"children":2656},{"class":676,"line":1488},[2657,2662,2666,2670,2674,2679,2683],{"type":43,"tag":674,"props":2658,"children":2659},{"style":714},[2660],{"type":48,"value":2661},"      capturePerformance",{"type":43,"tag":674,"props":2663,"children":2664},{"style":687},[2665],{"type":48,"value":782},{"type":43,"tag":674,"props":2667,"children":2668},{"style":681},[2669],{"type":48,"value":2412},{"type":43,"tag":674,"props":2671,"children":2672},{"style":687},[2673],{"type":48,"value":897},{"type":43,"tag":674,"props":2675,"children":2676},{"style":681},[2677],{"type":48,"value":2678},"capturePerformance",{"type":43,"tag":674,"props":2680,"children":2681},{"style":687},[2682],{"type":48,"value":907},{"type":43,"tag":674,"props":2684,"children":2685},{"style":687},[2686],{"type":48,"value":2687}," {},\n",{"type":43,"tag":674,"props":2689,"children":2690},{"class":676,"line":1519},[2691,2696,2700,2704,2708,2713,2717],{"type":43,"tag":674,"props":2692,"children":2693},{"style":714},[2694],{"type":48,"value":2695},"      defaultIdentifiedOnly",{"type":43,"tag":674,"props":2697,"children":2698},{"style":687},[2699],{"type":48,"value":782},{"type":43,"tag":674,"props":2701,"children":2702},{"style":681},[2703],{"type":48,"value":2412},{"type":43,"tag":674,"props":2705,"children":2706},{"style":687},[2707],{"type":48,"value":897},{"type":43,"tag":674,"props":2709,"children":2710},{"style":681},[2711],{"type":48,"value":2712},"defaultIdentifiedOnly",{"type":43,"tag":674,"props":2714,"children":2715},{"style":687},[2716],{"type":48,"value":907},{"type":43,"tag":674,"props":2718,"children":2719},{"style":785},[2720],{"type":48,"value":1715},{"type":43,"tag":674,"props":2722,"children":2723},{"class":676,"line":1541},[2724],{"type":43,"tag":674,"props":2725,"children":2726},{"style":687},[2727],{"type":48,"value":2728},"    };\n",{"type":43,"tag":674,"props":2730,"children":2731},{"class":676,"line":1635},[2732,2737,2741],{"type":43,"tag":674,"props":2733,"children":2734},{"style":687},[2735],{"type":48,"value":2736},"  }",{"type":43,"tag":674,"props":2738,"children":2739},{"style":714},[2740],{"type":48,"value":2351},{"type":43,"tag":674,"props":2742,"children":2743},{"style":687},[2744],{"type":48,"value":839},{"type":43,"tag":674,"props":2746,"children":2747},{"class":676,"line":1718},[2748],{"type":43,"tag":674,"props":2749,"children":2750},{"emptyLinePlaceholder":808},[2751],{"type":48,"value":811},{"type":43,"tag":674,"props":2753,"children":2754},{"class":676,"line":1727},[2755,2759],{"type":43,"tag":674,"props":2756,"children":2757},{"style":708},[2758],{"type":48,"value":848},{"type":43,"tag":674,"props":2760,"children":2761},{"style":687},[2762],{"type":48,"value":701},{"type":43,"tag":674,"props":2764,"children":2765},{"class":676,"line":1782},[2766,2771,2775,2779],{"type":43,"tag":674,"props":2767,"children":2768},{"style":714},[2769],{"type":48,"value":2770},"    found",{"type":43,"tag":674,"props":2772,"children":2773},{"style":687},[2774],{"type":48,"value":782},{"type":43,"tag":674,"props":2776,"children":2777},{"style":785},[2778],{"type":48,"value":870},{"type":43,"tag":674,"props":2780,"children":2781},{"style":687},[2782],{"type":48,"value":875},{"type":43,"tag":674,"props":2784,"children":2785},{"class":676,"line":1836},[2786,2791,2795,2799],{"type":43,"tag":674,"props":2787,"children":2788},{"style":714},[2789],{"type":48,"value":2790},"    bundled",{"type":43,"tag":674,"props":2792,"children":2793},{"style":687},[2794],{"type":48,"value":782},{"type":43,"tag":674,"props":2796,"children":2797},{"style":785},[2798],{"type":48,"value":870},{"type":43,"tag":674,"props":2800,"children":2801},{"style":687},[2802],{"type":48,"value":875},{"type":43,"tag":674,"props":2804,"children":2805},{"class":676,"line":1934},[2806],{"type":43,"tag":674,"props":2807,"children":2808},{"style":681},[2809],{"type":48,"value":2810},"    configs\n",{"type":43,"tag":674,"props":2812,"children":2813},{"class":676,"line":1964},[2814],{"type":43,"tag":674,"props":2815,"children":2816},{"style":687},[2817],{"type":48,"value":2133},{"type":43,"tag":674,"props":2819,"children":2820},{"class":676,"line":2019},[2821,2825],{"type":43,"tag":674,"props":2822,"children":2823},{"style":687},[2824],{"type":48,"value":2142},{"type":43,"tag":674,"props":2826,"children":2827},{"style":681},[2828],{"type":48,"value":2147},{"type":43,"tag":332,"props":2830,"children":2832},{"id":2831},"step-2c-check-console-for-posthog-debug-messages",[2833],{"type":48,"value":2834},"Step 2c: Check Console for PostHog Debug Messages",{"type":43,"tag":51,"props":2836,"children":2837},{},[2838,2840,2845,2847,2853,2855,2861],{"type":48,"value":2839},"With ",{"type":43,"tag":100,"props":2841,"children":2843},{"className":2842},[],[2844],{"type":48,"value":185},{"type":48,"value":2846},", PostHog outputs detailed logs. Use ",{"type":43,"tag":100,"props":2848,"children":2850},{"className":2849},[],[2851],{"type":48,"value":2852},"list_console_messages",{"type":48,"value":2854}," and look for ",{"type":43,"tag":100,"props":2856,"children":2858},{"className":2857},[],[2859],{"type":48,"value":2860},"[PostHog.js]",{"type":48,"value":2862}," entries:",{"type":43,"tag":51,"props":2864,"children":2865},{},[2866],{"type":43,"tag":72,"props":2867,"children":2868},{},[2869],{"type":48,"value":2870},"Key messages to look for:",{"type":43,"tag":230,"props":2872,"children":2873},{},[2874,2885,2896,2907,2918,2929],{"type":43,"tag":68,"props":2875,"children":2876},{},[2877,2883],{"type":43,"tag":100,"props":2878,"children":2880},{"className":2879},[],[2881],{"type":48,"value":2882},"[PostHog.js] Persistence loaded",{"type":48,"value":2884}," - Shows persistence type (localStorage, sessionStorage, cookie)",{"type":43,"tag":68,"props":2886,"children":2887},{},[2888,2894],{"type":43,"tag":100,"props":2889,"children":2891},{"className":2890},[],[2892],{"type":48,"value":2893},"[PostHog.js] [Surveys] Surveys loaded successfully",{"type":48,"value":2895}," - Surveys module loaded",{"type":43,"tag":68,"props":2897,"children":2898},{},[2899,2905],{"type":43,"tag":100,"props":2900,"children":2902},{"className":2901},[],[2903],{"type":48,"value":2904},"[PostHog.js] [Surveys] flags response received, isSurveysEnabled: X",{"type":48,"value":2906}," - Whether surveys are enabled",{"type":43,"tag":68,"props":2908,"children":2909},{},[2910,2916],{"type":43,"tag":100,"props":2911,"children":2913},{"className":2912},[],[2914],{"type":48,"value":2915},"[PostHog.js] [SessionRecording]",{"type":48,"value":2917}," - Session recording status",{"type":43,"tag":68,"props":2919,"children":2920},{},[2921,2927],{"type":43,"tag":100,"props":2922,"children":2924},{"className":2923},[],[2925],{"type":48,"value":2926},"[PostHog.js] [WebExperiments]",{"type":48,"value":2928}," - Web experiments\u002Ffeature flags",{"type":43,"tag":68,"props":2930,"children":2931},{},[2932,2938],{"type":43,"tag":100,"props":2933,"children":2935},{"className":2934},[],[2936],{"type":48,"value":2937},"[PostHog.js] set_config",{"type":48,"value":2939}," - Configuration changes",{"type":43,"tag":51,"props":2941,"children":2942},{},[2943],{"type":43,"tag":72,"props":2944,"children":2945},{},[2946],{"type":48,"value":2947},"Important distinction:",{"type":43,"tag":230,"props":2949,"children":2950},{},[2951,2961],{"type":43,"tag":68,"props":2952,"children":2953},{},[2954,2959],{"type":43,"tag":72,"props":2955,"children":2956},{},[2957],{"type":48,"value":2958},"Module loaded",{"type":48,"value":2960}," = The JavaScript file loaded successfully",{"type":43,"tag":68,"props":2962,"children":2963},{},[2964,2969],{"type":43,"tag":72,"props":2965,"children":2966},{},[2967],{"type":48,"value":2968},"Feature enabled",{"type":48,"value":2970}," = The feature is turned on in PostHog settings",{"type":43,"tag":51,"props":2972,"children":2973},{},[2974],{"type":48,"value":2975},"A module can load but still be disabled. For example:",{"type":43,"tag":286,"props":2977,"children":2980},{"className":2978,"code":2979,"language":48},[289],"[PostHog.js] [Surveys] Surveys loaded successfully  \u003C- Module loaded\n[PostHog.js] [Surveys] flags response received, isSurveysEnabled: false  \u003C- Feature disabled\n",[2981],{"type":43,"tag":100,"props":2982,"children":2983},{"__ignoreMap":294},[2984],{"type":48,"value":2979},{"type":43,"tag":332,"props":2986,"children":2988},{"id":2987},"step-3-check-for-posthog-script",[2989],{"type":48,"value":2990},"Step 3: Check for PostHog Script",{"type":43,"tag":51,"props":2992,"children":2993},{},[2994],{"type":48,"value":2995},"Look for PostHog scripts in the page:",{"type":43,"tag":286,"props":2997,"children":2999},{"className":666,"code":2998,"language":668,"meta":294,"style":294},"(() => {\n  const scripts = Array.from(document.querySelectorAll('script'));\n  const posthogScripts = scripts.filter(s =>\n    (s.src && (s.src.includes('posthog') || s.src.includes('ph.js'))) ||\n    (s.textContent && (s.textContent.includes('posthog.init') || s.textContent.includes('!function(t,e)')))\n  );\n\n  return {\n    found: posthogScripts.length > 0,\n    scripts: posthogScripts.map(s => ({\n      src: s.src || 'inline',\n      async: s.async,\n      defer: s.defer,\n      type: s.type || 'text\u002Fjavascript'\n    }))\n  };\n})()\n",[3000],{"type":43,"tag":100,"props":3001,"children":3002},{"__ignoreMap":294},[3003,3022,3096,3138,3261,3376,3388,3395,3406,3445,3489,3534,3563,3592,3635,3648,3655],{"type":43,"tag":674,"props":3004,"children":3005},{"class":676,"line":677},[3006,3010,3014,3018],{"type":43,"tag":674,"props":3007,"children":3008},{"style":681},[3009],{"type":48,"value":684},{"type":43,"tag":674,"props":3011,"children":3012},{"style":687},[3013],{"type":48,"value":690},{"type":43,"tag":674,"props":3015,"children":3016},{"style":693},[3017],{"type":48,"value":696},{"type":43,"tag":674,"props":3019,"children":3020},{"style":687},[3021],{"type":48,"value":701},{"type":43,"tag":674,"props":3023,"children":3024},{"class":676,"line":704},[3025,3029,3034,3038,3043,3047,3052,3056,3061,3065,3070,3074,3078,3083,3087,3092],{"type":43,"tag":674,"props":3026,"children":3027},{"style":693},[3028],{"type":48,"value":820},{"type":43,"tag":674,"props":3030,"children":3031},{"style":681},[3032],{"type":48,"value":3033}," scripts",{"type":43,"tag":674,"props":3035,"children":3036},{"style":687},[3037],{"type":48,"value":830},{"type":43,"tag":674,"props":3039,"children":3040},{"style":681},[3041],{"type":48,"value":3042}," Array",{"type":43,"tag":674,"props":3044,"children":3045},{"style":687},[3046],{"type":48,"value":897},{"type":43,"tag":674,"props":3048,"children":3049},{"style":1009},[3050],{"type":48,"value":3051},"from",{"type":43,"tag":674,"props":3053,"children":3054},{"style":714},[3055],{"type":48,"value":684},{"type":43,"tag":674,"props":3057,"children":3058},{"style":681},[3059],{"type":48,"value":3060},"document",{"type":43,"tag":674,"props":3062,"children":3063},{"style":687},[3064],{"type":48,"value":897},{"type":43,"tag":674,"props":3066,"children":3067},{"style":1009},[3068],{"type":48,"value":3069},"querySelectorAll",{"type":43,"tag":674,"props":3071,"children":3072},{"style":714},[3073],{"type":48,"value":684},{"type":43,"tag":674,"props":3075,"children":3076},{"style":687},[3077],{"type":48,"value":748},{"type":43,"tag":674,"props":3079,"children":3080},{"style":740},[3081],{"type":48,"value":3082},"script",{"type":43,"tag":674,"props":3084,"children":3085},{"style":687},[3086],{"type":48,"value":748},{"type":43,"tag":674,"props":3088,"children":3089},{"style":714},[3090],{"type":48,"value":3091},"))",{"type":43,"tag":674,"props":3093,"children":3094},{"style":687},[3095],{"type":48,"value":839},{"type":43,"tag":674,"props":3097,"children":3098},{"class":676,"line":761},[3099,3103,3108,3112,3116,3120,3124,3128,3133],{"type":43,"tag":674,"props":3100,"children":3101},{"style":693},[3102],{"type":48,"value":820},{"type":43,"tag":674,"props":3104,"children":3105},{"style":681},[3106],{"type":48,"value":3107}," posthogScripts",{"type":43,"tag":674,"props":3109,"children":3110},{"style":687},[3111],{"type":48,"value":830},{"type":43,"tag":674,"props":3113,"children":3114},{"style":681},[3115],{"type":48,"value":3033},{"type":43,"tag":674,"props":3117,"children":3118},{"style":687},[3119],{"type":48,"value":897},{"type":43,"tag":674,"props":3121,"children":3122},{"style":1009},[3123],{"type":48,"value":2030},{"type":43,"tag":674,"props":3125,"children":3126},{"style":714},[3127],{"type":48,"value":684},{"type":43,"tag":674,"props":3129,"children":3130},{"style":2042},[3131],{"type":48,"value":3132},"s",{"type":43,"tag":674,"props":3134,"children":3135},{"style":693},[3136],{"type":48,"value":3137}," =>\n",{"type":43,"tag":674,"props":3139,"children":3140},{"class":676,"line":30},[3141,3146,3150,3154,3159,3164,3168,3172,3176,3180,3184,3189,3193,3197,3201,3205,3209,3213,3218,3222,3226,3230,3234,3238,3242,3247,3251,3256],{"type":43,"tag":674,"props":3142,"children":3143},{"style":714},[3144],{"type":48,"value":3145},"    (",{"type":43,"tag":674,"props":3147,"children":3148},{"style":681},[3149],{"type":48,"value":3132},{"type":43,"tag":674,"props":3151,"children":3152},{"style":687},[3153],{"type":48,"value":897},{"type":43,"tag":674,"props":3155,"children":3156},{"style":681},[3157],{"type":48,"value":3158},"src",{"type":43,"tag":674,"props":3160,"children":3161},{"style":687},[3162],{"type":48,"value":3163}," &&",{"type":43,"tag":674,"props":3165,"children":3166},{"style":714},[3167],{"type":48,"value":717},{"type":43,"tag":674,"props":3169,"children":3170},{"style":681},[3171],{"type":48,"value":3132},{"type":43,"tag":674,"props":3173,"children":3174},{"style":687},[3175],{"type":48,"value":897},{"type":43,"tag":674,"props":3177,"children":3178},{"style":681},[3179],{"type":48,"value":3158},{"type":43,"tag":674,"props":3181,"children":3182},{"style":687},[3183],{"type":48,"value":897},{"type":43,"tag":674,"props":3185,"children":3186},{"style":1009},[3187],{"type":48,"value":3188},"includes",{"type":43,"tag":674,"props":3190,"children":3191},{"style":714},[3192],{"type":48,"value":684},{"type":43,"tag":674,"props":3194,"children":3195},{"style":687},[3196],{"type":48,"value":748},{"type":43,"tag":674,"props":3198,"children":3199},{"style":740},[3200],{"type":48,"value":8},{"type":43,"tag":674,"props":3202,"children":3203},{"style":687},[3204],{"type":48,"value":748},{"type":43,"tag":674,"props":3206,"children":3207},{"style":714},[3208],{"type":48,"value":753},{"type":43,"tag":674,"props":3210,"children":3211},{"style":687},[3212],{"type":48,"value":1041},{"type":43,"tag":674,"props":3214,"children":3215},{"style":681},[3216],{"type":48,"value":3217}," s",{"type":43,"tag":674,"props":3219,"children":3220},{"style":687},[3221],{"type":48,"value":897},{"type":43,"tag":674,"props":3223,"children":3224},{"style":681},[3225],{"type":48,"value":3158},{"type":43,"tag":674,"props":3227,"children":3228},{"style":687},[3229],{"type":48,"value":897},{"type":43,"tag":674,"props":3231,"children":3232},{"style":1009},[3233],{"type":48,"value":3188},{"type":43,"tag":674,"props":3235,"children":3236},{"style":714},[3237],{"type":48,"value":684},{"type":43,"tag":674,"props":3239,"children":3240},{"style":687},[3241],{"type":48,"value":748},{"type":43,"tag":674,"props":3243,"children":3244},{"style":740},[3245],{"type":48,"value":3246},"ph.js",{"type":43,"tag":674,"props":3248,"children":3249},{"style":687},[3250],{"type":48,"value":748},{"type":43,"tag":674,"props":3252,"children":3253},{"style":714},[3254],{"type":48,"value":3255},"))) ",{"type":43,"tag":674,"props":3257,"children":3258},{"style":687},[3259],{"type":48,"value":3260},"||\n",{"type":43,"tag":674,"props":3262,"children":3263},{"class":676,"line":804},[3264,3268,3272,3276,3281,3285,3289,3293,3297,3301,3305,3309,3313,3317,3322,3326,3330,3334,3338,3342,3346,3350,3354,3358,3362,3367,3371],{"type":43,"tag":674,"props":3265,"children":3266},{"style":714},[3267],{"type":48,"value":3145},{"type":43,"tag":674,"props":3269,"children":3270},{"style":681},[3271],{"type":48,"value":3132},{"type":43,"tag":674,"props":3273,"children":3274},{"style":687},[3275],{"type":48,"value":897},{"type":43,"tag":674,"props":3277,"children":3278},{"style":681},[3279],{"type":48,"value":3280},"textContent",{"type":43,"tag":674,"props":3282,"children":3283},{"style":687},[3284],{"type":48,"value":3163},{"type":43,"tag":674,"props":3286,"children":3287},{"style":714},[3288],{"type":48,"value":717},{"type":43,"tag":674,"props":3290,"children":3291},{"style":681},[3292],{"type":48,"value":3132},{"type":43,"tag":674,"props":3294,"children":3295},{"style":687},[3296],{"type":48,"value":897},{"type":43,"tag":674,"props":3298,"children":3299},{"style":681},[3300],{"type":48,"value":3280},{"type":43,"tag":674,"props":3302,"children":3303},{"style":687},[3304],{"type":48,"value":897},{"type":43,"tag":674,"props":3306,"children":3307},{"style":1009},[3308],{"type":48,"value":3188},{"type":43,"tag":674,"props":3310,"children":3311},{"style":714},[3312],{"type":48,"value":684},{"type":43,"tag":674,"props":3314,"children":3315},{"style":687},[3316],{"type":48,"value":748},{"type":43,"tag":674,"props":3318,"children":3319},{"style":740},[3320],{"type":48,"value":3321},"posthog.init",{"type":43,"tag":674,"props":3323,"children":3324},{"style":687},[3325],{"type":48,"value":748},{"type":43,"tag":674,"props":3327,"children":3328},{"style":714},[3329],{"type":48,"value":753},{"type":43,"tag":674,"props":3331,"children":3332},{"style":687},[3333],{"type":48,"value":1041},{"type":43,"tag":674,"props":3335,"children":3336},{"style":681},[3337],{"type":48,"value":3217},{"type":43,"tag":674,"props":3339,"children":3340},{"style":687},[3341],{"type":48,"value":897},{"type":43,"tag":674,"props":3343,"children":3344},{"style":681},[3345],{"type":48,"value":3280},{"type":43,"tag":674,"props":3347,"children":3348},{"style":687},[3349],{"type":48,"value":897},{"type":43,"tag":674,"props":3351,"children":3352},{"style":1009},[3353],{"type":48,"value":3188},{"type":43,"tag":674,"props":3355,"children":3356},{"style":714},[3357],{"type":48,"value":684},{"type":43,"tag":674,"props":3359,"children":3360},{"style":687},[3361],{"type":48,"value":748},{"type":43,"tag":674,"props":3363,"children":3364},{"style":740},[3365],{"type":48,"value":3366},"!function(t,e)",{"type":43,"tag":674,"props":3368,"children":3369},{"style":687},[3370],{"type":48,"value":748},{"type":43,"tag":674,"props":3372,"children":3373},{"style":714},[3374],{"type":48,"value":3375},")))\n",{"type":43,"tag":674,"props":3377,"children":3378},{"class":676,"line":814},[3379,3384],{"type":43,"tag":674,"props":3380,"children":3381},{"style":714},[3382],{"type":48,"value":3383},"  )",{"type":43,"tag":674,"props":3385,"children":3386},{"style":687},[3387],{"type":48,"value":839},{"type":43,"tag":674,"props":3389,"children":3390},{"class":676,"line":842},[3391],{"type":43,"tag":674,"props":3392,"children":3393},{"emptyLinePlaceholder":808},[3394],{"type":48,"value":811},{"type":43,"tag":674,"props":3396,"children":3397},{"class":676,"line":855},[3398,3402],{"type":43,"tag":674,"props":3399,"children":3400},{"style":708},[3401],{"type":48,"value":848},{"type":43,"tag":674,"props":3403,"children":3404},{"style":687},[3405],{"type":48,"value":701},{"type":43,"tag":674,"props":3407,"children":3408},{"class":676,"line":878},[3409,3413,3417,3421,3425,3430,3435,3441],{"type":43,"tag":674,"props":3410,"children":3411},{"style":714},[3412],{"type":48,"value":2770},{"type":43,"tag":674,"props":3414,"children":3415},{"style":687},[3416],{"type":48,"value":782},{"type":43,"tag":674,"props":3418,"children":3419},{"style":681},[3420],{"type":48,"value":3107},{"type":43,"tag":674,"props":3422,"children":3423},{"style":687},[3424],{"type":48,"value":897},{"type":43,"tag":674,"props":3426,"children":3427},{"style":681},[3428],{"type":48,"value":3429},"length",{"type":43,"tag":674,"props":3431,"children":3432},{"style":687},[3433],{"type":48,"value":3434}," >",{"type":43,"tag":674,"props":3436,"children":3438},{"style":3437},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[3439],{"type":48,"value":3440}," 0",{"type":43,"tag":674,"props":3442,"children":3443},{"style":687},[3444],{"type":48,"value":875},{"type":43,"tag":674,"props":3446,"children":3447},{"class":676,"line":944},[3448,3453,3457,3461,3465,3469,3473,3477,3481,3485],{"type":43,"tag":674,"props":3449,"children":3450},{"style":714},[3451],{"type":48,"value":3452},"    scripts",{"type":43,"tag":674,"props":3454,"children":3455},{"style":687},[3456],{"type":48,"value":782},{"type":43,"tag":674,"props":3458,"children":3459},{"style":681},[3460],{"type":48,"value":3107},{"type":43,"tag":674,"props":3462,"children":3463},{"style":687},[3464],{"type":48,"value":897},{"type":43,"tag":674,"props":3466,"children":3467},{"style":1009},[3468],{"type":48,"value":2085},{"type":43,"tag":674,"props":3470,"children":3471},{"style":714},[3472],{"type":48,"value":684},{"type":43,"tag":674,"props":3474,"children":3475},{"style":2042},[3476],{"type":48,"value":3132},{"type":43,"tag":674,"props":3478,"children":3479},{"style":693},[3480],{"type":48,"value":696},{"type":43,"tag":674,"props":3482,"children":3483},{"style":714},[3484],{"type":48,"value":717},{"type":43,"tag":674,"props":3486,"children":3487},{"style":687},[3488],{"type":48,"value":758},{"type":43,"tag":674,"props":3490,"children":3491},{"class":676,"line":961},[3492,3497,3501,3505,3509,3513,3517,3521,3526,3530],{"type":43,"tag":674,"props":3493,"children":3494},{"style":714},[3495],{"type":48,"value":3496},"      src",{"type":43,"tag":674,"props":3498,"children":3499},{"style":687},[3500],{"type":48,"value":782},{"type":43,"tag":674,"props":3502,"children":3503},{"style":681},[3504],{"type":48,"value":3217},{"type":43,"tag":674,"props":3506,"children":3507},{"style":687},[3508],{"type":48,"value":897},{"type":43,"tag":674,"props":3510,"children":3511},{"style":681},[3512],{"type":48,"value":3158},{"type":43,"tag":674,"props":3514,"children":3515},{"style":687},[3516],{"type":48,"value":907},{"type":43,"tag":674,"props":3518,"children":3519},{"style":687},[3520],{"type":48,"value":737},{"type":43,"tag":674,"props":3522,"children":3523},{"style":740},[3524],{"type":48,"value":3525},"inline",{"type":43,"tag":674,"props":3527,"children":3528},{"style":687},[3529],{"type":48,"value":748},{"type":43,"tag":674,"props":3531,"children":3532},{"style":687},[3533],{"type":48,"value":875},{"type":43,"tag":674,"props":3535,"children":3536},{"class":676,"line":1061},[3537,3542,3546,3550,3554,3559],{"type":43,"tag":674,"props":3538,"children":3539},{"style":714},[3540],{"type":48,"value":3541},"      async",{"type":43,"tag":674,"props":3543,"children":3544},{"style":687},[3545],{"type":48,"value":782},{"type":43,"tag":674,"props":3547,"children":3548},{"style":681},[3549],{"type":48,"value":3217},{"type":43,"tag":674,"props":3551,"children":3552},{"style":687},[3553],{"type":48,"value":897},{"type":43,"tag":674,"props":3555,"children":3556},{"style":681},[3557],{"type":48,"value":3558},"async",{"type":43,"tag":674,"props":3560,"children":3561},{"style":687},[3562],{"type":48,"value":875},{"type":43,"tag":674,"props":3564,"children":3565},{"class":676,"line":1155},[3566,3571,3575,3579,3583,3588],{"type":43,"tag":674,"props":3567,"children":3568},{"style":714},[3569],{"type":48,"value":3570},"      defer",{"type":43,"tag":674,"props":3572,"children":3573},{"style":687},[3574],{"type":48,"value":782},{"type":43,"tag":674,"props":3576,"children":3577},{"style":681},[3578],{"type":48,"value":3217},{"type":43,"tag":674,"props":3580,"children":3581},{"style":687},[3582],{"type":48,"value":897},{"type":43,"tag":674,"props":3584,"children":3585},{"style":681},[3586],{"type":48,"value":3587},"defer",{"type":43,"tag":674,"props":3589,"children":3590},{"style":687},[3591],{"type":48,"value":875},{"type":43,"tag":674,"props":3593,"children":3594},{"class":676,"line":1251},[3595,3600,3604,3608,3612,3617,3621,3625,3630],{"type":43,"tag":674,"props":3596,"children":3597},{"style":714},[3598],{"type":48,"value":3599},"      type",{"type":43,"tag":674,"props":3601,"children":3602},{"style":687},[3603],{"type":48,"value":782},{"type":43,"tag":674,"props":3605,"children":3606},{"style":681},[3607],{"type":48,"value":3217},{"type":43,"tag":674,"props":3609,"children":3610},{"style":687},[3611],{"type":48,"value":897},{"type":43,"tag":674,"props":3613,"children":3614},{"style":681},[3615],{"type":48,"value":3616},"type",{"type":43,"tag":674,"props":3618,"children":3619},{"style":687},[3620],{"type":48,"value":907},{"type":43,"tag":674,"props":3622,"children":3623},{"style":687},[3624],{"type":48,"value":737},{"type":43,"tag":674,"props":3626,"children":3627},{"style":740},[3628],{"type":48,"value":3629},"text\u002Fjavascript",{"type":43,"tag":674,"props":3631,"children":3632},{"style":687},[3633],{"type":48,"value":3634},"'\n",{"type":43,"tag":674,"props":3636,"children":3637},{"class":676,"line":1345},[3638,3643],{"type":43,"tag":674,"props":3639,"children":3640},{"style":687},[3641],{"type":48,"value":3642},"    }",{"type":43,"tag":674,"props":3644,"children":3645},{"style":714},[3646],{"type":48,"value":3647},"))\n",{"type":43,"tag":674,"props":3649,"children":3650},{"class":676,"line":1439},[3651],{"type":43,"tag":674,"props":3652,"children":3653},{"style":687},[3654],{"type":48,"value":2133},{"type":43,"tag":674,"props":3656,"children":3657},{"class":676,"line":1488},[3658,3662],{"type":43,"tag":674,"props":3659,"children":3660},{"style":687},[3661],{"type":48,"value":2142},{"type":43,"tag":674,"props":3663,"children":3664},{"style":681},[3665],{"type":48,"value":2147},{"type":43,"tag":332,"props":3667,"children":3669},{"id":3668},"step-4-check-network-requests",[3670],{"type":48,"value":3671},"Step 4: Check Network Requests",{"type":43,"tag":51,"props":3673,"children":3674},{},[3675],{"type":48,"value":3676},"Filter network requests to find PostHog traffic. PostHog may use:",{"type":43,"tag":51,"props":3678,"children":3679},{},[3680],{"type":43,"tag":72,"props":3681,"children":3682},{},[3683],{"type":48,"value":3684},"Standard domains:",{"type":43,"tag":230,"props":3686,"children":3687},{},[3688,3697,3714],{"type":43,"tag":68,"props":3689,"children":3690},{},[3691],{"type":43,"tag":100,"props":3692,"children":3694},{"className":3693},[],[3695],{"type":48,"value":3696},"*.posthog.com",{"type":43,"tag":68,"props":3698,"children":3699},{},[3700,3706,3708],{"type":43,"tag":100,"props":3701,"children":3703},{"className":3702},[],[3704],{"type":48,"value":3705},"us.i.posthog.com",{"type":48,"value":3707}," \u002F ",{"type":43,"tag":100,"props":3709,"children":3711},{"className":3710},[],[3712],{"type":48,"value":3713},"eu.i.posthog.com",{"type":43,"tag":68,"props":3715,"children":3716},{},[3717,3723,3724],{"type":43,"tag":100,"props":3718,"children":3720},{"className":3719},[],[3721],{"type":48,"value":3722},"us-assets.i.posthog.com",{"type":48,"value":3707},{"type":43,"tag":100,"props":3725,"children":3727},{"className":3726},[],[3728],{"type":48,"value":3729},"eu-assets.i.posthog.com",{"type":43,"tag":51,"props":3731,"children":3732},{},[3733,3738],{"type":43,"tag":72,"props":3734,"children":3735},{},[3736],{"type":48,"value":3737},"Custom proxy domains",{"type":48,"value":3739}," (common patterns):",{"type":43,"tag":230,"props":3741,"children":3742},{},[3743,3752,3761,3770],{"type":43,"tag":68,"props":3744,"children":3745},{},[3746],{"type":43,"tag":100,"props":3747,"children":3749},{"className":3748},[],[3750],{"type":48,"value":3751},"ph.yourcompany.com",{"type":43,"tag":68,"props":3753,"children":3754},{},[3755],{"type":43,"tag":100,"props":3756,"children":3758},{"className":3757},[],[3759],{"type":48,"value":3760},"analytics.yourcompany.com",{"type":43,"tag":68,"props":3762,"children":3763},{},[3764],{"type":43,"tag":100,"props":3765,"children":3767},{"className":3766},[],[3768],{"type":48,"value":3769},"t.yourcompany.com",{"type":43,"tag":68,"props":3771,"children":3772},{},[3773,3775,3781],{"type":48,"value":3774},"Any domain with ",{"type":43,"tag":100,"props":3776,"children":3778},{"className":3777},[],[3779],{"type":48,"value":3780},"\u002Farray\u002Fphc_",{"type":48,"value":3782}," in the path (PostHog config)",{"type":43,"tag":51,"props":3784,"children":3785},{},[3786],{"type":43,"tag":72,"props":3787,"children":3788},{},[3789],{"type":48,"value":3790},"Endpoints to look for:",{"type":43,"tag":230,"props":3792,"children":3793},{},[3794,3813,3824,3842,3853,3864,3875],{"type":43,"tag":68,"props":3795,"children":3796},{},[3797,3803,3805,3811],{"type":43,"tag":100,"props":3798,"children":3800},{"className":3799},[],[3801],{"type":48,"value":3802},"\u002Fe\u002F",{"type":48,"value":3804}," or ",{"type":43,"tag":100,"props":3806,"children":3808},{"className":3807},[],[3809],{"type":48,"value":3810},"\u002Fcapture\u002F",{"type":48,"value":3812}," - Events",{"type":43,"tag":68,"props":3814,"children":3815},{},[3816,3822],{"type":43,"tag":100,"props":3817,"children":3819},{"className":3818},[],[3820],{"type":48,"value":3821},"\u002Fs\u002F",{"type":48,"value":3823}," - Session recording",{"type":43,"tag":68,"props":3825,"children":3826},{},[3827,3833,3834,3840],{"type":43,"tag":100,"props":3828,"children":3830},{"className":3829},[],[3831],{"type":48,"value":3832},"\u002Fdecide\u002F",{"type":48,"value":3804},{"type":43,"tag":100,"props":3835,"children":3837},{"className":3836},[],[3838],{"type":48,"value":3839},"\u002Fflags\u002F",{"type":48,"value":3841}," - Feature flags",{"type":43,"tag":68,"props":3843,"children":3844},{},[3845,3851],{"type":43,"tag":100,"props":3846,"children":3848},{"className":3847},[],[3849],{"type":48,"value":3850},"\u002Fbatch\u002F",{"type":48,"value":3852}," - Batched events",{"type":43,"tag":68,"props":3854,"children":3855},{},[3856,3862],{"type":43,"tag":100,"props":3857,"children":3859},{"className":3858},[],[3860],{"type":48,"value":3861},"\u002Farray\u002Fphc_*\u002Fconfig.js",{"type":48,"value":3863}," - Remote config (bundled implementations)",{"type":43,"tag":68,"props":3865,"children":3866},{},[3867,3873],{"type":43,"tag":100,"props":3868,"children":3870},{"className":3869},[],[3871],{"type":48,"value":3872},"\u002Fstatic\u002Fsurveys.js",{"type":48,"value":3874}," - Surveys module",{"type":43,"tag":68,"props":3876,"children":3877},{},[3878,3884],{"type":43,"tag":100,"props":3879,"children":3881},{"className":3880},[],[3882],{"type":48,"value":3883},"\u002Fstatic\u002Frecorder.js",{"type":48,"value":3885}," - Session recording module",{"type":43,"tag":51,"props":3887,"children":3888},{},[3889],{"type":43,"tag":72,"props":3890,"children":3891},{},[3892],{"type":48,"value":3893},"How to identify a custom proxy:",{"type":43,"tag":64,"props":3895,"children":3896},{},[3897,3914,3919],{"type":43,"tag":68,"props":3898,"children":3899},{},[3900,3902,3907,3908,3913],{"type":48,"value":3901},"Look for requests with PostHog-specific paths (",{"type":43,"tag":100,"props":3903,"children":3905},{"className":3904},[],[3906],{"type":48,"value":3839},{"type":48,"value":574},{"type":43,"tag":100,"props":3909,"children":3911},{"className":3910},[],[3912],{"type":48,"value":3780},{"type":48,"value":2351},{"type":43,"tag":68,"props":3915,"children":3916},{},[3917],{"type":48,"value":3918},"Check network request details for PostHog headers",{"type":43,"tag":68,"props":3920,"children":3921},{},[3922,3924,3930],{"type":48,"value":3923},"Look for ",{"type":43,"tag":100,"props":3925,"children":3927},{"className":3926},[],[3928],{"type":48,"value":3929},"phc_",{"type":48,"value":3931}," tokens in request URLs or bodies",{"type":43,"tag":332,"props":3933,"children":3935},{"id":3934},"step-5-check-for-common-issues",[3936],{"type":48,"value":3937},"Step 5: Check for Common Issues",{"type":43,"tag":51,"props":3939,"children":3940},{},[3941],{"type":48,"value":3942},"Run diagnostics:",{"type":43,"tag":286,"props":3944,"children":3946},{"className":666,"code":3945,"language":668,"meta":294,"style":294},"(() => {\n  const issues = [];\n\n  \u002F\u002F Check if posthog exists\n  if (typeof posthog === 'undefined') {\n    issues.push('PostHog not found on window object');\n    return { issues };\n  }\n\n  \u002F\u002F Check for multiple instances\n  if (window.__POSTHOG_INSTANCES__ && window.__POSTHOG_INSTANCES__.length > 1) {\n    issues.push('Multiple PostHog instances detected - may cause duplicate events');\n  }\n\n  \u002F\u002F Check if initialized\n  if (!posthog.get_distinct_id || !posthog.get_distinct_id()) {\n    issues.push('PostHog may not be fully initialized');\n  }\n\n  \u002F\u002F Check consent mode\n  if (posthog.has_opted_out_capturing && posthog.has_opted_out_capturing()) {\n    issues.push('User has opted out of tracking');\n  }\n\n  \u002F\u002F Check for debug mode in production\n  const isDebug = posthog.config?.debug || posthog.get_config?.('debug');\n  const hostname = window.location.hostname;\n  if (isDebug && !hostname.includes('localhost') && !hostname.includes('127.0.0.1')) {\n    issues.push('Debug mode is enabled in production');\n  }\n\n  \u002F\u002F Check autocapture\n  const autocapture = posthog.config?.autocapture ?? posthog.get_config?.('autocapture');\n  if (autocapture === false) {\n    issues.push('Autocapture is disabled - only manual events will be tracked');\n  }\n\n  return {\n    issues: issues.length > 0 ? issues : ['No issues detected'],\n    checksRun: true\n  };\n})()\n",[3947],{"type":43,"tag":100,"props":3948,"children":3949},{"__ignoreMap":294},[3950,3969,3993,4000,4009,4052,4094,4113,4120,4127,4135,4200,4240,4247,4254,4262,4318,4358,4365,4372,4380,4428,4468,4475,4482,4490,4570,4612,4716,4756,4763,4771,4780,4861,4893,4934,4942,4950,4962,5033,5051,5059],{"type":43,"tag":674,"props":3951,"children":3952},{"class":676,"line":677},[3953,3957,3961,3965],{"type":43,"tag":674,"props":3954,"children":3955},{"style":681},[3956],{"type":48,"value":684},{"type":43,"tag":674,"props":3958,"children":3959},{"style":687},[3960],{"type":48,"value":690},{"type":43,"tag":674,"props":3962,"children":3963},{"style":693},[3964],{"type":48,"value":696},{"type":43,"tag":674,"props":3966,"children":3967},{"style":687},[3968],{"type":48,"value":701},{"type":43,"tag":674,"props":3970,"children":3971},{"class":676,"line":704},[3972,3976,3981,3985,3989],{"type":43,"tag":674,"props":3973,"children":3974},{"style":693},[3975],{"type":48,"value":820},{"type":43,"tag":674,"props":3977,"children":3978},{"style":681},[3979],{"type":48,"value":3980}," issues",{"type":43,"tag":674,"props":3982,"children":3983},{"style":687},[3984],{"type":48,"value":830},{"type":43,"tag":674,"props":3986,"children":3987},{"style":714},[3988],{"type":48,"value":1927},{"type":43,"tag":674,"props":3990,"children":3991},{"style":687},[3992],{"type":48,"value":839},{"type":43,"tag":674,"props":3994,"children":3995},{"class":676,"line":761},[3996],{"type":43,"tag":674,"props":3997,"children":3998},{"emptyLinePlaceholder":808},[3999],{"type":48,"value":811},{"type":43,"tag":674,"props":4001,"children":4002},{"class":676,"line":30},[4003],{"type":43,"tag":674,"props":4004,"children":4006},{"style":4005},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[4007],{"type":48,"value":4008},"  \u002F\u002F Check if posthog exists\n",{"type":43,"tag":674,"props":4010,"children":4011},{"class":676,"line":804},[4012,4016,4020,4024,4028,4032,4036,4040,4044,4048],{"type":43,"tag":674,"props":4013,"children":4014},{"style":708},[4015],{"type":48,"value":711},{"type":43,"tag":674,"props":4017,"children":4018},{"style":714},[4019],{"type":48,"value":717},{"type":43,"tag":674,"props":4021,"children":4022},{"style":687},[4023],{"type":48,"value":722},{"type":43,"tag":674,"props":4025,"children":4026},{"style":681},[4027],{"type":48,"value":727},{"type":43,"tag":674,"props":4029,"children":4030},{"style":687},[4031],{"type":48,"value":732},{"type":43,"tag":674,"props":4033,"children":4034},{"style":687},[4035],{"type":48,"value":737},{"type":43,"tag":674,"props":4037,"children":4038},{"style":740},[4039],{"type":48,"value":743},{"type":43,"tag":674,"props":4041,"children":4042},{"style":687},[4043],{"type":48,"value":748},{"type":43,"tag":674,"props":4045,"children":4046},{"style":714},[4047],{"type":48,"value":753},{"type":43,"tag":674,"props":4049,"children":4050},{"style":687},[4051],{"type":48,"value":758},{"type":43,"tag":674,"props":4053,"children":4054},{"class":676,"line":814},[4055,4060,4064,4069,4073,4077,4082,4086,4090],{"type":43,"tag":674,"props":4056,"children":4057},{"style":681},[4058],{"type":48,"value":4059},"    issues",{"type":43,"tag":674,"props":4061,"children":4062},{"style":687},[4063],{"type":48,"value":897},{"type":43,"tag":674,"props":4065,"children":4066},{"style":1009},[4067],{"type":48,"value":4068},"push",{"type":43,"tag":674,"props":4070,"children":4071},{"style":714},[4072],{"type":48,"value":684},{"type":43,"tag":674,"props":4074,"children":4075},{"style":687},[4076],{"type":48,"value":748},{"type":43,"tag":674,"props":4078,"children":4079},{"style":740},[4080],{"type":48,"value":4081},"PostHog not found on window object",{"type":43,"tag":674,"props":4083,"children":4084},{"style":687},[4085],{"type":48,"value":748},{"type":43,"tag":674,"props":4087,"children":4088},{"style":714},[4089],{"type":48,"value":2351},{"type":43,"tag":674,"props":4091,"children":4092},{"style":687},[4093],{"type":48,"value":839},{"type":43,"tag":674,"props":4095,"children":4096},{"class":676,"line":842},[4097,4101,4105,4109],{"type":43,"tag":674,"props":4098,"children":4099},{"style":708},[4100],{"type":48,"value":767},{"type":43,"tag":674,"props":4102,"children":4103},{"style":687},[4104],{"type":48,"value":772},{"type":43,"tag":674,"props":4106,"children":4107},{"style":681},[4108],{"type":48,"value":3980},{"type":43,"tag":674,"props":4110,"children":4111},{"style":687},[4112],{"type":48,"value":793},{"type":43,"tag":674,"props":4114,"children":4115},{"class":676,"line":855},[4116],{"type":43,"tag":674,"props":4117,"children":4118},{"style":687},[4119],{"type":48,"value":801},{"type":43,"tag":674,"props":4121,"children":4122},{"class":676,"line":878},[4123],{"type":43,"tag":674,"props":4124,"children":4125},{"emptyLinePlaceholder":808},[4126],{"type":48,"value":811},{"type":43,"tag":674,"props":4128,"children":4129},{"class":676,"line":944},[4130],{"type":43,"tag":674,"props":4131,"children":4132},{"style":4005},[4133],{"type":48,"value":4134},"  \u002F\u002F Check for multiple instances\n",{"type":43,"tag":674,"props":4136,"children":4137},{"class":676,"line":961},[4138,4142,4146,4150,4154,4159,4163,4167,4171,4175,4179,4183,4187,4192,4196],{"type":43,"tag":674,"props":4139,"children":4140},{"style":708},[4141],{"type":48,"value":711},{"type":43,"tag":674,"props":4143,"children":4144},{"style":714},[4145],{"type":48,"value":717},{"type":43,"tag":674,"props":4147,"children":4148},{"style":681},[4149],{"type":48,"value":2171},{"type":43,"tag":674,"props":4151,"children":4152},{"style":687},[4153],{"type":48,"value":897},{"type":43,"tag":674,"props":4155,"children":4156},{"style":681},[4157],{"type":48,"value":4158},"__POSTHOG_INSTANCES__",{"type":43,"tag":674,"props":4160,"children":4161},{"style":687},[4162],{"type":48,"value":3163},{"type":43,"tag":674,"props":4164,"children":4165},{"style":681},[4166],{"type":48,"value":2227},{"type":43,"tag":674,"props":4168,"children":4169},{"style":687},[4170],{"type":48,"value":897},{"type":43,"tag":674,"props":4172,"children":4173},{"style":681},[4174],{"type":48,"value":4158},{"type":43,"tag":674,"props":4176,"children":4177},{"style":687},[4178],{"type":48,"value":897},{"type":43,"tag":674,"props":4180,"children":4181},{"style":681},[4182],{"type":48,"value":3429},{"type":43,"tag":674,"props":4184,"children":4185},{"style":687},[4186],{"type":48,"value":3434},{"type":43,"tag":674,"props":4188,"children":4189},{"style":3437},[4190],{"type":48,"value":4191}," 1",{"type":43,"tag":674,"props":4193,"children":4194},{"style":714},[4195],{"type":48,"value":753},{"type":43,"tag":674,"props":4197,"children":4198},{"style":687},[4199],{"type":48,"value":758},{"type":43,"tag":674,"props":4201,"children":4202},{"class":676,"line":1061},[4203,4207,4211,4215,4219,4223,4228,4232,4236],{"type":43,"tag":674,"props":4204,"children":4205},{"style":681},[4206],{"type":48,"value":4059},{"type":43,"tag":674,"props":4208,"children":4209},{"style":687},[4210],{"type":48,"value":897},{"type":43,"tag":674,"props":4212,"children":4213},{"style":1009},[4214],{"type":48,"value":4068},{"type":43,"tag":674,"props":4216,"children":4217},{"style":714},[4218],{"type":48,"value":684},{"type":43,"tag":674,"props":4220,"children":4221},{"style":687},[4222],{"type":48,"value":748},{"type":43,"tag":674,"props":4224,"children":4225},{"style":740},[4226],{"type":48,"value":4227},"Multiple PostHog instances detected - may cause duplicate events",{"type":43,"tag":674,"props":4229,"children":4230},{"style":687},[4231],{"type":48,"value":748},{"type":43,"tag":674,"props":4233,"children":4234},{"style":714},[4235],{"type":48,"value":2351},{"type":43,"tag":674,"props":4237,"children":4238},{"style":687},[4239],{"type":48,"value":839},{"type":43,"tag":674,"props":4241,"children":4242},{"class":676,"line":1155},[4243],{"type":43,"tag":674,"props":4244,"children":4245},{"style":687},[4246],{"type":48,"value":801},{"type":43,"tag":674,"props":4248,"children":4249},{"class":676,"line":1251},[4250],{"type":43,"tag":674,"props":4251,"children":4252},{"emptyLinePlaceholder":808},[4253],{"type":48,"value":811},{"type":43,"tag":674,"props":4255,"children":4256},{"class":676,"line":1345},[4257],{"type":43,"tag":674,"props":4258,"children":4259},{"style":4005},[4260],{"type":48,"value":4261},"  \u002F\u002F Check if initialized\n",{"type":43,"tag":674,"props":4263,"children":4264},{"class":676,"line":1439},[4265,4269,4273,4277,4281,4285,4289,4293,4297,4301,4305,4309,4314],{"type":43,"tag":674,"props":4266,"children":4267},{"style":708},[4268],{"type":48,"value":711},{"type":43,"tag":674,"props":4270,"children":4271},{"style":714},[4272],{"type":48,"value":717},{"type":43,"tag":674,"props":4274,"children":4275},{"style":687},[4276],{"type":48,"value":2255},{"type":43,"tag":674,"props":4278,"children":4279},{"style":681},[4280],{"type":48,"value":8},{"type":43,"tag":674,"props":4282,"children":4283},{"style":687},[4284],{"type":48,"value":897},{"type":43,"tag":674,"props":4286,"children":4287},{"style":681},[4288],{"type":48,"value":1750},{"type":43,"tag":674,"props":4290,"children":4291},{"style":687},[4292],{"type":48,"value":907},{"type":43,"tag":674,"props":4294,"children":4295},{"style":687},[4296],{"type":48,"value":2526},{"type":43,"tag":674,"props":4298,"children":4299},{"style":681},[4300],{"type":48,"value":8},{"type":43,"tag":674,"props":4302,"children":4303},{"style":687},[4304],{"type":48,"value":897},{"type":43,"tag":674,"props":4306,"children":4307},{"style":1009},[4308],{"type":48,"value":1750},{"type":43,"tag":674,"props":4310,"children":4311},{"style":714},[4312],{"type":48,"value":4313},"()) ",{"type":43,"tag":674,"props":4315,"children":4316},{"style":687},[4317],{"type":48,"value":758},{"type":43,"tag":674,"props":4319,"children":4320},{"class":676,"line":1488},[4321,4325,4329,4333,4337,4341,4346,4350,4354],{"type":43,"tag":674,"props":4322,"children":4323},{"style":681},[4324],{"type":48,"value":4059},{"type":43,"tag":674,"props":4326,"children":4327},{"style":687},[4328],{"type":48,"value":897},{"type":43,"tag":674,"props":4330,"children":4331},{"style":1009},[4332],{"type":48,"value":4068},{"type":43,"tag":674,"props":4334,"children":4335},{"style":714},[4336],{"type":48,"value":684},{"type":43,"tag":674,"props":4338,"children":4339},{"style":687},[4340],{"type":48,"value":748},{"type":43,"tag":674,"props":4342,"children":4343},{"style":740},[4344],{"type":48,"value":4345},"PostHog may not be fully initialized",{"type":43,"tag":674,"props":4347,"children":4348},{"style":687},[4349],{"type":48,"value":748},{"type":43,"tag":674,"props":4351,"children":4352},{"style":714},[4353],{"type":48,"value":2351},{"type":43,"tag":674,"props":4355,"children":4356},{"style":687},[4357],{"type":48,"value":839},{"type":43,"tag":674,"props":4359,"children":4360},{"class":676,"line":1519},[4361],{"type":43,"tag":674,"props":4362,"children":4363},{"style":687},[4364],{"type":48,"value":801},{"type":43,"tag":674,"props":4366,"children":4367},{"class":676,"line":1541},[4368],{"type":43,"tag":674,"props":4369,"children":4370},{"emptyLinePlaceholder":808},[4371],{"type":48,"value":811},{"type":43,"tag":674,"props":4373,"children":4374},{"class":676,"line":1635},[4375],{"type":43,"tag":674,"props":4376,"children":4377},{"style":4005},[4378],{"type":48,"value":4379},"  \u002F\u002F Check consent mode\n",{"type":43,"tag":674,"props":4381,"children":4382},{"class":676,"line":1718},[4383,4387,4391,4395,4399,4404,4408,4412,4416,4420,4424],{"type":43,"tag":674,"props":4384,"children":4385},{"style":708},[4386],{"type":48,"value":711},{"type":43,"tag":674,"props":4388,"children":4389},{"style":714},[4390],{"type":48,"value":717},{"type":43,"tag":674,"props":4392,"children":4393},{"style":681},[4394],{"type":48,"value":8},{"type":43,"tag":674,"props":4396,"children":4397},{"style":687},[4398],{"type":48,"value":897},{"type":43,"tag":674,"props":4400,"children":4401},{"style":681},[4402],{"type":48,"value":4403},"has_opted_out_capturing",{"type":43,"tag":674,"props":4405,"children":4406},{"style":687},[4407],{"type":48,"value":3163},{"type":43,"tag":674,"props":4409,"children":4410},{"style":681},[4411],{"type":48,"value":727},{"type":43,"tag":674,"props":4413,"children":4414},{"style":687},[4415],{"type":48,"value":897},{"type":43,"tag":674,"props":4417,"children":4418},{"style":1009},[4419],{"type":48,"value":4403},{"type":43,"tag":674,"props":4421,"children":4422},{"style":714},[4423],{"type":48,"value":4313},{"type":43,"tag":674,"props":4425,"children":4426},{"style":687},[4427],{"type":48,"value":758},{"type":43,"tag":674,"props":4429,"children":4430},{"class":676,"line":1727},[4431,4435,4439,4443,4447,4451,4456,4460,4464],{"type":43,"tag":674,"props":4432,"children":4433},{"style":681},[4434],{"type":48,"value":4059},{"type":43,"tag":674,"props":4436,"children":4437},{"style":687},[4438],{"type":48,"value":897},{"type":43,"tag":674,"props":4440,"children":4441},{"style":1009},[4442],{"type":48,"value":4068},{"type":43,"tag":674,"props":4444,"children":4445},{"style":714},[4446],{"type":48,"value":684},{"type":43,"tag":674,"props":4448,"children":4449},{"style":687},[4450],{"type":48,"value":748},{"type":43,"tag":674,"props":4452,"children":4453},{"style":740},[4454],{"type":48,"value":4455},"User has opted out of tracking",{"type":43,"tag":674,"props":4457,"children":4458},{"style":687},[4459],{"type":48,"value":748},{"type":43,"tag":674,"props":4461,"children":4462},{"style":714},[4463],{"type":48,"value":2351},{"type":43,"tag":674,"props":4465,"children":4466},{"style":687},[4467],{"type":48,"value":839},{"type":43,"tag":674,"props":4469,"children":4470},{"class":676,"line":1782},[4471],{"type":43,"tag":674,"props":4472,"children":4473},{"style":687},[4474],{"type":48,"value":801},{"type":43,"tag":674,"props":4476,"children":4477},{"class":676,"line":1836},[4478],{"type":43,"tag":674,"props":4479,"children":4480},{"emptyLinePlaceholder":808},[4481],{"type":48,"value":811},{"type":43,"tag":674,"props":4483,"children":4484},{"class":676,"line":1934},[4485],{"type":43,"tag":674,"props":4486,"children":4487},{"style":4005},[4488],{"type":48,"value":4489},"  \u002F\u002F Check for debug mode in production\n",{"type":43,"tag":674,"props":4491,"children":4492},{"class":676,"line":1964},[4493,4497,4502,4506,4510,4514,4518,4522,4526,4530,4534,4538,4542,4546,4550,4554,4558,4562,4566],{"type":43,"tag":674,"props":4494,"children":4495},{"style":693},[4496],{"type":48,"value":820},{"type":43,"tag":674,"props":4498,"children":4499},{"style":681},[4500],{"type":48,"value":4501}," isDebug",{"type":43,"tag":674,"props":4503,"children":4504},{"style":687},[4505],{"type":48,"value":830},{"type":43,"tag":674,"props":4507,"children":4508},{"style":681},[4509],{"type":48,"value":727},{"type":43,"tag":674,"props":4511,"children":4512},{"style":687},[4513],{"type":48,"value":897},{"type":43,"tag":674,"props":4515,"children":4516},{"style":681},[4517],{"type":48,"value":984},{"type":43,"tag":674,"props":4519,"children":4520},{"style":687},[4521],{"type":48,"value":989},{"type":43,"tag":674,"props":4523,"children":4524},{"style":681},[4525],{"type":48,"value":1666},{"type":43,"tag":674,"props":4527,"children":4528},{"style":687},[4529],{"type":48,"value":907},{"type":43,"tag":674,"props":4531,"children":4532},{"style":681},[4533],{"type":48,"value":727},{"type":43,"tag":674,"props":4535,"children":4536},{"style":687},[4537],{"type":48,"value":897},{"type":43,"tag":674,"props":4539,"children":4540},{"style":1009},[4541],{"type":48,"value":1012},{"type":43,"tag":674,"props":4543,"children":4544},{"style":687},[4545],{"type":48,"value":989},{"type":43,"tag":674,"props":4547,"children":4548},{"style":714},[4549],{"type":48,"value":684},{"type":43,"tag":674,"props":4551,"children":4552},{"style":687},[4553],{"type":48,"value":748},{"type":43,"tag":674,"props":4555,"children":4556},{"style":740},[4557],{"type":48,"value":1666},{"type":43,"tag":674,"props":4559,"children":4560},{"style":687},[4561],{"type":48,"value":748},{"type":43,"tag":674,"props":4563,"children":4564},{"style":714},[4565],{"type":48,"value":2351},{"type":43,"tag":674,"props":4567,"children":4568},{"style":687},[4569],{"type":48,"value":839},{"type":43,"tag":674,"props":4571,"children":4572},{"class":676,"line":2019},[4573,4577,4582,4586,4590,4594,4599,4603,4608],{"type":43,"tag":674,"props":4574,"children":4575},{"style":693},[4576],{"type":48,"value":820},{"type":43,"tag":674,"props":4578,"children":4579},{"style":681},[4580],{"type":48,"value":4581}," hostname",{"type":43,"tag":674,"props":4583,"children":4584},{"style":687},[4585],{"type":48,"value":830},{"type":43,"tag":674,"props":4587,"children":4588},{"style":681},[4589],{"type":48,"value":2227},{"type":43,"tag":674,"props":4591,"children":4592},{"style":687},[4593],{"type":48,"value":897},{"type":43,"tag":674,"props":4595,"children":4596},{"style":681},[4597],{"type":48,"value":4598},"location",{"type":43,"tag":674,"props":4600,"children":4601},{"style":687},[4602],{"type":48,"value":897},{"type":43,"tag":674,"props":4604,"children":4605},{"style":681},[4606],{"type":48,"value":4607},"hostname",{"type":43,"tag":674,"props":4609,"children":4610},{"style":687},[4611],{"type":48,"value":839},{"type":43,"tag":674,"props":4613,"children":4614},{"class":676,"line":2075},[4615,4619,4623,4628,4632,4636,4640,4644,4648,4652,4656,4661,4665,4669,4674,4678,4682,4686,4690,4694,4698,4703,4707,4712],{"type":43,"tag":674,"props":4616,"children":4617},{"style":708},[4618],{"type":48,"value":711},{"type":43,"tag":674,"props":4620,"children":4621},{"style":714},[4622],{"type":48,"value":717},{"type":43,"tag":674,"props":4624,"children":4625},{"style":681},[4626],{"type":48,"value":4627},"isDebug",{"type":43,"tag":674,"props":4629,"children":4630},{"style":687},[4631],{"type":48,"value":3163},{"type":43,"tag":674,"props":4633,"children":4634},{"style":687},[4635],{"type":48,"value":2526},{"type":43,"tag":674,"props":4637,"children":4638},{"style":681},[4639],{"type":48,"value":4607},{"type":43,"tag":674,"props":4641,"children":4642},{"style":687},[4643],{"type":48,"value":897},{"type":43,"tag":674,"props":4645,"children":4646},{"style":1009},[4647],{"type":48,"value":3188},{"type":43,"tag":674,"props":4649,"children":4650},{"style":714},[4651],{"type":48,"value":684},{"type":43,"tag":674,"props":4653,"children":4654},{"style":687},[4655],{"type":48,"value":748},{"type":43,"tag":674,"props":4657,"children":4658},{"style":740},[4659],{"type":48,"value":4660},"localhost",{"type":43,"tag":674,"props":4662,"children":4663},{"style":687},[4664],{"type":48,"value":748},{"type":43,"tag":674,"props":4666,"children":4667},{"style":714},[4668],{"type":48,"value":753},{"type":43,"tag":674,"props":4670,"children":4671},{"style":687},[4672],{"type":48,"value":4673},"&&",{"type":43,"tag":674,"props":4675,"children":4676},{"style":687},[4677],{"type":48,"value":2526},{"type":43,"tag":674,"props":4679,"children":4680},{"style":681},[4681],{"type":48,"value":4607},{"type":43,"tag":674,"props":4683,"children":4684},{"style":687},[4685],{"type":48,"value":897},{"type":43,"tag":674,"props":4687,"children":4688},{"style":1009},[4689],{"type":48,"value":3188},{"type":43,"tag":674,"props":4691,"children":4692},{"style":714},[4693],{"type":48,"value":684},{"type":43,"tag":674,"props":4695,"children":4696},{"style":687},[4697],{"type":48,"value":748},{"type":43,"tag":674,"props":4699,"children":4700},{"style":740},[4701],{"type":48,"value":4702},"127.0.0.1",{"type":43,"tag":674,"props":4704,"children":4705},{"style":687},[4706],{"type":48,"value":748},{"type":43,"tag":674,"props":4708,"children":4709},{"style":714},[4710],{"type":48,"value":4711},")) ",{"type":43,"tag":674,"props":4713,"children":4714},{"style":687},[4715],{"type":48,"value":758},{"type":43,"tag":674,"props":4717,"children":4718},{"class":676,"line":2127},[4719,4723,4727,4731,4735,4739,4744,4748,4752],{"type":43,"tag":674,"props":4720,"children":4721},{"style":681},[4722],{"type":48,"value":4059},{"type":43,"tag":674,"props":4724,"children":4725},{"style":687},[4726],{"type":48,"value":897},{"type":43,"tag":674,"props":4728,"children":4729},{"style":1009},[4730],{"type":48,"value":4068},{"type":43,"tag":674,"props":4732,"children":4733},{"style":714},[4734],{"type":48,"value":684},{"type":43,"tag":674,"props":4736,"children":4737},{"style":687},[4738],{"type":48,"value":748},{"type":43,"tag":674,"props":4740,"children":4741},{"style":740},[4742],{"type":48,"value":4743},"Debug mode is enabled in production",{"type":43,"tag":674,"props":4745,"children":4746},{"style":687},[4747],{"type":48,"value":748},{"type":43,"tag":674,"props":4749,"children":4750},{"style":714},[4751],{"type":48,"value":2351},{"type":43,"tag":674,"props":4753,"children":4754},{"style":687},[4755],{"type":48,"value":839},{"type":43,"tag":674,"props":4757,"children":4758},{"class":676,"line":2136},[4759],{"type":43,"tag":674,"props":4760,"children":4761},{"style":687},[4762],{"type":48,"value":801},{"type":43,"tag":674,"props":4764,"children":4766},{"class":676,"line":4765},31,[4767],{"type":43,"tag":674,"props":4768,"children":4769},{"emptyLinePlaceholder":808},[4770],{"type":48,"value":811},{"type":43,"tag":674,"props":4772,"children":4774},{"class":676,"line":4773},32,[4775],{"type":43,"tag":674,"props":4776,"children":4777},{"style":4005},[4778],{"type":48,"value":4779},"  \u002F\u002F Check autocapture\n",{"type":43,"tag":674,"props":4781,"children":4783},{"class":676,"line":4782},33,[4784,4788,4793,4797,4801,4805,4809,4813,4817,4821,4825,4829,4833,4837,4841,4845,4849,4853,4857],{"type":43,"tag":674,"props":4785,"children":4786},{"style":693},[4787],{"type":48,"value":820},{"type":43,"tag":674,"props":4789,"children":4790},{"style":681},[4791],{"type":48,"value":4792}," autocapture",{"type":43,"tag":674,"props":4794,"children":4795},{"style":687},[4796],{"type":48,"value":830},{"type":43,"tag":674,"props":4798,"children":4799},{"style":681},[4800],{"type":48,"value":727},{"type":43,"tag":674,"props":4802,"children":4803},{"style":687},[4804],{"type":48,"value":897},{"type":43,"tag":674,"props":4806,"children":4807},{"style":681},[4808],{"type":48,"value":984},{"type":43,"tag":674,"props":4810,"children":4811},{"style":687},[4812],{"type":48,"value":989},{"type":43,"tag":674,"props":4814,"children":4815},{"style":681},[4816],{"type":48,"value":1186},{"type":43,"tag":674,"props":4818,"children":4819},{"style":687},[4820],{"type":48,"value":1191},{"type":43,"tag":674,"props":4822,"children":4823},{"style":681},[4824],{"type":48,"value":727},{"type":43,"tag":674,"props":4826,"children":4827},{"style":687},[4828],{"type":48,"value":897},{"type":43,"tag":674,"props":4830,"children":4831},{"style":1009},[4832],{"type":48,"value":1012},{"type":43,"tag":674,"props":4834,"children":4835},{"style":687},[4836],{"type":48,"value":989},{"type":43,"tag":674,"props":4838,"children":4839},{"style":714},[4840],{"type":48,"value":684},{"type":43,"tag":674,"props":4842,"children":4843},{"style":687},[4844],{"type":48,"value":748},{"type":43,"tag":674,"props":4846,"children":4847},{"style":740},[4848],{"type":48,"value":1186},{"type":43,"tag":674,"props":4850,"children":4851},{"style":687},[4852],{"type":48,"value":748},{"type":43,"tag":674,"props":4854,"children":4855},{"style":714},[4856],{"type":48,"value":2351},{"type":43,"tag":674,"props":4858,"children":4859},{"style":687},[4860],{"type":48,"value":839},{"type":43,"tag":674,"props":4862,"children":4864},{"class":676,"line":4863},34,[4865,4869,4873,4877,4881,4885,4889],{"type":43,"tag":674,"props":4866,"children":4867},{"style":708},[4868],{"type":48,"value":711},{"type":43,"tag":674,"props":4870,"children":4871},{"style":714},[4872],{"type":48,"value":717},{"type":43,"tag":674,"props":4874,"children":4875},{"style":681},[4876],{"type":48,"value":1186},{"type":43,"tag":674,"props":4878,"children":4879},{"style":687},[4880],{"type":48,"value":732},{"type":43,"tag":674,"props":4882,"children":4883},{"style":785},[4884],{"type":48,"value":788},{"type":43,"tag":674,"props":4886,"children":4887},{"style":714},[4888],{"type":48,"value":753},{"type":43,"tag":674,"props":4890,"children":4891},{"style":687},[4892],{"type":48,"value":758},{"type":43,"tag":674,"props":4894,"children":4896},{"class":676,"line":4895},35,[4897,4901,4905,4909,4913,4917,4922,4926,4930],{"type":43,"tag":674,"props":4898,"children":4899},{"style":681},[4900],{"type":48,"value":4059},{"type":43,"tag":674,"props":4902,"children":4903},{"style":687},[4904],{"type":48,"value":897},{"type":43,"tag":674,"props":4906,"children":4907},{"style":1009},[4908],{"type":48,"value":4068},{"type":43,"tag":674,"props":4910,"children":4911},{"style":714},[4912],{"type":48,"value":684},{"type":43,"tag":674,"props":4914,"children":4915},{"style":687},[4916],{"type":48,"value":748},{"type":43,"tag":674,"props":4918,"children":4919},{"style":740},[4920],{"type":48,"value":4921},"Autocapture is disabled - only manual events will be tracked",{"type":43,"tag":674,"props":4923,"children":4924},{"style":687},[4925],{"type":48,"value":748},{"type":43,"tag":674,"props":4927,"children":4928},{"style":714},[4929],{"type":48,"value":2351},{"type":43,"tag":674,"props":4931,"children":4932},{"style":687},[4933],{"type":48,"value":839},{"type":43,"tag":674,"props":4935,"children":4937},{"class":676,"line":4936},36,[4938],{"type":43,"tag":674,"props":4939,"children":4940},{"style":687},[4941],{"type":48,"value":801},{"type":43,"tag":674,"props":4943,"children":4945},{"class":676,"line":4944},37,[4946],{"type":43,"tag":674,"props":4947,"children":4948},{"emptyLinePlaceholder":808},[4949],{"type":48,"value":811},{"type":43,"tag":674,"props":4951,"children":4953},{"class":676,"line":4952},38,[4954,4958],{"type":43,"tag":674,"props":4955,"children":4956},{"style":708},[4957],{"type":48,"value":848},{"type":43,"tag":674,"props":4959,"children":4960},{"style":687},[4961],{"type":48,"value":701},{"type":43,"tag":674,"props":4963,"children":4965},{"class":676,"line":4964},39,[4966,4970,4974,4978,4982,4986,4990,4994,4998,5002,5007,5012,5016,5021,5025,5029],{"type":43,"tag":674,"props":4967,"children":4968},{"style":714},[4969],{"type":48,"value":4059},{"type":43,"tag":674,"props":4971,"children":4972},{"style":687},[4973],{"type":48,"value":782},{"type":43,"tag":674,"props":4975,"children":4976},{"style":681},[4977],{"type":48,"value":3980},{"type":43,"tag":674,"props":4979,"children":4980},{"style":687},[4981],{"type":48,"value":897},{"type":43,"tag":674,"props":4983,"children":4984},{"style":681},[4985],{"type":48,"value":3429},{"type":43,"tag":674,"props":4987,"children":4988},{"style":687},[4989],{"type":48,"value":3434},{"type":43,"tag":674,"props":4991,"children":4992},{"style":3437},[4993],{"type":48,"value":3440},{"type":43,"tag":674,"props":4995,"children":4996},{"style":687},[4997],{"type":48,"value":1864},{"type":43,"tag":674,"props":4999,"children":5000},{"style":681},[5001],{"type":48,"value":3980},{"type":43,"tag":674,"props":5003,"children":5004},{"style":687},[5005],{"type":48,"value":5006}," :",{"type":43,"tag":674,"props":5008,"children":5009},{"style":714},[5010],{"type":48,"value":5011}," [",{"type":43,"tag":674,"props":5013,"children":5014},{"style":687},[5015],{"type":48,"value":748},{"type":43,"tag":674,"props":5017,"children":5018},{"style":740},[5019],{"type":48,"value":5020},"No issues detected",{"type":43,"tag":674,"props":5022,"children":5023},{"style":687},[5024],{"type":48,"value":748},{"type":43,"tag":674,"props":5026,"children":5027},{"style":714},[5028],{"type":48,"value":2434},{"type":43,"tag":674,"props":5030,"children":5031},{"style":687},[5032],{"type":48,"value":875},{"type":43,"tag":674,"props":5034,"children":5036},{"class":676,"line":5035},40,[5037,5042,5046],{"type":43,"tag":674,"props":5038,"children":5039},{"style":714},[5040],{"type":48,"value":5041},"    checksRun",{"type":43,"tag":674,"props":5043,"children":5044},{"style":687},[5045],{"type":48,"value":782},{"type":43,"tag":674,"props":5047,"children":5048},{"style":785},[5049],{"type":48,"value":5050}," true\n",{"type":43,"tag":674,"props":5052,"children":5054},{"class":676,"line":5053},41,[5055],{"type":43,"tag":674,"props":5056,"children":5057},{"style":687},[5058],{"type":48,"value":2133},{"type":43,"tag":674,"props":5060,"children":5062},{"class":676,"line":5061},42,[5063,5067],{"type":43,"tag":674,"props":5064,"children":5065},{"style":687},[5066],{"type":48,"value":2142},{"type":43,"tag":674,"props":5068,"children":5069},{"style":681},[5070],{"type":48,"value":2147},{"type":43,"tag":332,"props":5072,"children":5074},{"id":5073},"step-6-capture-recent-events-if-debug-available",[5075],{"type":48,"value":5076},"Step 6: Capture Recent Events (if debug available)",{"type":43,"tag":51,"props":5078,"children":5079},{},[5080],{"type":48,"value":5081},"If debug mode is on or we can access the queue:",{"type":43,"tag":286,"props":5083,"children":5085},{"className":666,"code":5084,"language":668,"meta":294,"style":294},"(() => {\n  if (typeof posthog === 'undefined') return { events: [] };\n\n  \u002F\u002F Try to get queued events\n  const queue = posthog._requestQueue?.queue ||\n                posthog.requestQueue?.queue ||\n                [];\n\n  \u002F\u002F Get recent events from persistence if available\n  const stored = posthog.persistence?.props?.$stored_events || [];\n\n  return {\n    queuedEvents: queue.length,\n    recentEventTypes: [...new Set([...queue, ...stored].map(e => e?.event || 'unknown').slice(0, 20))]\n  };\n})()\n",[5086],{"type":43,"tag":100,"props":5087,"children":5088},{"__ignoreMap":294},[5089,5108,5175,5182,5190,5232,5261,5273,5280,5288,5346,5353,5364,5392,5536,5543],{"type":43,"tag":674,"props":5090,"children":5091},{"class":676,"line":677},[5092,5096,5100,5104],{"type":43,"tag":674,"props":5093,"children":5094},{"style":681},[5095],{"type":48,"value":684},{"type":43,"tag":674,"props":5097,"children":5098},{"style":687},[5099],{"type":48,"value":690},{"type":43,"tag":674,"props":5101,"children":5102},{"style":693},[5103],{"type":48,"value":696},{"type":43,"tag":674,"props":5105,"children":5106},{"style":687},[5107],{"type":48,"value":701},{"type":43,"tag":674,"props":5109,"children":5110},{"class":676,"line":704},[5111,5115,5119,5123,5127,5131,5135,5139,5143,5147,5152,5156,5161,5165,5170],{"type":43,"tag":674,"props":5112,"children":5113},{"style":708},[5114],{"type":48,"value":711},{"type":43,"tag":674,"props":5116,"children":5117},{"style":714},[5118],{"type":48,"value":717},{"type":43,"tag":674,"props":5120,"children":5121},{"style":687},[5122],{"type":48,"value":722},{"type":43,"tag":674,"props":5124,"children":5125},{"style":681},[5126],{"type":48,"value":727},{"type":43,"tag":674,"props":5128,"children":5129},{"style":687},[5130],{"type":48,"value":732},{"type":43,"tag":674,"props":5132,"children":5133},{"style":687},[5134],{"type":48,"value":737},{"type":43,"tag":674,"props":5136,"children":5137},{"style":740},[5138],{"type":48,"value":743},{"type":43,"tag":674,"props":5140,"children":5141},{"style":687},[5142],{"type":48,"value":748},{"type":43,"tag":674,"props":5144,"children":5145},{"style":714},[5146],{"type":48,"value":753},{"type":43,"tag":674,"props":5148,"children":5149},{"style":708},[5150],{"type":48,"value":5151},"return",{"type":43,"tag":674,"props":5153,"children":5154},{"style":687},[5155],{"type":48,"value":772},{"type":43,"tag":674,"props":5157,"children":5158},{"style":714},[5159],{"type":48,"value":5160}," events",{"type":43,"tag":674,"props":5162,"children":5163},{"style":687},[5164],{"type":48,"value":782},{"type":43,"tag":674,"props":5166,"children":5167},{"style":714},[5168],{"type":48,"value":5169}," [] ",{"type":43,"tag":674,"props":5171,"children":5172},{"style":687},[5173],{"type":48,"value":5174},"};\n",{"type":43,"tag":674,"props":5176,"children":5177},{"class":676,"line":761},[5178],{"type":43,"tag":674,"props":5179,"children":5180},{"emptyLinePlaceholder":808},[5181],{"type":48,"value":811},{"type":43,"tag":674,"props":5183,"children":5184},{"class":676,"line":30},[5185],{"type":43,"tag":674,"props":5186,"children":5187},{"style":4005},[5188],{"type":48,"value":5189},"  \u002F\u002F Try to get queued events\n",{"type":43,"tag":674,"props":5191,"children":5192},{"class":676,"line":804},[5193,5197,5202,5206,5210,5214,5219,5223,5228],{"type":43,"tag":674,"props":5194,"children":5195},{"style":693},[5196],{"type":48,"value":820},{"type":43,"tag":674,"props":5198,"children":5199},{"style":681},[5200],{"type":48,"value":5201}," queue",{"type":43,"tag":674,"props":5203,"children":5204},{"style":687},[5205],{"type":48,"value":830},{"type":43,"tag":674,"props":5207,"children":5208},{"style":681},[5209],{"type":48,"value":727},{"type":43,"tag":674,"props":5211,"children":5212},{"style":687},[5213],{"type":48,"value":897},{"type":43,"tag":674,"props":5215,"children":5216},{"style":681},[5217],{"type":48,"value":5218},"_requestQueue",{"type":43,"tag":674,"props":5220,"children":5221},{"style":687},[5222],{"type":48,"value":989},{"type":43,"tag":674,"props":5224,"children":5225},{"style":681},[5226],{"type":48,"value":5227},"queue",{"type":43,"tag":674,"props":5229,"children":5230},{"style":687},[5231],{"type":48,"value":1485},{"type":43,"tag":674,"props":5233,"children":5234},{"class":676,"line":814},[5235,5240,5244,5249,5253,5257],{"type":43,"tag":674,"props":5236,"children":5237},{"style":681},[5238],{"type":48,"value":5239},"                posthog",{"type":43,"tag":674,"props":5241,"children":5242},{"style":687},[5243],{"type":48,"value":897},{"type":43,"tag":674,"props":5245,"children":5246},{"style":681},[5247],{"type":48,"value":5248},"requestQueue",{"type":43,"tag":674,"props":5250,"children":5251},{"style":687},[5252],{"type":48,"value":989},{"type":43,"tag":674,"props":5254,"children":5255},{"style":681},[5256],{"type":48,"value":5227},{"type":43,"tag":674,"props":5258,"children":5259},{"style":687},[5260],{"type":48,"value":1485},{"type":43,"tag":674,"props":5262,"children":5263},{"class":676,"line":842},[5264,5269],{"type":43,"tag":674,"props":5265,"children":5266},{"style":714},[5267],{"type":48,"value":5268},"                []",{"type":43,"tag":674,"props":5270,"children":5271},{"style":687},[5272],{"type":48,"value":839},{"type":43,"tag":674,"props":5274,"children":5275},{"class":676,"line":855},[5276],{"type":43,"tag":674,"props":5277,"children":5278},{"emptyLinePlaceholder":808},[5279],{"type":48,"value":811},{"type":43,"tag":674,"props":5281,"children":5282},{"class":676,"line":878},[5283],{"type":43,"tag":674,"props":5284,"children":5285},{"style":4005},[5286],{"type":48,"value":5287},"  \u002F\u002F Get recent events from persistence if available\n",{"type":43,"tag":674,"props":5289,"children":5290},{"class":676,"line":944},[5291,5295,5300,5304,5308,5312,5316,5320,5325,5329,5334,5338,5342],{"type":43,"tag":674,"props":5292,"children":5293},{"style":693},[5294],{"type":48,"value":820},{"type":43,"tag":674,"props":5296,"children":5297},{"style":681},[5298],{"type":48,"value":5299}," stored",{"type":43,"tag":674,"props":5301,"children":5302},{"style":687},[5303],{"type":48,"value":830},{"type":43,"tag":674,"props":5305,"children":5306},{"style":681},[5307],{"type":48,"value":727},{"type":43,"tag":674,"props":5309,"children":5310},{"style":687},[5311],{"type":48,"value":897},{"type":43,"tag":674,"props":5313,"children":5314},{"style":681},[5315],{"type":48,"value":1572},{"type":43,"tag":674,"props":5317,"children":5318},{"style":687},[5319],{"type":48,"value":989},{"type":43,"tag":674,"props":5321,"children":5322},{"style":681},[5323],{"type":48,"value":5324},"props",{"type":43,"tag":674,"props":5326,"children":5327},{"style":687},[5328],{"type":48,"value":989},{"type":43,"tag":674,"props":5330,"children":5331},{"style":681},[5332],{"type":48,"value":5333},"$stored_events",{"type":43,"tag":674,"props":5335,"children":5336},{"style":687},[5337],{"type":48,"value":907},{"type":43,"tag":674,"props":5339,"children":5340},{"style":714},[5341],{"type":48,"value":1927},{"type":43,"tag":674,"props":5343,"children":5344},{"style":687},[5345],{"type":48,"value":839},{"type":43,"tag":674,"props":5347,"children":5348},{"class":676,"line":961},[5349],{"type":43,"tag":674,"props":5350,"children":5351},{"emptyLinePlaceholder":808},[5352],{"type":48,"value":811},{"type":43,"tag":674,"props":5354,"children":5355},{"class":676,"line":1061},[5356,5360],{"type":43,"tag":674,"props":5357,"children":5358},{"style":708},[5359],{"type":48,"value":848},{"type":43,"tag":674,"props":5361,"children":5362},{"style":687},[5363],{"type":48,"value":701},{"type":43,"tag":674,"props":5365,"children":5366},{"class":676,"line":1155},[5367,5372,5376,5380,5384,5388],{"type":43,"tag":674,"props":5368,"children":5369},{"style":714},[5370],{"type":48,"value":5371},"    queuedEvents",{"type":43,"tag":674,"props":5373,"children":5374},{"style":687},[5375],{"type":48,"value":782},{"type":43,"tag":674,"props":5377,"children":5378},{"style":681},[5379],{"type":48,"value":5201},{"type":43,"tag":674,"props":5381,"children":5382},{"style":687},[5383],{"type":48,"value":897},{"type":43,"tag":674,"props":5385,"children":5386},{"style":681},[5387],{"type":48,"value":3429},{"type":43,"tag":674,"props":5389,"children":5390},{"style":687},[5391],{"type":48,"value":875},{"type":43,"tag":674,"props":5393,"children":5394},{"class":676,"line":1251},[5395,5400,5404,5408,5413,5418,5422,5427,5431,5435,5440,5445,5449,5453,5457,5461,5466,5470,5475,5479,5484,5488,5492,5496,5500,5504,5508,5513,5517,5522,5526,5531],{"type":43,"tag":674,"props":5396,"children":5397},{"style":714},[5398],{"type":48,"value":5399},"    recentEventTypes",{"type":43,"tag":674,"props":5401,"children":5402},{"style":687},[5403],{"type":48,"value":782},{"type":43,"tag":674,"props":5405,"children":5406},{"style":714},[5407],{"type":48,"value":5011},{"type":43,"tag":674,"props":5409,"children":5410},{"style":687},[5411],{"type":48,"value":5412},"...new",{"type":43,"tag":674,"props":5414,"children":5415},{"style":1009},[5416],{"type":48,"value":5417}," Set",{"type":43,"tag":674,"props":5419,"children":5420},{"style":714},[5421],{"type":48,"value":2039},{"type":43,"tag":674,"props":5423,"children":5424},{"style":687},[5425],{"type":48,"value":5426},"...",{"type":43,"tag":674,"props":5428,"children":5429},{"style":681},[5430],{"type":48,"value":5227},{"type":43,"tag":674,"props":5432,"children":5433},{"style":687},[5434],{"type":48,"value":2050},{"type":43,"tag":674,"props":5436,"children":5437},{"style":687},[5438],{"type":48,"value":5439}," ...",{"type":43,"tag":674,"props":5441,"children":5442},{"style":681},[5443],{"type":48,"value":5444},"stored",{"type":43,"tag":674,"props":5446,"children":5447},{"style":714},[5448],{"type":48,"value":2434},{"type":43,"tag":674,"props":5450,"children":5451},{"style":687},[5452],{"type":48,"value":897},{"type":43,"tag":674,"props":5454,"children":5455},{"style":1009},[5456],{"type":48,"value":2085},{"type":43,"tag":674,"props":5458,"children":5459},{"style":714},[5460],{"type":48,"value":684},{"type":43,"tag":674,"props":5462,"children":5463},{"style":2042},[5464],{"type":48,"value":5465},"e",{"type":43,"tag":674,"props":5467,"children":5468},{"style":693},[5469],{"type":48,"value":696},{"type":43,"tag":674,"props":5471,"children":5472},{"style":681},[5473],{"type":48,"value":5474}," e",{"type":43,"tag":674,"props":5476,"children":5477},{"style":687},[5478],{"type":48,"value":989},{"type":43,"tag":674,"props":5480,"children":5481},{"style":681},[5482],{"type":48,"value":5483},"event",{"type":43,"tag":674,"props":5485,"children":5486},{"style":687},[5487],{"type":48,"value":907},{"type":43,"tag":674,"props":5489,"children":5490},{"style":687},[5491],{"type":48,"value":737},{"type":43,"tag":674,"props":5493,"children":5494},{"style":740},[5495],{"type":48,"value":933},{"type":43,"tag":674,"props":5497,"children":5498},{"style":687},[5499],{"type":48,"value":748},{"type":43,"tag":674,"props":5501,"children":5502},{"style":714},[5503],{"type":48,"value":2351},{"type":43,"tag":674,"props":5505,"children":5506},{"style":687},[5507],{"type":48,"value":897},{"type":43,"tag":674,"props":5509,"children":5510},{"style":1009},[5511],{"type":48,"value":5512},"slice",{"type":43,"tag":674,"props":5514,"children":5515},{"style":714},[5516],{"type":48,"value":684},{"type":43,"tag":674,"props":5518,"children":5519},{"style":3437},[5520],{"type":48,"value":5521},"0",{"type":43,"tag":674,"props":5523,"children":5524},{"style":687},[5525],{"type":48,"value":2050},{"type":43,"tag":674,"props":5527,"children":5528},{"style":3437},[5529],{"type":48,"value":5530}," 20",{"type":43,"tag":674,"props":5532,"children":5533},{"style":714},[5534],{"type":48,"value":5535},"))]\n",{"type":43,"tag":674,"props":5537,"children":5538},{"class":676,"line":1345},[5539],{"type":43,"tag":674,"props":5540,"children":5541},{"style":687},[5542],{"type":48,"value":2133},{"type":43,"tag":674,"props":5544,"children":5545},{"class":676,"line":1439},[5546,5550],{"type":43,"tag":674,"props":5547,"children":5548},{"style":687},[5549],{"type":48,"value":2142},{"type":43,"tag":674,"props":5551,"children":5552},{"style":681},[5553],{"type":48,"value":2147},{"type":43,"tag":332,"props":5555,"children":5557},{"id":5556},"step-7-detect-other-analytics-tools",[5558],{"type":48,"value":5559},"Step 7: Detect Other Analytics Tools",{"type":43,"tag":51,"props":5561,"children":5562},{},[5563],{"type":48,"value":5564},"Scan network requests and scripts to identify all analytics\u002Ftracking tools on the page. Use known patterns for named tools, and detect unknown tracking scripts as a fallback.",{"type":43,"tag":286,"props":5566,"children":5568},{"className":666,"code":5567,"language":668,"meta":294,"style":294},"(() => {\n  const scripts = Array.from(document.querySelectorAll('script[src]')).map(s => s.src);\n  const hostname = window.location.hostname.replace('www.', '');\n  const knownTools = [];\n  const matchedScripts = new Set();\n\n  const patterns = {\n    'Google Analytics': \u002Fgoogle-analytics\\.com|gtag\\\u002Fjs\u002Fi,\n    'Google Tag Manager': \u002Fgoogletagmanager\\.com\\\u002Fgtm\u002Fi,\n    'Facebook Pixel': \u002Fconnect\\.facebook\\.net.*fbevents\u002Fi,\n    'LinkedIn Insight': \u002Fsnap\\.licdn\\.com\u002Fi,\n    'HubSpot': \u002Fjs\\.hs-scripts\\.com|js\\.hsforms\\.com\u002Fi,\n    'Hotjar': \u002Fstatic\\.hotjar\\.com\u002Fi,\n    'Segment': \u002Fcdn\\.segment\\.com\u002Fi,\n    'Mixpanel': \u002Fcdn\\.mxpnl\\.com|mixpanel\\.com\u002Fi,\n    'Amplitude': \u002Fcdn\\.amplitude\\.com\u002Fi,\n    'Heap': \u002Fheap-analytics\\.com|heapanalytics\\.com\u002Fi,\n    'Intercom': \u002Fwidget\\.intercom\\.io|intercomcdn\\.com\u002Fi,\n    'Drift': \u002Fjs\\.driftt\\.com\u002Fi,\n    'Zendesk': \u002Fstatic\\.zdassets\\.com\u002Fi,\n    'Crisp': \u002Fclient\\.crisp\\.chat\u002Fi,\n    'FullStory': \u002Ffullstory\\.com\\\u002Fs\\\u002Ffs\\.js\u002Fi,\n    'LogRocket': \u002Fcdn\\.logrocket\\.com\u002Fi,\n    'Sentry': \u002Fbrowser\\.sentry-cdn\\.com\u002Fi,\n    'Datadog': \u002Fdatadoghq\\.com\u002Fi,\n    'Snowplow': \u002Fcdn\\.snowplow\u002Fi,\n    'Rudderstack': \u002Fcdn\\.rudderlabs\\.com\u002Fi,\n    'Clearbit': \u002Ftag\\.clearbitscripts\\.com\u002Fi,\n    'Dreamdata': \u002Fcdn\\.dreamdata\\.cloud\u002Fi,\n    'GrowthBook': \u002Fcdn\\.growthbook\\.io\u002Fi,\n    'LaunchDarkly': \u002Fsdk\\.launchdarkly\\.com\u002Fi,\n    'Optimizely': \u002Fcdn\\.optimizely\\.com\u002Fi,\n    'VWO': \u002Fdev\\.visualwebsiteoptimizer\\.com\u002Fi,\n    'Ahrefs': \u002Fanalytics\\.ahrefs\\.com\u002Fi,\n    'AdRoll': \u002Fs\\.adroll\\.com\u002Fi,\n    'Factors.ai': \u002Fapp\\.factors\\.ai\u002Fi,\n    'Vector': \u002Fcdn\\.vector\\.co\u002Fi,\n    'Leadfeeder': \u002Fsc\\.lfeeder\\.com\u002Fi,\n    'Pendo': \u002Fcdn\\.pendo\\.io\u002Fi,\n    'Chameleon': \u002Ffast\\.chameleon\\.io\u002Fi,\n    'Appcues': \u002Ffast\\.appcues\\.com\u002Fi,\n    'UserPilot': \u002Fjs\\.userpilot\\.io\u002Fi,\n    'Mouseflow': \u002Fcdn\\.mouseflow\\.com\u002Fi,\n    'Lucky Orange': \u002Ftools\\.luckyorange\\.com\u002Fi,\n    'Crazy Egg': \u002Fscript\\.crazyegg\\.com\u002Fi,\n    'Plausible': \u002Fplausible\\.io\\\u002Fjs\u002Fi,\n    'Fathom': \u002Fcdn\\.usefathom\\.com\u002Fi,\n    'Simple Analytics': \u002Fscripts\\.simpleanalyticscdn\\.com\u002Fi,\n    'Matomo': \u002Fmatomo\\.js|piwik\\.js\u002Fi,\n    'Klaviyo': \u002Fstatic\\.klaviyo\\.com\u002Fi,\n    'Customer.io': \u002Ftrack\\.customer\\.io\u002Fi,\n    'Braze': \u002Fsdk\\.iad-\\d+\\.braze\\.com\u002Fi,\n    'OneSignal': \u002Fcdn\\.onesignal\\.com\u002Fi,\n    'Insider': \u002Finsr\\.io\u002Fi,\n    'Mutiny': \u002Fcdn\\.mutinycdn\\.com\u002Fi,\n    'Qualified': \u002Fjs\\.qualified\\.com\u002Fi,\n    'Chilipiper': \u002Fjs\\.chilipiper\\.com\u002Fi,\n    'Typekit': \u002Fuse\\.typekit\\.net\u002Fi,\n    'Google Fonts': \u002Ffonts\\.googleapis\\.com\u002Fi,\n    'Cookiebot': \u002Fconsent\\.cookiebot\\.com\u002Fi,\n    'OneTrust': \u002Fcdn\\.cookielaw\\.org\u002Fi,\n    'TrustArc': \u002Fconsent\\.trustarc\\.com\u002Fi,\n    'Osano': \u002Fcmp\\.osano\\.com\u002Fi,\n    'Usercentrics': \u002Fapp\\.usercentrics\\.eu\u002Fi,\n    'OpenLI\u002FLegal Monster': \u002Fwidgets\\.legalmonster\\.com|openli\\.com\u002Fi,\n    'Nelio A\u002FB Testing': \u002Fnelio-ab-testing\u002Fi,\n    'Mesh': \u002Fmesh-interactive|withmesh\\.com\u002Fi,\n    'Reddit Pixel': \u002Fredditstatic\\.com|rdt\\.li\u002Fi,\n    'Webflow': \u002Fwdfl\\.co|webflow\\.com\\\u002Fjs\u002Fi,\n    'Dub.co': \u002Fdubcdn\\.com|dub\\.co\u002Fi\n  };\n\n  \u002F\u002F Match known tools\n  for (const [name, pattern] of Object.entries(patterns)) {\n    for (const src of scripts) {\n      if (pattern.test(src)) {\n        knownTools.push(name);\n        matchedScripts.add(src);\n        break;\n      }\n    }\n  }\n\n  \u002F\u002F Find unknown tracking scripts\n  const trackingKeywords = \u002Ftrack|analytics|pixel|tag|beacon|collect|measure|metric|event|telemetry|monitor\u002Fi;\n  const unknownScripts = scripts.filter(src => {\n    if (matchedScripts.has(src)) return false;\n    try {\n      const url = new URL(src);\n      const scriptHost = url.hostname.replace('www.', '');\n      \u002F\u002F Skip same-domain scripts\n      if (scriptHost === hostname || scriptHost.endsWith('.' + hostname)) return false;\n      \u002F\u002F Skip common CDNs that host non-tracking code\n      if (\u002Funpkg\\.com|jsdelivr\\.net|cdnjs\\.cloudflare\\.com|ajax\\.googleapis\\.com\u002Fi.test(scriptHost)) return false;\n      \u002F\u002F Include if it has tracking-like keywords or is from a third-party\n      return trackingKeywords.test(src) || true;\n    } catch {\n      return false;\n    }\n  });\n\n  \u002F\u002F Extract just the domain from unknown scripts for cleaner output\n  const unknownDomains = [...new Set(unknownScripts.map(src => {\n    try {\n      return new URL(src).hostname;\n    } catch {\n      return src;\n    }\n  }))].sort();\n\n  return {\n    knownTools: [...new Set(knownTools)].sort(),\n    unknownScripts: unknownDomains\n  };\n})()\n",[5569],{"type":43,"tag":100,"props":5570,"children":5571},{"__ignoreMap":294},[5572,5591,5695,5773,5797,5830,5837,5857,5932,5990,6059,6117,6199,6257,6315,6389,6446,6512,6588,6645,6702,6761,6835,6892,6950,6999,7048,7105,7162,7220,7277,7335,7392,7450,7508,7565,7624,7682,7740,7797,7855,7912,7969,8027,8086,8144,8202,8260,8319,8386,8444,8503,8575,8633,8683,8741,8798,8856,8916,8975,9034,9093,9151,9210,9269,9345,9387,9446,9513,9588,9652,9660,9668,9677,9751,9789,9832,9865,9899,9912,9921,9930,9938,9946,9955,10079,10124,10175,10188,10231,10300,10309,10392,10401,10538,10547,10592,10609,10625,10633,10649,10657,10666,10728,10740,10780,10796,10812,10820,10850,10858,10870,10925,10943,10951],{"type":43,"tag":674,"props":5573,"children":5574},{"class":676,"line":677},[5575,5579,5583,5587],{"type":43,"tag":674,"props":5576,"children":5577},{"style":681},[5578],{"type":48,"value":684},{"type":43,"tag":674,"props":5580,"children":5581},{"style":687},[5582],{"type":48,"value":690},{"type":43,"tag":674,"props":5584,"children":5585},{"style":693},[5586],{"type":48,"value":696},{"type":43,"tag":674,"props":5588,"children":5589},{"style":687},[5590],{"type":48,"value":701},{"type":43,"tag":674,"props":5592,"children":5593},{"class":676,"line":704},[5594,5598,5602,5606,5610,5614,5618,5622,5626,5630,5634,5638,5642,5647,5651,5655,5659,5663,5667,5671,5675,5679,5683,5687,5691],{"type":43,"tag":674,"props":5595,"children":5596},{"style":693},[5597],{"type":48,"value":820},{"type":43,"tag":674,"props":5599,"children":5600},{"style":681},[5601],{"type":48,"value":3033},{"type":43,"tag":674,"props":5603,"children":5604},{"style":687},[5605],{"type":48,"value":830},{"type":43,"tag":674,"props":5607,"children":5608},{"style":681},[5609],{"type":48,"value":3042},{"type":43,"tag":674,"props":5611,"children":5612},{"style":687},[5613],{"type":48,"value":897},{"type":43,"tag":674,"props":5615,"children":5616},{"style":1009},[5617],{"type":48,"value":3051},{"type":43,"tag":674,"props":5619,"children":5620},{"style":714},[5621],{"type":48,"value":684},{"type":43,"tag":674,"props":5623,"children":5624},{"style":681},[5625],{"type":48,"value":3060},{"type":43,"tag":674,"props":5627,"children":5628},{"style":687},[5629],{"type":48,"value":897},{"type":43,"tag":674,"props":5631,"children":5632},{"style":1009},[5633],{"type":48,"value":3069},{"type":43,"tag":674,"props":5635,"children":5636},{"style":714},[5637],{"type":48,"value":684},{"type":43,"tag":674,"props":5639,"children":5640},{"style":687},[5641],{"type":48,"value":748},{"type":43,"tag":674,"props":5643,"children":5644},{"style":740},[5645],{"type":48,"value":5646},"script[src]",{"type":43,"tag":674,"props":5648,"children":5649},{"style":687},[5650],{"type":48,"value":748},{"type":43,"tag":674,"props":5652,"children":5653},{"style":714},[5654],{"type":48,"value":3091},{"type":43,"tag":674,"props":5656,"children":5657},{"style":687},[5658],{"type":48,"value":897},{"type":43,"tag":674,"props":5660,"children":5661},{"style":1009},[5662],{"type":48,"value":2085},{"type":43,"tag":674,"props":5664,"children":5665},{"style":714},[5666],{"type":48,"value":684},{"type":43,"tag":674,"props":5668,"children":5669},{"style":2042},[5670],{"type":48,"value":3132},{"type":43,"tag":674,"props":5672,"children":5673},{"style":693},[5674],{"type":48,"value":696},{"type":43,"tag":674,"props":5676,"children":5677},{"style":681},[5678],{"type":48,"value":3217},{"type":43,"tag":674,"props":5680,"children":5681},{"style":687},[5682],{"type":48,"value":897},{"type":43,"tag":674,"props":5684,"children":5685},{"style":681},[5686],{"type":48,"value":3158},{"type":43,"tag":674,"props":5688,"children":5689},{"style":714},[5690],{"type":48,"value":2351},{"type":43,"tag":674,"props":5692,"children":5693},{"style":687},[5694],{"type":48,"value":839},{"type":43,"tag":674,"props":5696,"children":5697},{"class":676,"line":761},[5698,5702,5706,5710,5714,5718,5722,5726,5730,5734,5739,5743,5747,5752,5756,5760,5765,5769],{"type":43,"tag":674,"props":5699,"children":5700},{"style":693},[5701],{"type":48,"value":820},{"type":43,"tag":674,"props":5703,"children":5704},{"style":681},[5705],{"type":48,"value":4581},{"type":43,"tag":674,"props":5707,"children":5708},{"style":687},[5709],{"type":48,"value":830},{"type":43,"tag":674,"props":5711,"children":5712},{"style":681},[5713],{"type":48,"value":2227},{"type":43,"tag":674,"props":5715,"children":5716},{"style":687},[5717],{"type":48,"value":897},{"type":43,"tag":674,"props":5719,"children":5720},{"style":681},[5721],{"type":48,"value":4598},{"type":43,"tag":674,"props":5723,"children":5724},{"style":687},[5725],{"type":48,"value":897},{"type":43,"tag":674,"props":5727,"children":5728},{"style":681},[5729],{"type":48,"value":4607},{"type":43,"tag":674,"props":5731,"children":5732},{"style":687},[5733],{"type":48,"value":897},{"type":43,"tag":674,"props":5735,"children":5736},{"style":1009},[5737],{"type":48,"value":5738},"replace",{"type":43,"tag":674,"props":5740,"children":5741},{"style":714},[5742],{"type":48,"value":684},{"type":43,"tag":674,"props":5744,"children":5745},{"style":687},[5746],{"type":48,"value":748},{"type":43,"tag":674,"props":5748,"children":5749},{"style":740},[5750],{"type":48,"value":5751},"www.",{"type":43,"tag":674,"props":5753,"children":5754},{"style":687},[5755],{"type":48,"value":748},{"type":43,"tag":674,"props":5757,"children":5758},{"style":687},[5759],{"type":48,"value":2050},{"type":43,"tag":674,"props":5761,"children":5762},{"style":687},[5763],{"type":48,"value":5764}," ''",{"type":43,"tag":674,"props":5766,"children":5767},{"style":714},[5768],{"type":48,"value":2351},{"type":43,"tag":674,"props":5770,"children":5771},{"style":687},[5772],{"type":48,"value":839},{"type":43,"tag":674,"props":5774,"children":5775},{"class":676,"line":30},[5776,5780,5785,5789,5793],{"type":43,"tag":674,"props":5777,"children":5778},{"style":693},[5779],{"type":48,"value":820},{"type":43,"tag":674,"props":5781,"children":5782},{"style":681},[5783],{"type":48,"value":5784}," knownTools",{"type":43,"tag":674,"props":5786,"children":5787},{"style":687},[5788],{"type":48,"value":830},{"type":43,"tag":674,"props":5790,"children":5791},{"style":714},[5792],{"type":48,"value":1927},{"type":43,"tag":674,"props":5794,"children":5795},{"style":687},[5796],{"type":48,"value":839},{"type":43,"tag":674,"props":5798,"children":5799},{"class":676,"line":804},[5800,5804,5809,5813,5818,5822,5826],{"type":43,"tag":674,"props":5801,"children":5802},{"style":693},[5803],{"type":48,"value":820},{"type":43,"tag":674,"props":5805,"children":5806},{"style":681},[5807],{"type":48,"value":5808}," matchedScripts",{"type":43,"tag":674,"props":5810,"children":5811},{"style":687},[5812],{"type":48,"value":830},{"type":43,"tag":674,"props":5814,"children":5815},{"style":687},[5816],{"type":48,"value":5817}," new",{"type":43,"tag":674,"props":5819,"children":5820},{"style":1009},[5821],{"type":48,"value":5417},{"type":43,"tag":674,"props":5823,"children":5824},{"style":714},[5825],{"type":48,"value":690},{"type":43,"tag":674,"props":5827,"children":5828},{"style":687},[5829],{"type":48,"value":839},{"type":43,"tag":674,"props":5831,"children":5832},{"class":676,"line":814},[5833],{"type":43,"tag":674,"props":5834,"children":5835},{"emptyLinePlaceholder":808},[5836],{"type":48,"value":811},{"type":43,"tag":674,"props":5838,"children":5839},{"class":676,"line":842},[5840,5844,5849,5853],{"type":43,"tag":674,"props":5841,"children":5842},{"style":693},[5843],{"type":48,"value":820},{"type":43,"tag":674,"props":5845,"children":5846},{"style":681},[5847],{"type":48,"value":5848}," patterns",{"type":43,"tag":674,"props":5850,"children":5851},{"style":687},[5852],{"type":48,"value":830},{"type":43,"tag":674,"props":5854,"children":5855},{"style":687},[5856],{"type":48,"value":701},{"type":43,"tag":674,"props":5858,"children":5859},{"class":676,"line":855},[5860,5865,5870,5874,5878,5883,5888,5893,5898,5903,5908,5913,5918,5923,5928],{"type":43,"tag":674,"props":5861,"children":5862},{"style":687},[5863],{"type":48,"value":5864},"    '",{"type":43,"tag":674,"props":5866,"children":5867},{"style":714},[5868],{"type":48,"value":5869},"Google Analytics",{"type":43,"tag":674,"props":5871,"children":5872},{"style":687},[5873],{"type":48,"value":748},{"type":43,"tag":674,"props":5875,"children":5876},{"style":687},[5877],{"type":48,"value":782},{"type":43,"tag":674,"props":5879,"children":5880},{"style":687},[5881],{"type":48,"value":5882}," \u002F",{"type":43,"tag":674,"props":5884,"children":5885},{"style":740},[5886],{"type":48,"value":5887},"google-analytics",{"type":43,"tag":674,"props":5889,"children":5890},{"style":681},[5891],{"type":48,"value":5892},"\\.",{"type":43,"tag":674,"props":5894,"children":5895},{"style":740},[5896],{"type":48,"value":5897},"com",{"type":43,"tag":674,"props":5899,"children":5900},{"style":687},[5901],{"type":48,"value":5902},"|",{"type":43,"tag":674,"props":5904,"children":5905},{"style":740},[5906],{"type":48,"value":5907},"gtag",{"type":43,"tag":674,"props":5909,"children":5910},{"style":681},[5911],{"type":48,"value":5912},"\\\u002F",{"type":43,"tag":674,"props":5914,"children":5915},{"style":740},[5916],{"type":48,"value":5917},"js",{"type":43,"tag":674,"props":5919,"children":5920},{"style":687},[5921],{"type":48,"value":5922},"\u002F",{"type":43,"tag":674,"props":5924,"children":5925},{"style":3437},[5926],{"type":48,"value":5927},"i",{"type":43,"tag":674,"props":5929,"children":5930},{"style":687},[5931],{"type":48,"value":875},{"type":43,"tag":674,"props":5933,"children":5934},{"class":676,"line":878},[5935,5939,5944,5948,5952,5956,5961,5965,5969,5973,5978,5982,5986],{"type":43,"tag":674,"props":5936,"children":5937},{"style":687},[5938],{"type":48,"value":5864},{"type":43,"tag":674,"props":5940,"children":5941},{"style":714},[5942],{"type":48,"value":5943},"Google Tag Manager",{"type":43,"tag":674,"props":5945,"children":5946},{"style":687},[5947],{"type":48,"value":748},{"type":43,"tag":674,"props":5949,"children":5950},{"style":687},[5951],{"type":48,"value":782},{"type":43,"tag":674,"props":5953,"children":5954},{"style":687},[5955],{"type":48,"value":5882},{"type":43,"tag":674,"props":5957,"children":5958},{"style":740},[5959],{"type":48,"value":5960},"googletagmanager",{"type":43,"tag":674,"props":5962,"children":5963},{"style":681},[5964],{"type":48,"value":5892},{"type":43,"tag":674,"props":5966,"children":5967},{"style":740},[5968],{"type":48,"value":5897},{"type":43,"tag":674,"props":5970,"children":5971},{"style":681},[5972],{"type":48,"value":5912},{"type":43,"tag":674,"props":5974,"children":5975},{"style":740},[5976],{"type":48,"value":5977},"gtm",{"type":43,"tag":674,"props":5979,"children":5980},{"style":687},[5981],{"type":48,"value":5922},{"type":43,"tag":674,"props":5983,"children":5984},{"style":3437},[5985],{"type":48,"value":5927},{"type":43,"tag":674,"props":5987,"children":5988},{"style":687},[5989],{"type":48,"value":875},{"type":43,"tag":674,"props":5991,"children":5992},{"class":676,"line":944},[5993,5997,6002,6006,6010,6014,6019,6023,6028,6032,6037,6042,6047,6051,6055],{"type":43,"tag":674,"props":5994,"children":5995},{"style":687},[5996],{"type":48,"value":5864},{"type":43,"tag":674,"props":5998,"children":5999},{"style":714},[6000],{"type":48,"value":6001},"Facebook Pixel",{"type":43,"tag":674,"props":6003,"children":6004},{"style":687},[6005],{"type":48,"value":748},{"type":43,"tag":674,"props":6007,"children":6008},{"style":687},[6009],{"type":48,"value":782},{"type":43,"tag":674,"props":6011,"children":6012},{"style":687},[6013],{"type":48,"value":5882},{"type":43,"tag":674,"props":6015,"children":6016},{"style":740},[6017],{"type":48,"value":6018},"connect",{"type":43,"tag":674,"props":6020,"children":6021},{"style":681},[6022],{"type":48,"value":5892},{"type":43,"tag":674,"props":6024,"children":6025},{"style":740},[6026],{"type":48,"value":6027},"facebook",{"type":43,"tag":674,"props":6029,"children":6030},{"style":681},[6031],{"type":48,"value":5892},{"type":43,"tag":674,"props":6033,"children":6034},{"style":740},[6035],{"type":48,"value":6036},"net.",{"type":43,"tag":674,"props":6038,"children":6039},{"style":687},[6040],{"type":48,"value":6041},"*",{"type":43,"tag":674,"props":6043,"children":6044},{"style":740},[6045],{"type":48,"value":6046},"fbevents",{"type":43,"tag":674,"props":6048,"children":6049},{"style":687},[6050],{"type":48,"value":5922},{"type":43,"tag":674,"props":6052,"children":6053},{"style":3437},[6054],{"type":48,"value":5927},{"type":43,"tag":674,"props":6056,"children":6057},{"style":687},[6058],{"type":48,"value":875},{"type":43,"tag":674,"props":6060,"children":6061},{"class":676,"line":961},[6062,6066,6071,6075,6079,6083,6088,6092,6097,6101,6105,6109,6113],{"type":43,"tag":674,"props":6063,"children":6064},{"style":687},[6065],{"type":48,"value":5864},{"type":43,"tag":674,"props":6067,"children":6068},{"style":714},[6069],{"type":48,"value":6070},"LinkedIn Insight",{"type":43,"tag":674,"props":6072,"children":6073},{"style":687},[6074],{"type":48,"value":748},{"type":43,"tag":674,"props":6076,"children":6077},{"style":687},[6078],{"type":48,"value":782},{"type":43,"tag":674,"props":6080,"children":6081},{"style":687},[6082],{"type":48,"value":5882},{"type":43,"tag":674,"props":6084,"children":6085},{"style":740},[6086],{"type":48,"value":6087},"snap",{"type":43,"tag":674,"props":6089,"children":6090},{"style":681},[6091],{"type":48,"value":5892},{"type":43,"tag":674,"props":6093,"children":6094},{"style":740},[6095],{"type":48,"value":6096},"licdn",{"type":43,"tag":674,"props":6098,"children":6099},{"style":681},[6100],{"type":48,"value":5892},{"type":43,"tag":674,"props":6102,"children":6103},{"style":740},[6104],{"type":48,"value":5897},{"type":43,"tag":674,"props":6106,"children":6107},{"style":687},[6108],{"type":48,"value":5922},{"type":43,"tag":674,"props":6110,"children":6111},{"style":3437},[6112],{"type":48,"value":5927},{"type":43,"tag":674,"props":6114,"children":6115},{"style":687},[6116],{"type":48,"value":875},{"type":43,"tag":674,"props":6118,"children":6119},{"class":676,"line":1061},[6120,6124,6129,6133,6137,6141,6145,6149,6154,6158,6162,6166,6170,6174,6179,6183,6187,6191,6195],{"type":43,"tag":674,"props":6121,"children":6122},{"style":687},[6123],{"type":48,"value":5864},{"type":43,"tag":674,"props":6125,"children":6126},{"style":714},[6127],{"type":48,"value":6128},"HubSpot",{"type":43,"tag":674,"props":6130,"children":6131},{"style":687},[6132],{"type":48,"value":748},{"type":43,"tag":674,"props":6134,"children":6135},{"style":687},[6136],{"type":48,"value":782},{"type":43,"tag":674,"props":6138,"children":6139},{"style":687},[6140],{"type":48,"value":5882},{"type":43,"tag":674,"props":6142,"children":6143},{"style":740},[6144],{"type":48,"value":5917},{"type":43,"tag":674,"props":6146,"children":6147},{"style":681},[6148],{"type":48,"value":5892},{"type":43,"tag":674,"props":6150,"children":6151},{"style":740},[6152],{"type":48,"value":6153},"hs-scripts",{"type":43,"tag":674,"props":6155,"children":6156},{"style":681},[6157],{"type":48,"value":5892},{"type":43,"tag":674,"props":6159,"children":6160},{"style":740},[6161],{"type":48,"value":5897},{"type":43,"tag":674,"props":6163,"children":6164},{"style":687},[6165],{"type":48,"value":5902},{"type":43,"tag":674,"props":6167,"children":6168},{"style":740},[6169],{"type":48,"value":5917},{"type":43,"tag":674,"props":6171,"children":6172},{"style":681},[6173],{"type":48,"value":5892},{"type":43,"tag":674,"props":6175,"children":6176},{"style":740},[6177],{"type":48,"value":6178},"hsforms",{"type":43,"tag":674,"props":6180,"children":6181},{"style":681},[6182],{"type":48,"value":5892},{"type":43,"tag":674,"props":6184,"children":6185},{"style":740},[6186],{"type":48,"value":5897},{"type":43,"tag":674,"props":6188,"children":6189},{"style":687},[6190],{"type":48,"value":5922},{"type":43,"tag":674,"props":6192,"children":6193},{"style":3437},[6194],{"type":48,"value":5927},{"type":43,"tag":674,"props":6196,"children":6197},{"style":687},[6198],{"type":48,"value":875},{"type":43,"tag":674,"props":6200,"children":6201},{"class":676,"line":1155},[6202,6206,6211,6215,6219,6223,6228,6232,6237,6241,6245,6249,6253],{"type":43,"tag":674,"props":6203,"children":6204},{"style":687},[6205],{"type":48,"value":5864},{"type":43,"tag":674,"props":6207,"children":6208},{"style":714},[6209],{"type":48,"value":6210},"Hotjar",{"type":43,"tag":674,"props":6212,"children":6213},{"style":687},[6214],{"type":48,"value":748},{"type":43,"tag":674,"props":6216,"children":6217},{"style":687},[6218],{"type":48,"value":782},{"type":43,"tag":674,"props":6220,"children":6221},{"style":687},[6222],{"type":48,"value":5882},{"type":43,"tag":674,"props":6224,"children":6225},{"style":740},[6226],{"type":48,"value":6227},"static",{"type":43,"tag":674,"props":6229,"children":6230},{"style":681},[6231],{"type":48,"value":5892},{"type":43,"tag":674,"props":6233,"children":6234},{"style":740},[6235],{"type":48,"value":6236},"hotjar",{"type":43,"tag":674,"props":6238,"children":6239},{"style":681},[6240],{"type":48,"value":5892},{"type":43,"tag":674,"props":6242,"children":6243},{"style":740},[6244],{"type":48,"value":5897},{"type":43,"tag":674,"props":6246,"children":6247},{"style":687},[6248],{"type":48,"value":5922},{"type":43,"tag":674,"props":6250,"children":6251},{"style":3437},[6252],{"type":48,"value":5927},{"type":43,"tag":674,"props":6254,"children":6255},{"style":687},[6256],{"type":48,"value":875},{"type":43,"tag":674,"props":6258,"children":6259},{"class":676,"line":1251},[6260,6264,6269,6273,6277,6281,6286,6290,6295,6299,6303,6307,6311],{"type":43,"tag":674,"props":6261,"children":6262},{"style":687},[6263],{"type":48,"value":5864},{"type":43,"tag":674,"props":6265,"children":6266},{"style":714},[6267],{"type":48,"value":6268},"Segment",{"type":43,"tag":674,"props":6270,"children":6271},{"style":687},[6272],{"type":48,"value":748},{"type":43,"tag":674,"props":6274,"children":6275},{"style":687},[6276],{"type":48,"value":782},{"type":43,"tag":674,"props":6278,"children":6279},{"style":687},[6280],{"type":48,"value":5882},{"type":43,"tag":674,"props":6282,"children":6283},{"style":740},[6284],{"type":48,"value":6285},"cdn",{"type":43,"tag":674,"props":6287,"children":6288},{"style":681},[6289],{"type":48,"value":5892},{"type":43,"tag":674,"props":6291,"children":6292},{"style":740},[6293],{"type":48,"value":6294},"segment",{"type":43,"tag":674,"props":6296,"children":6297},{"style":681},[6298],{"type":48,"value":5892},{"type":43,"tag":674,"props":6300,"children":6301},{"style":740},[6302],{"type":48,"value":5897},{"type":43,"tag":674,"props":6304,"children":6305},{"style":687},[6306],{"type":48,"value":5922},{"type":43,"tag":674,"props":6308,"children":6309},{"style":3437},[6310],{"type":48,"value":5927},{"type":43,"tag":674,"props":6312,"children":6313},{"style":687},[6314],{"type":48,"value":875},{"type":43,"tag":674,"props":6316,"children":6317},{"class":676,"line":1345},[6318,6322,6327,6331,6335,6339,6343,6347,6352,6356,6360,6364,6369,6373,6377,6381,6385],{"type":43,"tag":674,"props":6319,"children":6320},{"style":687},[6321],{"type":48,"value":5864},{"type":43,"tag":674,"props":6323,"children":6324},{"style":714},[6325],{"type":48,"value":6326},"Mixpanel",{"type":43,"tag":674,"props":6328,"children":6329},{"style":687},[6330],{"type":48,"value":748},{"type":43,"tag":674,"props":6332,"children":6333},{"style":687},[6334],{"type":48,"value":782},{"type":43,"tag":674,"props":6336,"children":6337},{"style":687},[6338],{"type":48,"value":5882},{"type":43,"tag":674,"props":6340,"children":6341},{"style":740},[6342],{"type":48,"value":6285},{"type":43,"tag":674,"props":6344,"children":6345},{"style":681},[6346],{"type":48,"value":5892},{"type":43,"tag":674,"props":6348,"children":6349},{"style":740},[6350],{"type":48,"value":6351},"mxpnl",{"type":43,"tag":674,"props":6353,"children":6354},{"style":681},[6355],{"type":48,"value":5892},{"type":43,"tag":674,"props":6357,"children":6358},{"style":740},[6359],{"type":48,"value":5897},{"type":43,"tag":674,"props":6361,"children":6362},{"style":687},[6363],{"type":48,"value":5902},{"type":43,"tag":674,"props":6365,"children":6366},{"style":740},[6367],{"type":48,"value":6368},"mixpanel",{"type":43,"tag":674,"props":6370,"children":6371},{"style":681},[6372],{"type":48,"value":5892},{"type":43,"tag":674,"props":6374,"children":6375},{"style":740},[6376],{"type":48,"value":5897},{"type":43,"tag":674,"props":6378,"children":6379},{"style":687},[6380],{"type":48,"value":5922},{"type":43,"tag":674,"props":6382,"children":6383},{"style":3437},[6384],{"type":48,"value":5927},{"type":43,"tag":674,"props":6386,"children":6387},{"style":687},[6388],{"type":48,"value":875},{"type":43,"tag":674,"props":6390,"children":6391},{"class":676,"line":1439},[6392,6396,6401,6405,6409,6413,6417,6421,6426,6430,6434,6438,6442],{"type":43,"tag":674,"props":6393,"children":6394},{"style":687},[6395],{"type":48,"value":5864},{"type":43,"tag":674,"props":6397,"children":6398},{"style":714},[6399],{"type":48,"value":6400},"Amplitude",{"type":43,"tag":674,"props":6402,"children":6403},{"style":687},[6404],{"type":48,"value":748},{"type":43,"tag":674,"props":6406,"children":6407},{"style":687},[6408],{"type":48,"value":782},{"type":43,"tag":674,"props":6410,"children":6411},{"style":687},[6412],{"type":48,"value":5882},{"type":43,"tag":674,"props":6414,"children":6415},{"style":740},[6416],{"type":48,"value":6285},{"type":43,"tag":674,"props":6418,"children":6419},{"style":681},[6420],{"type":48,"value":5892},{"type":43,"tag":674,"props":6422,"children":6423},{"style":740},[6424],{"type":48,"value":6425},"amplitude",{"type":43,"tag":674,"props":6427,"children":6428},{"style":681},[6429],{"type":48,"value":5892},{"type":43,"tag":674,"props":6431,"children":6432},{"style":740},[6433],{"type":48,"value":5897},{"type":43,"tag":674,"props":6435,"children":6436},{"style":687},[6437],{"type":48,"value":5922},{"type":43,"tag":674,"props":6439,"children":6440},{"style":3437},[6441],{"type":48,"value":5927},{"type":43,"tag":674,"props":6443,"children":6444},{"style":687},[6445],{"type":48,"value":875},{"type":43,"tag":674,"props":6447,"children":6448},{"class":676,"line":1488},[6449,6453,6458,6462,6466,6470,6475,6479,6483,6487,6492,6496,6500,6504,6508],{"type":43,"tag":674,"props":6450,"children":6451},{"style":687},[6452],{"type":48,"value":5864},{"type":43,"tag":674,"props":6454,"children":6455},{"style":714},[6456],{"type":48,"value":6457},"Heap",{"type":43,"tag":674,"props":6459,"children":6460},{"style":687},[6461],{"type":48,"value":748},{"type":43,"tag":674,"props":6463,"children":6464},{"style":687},[6465],{"type":48,"value":782},{"type":43,"tag":674,"props":6467,"children":6468},{"style":687},[6469],{"type":48,"value":5882},{"type":43,"tag":674,"props":6471,"children":6472},{"style":740},[6473],{"type":48,"value":6474},"heap-analytics",{"type":43,"tag":674,"props":6476,"children":6477},{"style":681},[6478],{"type":48,"value":5892},{"type":43,"tag":674,"props":6480,"children":6481},{"style":740},[6482],{"type":48,"value":5897},{"type":43,"tag":674,"props":6484,"children":6485},{"style":687},[6486],{"type":48,"value":5902},{"type":43,"tag":674,"props":6488,"children":6489},{"style":740},[6490],{"type":48,"value":6491},"heapanalytics",{"type":43,"tag":674,"props":6493,"children":6494},{"style":681},[6495],{"type":48,"value":5892},{"type":43,"tag":674,"props":6497,"children":6498},{"style":740},[6499],{"type":48,"value":5897},{"type":43,"tag":674,"props":6501,"children":6502},{"style":687},[6503],{"type":48,"value":5922},{"type":43,"tag":674,"props":6505,"children":6506},{"style":3437},[6507],{"type":48,"value":5927},{"type":43,"tag":674,"props":6509,"children":6510},{"style":687},[6511],{"type":48,"value":875},{"type":43,"tag":674,"props":6513,"children":6514},{"class":676,"line":1519},[6515,6519,6524,6528,6532,6536,6541,6545,6550,6554,6559,6563,6568,6572,6576,6580,6584],{"type":43,"tag":674,"props":6516,"children":6517},{"style":687},[6518],{"type":48,"value":5864},{"type":43,"tag":674,"props":6520,"children":6521},{"style":714},[6522],{"type":48,"value":6523},"Intercom",{"type":43,"tag":674,"props":6525,"children":6526},{"style":687},[6527],{"type":48,"value":748},{"type":43,"tag":674,"props":6529,"children":6530},{"style":687},[6531],{"type":48,"value":782},{"type":43,"tag":674,"props":6533,"children":6534},{"style":687},[6535],{"type":48,"value":5882},{"type":43,"tag":674,"props":6537,"children":6538},{"style":740},[6539],{"type":48,"value":6540},"widget",{"type":43,"tag":674,"props":6542,"children":6543},{"style":681},[6544],{"type":48,"value":5892},{"type":43,"tag":674,"props":6546,"children":6547},{"style":740},[6548],{"type":48,"value":6549},"intercom",{"type":43,"tag":674,"props":6551,"children":6552},{"style":681},[6553],{"type":48,"value":5892},{"type":43,"tag":674,"props":6555,"children":6556},{"style":740},[6557],{"type":48,"value":6558},"io",{"type":43,"tag":674,"props":6560,"children":6561},{"style":687},[6562],{"type":48,"value":5902},{"type":43,"tag":674,"props":6564,"children":6565},{"style":740},[6566],{"type":48,"value":6567},"intercomcdn",{"type":43,"tag":674,"props":6569,"children":6570},{"style":681},[6571],{"type":48,"value":5892},{"type":43,"tag":674,"props":6573,"children":6574},{"style":740},[6575],{"type":48,"value":5897},{"type":43,"tag":674,"props":6577,"children":6578},{"style":687},[6579],{"type":48,"value":5922},{"type":43,"tag":674,"props":6581,"children":6582},{"style":3437},[6583],{"type":48,"value":5927},{"type":43,"tag":674,"props":6585,"children":6586},{"style":687},[6587],{"type":48,"value":875},{"type":43,"tag":674,"props":6589,"children":6590},{"class":676,"line":1541},[6591,6595,6600,6604,6608,6612,6616,6620,6625,6629,6633,6637,6641],{"type":43,"tag":674,"props":6592,"children":6593},{"style":687},[6594],{"type":48,"value":5864},{"type":43,"tag":674,"props":6596,"children":6597},{"style":714},[6598],{"type":48,"value":6599},"Drift",{"type":43,"tag":674,"props":6601,"children":6602},{"style":687},[6603],{"type":48,"value":748},{"type":43,"tag":674,"props":6605,"children":6606},{"style":687},[6607],{"type":48,"value":782},{"type":43,"tag":674,"props":6609,"children":6610},{"style":687},[6611],{"type":48,"value":5882},{"type":43,"tag":674,"props":6613,"children":6614},{"style":740},[6615],{"type":48,"value":5917},{"type":43,"tag":674,"props":6617,"children":6618},{"style":681},[6619],{"type":48,"value":5892},{"type":43,"tag":674,"props":6621,"children":6622},{"style":740},[6623],{"type":48,"value":6624},"driftt",{"type":43,"tag":674,"props":6626,"children":6627},{"style":681},[6628],{"type":48,"value":5892},{"type":43,"tag":674,"props":6630,"children":6631},{"style":740},[6632],{"type":48,"value":5897},{"type":43,"tag":674,"props":6634,"children":6635},{"style":687},[6636],{"type":48,"value":5922},{"type":43,"tag":674,"props":6638,"children":6639},{"style":3437},[6640],{"type":48,"value":5927},{"type":43,"tag":674,"props":6642,"children":6643},{"style":687},[6644],{"type":48,"value":875},{"type":43,"tag":674,"props":6646,"children":6647},{"class":676,"line":1635},[6648,6652,6657,6661,6665,6669,6673,6677,6682,6686,6690,6694,6698],{"type":43,"tag":674,"props":6649,"children":6650},{"style":687},[6651],{"type":48,"value":5864},{"type":43,"tag":674,"props":6653,"children":6654},{"style":714},[6655],{"type":48,"value":6656},"Zendesk",{"type":43,"tag":674,"props":6658,"children":6659},{"style":687},[6660],{"type":48,"value":748},{"type":43,"tag":674,"props":6662,"children":6663},{"style":687},[6664],{"type":48,"value":782},{"type":43,"tag":674,"props":6666,"children":6667},{"style":687},[6668],{"type":48,"value":5882},{"type":43,"tag":674,"props":6670,"children":6671},{"style":740},[6672],{"type":48,"value":6227},{"type":43,"tag":674,"props":6674,"children":6675},{"style":681},[6676],{"type":48,"value":5892},{"type":43,"tag":674,"props":6678,"children":6679},{"style":740},[6680],{"type":48,"value":6681},"zdassets",{"type":43,"tag":674,"props":6683,"children":6684},{"style":681},[6685],{"type":48,"value":5892},{"type":43,"tag":674,"props":6687,"children":6688},{"style":740},[6689],{"type":48,"value":5897},{"type":43,"tag":674,"props":6691,"children":6692},{"style":687},[6693],{"type":48,"value":5922},{"type":43,"tag":674,"props":6695,"children":6696},{"style":3437},[6697],{"type":48,"value":5927},{"type":43,"tag":674,"props":6699,"children":6700},{"style":687},[6701],{"type":48,"value":875},{"type":43,"tag":674,"props":6703,"children":6704},{"class":676,"line":1718},[6705,6709,6714,6718,6722,6726,6731,6735,6740,6744,6749,6753,6757],{"type":43,"tag":674,"props":6706,"children":6707},{"style":687},[6708],{"type":48,"value":5864},{"type":43,"tag":674,"props":6710,"children":6711},{"style":714},[6712],{"type":48,"value":6713},"Crisp",{"type":43,"tag":674,"props":6715,"children":6716},{"style":687},[6717],{"type":48,"value":748},{"type":43,"tag":674,"props":6719,"children":6720},{"style":687},[6721],{"type":48,"value":782},{"type":43,"tag":674,"props":6723,"children":6724},{"style":687},[6725],{"type":48,"value":5882},{"type":43,"tag":674,"props":6727,"children":6728},{"style":740},[6729],{"type":48,"value":6730},"client",{"type":43,"tag":674,"props":6732,"children":6733},{"style":681},[6734],{"type":48,"value":5892},{"type":43,"tag":674,"props":6736,"children":6737},{"style":740},[6738],{"type":48,"value":6739},"crisp",{"type":43,"tag":674,"props":6741,"children":6742},{"style":681},[6743],{"type":48,"value":5892},{"type":43,"tag":674,"props":6745,"children":6746},{"style":740},[6747],{"type":48,"value":6748},"chat",{"type":43,"tag":674,"props":6750,"children":6751},{"style":687},[6752],{"type":48,"value":5922},{"type":43,"tag":674,"props":6754,"children":6755},{"style":3437},[6756],{"type":48,"value":5927},{"type":43,"tag":674,"props":6758,"children":6759},{"style":687},[6760],{"type":48,"value":875},{"type":43,"tag":674,"props":6762,"children":6763},{"class":676,"line":1727},[6764,6768,6773,6777,6781,6785,6790,6794,6798,6802,6806,6810,6815,6819,6823,6827,6831],{"type":43,"tag":674,"props":6765,"children":6766},{"style":687},[6767],{"type":48,"value":5864},{"type":43,"tag":674,"props":6769,"children":6770},{"style":714},[6771],{"type":48,"value":6772},"FullStory",{"type":43,"tag":674,"props":6774,"children":6775},{"style":687},[6776],{"type":48,"value":748},{"type":43,"tag":674,"props":6778,"children":6779},{"style":687},[6780],{"type":48,"value":782},{"type":43,"tag":674,"props":6782,"children":6783},{"style":687},[6784],{"type":48,"value":5882},{"type":43,"tag":674,"props":6786,"children":6787},{"style":740},[6788],{"type":48,"value":6789},"fullstory",{"type":43,"tag":674,"props":6791,"children":6792},{"style":681},[6793],{"type":48,"value":5892},{"type":43,"tag":674,"props":6795,"children":6796},{"style":740},[6797],{"type":48,"value":5897},{"type":43,"tag":674,"props":6799,"children":6800},{"style":681},[6801],{"type":48,"value":5912},{"type":43,"tag":674,"props":6803,"children":6804},{"style":740},[6805],{"type":48,"value":3132},{"type":43,"tag":674,"props":6807,"children":6808},{"style":681},[6809],{"type":48,"value":5912},{"type":43,"tag":674,"props":6811,"children":6812},{"style":740},[6813],{"type":48,"value":6814},"fs",{"type":43,"tag":674,"props":6816,"children":6817},{"style":681},[6818],{"type":48,"value":5892},{"type":43,"tag":674,"props":6820,"children":6821},{"style":740},[6822],{"type":48,"value":5917},{"type":43,"tag":674,"props":6824,"children":6825},{"style":687},[6826],{"type":48,"value":5922},{"type":43,"tag":674,"props":6828,"children":6829},{"style":3437},[6830],{"type":48,"value":5927},{"type":43,"tag":674,"props":6832,"children":6833},{"style":687},[6834],{"type":48,"value":875},{"type":43,"tag":674,"props":6836,"children":6837},{"class":676,"line":1782},[6838,6842,6847,6851,6855,6859,6863,6867,6872,6876,6880,6884,6888],{"type":43,"tag":674,"props":6839,"children":6840},{"style":687},[6841],{"type":48,"value":5864},{"type":43,"tag":674,"props":6843,"children":6844},{"style":714},[6845],{"type":48,"value":6846},"LogRocket",{"type":43,"tag":674,"props":6848,"children":6849},{"style":687},[6850],{"type":48,"value":748},{"type":43,"tag":674,"props":6852,"children":6853},{"style":687},[6854],{"type":48,"value":782},{"type":43,"tag":674,"props":6856,"children":6857},{"style":687},[6858],{"type":48,"value":5882},{"type":43,"tag":674,"props":6860,"children":6861},{"style":740},[6862],{"type":48,"value":6285},{"type":43,"tag":674,"props":6864,"children":6865},{"style":681},[6866],{"type":48,"value":5892},{"type":43,"tag":674,"props":6868,"children":6869},{"style":740},[6870],{"type":48,"value":6871},"logrocket",{"type":43,"tag":674,"props":6873,"children":6874},{"style":681},[6875],{"type":48,"value":5892},{"type":43,"tag":674,"props":6877,"children":6878},{"style":740},[6879],{"type":48,"value":5897},{"type":43,"tag":674,"props":6881,"children":6882},{"style":687},[6883],{"type":48,"value":5922},{"type":43,"tag":674,"props":6885,"children":6886},{"style":3437},[6887],{"type":48,"value":5927},{"type":43,"tag":674,"props":6889,"children":6890},{"style":687},[6891],{"type":48,"value":875},{"type":43,"tag":674,"props":6893,"children":6894},{"class":676,"line":1836},[6895,6899,6904,6908,6912,6916,6921,6925,6930,6934,6938,6942,6946],{"type":43,"tag":674,"props":6896,"children":6897},{"style":687},[6898],{"type":48,"value":5864},{"type":43,"tag":674,"props":6900,"children":6901},{"style":714},[6902],{"type":48,"value":6903},"Sentry",{"type":43,"tag":674,"props":6905,"children":6906},{"style":687},[6907],{"type":48,"value":748},{"type":43,"tag":674,"props":6909,"children":6910},{"style":687},[6911],{"type":48,"value":782},{"type":43,"tag":674,"props":6913,"children":6914},{"style":687},[6915],{"type":48,"value":5882},{"type":43,"tag":674,"props":6917,"children":6918},{"style":740},[6919],{"type":48,"value":6920},"browser",{"type":43,"tag":674,"props":6922,"children":6923},{"style":681},[6924],{"type":48,"value":5892},{"type":43,"tag":674,"props":6926,"children":6927},{"style":740},[6928],{"type":48,"value":6929},"sentry-cdn",{"type":43,"tag":674,"props":6931,"children":6932},{"style":681},[6933],{"type":48,"value":5892},{"type":43,"tag":674,"props":6935,"children":6936},{"style":740},[6937],{"type":48,"value":5897},{"type":43,"tag":674,"props":6939,"children":6940},{"style":687},[6941],{"type":48,"value":5922},{"type":43,"tag":674,"props":6943,"children":6944},{"style":3437},[6945],{"type":48,"value":5927},{"type":43,"tag":674,"props":6947,"children":6948},{"style":687},[6949],{"type":48,"value":875},{"type":43,"tag":674,"props":6951,"children":6952},{"class":676,"line":1934},[6953,6957,6962,6966,6970,6974,6979,6983,6987,6991,6995],{"type":43,"tag":674,"props":6954,"children":6955},{"style":687},[6956],{"type":48,"value":5864},{"type":43,"tag":674,"props":6958,"children":6959},{"style":714},[6960],{"type":48,"value":6961},"Datadog",{"type":43,"tag":674,"props":6963,"children":6964},{"style":687},[6965],{"type":48,"value":748},{"type":43,"tag":674,"props":6967,"children":6968},{"style":687},[6969],{"type":48,"value":782},{"type":43,"tag":674,"props":6971,"children":6972},{"style":687},[6973],{"type":48,"value":5882},{"type":43,"tag":674,"props":6975,"children":6976},{"style":740},[6977],{"type":48,"value":6978},"datadoghq",{"type":43,"tag":674,"props":6980,"children":6981},{"style":681},[6982],{"type":48,"value":5892},{"type":43,"tag":674,"props":6984,"children":6985},{"style":740},[6986],{"type":48,"value":5897},{"type":43,"tag":674,"props":6988,"children":6989},{"style":687},[6990],{"type":48,"value":5922},{"type":43,"tag":674,"props":6992,"children":6993},{"style":3437},[6994],{"type":48,"value":5927},{"type":43,"tag":674,"props":6996,"children":6997},{"style":687},[6998],{"type":48,"value":875},{"type":43,"tag":674,"props":7000,"children":7001},{"class":676,"line":1964},[7002,7006,7011,7015,7019,7023,7027,7031,7036,7040,7044],{"type":43,"tag":674,"props":7003,"children":7004},{"style":687},[7005],{"type":48,"value":5864},{"type":43,"tag":674,"props":7007,"children":7008},{"style":714},[7009],{"type":48,"value":7010},"Snowplow",{"type":43,"tag":674,"props":7012,"children":7013},{"style":687},[7014],{"type":48,"value":748},{"type":43,"tag":674,"props":7016,"children":7017},{"style":687},[7018],{"type":48,"value":782},{"type":43,"tag":674,"props":7020,"children":7021},{"style":687},[7022],{"type":48,"value":5882},{"type":43,"tag":674,"props":7024,"children":7025},{"style":740},[7026],{"type":48,"value":6285},{"type":43,"tag":674,"props":7028,"children":7029},{"style":681},[7030],{"type":48,"value":5892},{"type":43,"tag":674,"props":7032,"children":7033},{"style":740},[7034],{"type":48,"value":7035},"snowplow",{"type":43,"tag":674,"props":7037,"children":7038},{"style":687},[7039],{"type":48,"value":5922},{"type":43,"tag":674,"props":7041,"children":7042},{"style":3437},[7043],{"type":48,"value":5927},{"type":43,"tag":674,"props":7045,"children":7046},{"style":687},[7047],{"type":48,"value":875},{"type":43,"tag":674,"props":7049,"children":7050},{"class":676,"line":2019},[7051,7055,7060,7064,7068,7072,7076,7080,7085,7089,7093,7097,7101],{"type":43,"tag":674,"props":7052,"children":7053},{"style":687},[7054],{"type":48,"value":5864},{"type":43,"tag":674,"props":7056,"children":7057},{"style":714},[7058],{"type":48,"value":7059},"Rudderstack",{"type":43,"tag":674,"props":7061,"children":7062},{"style":687},[7063],{"type":48,"value":748},{"type":43,"tag":674,"props":7065,"children":7066},{"style":687},[7067],{"type":48,"value":782},{"type":43,"tag":674,"props":7069,"children":7070},{"style":687},[7071],{"type":48,"value":5882},{"type":43,"tag":674,"props":7073,"children":7074},{"style":740},[7075],{"type":48,"value":6285},{"type":43,"tag":674,"props":7077,"children":7078},{"style":681},[7079],{"type":48,"value":5892},{"type":43,"tag":674,"props":7081,"children":7082},{"style":740},[7083],{"type":48,"value":7084},"rudderlabs",{"type":43,"tag":674,"props":7086,"children":7087},{"style":681},[7088],{"type":48,"value":5892},{"type":43,"tag":674,"props":7090,"children":7091},{"style":740},[7092],{"type":48,"value":5897},{"type":43,"tag":674,"props":7094,"children":7095},{"style":687},[7096],{"type":48,"value":5922},{"type":43,"tag":674,"props":7098,"children":7099},{"style":3437},[7100],{"type":48,"value":5927},{"type":43,"tag":674,"props":7102,"children":7103},{"style":687},[7104],{"type":48,"value":875},{"type":43,"tag":674,"props":7106,"children":7107},{"class":676,"line":2075},[7108,7112,7117,7121,7125,7129,7133,7137,7142,7146,7150,7154,7158],{"type":43,"tag":674,"props":7109,"children":7110},{"style":687},[7111],{"type":48,"value":5864},{"type":43,"tag":674,"props":7113,"children":7114},{"style":714},[7115],{"type":48,"value":7116},"Clearbit",{"type":43,"tag":674,"props":7118,"children":7119},{"style":687},[7120],{"type":48,"value":748},{"type":43,"tag":674,"props":7122,"children":7123},{"style":687},[7124],{"type":48,"value":782},{"type":43,"tag":674,"props":7126,"children":7127},{"style":687},[7128],{"type":48,"value":5882},{"type":43,"tag":674,"props":7130,"children":7131},{"style":740},[7132],{"type":48,"value":15},{"type":43,"tag":674,"props":7134,"children":7135},{"style":681},[7136],{"type":48,"value":5892},{"type":43,"tag":674,"props":7138,"children":7139},{"style":740},[7140],{"type":48,"value":7141},"clearbitscripts",{"type":43,"tag":674,"props":7143,"children":7144},{"style":681},[7145],{"type":48,"value":5892},{"type":43,"tag":674,"props":7147,"children":7148},{"style":740},[7149],{"type":48,"value":5897},{"type":43,"tag":674,"props":7151,"children":7152},{"style":687},[7153],{"type":48,"value":5922},{"type":43,"tag":674,"props":7155,"children":7156},{"style":3437},[7157],{"type":48,"value":5927},{"type":43,"tag":674,"props":7159,"children":7160},{"style":687},[7161],{"type":48,"value":875},{"type":43,"tag":674,"props":7163,"children":7164},{"class":676,"line":2127},[7165,7169,7174,7178,7182,7186,7190,7194,7199,7203,7208,7212,7216],{"type":43,"tag":674,"props":7166,"children":7167},{"style":687},[7168],{"type":48,"value":5864},{"type":43,"tag":674,"props":7170,"children":7171},{"style":714},[7172],{"type":48,"value":7173},"Dreamdata",{"type":43,"tag":674,"props":7175,"children":7176},{"style":687},[7177],{"type":48,"value":748},{"type":43,"tag":674,"props":7179,"children":7180},{"style":687},[7181],{"type":48,"value":782},{"type":43,"tag":674,"props":7183,"children":7184},{"style":687},[7185],{"type":48,"value":5882},{"type":43,"tag":674,"props":7187,"children":7188},{"style":740},[7189],{"type":48,"value":6285},{"type":43,"tag":674,"props":7191,"children":7192},{"style":681},[7193],{"type":48,"value":5892},{"type":43,"tag":674,"props":7195,"children":7196},{"style":740},[7197],{"type":48,"value":7198},"dreamdata",{"type":43,"tag":674,"props":7200,"children":7201},{"style":681},[7202],{"type":48,"value":5892},{"type":43,"tag":674,"props":7204,"children":7205},{"style":740},[7206],{"type":48,"value":7207},"cloud",{"type":43,"tag":674,"props":7209,"children":7210},{"style":687},[7211],{"type":48,"value":5922},{"type":43,"tag":674,"props":7213,"children":7214},{"style":3437},[7215],{"type":48,"value":5927},{"type":43,"tag":674,"props":7217,"children":7218},{"style":687},[7219],{"type":48,"value":875},{"type":43,"tag":674,"props":7221,"children":7222},{"class":676,"line":2136},[7223,7227,7232,7236,7240,7244,7248,7252,7257,7261,7265,7269,7273],{"type":43,"tag":674,"props":7224,"children":7225},{"style":687},[7226],{"type":48,"value":5864},{"type":43,"tag":674,"props":7228,"children":7229},{"style":714},[7230],{"type":48,"value":7231},"GrowthBook",{"type":43,"tag":674,"props":7233,"children":7234},{"style":687},[7235],{"type":48,"value":748},{"type":43,"tag":674,"props":7237,"children":7238},{"style":687},[7239],{"type":48,"value":782},{"type":43,"tag":674,"props":7241,"children":7242},{"style":687},[7243],{"type":48,"value":5882},{"type":43,"tag":674,"props":7245,"children":7246},{"style":740},[7247],{"type":48,"value":6285},{"type":43,"tag":674,"props":7249,"children":7250},{"style":681},[7251],{"type":48,"value":5892},{"type":43,"tag":674,"props":7253,"children":7254},{"style":740},[7255],{"type":48,"value":7256},"growthbook",{"type":43,"tag":674,"props":7258,"children":7259},{"style":681},[7260],{"type":48,"value":5892},{"type":43,"tag":674,"props":7262,"children":7263},{"style":740},[7264],{"type":48,"value":6558},{"type":43,"tag":674,"props":7266,"children":7267},{"style":687},[7268],{"type":48,"value":5922},{"type":43,"tag":674,"props":7270,"children":7271},{"style":3437},[7272],{"type":48,"value":5927},{"type":43,"tag":674,"props":7274,"children":7275},{"style":687},[7276],{"type":48,"value":875},{"type":43,"tag":674,"props":7278,"children":7279},{"class":676,"line":4765},[7280,7284,7289,7293,7297,7301,7306,7310,7315,7319,7323,7327,7331],{"type":43,"tag":674,"props":7281,"children":7282},{"style":687},[7283],{"type":48,"value":5864},{"type":43,"tag":674,"props":7285,"children":7286},{"style":714},[7287],{"type":48,"value":7288},"LaunchDarkly",{"type":43,"tag":674,"props":7290,"children":7291},{"style":687},[7292],{"type":48,"value":748},{"type":43,"tag":674,"props":7294,"children":7295},{"style":687},[7296],{"type":48,"value":782},{"type":43,"tag":674,"props":7298,"children":7299},{"style":687},[7300],{"type":48,"value":5882},{"type":43,"tag":674,"props":7302,"children":7303},{"style":740},[7304],{"type":48,"value":7305},"sdk",{"type":43,"tag":674,"props":7307,"children":7308},{"style":681},[7309],{"type":48,"value":5892},{"type":43,"tag":674,"props":7311,"children":7312},{"style":740},[7313],{"type":48,"value":7314},"launchdarkly",{"type":43,"tag":674,"props":7316,"children":7317},{"style":681},[7318],{"type":48,"value":5892},{"type":43,"tag":674,"props":7320,"children":7321},{"style":740},[7322],{"type":48,"value":5897},{"type":43,"tag":674,"props":7324,"children":7325},{"style":687},[7326],{"type":48,"value":5922},{"type":43,"tag":674,"props":7328,"children":7329},{"style":3437},[7330],{"type":48,"value":5927},{"type":43,"tag":674,"props":7332,"children":7333},{"style":687},[7334],{"type":48,"value":875},{"type":43,"tag":674,"props":7336,"children":7337},{"class":676,"line":4773},[7338,7342,7347,7351,7355,7359,7363,7367,7372,7376,7380,7384,7388],{"type":43,"tag":674,"props":7339,"children":7340},{"style":687},[7341],{"type":48,"value":5864},{"type":43,"tag":674,"props":7343,"children":7344},{"style":714},[7345],{"type":48,"value":7346},"Optimizely",{"type":43,"tag":674,"props":7348,"children":7349},{"style":687},[7350],{"type":48,"value":748},{"type":43,"tag":674,"props":7352,"children":7353},{"style":687},[7354],{"type":48,"value":782},{"type":43,"tag":674,"props":7356,"children":7357},{"style":687},[7358],{"type":48,"value":5882},{"type":43,"tag":674,"props":7360,"children":7361},{"style":740},[7362],{"type":48,"value":6285},{"type":43,"tag":674,"props":7364,"children":7365},{"style":681},[7366],{"type":48,"value":5892},{"type":43,"tag":674,"props":7368,"children":7369},{"style":740},[7370],{"type":48,"value":7371},"optimizely",{"type":43,"tag":674,"props":7373,"children":7374},{"style":681},[7375],{"type":48,"value":5892},{"type":43,"tag":674,"props":7377,"children":7378},{"style":740},[7379],{"type":48,"value":5897},{"type":43,"tag":674,"props":7381,"children":7382},{"style":687},[7383],{"type":48,"value":5922},{"type":43,"tag":674,"props":7385,"children":7386},{"style":3437},[7387],{"type":48,"value":5927},{"type":43,"tag":674,"props":7389,"children":7390},{"style":687},[7391],{"type":48,"value":875},{"type":43,"tag":674,"props":7393,"children":7394},{"class":676,"line":4782},[7395,7399,7404,7408,7412,7416,7421,7425,7430,7434,7438,7442,7446],{"type":43,"tag":674,"props":7396,"children":7397},{"style":687},[7398],{"type":48,"value":5864},{"type":43,"tag":674,"props":7400,"children":7401},{"style":714},[7402],{"type":48,"value":7403},"VWO",{"type":43,"tag":674,"props":7405,"children":7406},{"style":687},[7407],{"type":48,"value":748},{"type":43,"tag":674,"props":7409,"children":7410},{"style":687},[7411],{"type":48,"value":782},{"type":43,"tag":674,"props":7413,"children":7414},{"style":687},[7415],{"type":48,"value":5882},{"type":43,"tag":674,"props":7417,"children":7418},{"style":740},[7419],{"type":48,"value":7420},"dev",{"type":43,"tag":674,"props":7422,"children":7423},{"style":681},[7424],{"type":48,"value":5892},{"type":43,"tag":674,"props":7426,"children":7427},{"style":740},[7428],{"type":48,"value":7429},"visualwebsiteoptimizer",{"type":43,"tag":674,"props":7431,"children":7432},{"style":681},[7433],{"type":48,"value":5892},{"type":43,"tag":674,"props":7435,"children":7436},{"style":740},[7437],{"type":48,"value":5897},{"type":43,"tag":674,"props":7439,"children":7440},{"style":687},[7441],{"type":48,"value":5922},{"type":43,"tag":674,"props":7443,"children":7444},{"style":3437},[7445],{"type":48,"value":5927},{"type":43,"tag":674,"props":7447,"children":7448},{"style":687},[7449],{"type":48,"value":875},{"type":43,"tag":674,"props":7451,"children":7452},{"class":676,"line":4863},[7453,7457,7462,7466,7470,7474,7479,7483,7488,7492,7496,7500,7504],{"type":43,"tag":674,"props":7454,"children":7455},{"style":687},[7456],{"type":48,"value":5864},{"type":43,"tag":674,"props":7458,"children":7459},{"style":714},[7460],{"type":48,"value":7461},"Ahrefs",{"type":43,"tag":674,"props":7463,"children":7464},{"style":687},[7465],{"type":48,"value":748},{"type":43,"tag":674,"props":7467,"children":7468},{"style":687},[7469],{"type":48,"value":782},{"type":43,"tag":674,"props":7471,"children":7472},{"style":687},[7473],{"type":48,"value":5882},{"type":43,"tag":674,"props":7475,"children":7476},{"style":740},[7477],{"type":48,"value":7478},"analytics",{"type":43,"tag":674,"props":7480,"children":7481},{"style":681},[7482],{"type":48,"value":5892},{"type":43,"tag":674,"props":7484,"children":7485},{"style":740},[7486],{"type":48,"value":7487},"ahrefs",{"type":43,"tag":674,"props":7489,"children":7490},{"style":681},[7491],{"type":48,"value":5892},{"type":43,"tag":674,"props":7493,"children":7494},{"style":740},[7495],{"type":48,"value":5897},{"type":43,"tag":674,"props":7497,"children":7498},{"style":687},[7499],{"type":48,"value":5922},{"type":43,"tag":674,"props":7501,"children":7502},{"style":3437},[7503],{"type":48,"value":5927},{"type":43,"tag":674,"props":7505,"children":7506},{"style":687},[7507],{"type":48,"value":875},{"type":43,"tag":674,"props":7509,"children":7510},{"class":676,"line":4895},[7511,7515,7520,7524,7528,7532,7536,7540,7545,7549,7553,7557,7561],{"type":43,"tag":674,"props":7512,"children":7513},{"style":687},[7514],{"type":48,"value":5864},{"type":43,"tag":674,"props":7516,"children":7517},{"style":714},[7518],{"type":48,"value":7519},"AdRoll",{"type":43,"tag":674,"props":7521,"children":7522},{"style":687},[7523],{"type":48,"value":748},{"type":43,"tag":674,"props":7525,"children":7526},{"style":687},[7527],{"type":48,"value":782},{"type":43,"tag":674,"props":7529,"children":7530},{"style":687},[7531],{"type":48,"value":5882},{"type":43,"tag":674,"props":7533,"children":7534},{"style":740},[7535],{"type":48,"value":3132},{"type":43,"tag":674,"props":7537,"children":7538},{"style":681},[7539],{"type":48,"value":5892},{"type":43,"tag":674,"props":7541,"children":7542},{"style":740},[7543],{"type":48,"value":7544},"adroll",{"type":43,"tag":674,"props":7546,"children":7547},{"style":681},[7548],{"type":48,"value":5892},{"type":43,"tag":674,"props":7550,"children":7551},{"style":740},[7552],{"type":48,"value":5897},{"type":43,"tag":674,"props":7554,"children":7555},{"style":687},[7556],{"type":48,"value":5922},{"type":43,"tag":674,"props":7558,"children":7559},{"style":3437},[7560],{"type":48,"value":5927},{"type":43,"tag":674,"props":7562,"children":7563},{"style":687},[7564],{"type":48,"value":875},{"type":43,"tag":674,"props":7566,"children":7567},{"class":676,"line":4936},[7568,7572,7577,7581,7585,7589,7594,7598,7603,7607,7612,7616,7620],{"type":43,"tag":674,"props":7569,"children":7570},{"style":687},[7571],{"type":48,"value":5864},{"type":43,"tag":674,"props":7573,"children":7574},{"style":714},[7575],{"type":48,"value":7576},"Factors.ai",{"type":43,"tag":674,"props":7578,"children":7579},{"style":687},[7580],{"type":48,"value":748},{"type":43,"tag":674,"props":7582,"children":7583},{"style":687},[7584],{"type":48,"value":782},{"type":43,"tag":674,"props":7586,"children":7587},{"style":687},[7588],{"type":48,"value":5882},{"type":43,"tag":674,"props":7590,"children":7591},{"style":740},[7592],{"type":48,"value":7593},"app",{"type":43,"tag":674,"props":7595,"children":7596},{"style":681},[7597],{"type":48,"value":5892},{"type":43,"tag":674,"props":7599,"children":7600},{"style":740},[7601],{"type":48,"value":7602},"factors",{"type":43,"tag":674,"props":7604,"children":7605},{"style":681},[7606],{"type":48,"value":5892},{"type":43,"tag":674,"props":7608,"children":7609},{"style":740},[7610],{"type":48,"value":7611},"ai",{"type":43,"tag":674,"props":7613,"children":7614},{"style":687},[7615],{"type":48,"value":5922},{"type":43,"tag":674,"props":7617,"children":7618},{"style":3437},[7619],{"type":48,"value":5927},{"type":43,"tag":674,"props":7621,"children":7622},{"style":687},[7623],{"type":48,"value":875},{"type":43,"tag":674,"props":7625,"children":7626},{"class":676,"line":4944},[7627,7631,7636,7640,7644,7648,7652,7656,7661,7665,7670,7674,7678],{"type":43,"tag":674,"props":7628,"children":7629},{"style":687},[7630],{"type":48,"value":5864},{"type":43,"tag":674,"props":7632,"children":7633},{"style":714},[7634],{"type":48,"value":7635},"Vector",{"type":43,"tag":674,"props":7637,"children":7638},{"style":687},[7639],{"type":48,"value":748},{"type":43,"tag":674,"props":7641,"children":7642},{"style":687},[7643],{"type":48,"value":782},{"type":43,"tag":674,"props":7645,"children":7646},{"style":687},[7647],{"type":48,"value":5882},{"type":43,"tag":674,"props":7649,"children":7650},{"style":740},[7651],{"type":48,"value":6285},{"type":43,"tag":674,"props":7653,"children":7654},{"style":681},[7655],{"type":48,"value":5892},{"type":43,"tag":674,"props":7657,"children":7658},{"style":740},[7659],{"type":48,"value":7660},"vector",{"type":43,"tag":674,"props":7662,"children":7663},{"style":681},[7664],{"type":48,"value":5892},{"type":43,"tag":674,"props":7666,"children":7667},{"style":740},[7668],{"type":48,"value":7669},"co",{"type":43,"tag":674,"props":7671,"children":7672},{"style":687},[7673],{"type":48,"value":5922},{"type":43,"tag":674,"props":7675,"children":7676},{"style":3437},[7677],{"type":48,"value":5927},{"type":43,"tag":674,"props":7679,"children":7680},{"style":687},[7681],{"type":48,"value":875},{"type":43,"tag":674,"props":7683,"children":7684},{"class":676,"line":4952},[7685,7689,7694,7698,7702,7706,7711,7715,7720,7724,7728,7732,7736],{"type":43,"tag":674,"props":7686,"children":7687},{"style":687},[7688],{"type":48,"value":5864},{"type":43,"tag":674,"props":7690,"children":7691},{"style":714},[7692],{"type":48,"value":7693},"Leadfeeder",{"type":43,"tag":674,"props":7695,"children":7696},{"style":687},[7697],{"type":48,"value":748},{"type":43,"tag":674,"props":7699,"children":7700},{"style":687},[7701],{"type":48,"value":782},{"type":43,"tag":674,"props":7703,"children":7704},{"style":687},[7705],{"type":48,"value":5882},{"type":43,"tag":674,"props":7707,"children":7708},{"style":740},[7709],{"type":48,"value":7710},"sc",{"type":43,"tag":674,"props":7712,"children":7713},{"style":681},[7714],{"type":48,"value":5892},{"type":43,"tag":674,"props":7716,"children":7717},{"style":740},[7718],{"type":48,"value":7719},"lfeeder",{"type":43,"tag":674,"props":7721,"children":7722},{"style":681},[7723],{"type":48,"value":5892},{"type":43,"tag":674,"props":7725,"children":7726},{"style":740},[7727],{"type":48,"value":5897},{"type":43,"tag":674,"props":7729,"children":7730},{"style":687},[7731],{"type":48,"value":5922},{"type":43,"tag":674,"props":7733,"children":7734},{"style":3437},[7735],{"type":48,"value":5927},{"type":43,"tag":674,"props":7737,"children":7738},{"style":687},[7739],{"type":48,"value":875},{"type":43,"tag":674,"props":7741,"children":7742},{"class":676,"line":4964},[7743,7747,7752,7756,7760,7764,7768,7772,7777,7781,7785,7789,7793],{"type":43,"tag":674,"props":7744,"children":7745},{"style":687},[7746],{"type":48,"value":5864},{"type":43,"tag":674,"props":7748,"children":7749},{"style":714},[7750],{"type":48,"value":7751},"Pendo",{"type":43,"tag":674,"props":7753,"children":7754},{"style":687},[7755],{"type":48,"value":748},{"type":43,"tag":674,"props":7757,"children":7758},{"style":687},[7759],{"type":48,"value":782},{"type":43,"tag":674,"props":7761,"children":7762},{"style":687},[7763],{"type":48,"value":5882},{"type":43,"tag":674,"props":7765,"children":7766},{"style":740},[7767],{"type":48,"value":6285},{"type":43,"tag":674,"props":7769,"children":7770},{"style":681},[7771],{"type":48,"value":5892},{"type":43,"tag":674,"props":7773,"children":7774},{"style":740},[7775],{"type":48,"value":7776},"pendo",{"type":43,"tag":674,"props":7778,"children":7779},{"style":681},[7780],{"type":48,"value":5892},{"type":43,"tag":674,"props":7782,"children":7783},{"style":740},[7784],{"type":48,"value":6558},{"type":43,"tag":674,"props":7786,"children":7787},{"style":687},[7788],{"type":48,"value":5922},{"type":43,"tag":674,"props":7790,"children":7791},{"style":3437},[7792],{"type":48,"value":5927},{"type":43,"tag":674,"props":7794,"children":7795},{"style":687},[7796],{"type":48,"value":875},{"type":43,"tag":674,"props":7798,"children":7799},{"class":676,"line":5035},[7800,7804,7809,7813,7817,7821,7826,7830,7835,7839,7843,7847,7851],{"type":43,"tag":674,"props":7801,"children":7802},{"style":687},[7803],{"type":48,"value":5864},{"type":43,"tag":674,"props":7805,"children":7806},{"style":714},[7807],{"type":48,"value":7808},"Chameleon",{"type":43,"tag":674,"props":7810,"children":7811},{"style":687},[7812],{"type":48,"value":748},{"type":43,"tag":674,"props":7814,"children":7815},{"style":687},[7816],{"type":48,"value":782},{"type":43,"tag":674,"props":7818,"children":7819},{"style":687},[7820],{"type":48,"value":5882},{"type":43,"tag":674,"props":7822,"children":7823},{"style":740},[7824],{"type":48,"value":7825},"fast",{"type":43,"tag":674,"props":7827,"children":7828},{"style":681},[7829],{"type":48,"value":5892},{"type":43,"tag":674,"props":7831,"children":7832},{"style":740},[7833],{"type":48,"value":7834},"chameleon",{"type":43,"tag":674,"props":7836,"children":7837},{"style":681},[7838],{"type":48,"value":5892},{"type":43,"tag":674,"props":7840,"children":7841},{"style":740},[7842],{"type":48,"value":6558},{"type":43,"tag":674,"props":7844,"children":7845},{"style":687},[7846],{"type":48,"value":5922},{"type":43,"tag":674,"props":7848,"children":7849},{"style":3437},[7850],{"type":48,"value":5927},{"type":43,"tag":674,"props":7852,"children":7853},{"style":687},[7854],{"type":48,"value":875},{"type":43,"tag":674,"props":7856,"children":7857},{"class":676,"line":5053},[7858,7862,7867,7871,7875,7879,7883,7887,7892,7896,7900,7904,7908],{"type":43,"tag":674,"props":7859,"children":7860},{"style":687},[7861],{"type":48,"value":5864},{"type":43,"tag":674,"props":7863,"children":7864},{"style":714},[7865],{"type":48,"value":7866},"Appcues",{"type":43,"tag":674,"props":7868,"children":7869},{"style":687},[7870],{"type":48,"value":748},{"type":43,"tag":674,"props":7872,"children":7873},{"style":687},[7874],{"type":48,"value":782},{"type":43,"tag":674,"props":7876,"children":7877},{"style":687},[7878],{"type":48,"value":5882},{"type":43,"tag":674,"props":7880,"children":7881},{"style":740},[7882],{"type":48,"value":7825},{"type":43,"tag":674,"props":7884,"children":7885},{"style":681},[7886],{"type":48,"value":5892},{"type":43,"tag":674,"props":7888,"children":7889},{"style":740},[7890],{"type":48,"value":7891},"appcues",{"type":43,"tag":674,"props":7893,"children":7894},{"style":681},[7895],{"type":48,"value":5892},{"type":43,"tag":674,"props":7897,"children":7898},{"style":740},[7899],{"type":48,"value":5897},{"type":43,"tag":674,"props":7901,"children":7902},{"style":687},[7903],{"type":48,"value":5922},{"type":43,"tag":674,"props":7905,"children":7906},{"style":3437},[7907],{"type":48,"value":5927},{"type":43,"tag":674,"props":7909,"children":7910},{"style":687},[7911],{"type":48,"value":875},{"type":43,"tag":674,"props":7913,"children":7914},{"class":676,"line":5061},[7915,7919,7924,7928,7932,7936,7940,7944,7949,7953,7957,7961,7965],{"type":43,"tag":674,"props":7916,"children":7917},{"style":687},[7918],{"type":48,"value":5864},{"type":43,"tag":674,"props":7920,"children":7921},{"style":714},[7922],{"type":48,"value":7923},"UserPilot",{"type":43,"tag":674,"props":7925,"children":7926},{"style":687},[7927],{"type":48,"value":748},{"type":43,"tag":674,"props":7929,"children":7930},{"style":687},[7931],{"type":48,"value":782},{"type":43,"tag":674,"props":7933,"children":7934},{"style":687},[7935],{"type":48,"value":5882},{"type":43,"tag":674,"props":7937,"children":7938},{"style":740},[7939],{"type":48,"value":5917},{"type":43,"tag":674,"props":7941,"children":7942},{"style":681},[7943],{"type":48,"value":5892},{"type":43,"tag":674,"props":7945,"children":7946},{"style":740},[7947],{"type":48,"value":7948},"userpilot",{"type":43,"tag":674,"props":7950,"children":7951},{"style":681},[7952],{"type":48,"value":5892},{"type":43,"tag":674,"props":7954,"children":7955},{"style":740},[7956],{"type":48,"value":6558},{"type":43,"tag":674,"props":7958,"children":7959},{"style":687},[7960],{"type":48,"value":5922},{"type":43,"tag":674,"props":7962,"children":7963},{"style":3437},[7964],{"type":48,"value":5927},{"type":43,"tag":674,"props":7966,"children":7967},{"style":687},[7968],{"type":48,"value":875},{"type":43,"tag":674,"props":7970,"children":7972},{"class":676,"line":7971},43,[7973,7977,7982,7986,7990,7994,7998,8002,8007,8011,8015,8019,8023],{"type":43,"tag":674,"props":7974,"children":7975},{"style":687},[7976],{"type":48,"value":5864},{"type":43,"tag":674,"props":7978,"children":7979},{"style":714},[7980],{"type":48,"value":7981},"Mouseflow",{"type":43,"tag":674,"props":7983,"children":7984},{"style":687},[7985],{"type":48,"value":748},{"type":43,"tag":674,"props":7987,"children":7988},{"style":687},[7989],{"type":48,"value":782},{"type":43,"tag":674,"props":7991,"children":7992},{"style":687},[7993],{"type":48,"value":5882},{"type":43,"tag":674,"props":7995,"children":7996},{"style":740},[7997],{"type":48,"value":6285},{"type":43,"tag":674,"props":7999,"children":8000},{"style":681},[8001],{"type":48,"value":5892},{"type":43,"tag":674,"props":8003,"children":8004},{"style":740},[8005],{"type":48,"value":8006},"mouseflow",{"type":43,"tag":674,"props":8008,"children":8009},{"style":681},[8010],{"type":48,"value":5892},{"type":43,"tag":674,"props":8012,"children":8013},{"style":740},[8014],{"type":48,"value":5897},{"type":43,"tag":674,"props":8016,"children":8017},{"style":687},[8018],{"type":48,"value":5922},{"type":43,"tag":674,"props":8020,"children":8021},{"style":3437},[8022],{"type":48,"value":5927},{"type":43,"tag":674,"props":8024,"children":8025},{"style":687},[8026],{"type":48,"value":875},{"type":43,"tag":674,"props":8028,"children":8030},{"class":676,"line":8029},44,[8031,8035,8040,8044,8048,8052,8057,8061,8066,8070,8074,8078,8082],{"type":43,"tag":674,"props":8032,"children":8033},{"style":687},[8034],{"type":48,"value":5864},{"type":43,"tag":674,"props":8036,"children":8037},{"style":714},[8038],{"type":48,"value":8039},"Lucky Orange",{"type":43,"tag":674,"props":8041,"children":8042},{"style":687},[8043],{"type":48,"value":748},{"type":43,"tag":674,"props":8045,"children":8046},{"style":687},[8047],{"type":48,"value":782},{"type":43,"tag":674,"props":8049,"children":8050},{"style":687},[8051],{"type":48,"value":5882},{"type":43,"tag":674,"props":8053,"children":8054},{"style":740},[8055],{"type":48,"value":8056},"tools",{"type":43,"tag":674,"props":8058,"children":8059},{"style":681},[8060],{"type":48,"value":5892},{"type":43,"tag":674,"props":8062,"children":8063},{"style":740},[8064],{"type":48,"value":8065},"luckyorange",{"type":43,"tag":674,"props":8067,"children":8068},{"style":681},[8069],{"type":48,"value":5892},{"type":43,"tag":674,"props":8071,"children":8072},{"style":740},[8073],{"type":48,"value":5897},{"type":43,"tag":674,"props":8075,"children":8076},{"style":687},[8077],{"type":48,"value":5922},{"type":43,"tag":674,"props":8079,"children":8080},{"style":3437},[8081],{"type":48,"value":5927},{"type":43,"tag":674,"props":8083,"children":8084},{"style":687},[8085],{"type":48,"value":875},{"type":43,"tag":674,"props":8087,"children":8089},{"class":676,"line":8088},45,[8090,8094,8099,8103,8107,8111,8115,8119,8124,8128,8132,8136,8140],{"type":43,"tag":674,"props":8091,"children":8092},{"style":687},[8093],{"type":48,"value":5864},{"type":43,"tag":674,"props":8095,"children":8096},{"style":714},[8097],{"type":48,"value":8098},"Crazy Egg",{"type":43,"tag":674,"props":8100,"children":8101},{"style":687},[8102],{"type":48,"value":748},{"type":43,"tag":674,"props":8104,"children":8105},{"style":687},[8106],{"type":48,"value":782},{"type":43,"tag":674,"props":8108,"children":8109},{"style":687},[8110],{"type":48,"value":5882},{"type":43,"tag":674,"props":8112,"children":8113},{"style":740},[8114],{"type":48,"value":3082},{"type":43,"tag":674,"props":8116,"children":8117},{"style":681},[8118],{"type":48,"value":5892},{"type":43,"tag":674,"props":8120,"children":8121},{"style":740},[8122],{"type":48,"value":8123},"crazyegg",{"type":43,"tag":674,"props":8125,"children":8126},{"style":681},[8127],{"type":48,"value":5892},{"type":43,"tag":674,"props":8129,"children":8130},{"style":740},[8131],{"type":48,"value":5897},{"type":43,"tag":674,"props":8133,"children":8134},{"style":687},[8135],{"type":48,"value":5922},{"type":43,"tag":674,"props":8137,"children":8138},{"style":3437},[8139],{"type":48,"value":5927},{"type":43,"tag":674,"props":8141,"children":8142},{"style":687},[8143],{"type":48,"value":875},{"type":43,"tag":674,"props":8145,"children":8147},{"class":676,"line":8146},46,[8148,8152,8157,8161,8165,8169,8174,8178,8182,8186,8190,8194,8198],{"type":43,"tag":674,"props":8149,"children":8150},{"style":687},[8151],{"type":48,"value":5864},{"type":43,"tag":674,"props":8153,"children":8154},{"style":714},[8155],{"type":48,"value":8156},"Plausible",{"type":43,"tag":674,"props":8158,"children":8159},{"style":687},[8160],{"type":48,"value":748},{"type":43,"tag":674,"props":8162,"children":8163},{"style":687},[8164],{"type":48,"value":782},{"type":43,"tag":674,"props":8166,"children":8167},{"style":687},[8168],{"type":48,"value":5882},{"type":43,"tag":674,"props":8170,"children":8171},{"style":740},[8172],{"type":48,"value":8173},"plausible",{"type":43,"tag":674,"props":8175,"children":8176},{"style":681},[8177],{"type":48,"value":5892},{"type":43,"tag":674,"props":8179,"children":8180},{"style":740},[8181],{"type":48,"value":6558},{"type":43,"tag":674,"props":8183,"children":8184},{"style":681},[8185],{"type":48,"value":5912},{"type":43,"tag":674,"props":8187,"children":8188},{"style":740},[8189],{"type":48,"value":5917},{"type":43,"tag":674,"props":8191,"children":8192},{"style":687},[8193],{"type":48,"value":5922},{"type":43,"tag":674,"props":8195,"children":8196},{"style":3437},[8197],{"type":48,"value":5927},{"type":43,"tag":674,"props":8199,"children":8200},{"style":687},[8201],{"type":48,"value":875},{"type":43,"tag":674,"props":8203,"children":8205},{"class":676,"line":8204},47,[8206,8210,8215,8219,8223,8227,8231,8235,8240,8244,8248,8252,8256],{"type":43,"tag":674,"props":8207,"children":8208},{"style":687},[8209],{"type":48,"value":5864},{"type":43,"tag":674,"props":8211,"children":8212},{"style":714},[8213],{"type":48,"value":8214},"Fathom",{"type":43,"tag":674,"props":8216,"children":8217},{"style":687},[8218],{"type":48,"value":748},{"type":43,"tag":674,"props":8220,"children":8221},{"style":687},[8222],{"type":48,"value":782},{"type":43,"tag":674,"props":8224,"children":8225},{"style":687},[8226],{"type":48,"value":5882},{"type":43,"tag":674,"props":8228,"children":8229},{"style":740},[8230],{"type":48,"value":6285},{"type":43,"tag":674,"props":8232,"children":8233},{"style":681},[8234],{"type":48,"value":5892},{"type":43,"tag":674,"props":8236,"children":8237},{"style":740},[8238],{"type":48,"value":8239},"usefathom",{"type":43,"tag":674,"props":8241,"children":8242},{"style":681},[8243],{"type":48,"value":5892},{"type":43,"tag":674,"props":8245,"children":8246},{"style":740},[8247],{"type":48,"value":5897},{"type":43,"tag":674,"props":8249,"children":8250},{"style":687},[8251],{"type":48,"value":5922},{"type":43,"tag":674,"props":8253,"children":8254},{"style":3437},[8255],{"type":48,"value":5927},{"type":43,"tag":674,"props":8257,"children":8258},{"style":687},[8259],{"type":48,"value":875},{"type":43,"tag":674,"props":8261,"children":8263},{"class":676,"line":8262},48,[8264,8268,8273,8277,8281,8285,8290,8294,8299,8303,8307,8311,8315],{"type":43,"tag":674,"props":8265,"children":8266},{"style":687},[8267],{"type":48,"value":5864},{"type":43,"tag":674,"props":8269,"children":8270},{"style":714},[8271],{"type":48,"value":8272},"Simple Analytics",{"type":43,"tag":674,"props":8274,"children":8275},{"style":687},[8276],{"type":48,"value":748},{"type":43,"tag":674,"props":8278,"children":8279},{"style":687},[8280],{"type":48,"value":782},{"type":43,"tag":674,"props":8282,"children":8283},{"style":687},[8284],{"type":48,"value":5882},{"type":43,"tag":674,"props":8286,"children":8287},{"style":740},[8288],{"type":48,"value":8289},"scripts",{"type":43,"tag":674,"props":8291,"children":8292},{"style":681},[8293],{"type":48,"value":5892},{"type":43,"tag":674,"props":8295,"children":8296},{"style":740},[8297],{"type":48,"value":8298},"simpleanalyticscdn",{"type":43,"tag":674,"props":8300,"children":8301},{"style":681},[8302],{"type":48,"value":5892},{"type":43,"tag":674,"props":8304,"children":8305},{"style":740},[8306],{"type":48,"value":5897},{"type":43,"tag":674,"props":8308,"children":8309},{"style":687},[8310],{"type":48,"value":5922},{"type":43,"tag":674,"props":8312,"children":8313},{"style":3437},[8314],{"type":48,"value":5927},{"type":43,"tag":674,"props":8316,"children":8317},{"style":687},[8318],{"type":48,"value":875},{"type":43,"tag":674,"props":8320,"children":8322},{"class":676,"line":8321},49,[8323,8327,8332,8336,8340,8344,8349,8353,8357,8361,8366,8370,8374,8378,8382],{"type":43,"tag":674,"props":8324,"children":8325},{"style":687},[8326],{"type":48,"value":5864},{"type":43,"tag":674,"props":8328,"children":8329},{"style":714},[8330],{"type":48,"value":8331},"Matomo",{"type":43,"tag":674,"props":8333,"children":8334},{"style":687},[8335],{"type":48,"value":748},{"type":43,"tag":674,"props":8337,"children":8338},{"style":687},[8339],{"type":48,"value":782},{"type":43,"tag":674,"props":8341,"children":8342},{"style":687},[8343],{"type":48,"value":5882},{"type":43,"tag":674,"props":8345,"children":8346},{"style":740},[8347],{"type":48,"value":8348},"matomo",{"type":43,"tag":674,"props":8350,"children":8351},{"style":681},[8352],{"type":48,"value":5892},{"type":43,"tag":674,"props":8354,"children":8355},{"style":740},[8356],{"type":48,"value":5917},{"type":43,"tag":674,"props":8358,"children":8359},{"style":687},[8360],{"type":48,"value":5902},{"type":43,"tag":674,"props":8362,"children":8363},{"style":740},[8364],{"type":48,"value":8365},"piwik",{"type":43,"tag":674,"props":8367,"children":8368},{"style":681},[8369],{"type":48,"value":5892},{"type":43,"tag":674,"props":8371,"children":8372},{"style":740},[8373],{"type":48,"value":5917},{"type":43,"tag":674,"props":8375,"children":8376},{"style":687},[8377],{"type":48,"value":5922},{"type":43,"tag":674,"props":8379,"children":8380},{"style":3437},[8381],{"type":48,"value":5927},{"type":43,"tag":674,"props":8383,"children":8384},{"style":687},[8385],{"type":48,"value":875},{"type":43,"tag":674,"props":8387,"children":8389},{"class":676,"line":8388},50,[8390,8394,8399,8403,8407,8411,8415,8419,8424,8428,8432,8436,8440],{"type":43,"tag":674,"props":8391,"children":8392},{"style":687},[8393],{"type":48,"value":5864},{"type":43,"tag":674,"props":8395,"children":8396},{"style":714},[8397],{"type":48,"value":8398},"Klaviyo",{"type":43,"tag":674,"props":8400,"children":8401},{"style":687},[8402],{"type":48,"value":748},{"type":43,"tag":674,"props":8404,"children":8405},{"style":687},[8406],{"type":48,"value":782},{"type":43,"tag":674,"props":8408,"children":8409},{"style":687},[8410],{"type":48,"value":5882},{"type":43,"tag":674,"props":8412,"children":8413},{"style":740},[8414],{"type":48,"value":6227},{"type":43,"tag":674,"props":8416,"children":8417},{"style":681},[8418],{"type":48,"value":5892},{"type":43,"tag":674,"props":8420,"children":8421},{"style":740},[8422],{"type":48,"value":8423},"klaviyo",{"type":43,"tag":674,"props":8425,"children":8426},{"style":681},[8427],{"type":48,"value":5892},{"type":43,"tag":674,"props":8429,"children":8430},{"style":740},[8431],{"type":48,"value":5897},{"type":43,"tag":674,"props":8433,"children":8434},{"style":687},[8435],{"type":48,"value":5922},{"type":43,"tag":674,"props":8437,"children":8438},{"style":3437},[8439],{"type":48,"value":5927},{"type":43,"tag":674,"props":8441,"children":8442},{"style":687},[8443],{"type":48,"value":875},{"type":43,"tag":674,"props":8445,"children":8447},{"class":676,"line":8446},51,[8448,8452,8457,8461,8465,8469,8474,8478,8483,8487,8491,8495,8499],{"type":43,"tag":674,"props":8449,"children":8450},{"style":687},[8451],{"type":48,"value":5864},{"type":43,"tag":674,"props":8453,"children":8454},{"style":714},[8455],{"type":48,"value":8456},"Customer.io",{"type":43,"tag":674,"props":8458,"children":8459},{"style":687},[8460],{"type":48,"value":748},{"type":43,"tag":674,"props":8462,"children":8463},{"style":687},[8464],{"type":48,"value":782},{"type":43,"tag":674,"props":8466,"children":8467},{"style":687},[8468],{"type":48,"value":5882},{"type":43,"tag":674,"props":8470,"children":8471},{"style":740},[8472],{"type":48,"value":8473},"track",{"type":43,"tag":674,"props":8475,"children":8476},{"style":681},[8477],{"type":48,"value":5892},{"type":43,"tag":674,"props":8479,"children":8480},{"style":740},[8481],{"type":48,"value":8482},"customer",{"type":43,"tag":674,"props":8484,"children":8485},{"style":681},[8486],{"type":48,"value":5892},{"type":43,"tag":674,"props":8488,"children":8489},{"style":740},[8490],{"type":48,"value":6558},{"type":43,"tag":674,"props":8492,"children":8493},{"style":687},[8494],{"type":48,"value":5922},{"type":43,"tag":674,"props":8496,"children":8497},{"style":3437},[8498],{"type":48,"value":5927},{"type":43,"tag":674,"props":8500,"children":8501},{"style":687},[8502],{"type":48,"value":875},{"type":43,"tag":674,"props":8504,"children":8506},{"class":676,"line":8505},52,[8507,8511,8516,8520,8524,8528,8532,8536,8541,8546,8550,8555,8559,8563,8567,8571],{"type":43,"tag":674,"props":8508,"children":8509},{"style":687},[8510],{"type":48,"value":5864},{"type":43,"tag":674,"props":8512,"children":8513},{"style":714},[8514],{"type":48,"value":8515},"Braze",{"type":43,"tag":674,"props":8517,"children":8518},{"style":687},[8519],{"type":48,"value":748},{"type":43,"tag":674,"props":8521,"children":8522},{"style":687},[8523],{"type":48,"value":782},{"type":43,"tag":674,"props":8525,"children":8526},{"style":687},[8527],{"type":48,"value":5882},{"type":43,"tag":674,"props":8529,"children":8530},{"style":740},[8531],{"type":48,"value":7305},{"type":43,"tag":674,"props":8533,"children":8534},{"style":681},[8535],{"type":48,"value":5892},{"type":43,"tag":674,"props":8537,"children":8538},{"style":740},[8539],{"type":48,"value":8540},"iad-\\d",{"type":43,"tag":674,"props":8542,"children":8543},{"style":687},[8544],{"type":48,"value":8545},"+",{"type":43,"tag":674,"props":8547,"children":8548},{"style":681},[8549],{"type":48,"value":5892},{"type":43,"tag":674,"props":8551,"children":8552},{"style":740},[8553],{"type":48,"value":8554},"braze",{"type":43,"tag":674,"props":8556,"children":8557},{"style":681},[8558],{"type":48,"value":5892},{"type":43,"tag":674,"props":8560,"children":8561},{"style":740},[8562],{"type":48,"value":5897},{"type":43,"tag":674,"props":8564,"children":8565},{"style":687},[8566],{"type":48,"value":5922},{"type":43,"tag":674,"props":8568,"children":8569},{"style":3437},[8570],{"type":48,"value":5927},{"type":43,"tag":674,"props":8572,"children":8573},{"style":687},[8574],{"type":48,"value":875},{"type":43,"tag":674,"props":8576,"children":8578},{"class":676,"line":8577},53,[8579,8583,8588,8592,8596,8600,8604,8608,8613,8617,8621,8625,8629],{"type":43,"tag":674,"props":8580,"children":8581},{"style":687},[8582],{"type":48,"value":5864},{"type":43,"tag":674,"props":8584,"children":8585},{"style":714},[8586],{"type":48,"value":8587},"OneSignal",{"type":43,"tag":674,"props":8589,"children":8590},{"style":687},[8591],{"type":48,"value":748},{"type":43,"tag":674,"props":8593,"children":8594},{"style":687},[8595],{"type":48,"value":782},{"type":43,"tag":674,"props":8597,"children":8598},{"style":687},[8599],{"type":48,"value":5882},{"type":43,"tag":674,"props":8601,"children":8602},{"style":740},[8603],{"type":48,"value":6285},{"type":43,"tag":674,"props":8605,"children":8606},{"style":681},[8607],{"type":48,"value":5892},{"type":43,"tag":674,"props":8609,"children":8610},{"style":740},[8611],{"type":48,"value":8612},"onesignal",{"type":43,"tag":674,"props":8614,"children":8615},{"style":681},[8616],{"type":48,"value":5892},{"type":43,"tag":674,"props":8618,"children":8619},{"style":740},[8620],{"type":48,"value":5897},{"type":43,"tag":674,"props":8622,"children":8623},{"style":687},[8624],{"type":48,"value":5922},{"type":43,"tag":674,"props":8626,"children":8627},{"style":3437},[8628],{"type":48,"value":5927},{"type":43,"tag":674,"props":8630,"children":8631},{"style":687},[8632],{"type":48,"value":875},{"type":43,"tag":674,"props":8634,"children":8636},{"class":676,"line":8635},54,[8637,8641,8646,8650,8654,8658,8663,8667,8671,8675,8679],{"type":43,"tag":674,"props":8638,"children":8639},{"style":687},[8640],{"type":48,"value":5864},{"type":43,"tag":674,"props":8642,"children":8643},{"style":714},[8644],{"type":48,"value":8645},"Insider",{"type":43,"tag":674,"props":8647,"children":8648},{"style":687},[8649],{"type":48,"value":748},{"type":43,"tag":674,"props":8651,"children":8652},{"style":687},[8653],{"type":48,"value":782},{"type":43,"tag":674,"props":8655,"children":8656},{"style":687},[8657],{"type":48,"value":5882},{"type":43,"tag":674,"props":8659,"children":8660},{"style":740},[8661],{"type":48,"value":8662},"insr",{"type":43,"tag":674,"props":8664,"children":8665},{"style":681},[8666],{"type":48,"value":5892},{"type":43,"tag":674,"props":8668,"children":8669},{"style":740},[8670],{"type":48,"value":6558},{"type":43,"tag":674,"props":8672,"children":8673},{"style":687},[8674],{"type":48,"value":5922},{"type":43,"tag":674,"props":8676,"children":8677},{"style":3437},[8678],{"type":48,"value":5927},{"type":43,"tag":674,"props":8680,"children":8681},{"style":687},[8682],{"type":48,"value":875},{"type":43,"tag":674,"props":8684,"children":8686},{"class":676,"line":8685},55,[8687,8691,8696,8700,8704,8708,8712,8716,8721,8725,8729,8733,8737],{"type":43,"tag":674,"props":8688,"children":8689},{"style":687},[8690],{"type":48,"value":5864},{"type":43,"tag":674,"props":8692,"children":8693},{"style":714},[8694],{"type":48,"value":8695},"Mutiny",{"type":43,"tag":674,"props":8697,"children":8698},{"style":687},[8699],{"type":48,"value":748},{"type":43,"tag":674,"props":8701,"children":8702},{"style":687},[8703],{"type":48,"value":782},{"type":43,"tag":674,"props":8705,"children":8706},{"style":687},[8707],{"type":48,"value":5882},{"type":43,"tag":674,"props":8709,"children":8710},{"style":740},[8711],{"type":48,"value":6285},{"type":43,"tag":674,"props":8713,"children":8714},{"style":681},[8715],{"type":48,"value":5892},{"type":43,"tag":674,"props":8717,"children":8718},{"style":740},[8719],{"type":48,"value":8720},"mutinycdn",{"type":43,"tag":674,"props":8722,"children":8723},{"style":681},[8724],{"type":48,"value":5892},{"type":43,"tag":674,"props":8726,"children":8727},{"style":740},[8728],{"type":48,"value":5897},{"type":43,"tag":674,"props":8730,"children":8731},{"style":687},[8732],{"type":48,"value":5922},{"type":43,"tag":674,"props":8734,"children":8735},{"style":3437},[8736],{"type":48,"value":5927},{"type":43,"tag":674,"props":8738,"children":8739},{"style":687},[8740],{"type":48,"value":875},{"type":43,"tag":674,"props":8742,"children":8743},{"class":676,"line":26},[8744,8748,8753,8757,8761,8765,8769,8773,8778,8782,8786,8790,8794],{"type":43,"tag":674,"props":8745,"children":8746},{"style":687},[8747],{"type":48,"value":5864},{"type":43,"tag":674,"props":8749,"children":8750},{"style":714},[8751],{"type":48,"value":8752},"Qualified",{"type":43,"tag":674,"props":8754,"children":8755},{"style":687},[8756],{"type":48,"value":748},{"type":43,"tag":674,"props":8758,"children":8759},{"style":687},[8760],{"type":48,"value":782},{"type":43,"tag":674,"props":8762,"children":8763},{"style":687},[8764],{"type":48,"value":5882},{"type":43,"tag":674,"props":8766,"children":8767},{"style":740},[8768],{"type":48,"value":5917},{"type":43,"tag":674,"props":8770,"children":8771},{"style":681},[8772],{"type":48,"value":5892},{"type":43,"tag":674,"props":8774,"children":8775},{"style":740},[8776],{"type":48,"value":8777},"qualified",{"type":43,"tag":674,"props":8779,"children":8780},{"style":681},[8781],{"type":48,"value":5892},{"type":43,"tag":674,"props":8783,"children":8784},{"style":740},[8785],{"type":48,"value":5897},{"type":43,"tag":674,"props":8787,"children":8788},{"style":687},[8789],{"type":48,"value":5922},{"type":43,"tag":674,"props":8791,"children":8792},{"style":3437},[8793],{"type":48,"value":5927},{"type":43,"tag":674,"props":8795,"children":8796},{"style":687},[8797],{"type":48,"value":875},{"type":43,"tag":674,"props":8799,"children":8801},{"class":676,"line":8800},57,[8802,8806,8811,8815,8819,8823,8827,8831,8836,8840,8844,8848,8852],{"type":43,"tag":674,"props":8803,"children":8804},{"style":687},[8805],{"type":48,"value":5864},{"type":43,"tag":674,"props":8807,"children":8808},{"style":714},[8809],{"type":48,"value":8810},"Chilipiper",{"type":43,"tag":674,"props":8812,"children":8813},{"style":687},[8814],{"type":48,"value":748},{"type":43,"tag":674,"props":8816,"children":8817},{"style":687},[8818],{"type":48,"value":782},{"type":43,"tag":674,"props":8820,"children":8821},{"style":687},[8822],{"type":48,"value":5882},{"type":43,"tag":674,"props":8824,"children":8825},{"style":740},[8826],{"type":48,"value":5917},{"type":43,"tag":674,"props":8828,"children":8829},{"style":681},[8830],{"type":48,"value":5892},{"type":43,"tag":674,"props":8832,"children":8833},{"style":740},[8834],{"type":48,"value":8835},"chilipiper",{"type":43,"tag":674,"props":8837,"children":8838},{"style":681},[8839],{"type":48,"value":5892},{"type":43,"tag":674,"props":8841,"children":8842},{"style":740},[8843],{"type":48,"value":5897},{"type":43,"tag":674,"props":8845,"children":8846},{"style":687},[8847],{"type":48,"value":5922},{"type":43,"tag":674,"props":8849,"children":8850},{"style":3437},[8851],{"type":48,"value":5927},{"type":43,"tag":674,"props":8853,"children":8854},{"style":687},[8855],{"type":48,"value":875},{"type":43,"tag":674,"props":8857,"children":8859},{"class":676,"line":8858},58,[8860,8864,8869,8873,8877,8881,8886,8890,8895,8899,8904,8908,8912],{"type":43,"tag":674,"props":8861,"children":8862},{"style":687},[8863],{"type":48,"value":5864},{"type":43,"tag":674,"props":8865,"children":8866},{"style":714},[8867],{"type":48,"value":8868},"Typekit",{"type":43,"tag":674,"props":8870,"children":8871},{"style":687},[8872],{"type":48,"value":748},{"type":43,"tag":674,"props":8874,"children":8875},{"style":687},[8876],{"type":48,"value":782},{"type":43,"tag":674,"props":8878,"children":8879},{"style":687},[8880],{"type":48,"value":5882},{"type":43,"tag":674,"props":8882,"children":8883},{"style":740},[8884],{"type":48,"value":8885},"use",{"type":43,"tag":674,"props":8887,"children":8888},{"style":681},[8889],{"type":48,"value":5892},{"type":43,"tag":674,"props":8891,"children":8892},{"style":740},[8893],{"type":48,"value":8894},"typekit",{"type":43,"tag":674,"props":8896,"children":8897},{"style":681},[8898],{"type":48,"value":5892},{"type":43,"tag":674,"props":8900,"children":8901},{"style":740},[8902],{"type":48,"value":8903},"net",{"type":43,"tag":674,"props":8905,"children":8906},{"style":687},[8907],{"type":48,"value":5922},{"type":43,"tag":674,"props":8909,"children":8910},{"style":3437},[8911],{"type":48,"value":5927},{"type":43,"tag":674,"props":8913,"children":8914},{"style":687},[8915],{"type":48,"value":875},{"type":43,"tag":674,"props":8917,"children":8919},{"class":676,"line":8918},59,[8920,8924,8929,8933,8937,8941,8946,8950,8955,8959,8963,8967,8971],{"type":43,"tag":674,"props":8921,"children":8922},{"style":687},[8923],{"type":48,"value":5864},{"type":43,"tag":674,"props":8925,"children":8926},{"style":714},[8927],{"type":48,"value":8928},"Google Fonts",{"type":43,"tag":674,"props":8930,"children":8931},{"style":687},[8932],{"type":48,"value":748},{"type":43,"tag":674,"props":8934,"children":8935},{"style":687},[8936],{"type":48,"value":782},{"type":43,"tag":674,"props":8938,"children":8939},{"style":687},[8940],{"type":48,"value":5882},{"type":43,"tag":674,"props":8942,"children":8943},{"style":740},[8944],{"type":48,"value":8945},"fonts",{"type":43,"tag":674,"props":8947,"children":8948},{"style":681},[8949],{"type":48,"value":5892},{"type":43,"tag":674,"props":8951,"children":8952},{"style":740},[8953],{"type":48,"value":8954},"googleapis",{"type":43,"tag":674,"props":8956,"children":8957},{"style":681},[8958],{"type":48,"value":5892},{"type":43,"tag":674,"props":8960,"children":8961},{"style":740},[8962],{"type":48,"value":5897},{"type":43,"tag":674,"props":8964,"children":8965},{"style":687},[8966],{"type":48,"value":5922},{"type":43,"tag":674,"props":8968,"children":8969},{"style":3437},[8970],{"type":48,"value":5927},{"type":43,"tag":674,"props":8972,"children":8973},{"style":687},[8974],{"type":48,"value":875},{"type":43,"tag":674,"props":8976,"children":8978},{"class":676,"line":8977},60,[8979,8983,8988,8992,8996,9000,9005,9009,9014,9018,9022,9026,9030],{"type":43,"tag":674,"props":8980,"children":8981},{"style":687},[8982],{"type":48,"value":5864},{"type":43,"tag":674,"props":8984,"children":8985},{"style":714},[8986],{"type":48,"value":8987},"Cookiebot",{"type":43,"tag":674,"props":8989,"children":8990},{"style":687},[8991],{"type":48,"value":748},{"type":43,"tag":674,"props":8993,"children":8994},{"style":687},[8995],{"type":48,"value":782},{"type":43,"tag":674,"props":8997,"children":8998},{"style":687},[8999],{"type":48,"value":5882},{"type":43,"tag":674,"props":9001,"children":9002},{"style":740},[9003],{"type":48,"value":9004},"consent",{"type":43,"tag":674,"props":9006,"children":9007},{"style":681},[9008],{"type":48,"value":5892},{"type":43,"tag":674,"props":9010,"children":9011},{"style":740},[9012],{"type":48,"value":9013},"cookiebot",{"type":43,"tag":674,"props":9015,"children":9016},{"style":681},[9017],{"type":48,"value":5892},{"type":43,"tag":674,"props":9019,"children":9020},{"style":740},[9021],{"type":48,"value":5897},{"type":43,"tag":674,"props":9023,"children":9024},{"style":687},[9025],{"type":48,"value":5922},{"type":43,"tag":674,"props":9027,"children":9028},{"style":3437},[9029],{"type":48,"value":5927},{"type":43,"tag":674,"props":9031,"children":9032},{"style":687},[9033],{"type":48,"value":875},{"type":43,"tag":674,"props":9035,"children":9037},{"class":676,"line":9036},61,[9038,9042,9047,9051,9055,9059,9063,9067,9072,9076,9081,9085,9089],{"type":43,"tag":674,"props":9039,"children":9040},{"style":687},[9041],{"type":48,"value":5864},{"type":43,"tag":674,"props":9043,"children":9044},{"style":714},[9045],{"type":48,"value":9046},"OneTrust",{"type":43,"tag":674,"props":9048,"children":9049},{"style":687},[9050],{"type":48,"value":748},{"type":43,"tag":674,"props":9052,"children":9053},{"style":687},[9054],{"type":48,"value":782},{"type":43,"tag":674,"props":9056,"children":9057},{"style":687},[9058],{"type":48,"value":5882},{"type":43,"tag":674,"props":9060,"children":9061},{"style":740},[9062],{"type":48,"value":6285},{"type":43,"tag":674,"props":9064,"children":9065},{"style":681},[9066],{"type":48,"value":5892},{"type":43,"tag":674,"props":9068,"children":9069},{"style":740},[9070],{"type":48,"value":9071},"cookielaw",{"type":43,"tag":674,"props":9073,"children":9074},{"style":681},[9075],{"type":48,"value":5892},{"type":43,"tag":674,"props":9077,"children":9078},{"style":740},[9079],{"type":48,"value":9080},"org",{"type":43,"tag":674,"props":9082,"children":9083},{"style":687},[9084],{"type":48,"value":5922},{"type":43,"tag":674,"props":9086,"children":9087},{"style":3437},[9088],{"type":48,"value":5927},{"type":43,"tag":674,"props":9090,"children":9091},{"style":687},[9092],{"type":48,"value":875},{"type":43,"tag":674,"props":9094,"children":9096},{"class":676,"line":9095},62,[9097,9101,9106,9110,9114,9118,9122,9126,9131,9135,9139,9143,9147],{"type":43,"tag":674,"props":9098,"children":9099},{"style":687},[9100],{"type":48,"value":5864},{"type":43,"tag":674,"props":9102,"children":9103},{"style":714},[9104],{"type":48,"value":9105},"TrustArc",{"type":43,"tag":674,"props":9107,"children":9108},{"style":687},[9109],{"type":48,"value":748},{"type":43,"tag":674,"props":9111,"children":9112},{"style":687},[9113],{"type":48,"value":782},{"type":43,"tag":674,"props":9115,"children":9116},{"style":687},[9117],{"type":48,"value":5882},{"type":43,"tag":674,"props":9119,"children":9120},{"style":740},[9121],{"type":48,"value":9004},{"type":43,"tag":674,"props":9123,"children":9124},{"style":681},[9125],{"type":48,"value":5892},{"type":43,"tag":674,"props":9127,"children":9128},{"style":740},[9129],{"type":48,"value":9130},"trustarc",{"type":43,"tag":674,"props":9132,"children":9133},{"style":681},[9134],{"type":48,"value":5892},{"type":43,"tag":674,"props":9136,"children":9137},{"style":740},[9138],{"type":48,"value":5897},{"type":43,"tag":674,"props":9140,"children":9141},{"style":687},[9142],{"type":48,"value":5922},{"type":43,"tag":674,"props":9144,"children":9145},{"style":3437},[9146],{"type":48,"value":5927},{"type":43,"tag":674,"props":9148,"children":9149},{"style":687},[9150],{"type":48,"value":875},{"type":43,"tag":674,"props":9152,"children":9154},{"class":676,"line":9153},63,[9155,9159,9164,9168,9172,9176,9181,9185,9190,9194,9198,9202,9206],{"type":43,"tag":674,"props":9156,"children":9157},{"style":687},[9158],{"type":48,"value":5864},{"type":43,"tag":674,"props":9160,"children":9161},{"style":714},[9162],{"type":48,"value":9163},"Osano",{"type":43,"tag":674,"props":9165,"children":9166},{"style":687},[9167],{"type":48,"value":748},{"type":43,"tag":674,"props":9169,"children":9170},{"style":687},[9171],{"type":48,"value":782},{"type":43,"tag":674,"props":9173,"children":9174},{"style":687},[9175],{"type":48,"value":5882},{"type":43,"tag":674,"props":9177,"children":9178},{"style":740},[9179],{"type":48,"value":9180},"cmp",{"type":43,"tag":674,"props":9182,"children":9183},{"style":681},[9184],{"type":48,"value":5892},{"type":43,"tag":674,"props":9186,"children":9187},{"style":740},[9188],{"type":48,"value":9189},"osano",{"type":43,"tag":674,"props":9191,"children":9192},{"style":681},[9193],{"type":48,"value":5892},{"type":43,"tag":674,"props":9195,"children":9196},{"style":740},[9197],{"type":48,"value":5897},{"type":43,"tag":674,"props":9199,"children":9200},{"style":687},[9201],{"type":48,"value":5922},{"type":43,"tag":674,"props":9203,"children":9204},{"style":3437},[9205],{"type":48,"value":5927},{"type":43,"tag":674,"props":9207,"children":9208},{"style":687},[9209],{"type":48,"value":875},{"type":43,"tag":674,"props":9211,"children":9213},{"class":676,"line":9212},64,[9214,9218,9223,9227,9231,9235,9239,9243,9248,9252,9257,9261,9265],{"type":43,"tag":674,"props":9215,"children":9216},{"style":687},[9217],{"type":48,"value":5864},{"type":43,"tag":674,"props":9219,"children":9220},{"style":714},[9221],{"type":48,"value":9222},"Usercentrics",{"type":43,"tag":674,"props":9224,"children":9225},{"style":687},[9226],{"type":48,"value":748},{"type":43,"tag":674,"props":9228,"children":9229},{"style":687},[9230],{"type":48,"value":782},{"type":43,"tag":674,"props":9232,"children":9233},{"style":687},[9234],{"type":48,"value":5882},{"type":43,"tag":674,"props":9236,"children":9237},{"style":740},[9238],{"type":48,"value":7593},{"type":43,"tag":674,"props":9240,"children":9241},{"style":681},[9242],{"type":48,"value":5892},{"type":43,"tag":674,"props":9244,"children":9245},{"style":740},[9246],{"type":48,"value":9247},"usercentrics",{"type":43,"tag":674,"props":9249,"children":9250},{"style":681},[9251],{"type":48,"value":5892},{"type":43,"tag":674,"props":9253,"children":9254},{"style":740},[9255],{"type":48,"value":9256},"eu",{"type":43,"tag":674,"props":9258,"children":9259},{"style":687},[9260],{"type":48,"value":5922},{"type":43,"tag":674,"props":9262,"children":9263},{"style":3437},[9264],{"type":48,"value":5927},{"type":43,"tag":674,"props":9266,"children":9267},{"style":687},[9268],{"type":48,"value":875},{"type":43,"tag":674,"props":9270,"children":9272},{"class":676,"line":9271},65,[9273,9277,9282,9286,9290,9294,9299,9303,9308,9312,9316,9320,9325,9329,9333,9337,9341],{"type":43,"tag":674,"props":9274,"children":9275},{"style":687},[9276],{"type":48,"value":5864},{"type":43,"tag":674,"props":9278,"children":9279},{"style":714},[9280],{"type":48,"value":9281},"OpenLI\u002FLegal Monster",{"type":43,"tag":674,"props":9283,"children":9284},{"style":687},[9285],{"type":48,"value":748},{"type":43,"tag":674,"props":9287,"children":9288},{"style":687},[9289],{"type":48,"value":782},{"type":43,"tag":674,"props":9291,"children":9292},{"style":687},[9293],{"type":48,"value":5882},{"type":43,"tag":674,"props":9295,"children":9296},{"style":740},[9297],{"type":48,"value":9298},"widgets",{"type":43,"tag":674,"props":9300,"children":9301},{"style":681},[9302],{"type":48,"value":5892},{"type":43,"tag":674,"props":9304,"children":9305},{"style":740},[9306],{"type":48,"value":9307},"legalmonster",{"type":43,"tag":674,"props":9309,"children":9310},{"style":681},[9311],{"type":48,"value":5892},{"type":43,"tag":674,"props":9313,"children":9314},{"style":740},[9315],{"type":48,"value":5897},{"type":43,"tag":674,"props":9317,"children":9318},{"style":687},[9319],{"type":48,"value":5902},{"type":43,"tag":674,"props":9321,"children":9322},{"style":740},[9323],{"type":48,"value":9324},"openli",{"type":43,"tag":674,"props":9326,"children":9327},{"style":681},[9328],{"type":48,"value":5892},{"type":43,"tag":674,"props":9330,"children":9331},{"style":740},[9332],{"type":48,"value":5897},{"type":43,"tag":674,"props":9334,"children":9335},{"style":687},[9336],{"type":48,"value":5922},{"type":43,"tag":674,"props":9338,"children":9339},{"style":3437},[9340],{"type":48,"value":5927},{"type":43,"tag":674,"props":9342,"children":9343},{"style":687},[9344],{"type":48,"value":875},{"type":43,"tag":674,"props":9346,"children":9348},{"class":676,"line":9347},66,[9349,9353,9358,9362,9366,9370,9375,9379,9383],{"type":43,"tag":674,"props":9350,"children":9351},{"style":687},[9352],{"type":48,"value":5864},{"type":43,"tag":674,"props":9354,"children":9355},{"style":714},[9356],{"type":48,"value":9357},"Nelio A\u002FB Testing",{"type":43,"tag":674,"props":9359,"children":9360},{"style":687},[9361],{"type":48,"value":748},{"type":43,"tag":674,"props":9363,"children":9364},{"style":687},[9365],{"type":48,"value":782},{"type":43,"tag":674,"props":9367,"children":9368},{"style":687},[9369],{"type":48,"value":5882},{"type":43,"tag":674,"props":9371,"children":9372},{"style":740},[9373],{"type":48,"value":9374},"nelio-ab-testing",{"type":43,"tag":674,"props":9376,"children":9377},{"style":687},[9378],{"type":48,"value":5922},{"type":43,"tag":674,"props":9380,"children":9381},{"style":3437},[9382],{"type":48,"value":5927},{"type":43,"tag":674,"props":9384,"children":9385},{"style":687},[9386],{"type":48,"value":875},{"type":43,"tag":674,"props":9388,"children":9390},{"class":676,"line":9389},67,[9391,9395,9400,9404,9408,9412,9417,9421,9426,9430,9434,9438,9442],{"type":43,"tag":674,"props":9392,"children":9393},{"style":687},[9394],{"type":48,"value":5864},{"type":43,"tag":674,"props":9396,"children":9397},{"style":714},[9398],{"type":48,"value":9399},"Mesh",{"type":43,"tag":674,"props":9401,"children":9402},{"style":687},[9403],{"type":48,"value":748},{"type":43,"tag":674,"props":9405,"children":9406},{"style":687},[9407],{"type":48,"value":782},{"type":43,"tag":674,"props":9409,"children":9410},{"style":687},[9411],{"type":48,"value":5882},{"type":43,"tag":674,"props":9413,"children":9414},{"style":740},[9415],{"type":48,"value":9416},"mesh-interactive",{"type":43,"tag":674,"props":9418,"children":9419},{"style":687},[9420],{"type":48,"value":5902},{"type":43,"tag":674,"props":9422,"children":9423},{"style":740},[9424],{"type":48,"value":9425},"withmesh",{"type":43,"tag":674,"props":9427,"children":9428},{"style":681},[9429],{"type":48,"value":5892},{"type":43,"tag":674,"props":9431,"children":9432},{"style":740},[9433],{"type":48,"value":5897},{"type":43,"tag":674,"props":9435,"children":9436},{"style":687},[9437],{"type":48,"value":5922},{"type":43,"tag":674,"props":9439,"children":9440},{"style":3437},[9441],{"type":48,"value":5927},{"type":43,"tag":674,"props":9443,"children":9444},{"style":687},[9445],{"type":48,"value":875},{"type":43,"tag":674,"props":9447,"children":9449},{"class":676,"line":9448},68,[9450,9454,9459,9463,9467,9471,9476,9480,9484,9488,9493,9497,9501,9505,9509],{"type":43,"tag":674,"props":9451,"children":9452},{"style":687},[9453],{"type":48,"value":5864},{"type":43,"tag":674,"props":9455,"children":9456},{"style":714},[9457],{"type":48,"value":9458},"Reddit Pixel",{"type":43,"tag":674,"props":9460,"children":9461},{"style":687},[9462],{"type":48,"value":748},{"type":43,"tag":674,"props":9464,"children":9465},{"style":687},[9466],{"type":48,"value":782},{"type":43,"tag":674,"props":9468,"children":9469},{"style":687},[9470],{"type":48,"value":5882},{"type":43,"tag":674,"props":9472,"children":9473},{"style":740},[9474],{"type":48,"value":9475},"redditstatic",{"type":43,"tag":674,"props":9477,"children":9478},{"style":681},[9479],{"type":48,"value":5892},{"type":43,"tag":674,"props":9481,"children":9482},{"style":740},[9483],{"type":48,"value":5897},{"type":43,"tag":674,"props":9485,"children":9486},{"style":687},[9487],{"type":48,"value":5902},{"type":43,"tag":674,"props":9489,"children":9490},{"style":740},[9491],{"type":48,"value":9492},"rdt",{"type":43,"tag":674,"props":9494,"children":9495},{"style":681},[9496],{"type":48,"value":5892},{"type":43,"tag":674,"props":9498,"children":9499},{"style":740},[9500],{"type":48,"value":68},{"type":43,"tag":674,"props":9502,"children":9503},{"style":687},[9504],{"type":48,"value":5922},{"type":43,"tag":674,"props":9506,"children":9507},{"style":3437},[9508],{"type":48,"value":5927},{"type":43,"tag":674,"props":9510,"children":9511},{"style":687},[9512],{"type":48,"value":875},{"type":43,"tag":674,"props":9514,"children":9516},{"class":676,"line":9515},69,[9517,9521,9526,9530,9534,9538,9543,9547,9551,9555,9560,9564,9568,9572,9576,9580,9584],{"type":43,"tag":674,"props":9518,"children":9519},{"style":687},[9520],{"type":48,"value":5864},{"type":43,"tag":674,"props":9522,"children":9523},{"style":714},[9524],{"type":48,"value":9525},"Webflow",{"type":43,"tag":674,"props":9527,"children":9528},{"style":687},[9529],{"type":48,"value":748},{"type":43,"tag":674,"props":9531,"children":9532},{"style":687},[9533],{"type":48,"value":782},{"type":43,"tag":674,"props":9535,"children":9536},{"style":687},[9537],{"type":48,"value":5882},{"type":43,"tag":674,"props":9539,"children":9540},{"style":740},[9541],{"type":48,"value":9542},"wdfl",{"type":43,"tag":674,"props":9544,"children":9545},{"style":681},[9546],{"type":48,"value":5892},{"type":43,"tag":674,"props":9548,"children":9549},{"style":740},[9550],{"type":48,"value":7669},{"type":43,"tag":674,"props":9552,"children":9553},{"style":687},[9554],{"type":48,"value":5902},{"type":43,"tag":674,"props":9556,"children":9557},{"style":740},[9558],{"type":48,"value":9559},"webflow",{"type":43,"tag":674,"props":9561,"children":9562},{"style":681},[9563],{"type":48,"value":5892},{"type":43,"tag":674,"props":9565,"children":9566},{"style":740},[9567],{"type":48,"value":5897},{"type":43,"tag":674,"props":9569,"children":9570},{"style":681},[9571],{"type":48,"value":5912},{"type":43,"tag":674,"props":9573,"children":9574},{"style":740},[9575],{"type":48,"value":5917},{"type":43,"tag":674,"props":9577,"children":9578},{"style":687},[9579],{"type":48,"value":5922},{"type":43,"tag":674,"props":9581,"children":9582},{"style":3437},[9583],{"type":48,"value":5927},{"type":43,"tag":674,"props":9585,"children":9586},{"style":687},[9587],{"type":48,"value":875},{"type":43,"tag":674,"props":9589,"children":9591},{"class":676,"line":9590},70,[9592,9596,9601,9605,9609,9613,9618,9622,9626,9630,9635,9639,9643,9647],{"type":43,"tag":674,"props":9593,"children":9594},{"style":687},[9595],{"type":48,"value":5864},{"type":43,"tag":674,"props":9597,"children":9598},{"style":714},[9599],{"type":48,"value":9600},"Dub.co",{"type":43,"tag":674,"props":9602,"children":9603},{"style":687},[9604],{"type":48,"value":748},{"type":43,"tag":674,"props":9606,"children":9607},{"style":687},[9608],{"type":48,"value":782},{"type":43,"tag":674,"props":9610,"children":9611},{"style":687},[9612],{"type":48,"value":5882},{"type":43,"tag":674,"props":9614,"children":9615},{"style":740},[9616],{"type":48,"value":9617},"dubcdn",{"type":43,"tag":674,"props":9619,"children":9620},{"style":681},[9621],{"type":48,"value":5892},{"type":43,"tag":674,"props":9623,"children":9624},{"style":740},[9625],{"type":48,"value":5897},{"type":43,"tag":674,"props":9627,"children":9628},{"style":687},[9629],{"type":48,"value":5902},{"type":43,"tag":674,"props":9631,"children":9632},{"style":740},[9633],{"type":48,"value":9634},"dub",{"type":43,"tag":674,"props":9636,"children":9637},{"style":681},[9638],{"type":48,"value":5892},{"type":43,"tag":674,"props":9640,"children":9641},{"style":740},[9642],{"type":48,"value":7669},{"type":43,"tag":674,"props":9644,"children":9645},{"style":687},[9646],{"type":48,"value":5922},{"type":43,"tag":674,"props":9648,"children":9649},{"style":3437},[9650],{"type":48,"value":9651},"i\n",{"type":43,"tag":674,"props":9653,"children":9655},{"class":676,"line":9654},71,[9656],{"type":43,"tag":674,"props":9657,"children":9658},{"style":687},[9659],{"type":48,"value":2133},{"type":43,"tag":674,"props":9661,"children":9663},{"class":676,"line":9662},72,[9664],{"type":43,"tag":674,"props":9665,"children":9666},{"emptyLinePlaceholder":808},[9667],{"type":48,"value":811},{"type":43,"tag":674,"props":9669,"children":9671},{"class":676,"line":9670},73,[9672],{"type":43,"tag":674,"props":9673,"children":9674},{"style":4005},[9675],{"type":48,"value":9676},"  \u002F\u002F Match known tools\n",{"type":43,"tag":674,"props":9678,"children":9680},{"class":676,"line":9679},74,[9681,9686,9690,9695,9699,9704,9708,9713,9717,9722,9726,9730,9734,9738,9743,9747],{"type":43,"tag":674,"props":9682,"children":9683},{"style":708},[9684],{"type":48,"value":9685},"  for",{"type":43,"tag":674,"props":9687,"children":9688},{"style":714},[9689],{"type":48,"value":717},{"type":43,"tag":674,"props":9691,"children":9692},{"style":693},[9693],{"type":48,"value":9694},"const",{"type":43,"tag":674,"props":9696,"children":9697},{"style":687},[9698],{"type":48,"value":5011},{"type":43,"tag":674,"props":9700,"children":9701},{"style":681},[9702],{"type":48,"value":9703},"name",{"type":43,"tag":674,"props":9705,"children":9706},{"style":687},[9707],{"type":48,"value":2050},{"type":43,"tag":674,"props":9709,"children":9710},{"style":681},[9711],{"type":48,"value":9712}," pattern",{"type":43,"tag":674,"props":9714,"children":9715},{"style":687},[9716],{"type":48,"value":2434},{"type":43,"tag":674,"props":9718,"children":9719},{"style":687},[9720],{"type":48,"value":9721}," of",{"type":43,"tag":674,"props":9723,"children":9724},{"style":681},[9725],{"type":48,"value":1869},{"type":43,"tag":674,"props":9727,"children":9728},{"style":687},[9729],{"type":48,"value":897},{"type":43,"tag":674,"props":9731,"children":9732},{"style":1009},[9733],{"type":48,"value":1979},{"type":43,"tag":674,"props":9735,"children":9736},{"style":714},[9737],{"type":48,"value":684},{"type":43,"tag":674,"props":9739,"children":9740},{"style":681},[9741],{"type":48,"value":9742},"patterns",{"type":43,"tag":674,"props":9744,"children":9745},{"style":714},[9746],{"type":48,"value":4711},{"type":43,"tag":674,"props":9748,"children":9749},{"style":687},[9750],{"type":48,"value":758},{"type":43,"tag":674,"props":9752,"children":9754},{"class":676,"line":9753},75,[9755,9760,9764,9768,9773,9777,9781,9785],{"type":43,"tag":674,"props":9756,"children":9757},{"style":708},[9758],{"type":48,"value":9759},"    for",{"type":43,"tag":674,"props":9761,"children":9762},{"style":714},[9763],{"type":48,"value":717},{"type":43,"tag":674,"props":9765,"children":9766},{"style":693},[9767],{"type":48,"value":9694},{"type":43,"tag":674,"props":9769,"children":9770},{"style":681},[9771],{"type":48,"value":9772}," src",{"type":43,"tag":674,"props":9774,"children":9775},{"style":687},[9776],{"type":48,"value":9721},{"type":43,"tag":674,"props":9778,"children":9779},{"style":681},[9780],{"type":48,"value":3033},{"type":43,"tag":674,"props":9782,"children":9783},{"style":714},[9784],{"type":48,"value":753},{"type":43,"tag":674,"props":9786,"children":9787},{"style":687},[9788],{"type":48,"value":758},{"type":43,"tag":674,"props":9790,"children":9792},{"class":676,"line":9791},76,[9793,9798,9802,9807,9811,9816,9820,9824,9828],{"type":43,"tag":674,"props":9794,"children":9795},{"style":708},[9796],{"type":48,"value":9797},"      if",{"type":43,"tag":674,"props":9799,"children":9800},{"style":714},[9801],{"type":48,"value":717},{"type":43,"tag":674,"props":9803,"children":9804},{"style":681},[9805],{"type":48,"value":9806},"pattern",{"type":43,"tag":674,"props":9808,"children":9809},{"style":687},[9810],{"type":48,"value":897},{"type":43,"tag":674,"props":9812,"children":9813},{"style":1009},[9814],{"type":48,"value":9815},"test",{"type":43,"tag":674,"props":9817,"children":9818},{"style":714},[9819],{"type":48,"value":684},{"type":43,"tag":674,"props":9821,"children":9822},{"style":681},[9823],{"type":48,"value":3158},{"type":43,"tag":674,"props":9825,"children":9826},{"style":714},[9827],{"type":48,"value":4711},{"type":43,"tag":674,"props":9829,"children":9830},{"style":687},[9831],{"type":48,"value":758},{"type":43,"tag":674,"props":9833,"children":9835},{"class":676,"line":9834},77,[9836,9841,9845,9849,9853,9857,9861],{"type":43,"tag":674,"props":9837,"children":9838},{"style":681},[9839],{"type":48,"value":9840},"        knownTools",{"type":43,"tag":674,"props":9842,"children":9843},{"style":687},[9844],{"type":48,"value":897},{"type":43,"tag":674,"props":9846,"children":9847},{"style":1009},[9848],{"type":48,"value":4068},{"type":43,"tag":674,"props":9850,"children":9851},{"style":714},[9852],{"type":48,"value":684},{"type":43,"tag":674,"props":9854,"children":9855},{"style":681},[9856],{"type":48,"value":9703},{"type":43,"tag":674,"props":9858,"children":9859},{"style":714},[9860],{"type":48,"value":2351},{"type":43,"tag":674,"props":9862,"children":9863},{"style":687},[9864],{"type":48,"value":839},{"type":43,"tag":674,"props":9866,"children":9868},{"class":676,"line":9867},78,[9869,9874,9878,9883,9887,9891,9895],{"type":43,"tag":674,"props":9870,"children":9871},{"style":681},[9872],{"type":48,"value":9873},"        matchedScripts",{"type":43,"tag":674,"props":9875,"children":9876},{"style":687},[9877],{"type":48,"value":897},{"type":43,"tag":674,"props":9879,"children":9880},{"style":1009},[9881],{"type":48,"value":9882},"add",{"type":43,"tag":674,"props":9884,"children":9885},{"style":714},[9886],{"type":48,"value":684},{"type":43,"tag":674,"props":9888,"children":9889},{"style":681},[9890],{"type":48,"value":3158},{"type":43,"tag":674,"props":9892,"children":9893},{"style":714},[9894],{"type":48,"value":2351},{"type":43,"tag":674,"props":9896,"children":9897},{"style":687},[9898],{"type":48,"value":839},{"type":43,"tag":674,"props":9900,"children":9902},{"class":676,"line":9901},79,[9903,9908],{"type":43,"tag":674,"props":9904,"children":9905},{"style":708},[9906],{"type":48,"value":9907},"        break",{"type":43,"tag":674,"props":9909,"children":9910},{"style":687},[9911],{"type":48,"value":839},{"type":43,"tag":674,"props":9913,"children":9915},{"class":676,"line":9914},80,[9916],{"type":43,"tag":674,"props":9917,"children":9918},{"style":687},[9919],{"type":48,"value":9920},"      }\n",{"type":43,"tag":674,"props":9922,"children":9924},{"class":676,"line":9923},81,[9925],{"type":43,"tag":674,"props":9926,"children":9927},{"style":687},[9928],{"type":48,"value":9929},"    }\n",{"type":43,"tag":674,"props":9931,"children":9933},{"class":676,"line":9932},82,[9934],{"type":43,"tag":674,"props":9935,"children":9936},{"style":687},[9937],{"type":48,"value":801},{"type":43,"tag":674,"props":9939,"children":9941},{"class":676,"line":9940},83,[9942],{"type":43,"tag":674,"props":9943,"children":9944},{"emptyLinePlaceholder":808},[9945],{"type":48,"value":811},{"type":43,"tag":674,"props":9947,"children":9949},{"class":676,"line":9948},84,[9950],{"type":43,"tag":674,"props":9951,"children":9952},{"style":4005},[9953],{"type":48,"value":9954},"  \u002F\u002F Find unknown tracking scripts\n",{"type":43,"tag":674,"props":9956,"children":9958},{"class":676,"line":9957},85,[9959,9963,9968,9972,9976,9980,9984,9988,9992,9997,10001,10005,10009,10014,10018,10023,10027,10032,10036,10041,10045,10049,10053,10058,10062,10067,10071,10075],{"type":43,"tag":674,"props":9960,"children":9961},{"style":693},[9962],{"type":48,"value":820},{"type":43,"tag":674,"props":9964,"children":9965},{"style":681},[9966],{"type":48,"value":9967}," trackingKeywords",{"type":43,"tag":674,"props":9969,"children":9970},{"style":687},[9971],{"type":48,"value":830},{"type":43,"tag":674,"props":9973,"children":9974},{"style":687},[9975],{"type":48,"value":5882},{"type":43,"tag":674,"props":9977,"children":9978},{"style":740},[9979],{"type":48,"value":8473},{"type":43,"tag":674,"props":9981,"children":9982},{"style":687},[9983],{"type":48,"value":5902},{"type":43,"tag":674,"props":9985,"children":9986},{"style":740},[9987],{"type":48,"value":7478},{"type":43,"tag":674,"props":9989,"children":9990},{"style":687},[9991],{"type":48,"value":5902},{"type":43,"tag":674,"props":9993,"children":9994},{"style":740},[9995],{"type":48,"value":9996},"pixel",{"type":43,"tag":674,"props":9998,"children":9999},{"style":687},[10000],{"type":48,"value":5902},{"type":43,"tag":674,"props":10002,"children":10003},{"style":740},[10004],{"type":48,"value":15},{"type":43,"tag":674,"props":10006,"children":10007},{"style":687},[10008],{"type":48,"value":5902},{"type":43,"tag":674,"props":10010,"children":10011},{"style":740},[10012],{"type":48,"value":10013},"beacon",{"type":43,"tag":674,"props":10015,"children":10016},{"style":687},[10017],{"type":48,"value":5902},{"type":43,"tag":674,"props":10019,"children":10020},{"style":740},[10021],{"type":48,"value":10022},"collect",{"type":43,"tag":674,"props":10024,"children":10025},{"style":687},[10026],{"type":48,"value":5902},{"type":43,"tag":674,"props":10028,"children":10029},{"style":740},[10030],{"type":48,"value":10031},"measure",{"type":43,"tag":674,"props":10033,"children":10034},{"style":687},[10035],{"type":48,"value":5902},{"type":43,"tag":674,"props":10037,"children":10038},{"style":740},[10039],{"type":48,"value":10040},"metric",{"type":43,"tag":674,"props":10042,"children":10043},{"style":687},[10044],{"type":48,"value":5902},{"type":43,"tag":674,"props":10046,"children":10047},{"style":740},[10048],{"type":48,"value":5483},{"type":43,"tag":674,"props":10050,"children":10051},{"style":687},[10052],{"type":48,"value":5902},{"type":43,"tag":674,"props":10054,"children":10055},{"style":740},[10056],{"type":48,"value":10057},"telemetry",{"type":43,"tag":674,"props":10059,"children":10060},{"style":687},[10061],{"type":48,"value":5902},{"type":43,"tag":674,"props":10063,"children":10064},{"style":740},[10065],{"type":48,"value":10066},"monitor",{"type":43,"tag":674,"props":10068,"children":10069},{"style":687},[10070],{"type":48,"value":5922},{"type":43,"tag":674,"props":10072,"children":10073},{"style":3437},[10074],{"type":48,"value":5927},{"type":43,"tag":674,"props":10076,"children":10077},{"style":687},[10078],{"type":48,"value":839},{"type":43,"tag":674,"props":10080,"children":10082},{"class":676,"line":10081},86,[10083,10087,10092,10096,10100,10104,10108,10112,10116,10120],{"type":43,"tag":674,"props":10084,"children":10085},{"style":693},[10086],{"type":48,"value":820},{"type":43,"tag":674,"props":10088,"children":10089},{"style":681},[10090],{"type":48,"value":10091}," unknownScripts",{"type":43,"tag":674,"props":10093,"children":10094},{"style":687},[10095],{"type":48,"value":830},{"type":43,"tag":674,"props":10097,"children":10098},{"style":681},[10099],{"type":48,"value":3033},{"type":43,"tag":674,"props":10101,"children":10102},{"style":687},[10103],{"type":48,"value":897},{"type":43,"tag":674,"props":10105,"children":10106},{"style":1009},[10107],{"type":48,"value":2030},{"type":43,"tag":674,"props":10109,"children":10110},{"style":714},[10111],{"type":48,"value":684},{"type":43,"tag":674,"props":10113,"children":10114},{"style":2042},[10115],{"type":48,"value":3158},{"type":43,"tag":674,"props":10117,"children":10118},{"style":693},[10119],{"type":48,"value":696},{"type":43,"tag":674,"props":10121,"children":10122},{"style":687},[10123],{"type":48,"value":701},{"type":43,"tag":674,"props":10125,"children":10127},{"class":676,"line":10126},87,[10128,10133,10137,10142,10146,10151,10155,10159,10163,10167,10171],{"type":43,"tag":674,"props":10129,"children":10130},{"style":708},[10131],{"type":48,"value":10132},"    if",{"type":43,"tag":674,"props":10134,"children":10135},{"style":714},[10136],{"type":48,"value":717},{"type":43,"tag":674,"props":10138,"children":10139},{"style":681},[10140],{"type":48,"value":10141},"matchedScripts",{"type":43,"tag":674,"props":10143,"children":10144},{"style":687},[10145],{"type":48,"value":897},{"type":43,"tag":674,"props":10147,"children":10148},{"style":1009},[10149],{"type":48,"value":10150},"has",{"type":43,"tag":674,"props":10152,"children":10153},{"style":714},[10154],{"type":48,"value":684},{"type":43,"tag":674,"props":10156,"children":10157},{"style":681},[10158],{"type":48,"value":3158},{"type":43,"tag":674,"props":10160,"children":10161},{"style":714},[10162],{"type":48,"value":4711},{"type":43,"tag":674,"props":10164,"children":10165},{"style":708},[10166],{"type":48,"value":5151},{"type":43,"tag":674,"props":10168,"children":10169},{"style":785},[10170],{"type":48,"value":788},{"type":43,"tag":674,"props":10172,"children":10173},{"style":687},[10174],{"type":48,"value":839},{"type":43,"tag":674,"props":10176,"children":10178},{"class":676,"line":10177},88,[10179,10184],{"type":43,"tag":674,"props":10180,"children":10181},{"style":708},[10182],{"type":48,"value":10183},"    try",{"type":43,"tag":674,"props":10185,"children":10186},{"style":687},[10187],{"type":48,"value":701},{"type":43,"tag":674,"props":10189,"children":10191},{"class":676,"line":10190},89,[10192,10197,10202,10206,10210,10215,10219,10223,10227],{"type":43,"tag":674,"props":10193,"children":10194},{"style":693},[10195],{"type":48,"value":10196},"      const",{"type":43,"tag":674,"props":10198,"children":10199},{"style":681},[10200],{"type":48,"value":10201}," url",{"type":43,"tag":674,"props":10203,"children":10204},{"style":687},[10205],{"type":48,"value":830},{"type":43,"tag":674,"props":10207,"children":10208},{"style":687},[10209],{"type":48,"value":5817},{"type":43,"tag":674,"props":10211,"children":10212},{"style":1009},[10213],{"type":48,"value":10214}," URL",{"type":43,"tag":674,"props":10216,"children":10217},{"style":714},[10218],{"type":48,"value":684},{"type":43,"tag":674,"props":10220,"children":10221},{"style":681},[10222],{"type":48,"value":3158},{"type":43,"tag":674,"props":10224,"children":10225},{"style":714},[10226],{"type":48,"value":2351},{"type":43,"tag":674,"props":10228,"children":10229},{"style":687},[10230],{"type":48,"value":839},{"type":43,"tag":674,"props":10232,"children":10234},{"class":676,"line":10233},90,[10235,10239,10244,10248,10252,10256,10260,10264,10268,10272,10276,10280,10284,10288,10292,10296],{"type":43,"tag":674,"props":10236,"children":10237},{"style":693},[10238],{"type":48,"value":10196},{"type":43,"tag":674,"props":10240,"children":10241},{"style":681},[10242],{"type":48,"value":10243}," scriptHost",{"type":43,"tag":674,"props":10245,"children":10246},{"style":687},[10247],{"type":48,"value":830},{"type":43,"tag":674,"props":10249,"children":10250},{"style":681},[10251],{"type":48,"value":10201},{"type":43,"tag":674,"props":10253,"children":10254},{"style":687},[10255],{"type":48,"value":897},{"type":43,"tag":674,"props":10257,"children":10258},{"style":681},[10259],{"type":48,"value":4607},{"type":43,"tag":674,"props":10261,"children":10262},{"style":687},[10263],{"type":48,"value":897},{"type":43,"tag":674,"props":10265,"children":10266},{"style":1009},[10267],{"type":48,"value":5738},{"type":43,"tag":674,"props":10269,"children":10270},{"style":714},[10271],{"type":48,"value":684},{"type":43,"tag":674,"props":10273,"children":10274},{"style":687},[10275],{"type":48,"value":748},{"type":43,"tag":674,"props":10277,"children":10278},{"style":740},[10279],{"type":48,"value":5751},{"type":43,"tag":674,"props":10281,"children":10282},{"style":687},[10283],{"type":48,"value":748},{"type":43,"tag":674,"props":10285,"children":10286},{"style":687},[10287],{"type":48,"value":2050},{"type":43,"tag":674,"props":10289,"children":10290},{"style":687},[10291],{"type":48,"value":5764},{"type":43,"tag":674,"props":10293,"children":10294},{"style":714},[10295],{"type":48,"value":2351},{"type":43,"tag":674,"props":10297,"children":10298},{"style":687},[10299],{"type":48,"value":839},{"type":43,"tag":674,"props":10301,"children":10303},{"class":676,"line":10302},91,[10304],{"type":43,"tag":674,"props":10305,"children":10306},{"style":4005},[10307],{"type":48,"value":10308},"      \u002F\u002F Skip same-domain scripts\n",{"type":43,"tag":674,"props":10310,"children":10312},{"class":676,"line":10311},92,[10313,10317,10321,10326,10330,10334,10338,10342,10346,10351,10355,10359,10363,10367,10372,10376,10380,10384,10388],{"type":43,"tag":674,"props":10314,"children":10315},{"style":708},[10316],{"type":48,"value":9797},{"type":43,"tag":674,"props":10318,"children":10319},{"style":714},[10320],{"type":48,"value":717},{"type":43,"tag":674,"props":10322,"children":10323},{"style":681},[10324],{"type":48,"value":10325},"scriptHost",{"type":43,"tag":674,"props":10327,"children":10328},{"style":687},[10329],{"type":48,"value":732},{"type":43,"tag":674,"props":10331,"children":10332},{"style":681},[10333],{"type":48,"value":4581},{"type":43,"tag":674,"props":10335,"children":10336},{"style":687},[10337],{"type":48,"value":907},{"type":43,"tag":674,"props":10339,"children":10340},{"style":681},[10341],{"type":48,"value":10243},{"type":43,"tag":674,"props":10343,"children":10344},{"style":687},[10345],{"type":48,"value":897},{"type":43,"tag":674,"props":10347,"children":10348},{"style":1009},[10349],{"type":48,"value":10350},"endsWith",{"type":43,"tag":674,"props":10352,"children":10353},{"style":714},[10354],{"type":48,"value":684},{"type":43,"tag":674,"props":10356,"children":10357},{"style":687},[10358],{"type":48,"value":748},{"type":43,"tag":674,"props":10360,"children":10361},{"style":740},[10362],{"type":48,"value":897},{"type":43,"tag":674,"props":10364,"children":10365},{"style":687},[10366],{"type":48,"value":748},{"type":43,"tag":674,"props":10368,"children":10369},{"style":687},[10370],{"type":48,"value":10371}," +",{"type":43,"tag":674,"props":10373,"children":10374},{"style":681},[10375],{"type":48,"value":4581},{"type":43,"tag":674,"props":10377,"children":10378},{"style":714},[10379],{"type":48,"value":4711},{"type":43,"tag":674,"props":10381,"children":10382},{"style":708},[10383],{"type":48,"value":5151},{"type":43,"tag":674,"props":10385,"children":10386},{"style":785},[10387],{"type":48,"value":788},{"type":43,"tag":674,"props":10389,"children":10390},{"style":687},[10391],{"type":48,"value":839},{"type":43,"tag":674,"props":10393,"children":10395},{"class":676,"line":10394},93,[10396],{"type":43,"tag":674,"props":10397,"children":10398},{"style":4005},[10399],{"type":48,"value":10400},"      \u002F\u002F Skip common CDNs that host non-tracking code\n",{"type":43,"tag":674,"props":10402,"children":10404},{"class":676,"line":10403},94,[10405,10409,10413,10417,10422,10426,10430,10434,10439,10443,10447,10451,10456,10460,10465,10469,10473,10477,10482,10486,10490,10494,10498,10502,10506,10510,10514,10518,10522,10526,10530,10534],{"type":43,"tag":674,"props":10406,"children":10407},{"style":708},[10408],{"type":48,"value":9797},{"type":43,"tag":674,"props":10410,"children":10411},{"style":714},[10412],{"type":48,"value":717},{"type":43,"tag":674,"props":10414,"children":10415},{"style":687},[10416],{"type":48,"value":5922},{"type":43,"tag":674,"props":10418,"children":10419},{"style":740},[10420],{"type":48,"value":10421},"unpkg",{"type":43,"tag":674,"props":10423,"children":10424},{"style":681},[10425],{"type":48,"value":5892},{"type":43,"tag":674,"props":10427,"children":10428},{"style":740},[10429],{"type":48,"value":5897},{"type":43,"tag":674,"props":10431,"children":10432},{"style":687},[10433],{"type":48,"value":5902},{"type":43,"tag":674,"props":10435,"children":10436},{"style":740},[10437],{"type":48,"value":10438},"jsdelivr",{"type":43,"tag":674,"props":10440,"children":10441},{"style":681},[10442],{"type":48,"value":5892},{"type":43,"tag":674,"props":10444,"children":10445},{"style":740},[10446],{"type":48,"value":8903},{"type":43,"tag":674,"props":10448,"children":10449},{"style":687},[10450],{"type":48,"value":5902},{"type":43,"tag":674,"props":10452,"children":10453},{"style":740},[10454],{"type":48,"value":10455},"cdnjs",{"type":43,"tag":674,"props":10457,"children":10458},{"style":681},[10459],{"type":48,"value":5892},{"type":43,"tag":674,"props":10461,"children":10462},{"style":740},[10463],{"type":48,"value":10464},"cloudflare",{"type":43,"tag":674,"props":10466,"children":10467},{"style":681},[10468],{"type":48,"value":5892},{"type":43,"tag":674,"props":10470,"children":10471},{"style":740},[10472],{"type":48,"value":5897},{"type":43,"tag":674,"props":10474,"children":10475},{"style":687},[10476],{"type":48,"value":5902},{"type":43,"tag":674,"props":10478,"children":10479},{"style":740},[10480],{"type":48,"value":10481},"ajax",{"type":43,"tag":674,"props":10483,"children":10484},{"style":681},[10485],{"type":48,"value":5892},{"type":43,"tag":674,"props":10487,"children":10488},{"style":740},[10489],{"type":48,"value":8954},{"type":43,"tag":674,"props":10491,"children":10492},{"style":681},[10493],{"type":48,"value":5892},{"type":43,"tag":674,"props":10495,"children":10496},{"style":740},[10497],{"type":48,"value":5897},{"type":43,"tag":674,"props":10499,"children":10500},{"style":687},[10501],{"type":48,"value":5922},{"type":43,"tag":674,"props":10503,"children":10504},{"style":3437},[10505],{"type":48,"value":5927},{"type":43,"tag":674,"props":10507,"children":10508},{"style":687},[10509],{"type":48,"value":897},{"type":43,"tag":674,"props":10511,"children":10512},{"style":1009},[10513],{"type":48,"value":9815},{"type":43,"tag":674,"props":10515,"children":10516},{"style":714},[10517],{"type":48,"value":684},{"type":43,"tag":674,"props":10519,"children":10520},{"style":681},[10521],{"type":48,"value":10325},{"type":43,"tag":674,"props":10523,"children":10524},{"style":714},[10525],{"type":48,"value":4711},{"type":43,"tag":674,"props":10527,"children":10528},{"style":708},[10529],{"type":48,"value":5151},{"type":43,"tag":674,"props":10531,"children":10532},{"style":785},[10533],{"type":48,"value":788},{"type":43,"tag":674,"props":10535,"children":10536},{"style":687},[10537],{"type":48,"value":839},{"type":43,"tag":674,"props":10539,"children":10541},{"class":676,"line":10540},95,[10542],{"type":43,"tag":674,"props":10543,"children":10544},{"style":4005},[10545],{"type":48,"value":10546},"      \u002F\u002F Include if it has tracking-like keywords or is from a third-party\n",{"type":43,"tag":674,"props":10548,"children":10550},{"class":676,"line":10549},96,[10551,10556,10560,10564,10568,10572,10576,10580,10584,10588],{"type":43,"tag":674,"props":10552,"children":10553},{"style":708},[10554],{"type":48,"value":10555},"      return",{"type":43,"tag":674,"props":10557,"children":10558},{"style":681},[10559],{"type":48,"value":9967},{"type":43,"tag":674,"props":10561,"children":10562},{"style":687},[10563],{"type":48,"value":897},{"type":43,"tag":674,"props":10565,"children":10566},{"style":1009},[10567],{"type":48,"value":9815},{"type":43,"tag":674,"props":10569,"children":10570},{"style":714},[10571],{"type":48,"value":684},{"type":43,"tag":674,"props":10573,"children":10574},{"style":681},[10575],{"type":48,"value":3158},{"type":43,"tag":674,"props":10577,"children":10578},{"style":714},[10579],{"type":48,"value":753},{"type":43,"tag":674,"props":10581,"children":10582},{"style":687},[10583],{"type":48,"value":1041},{"type":43,"tag":674,"props":10585,"children":10586},{"style":785},[10587],{"type":48,"value":870},{"type":43,"tag":674,"props":10589,"children":10590},{"style":687},[10591],{"type":48,"value":839},{"type":43,"tag":674,"props":10593,"children":10595},{"class":676,"line":10594},97,[10596,10600,10605],{"type":43,"tag":674,"props":10597,"children":10598},{"style":687},[10599],{"type":48,"value":3642},{"type":43,"tag":674,"props":10601,"children":10602},{"style":708},[10603],{"type":48,"value":10604}," catch",{"type":43,"tag":674,"props":10606,"children":10607},{"style":687},[10608],{"type":48,"value":701},{"type":43,"tag":674,"props":10610,"children":10612},{"class":676,"line":10611},98,[10613,10617,10621],{"type":43,"tag":674,"props":10614,"children":10615},{"style":708},[10616],{"type":48,"value":10555},{"type":43,"tag":674,"props":10618,"children":10619},{"style":785},[10620],{"type":48,"value":788},{"type":43,"tag":674,"props":10622,"children":10623},{"style":687},[10624],{"type":48,"value":839},{"type":43,"tag":674,"props":10626,"children":10628},{"class":676,"line":10627},99,[10629],{"type":43,"tag":674,"props":10630,"children":10631},{"style":687},[10632],{"type":48,"value":9929},{"type":43,"tag":674,"props":10634,"children":10636},{"class":676,"line":10635},100,[10637,10641,10645],{"type":43,"tag":674,"props":10638,"children":10639},{"style":687},[10640],{"type":48,"value":2736},{"type":43,"tag":674,"props":10642,"children":10643},{"style":714},[10644],{"type":48,"value":2351},{"type":43,"tag":674,"props":10646,"children":10647},{"style":687},[10648],{"type":48,"value":839},{"type":43,"tag":674,"props":10650,"children":10652},{"class":676,"line":10651},101,[10653],{"type":43,"tag":674,"props":10654,"children":10655},{"emptyLinePlaceholder":808},[10656],{"type":48,"value":811},{"type":43,"tag":674,"props":10658,"children":10660},{"class":676,"line":10659},102,[10661],{"type":43,"tag":674,"props":10662,"children":10663},{"style":4005},[10664],{"type":48,"value":10665},"  \u002F\u002F Extract just the domain from unknown scripts for cleaner output\n",{"type":43,"tag":674,"props":10667,"children":10669},{"class":676,"line":10668},103,[10670,10674,10679,10683,10687,10691,10695,10699,10704,10708,10712,10716,10720,10724],{"type":43,"tag":674,"props":10671,"children":10672},{"style":693},[10673],{"type":48,"value":820},{"type":43,"tag":674,"props":10675,"children":10676},{"style":681},[10677],{"type":48,"value":10678}," unknownDomains",{"type":43,"tag":674,"props":10680,"children":10681},{"style":687},[10682],{"type":48,"value":830},{"type":43,"tag":674,"props":10684,"children":10685},{"style":714},[10686],{"type":48,"value":5011},{"type":43,"tag":674,"props":10688,"children":10689},{"style":687},[10690],{"type":48,"value":5412},{"type":43,"tag":674,"props":10692,"children":10693},{"style":1009},[10694],{"type":48,"value":5417},{"type":43,"tag":674,"props":10696,"children":10697},{"style":714},[10698],{"type":48,"value":684},{"type":43,"tag":674,"props":10700,"children":10701},{"style":681},[10702],{"type":48,"value":10703},"unknownScripts",{"type":43,"tag":674,"props":10705,"children":10706},{"style":687},[10707],{"type":48,"value":897},{"type":43,"tag":674,"props":10709,"children":10710},{"style":1009},[10711],{"type":48,"value":2085},{"type":43,"tag":674,"props":10713,"children":10714},{"style":714},[10715],{"type":48,"value":684},{"type":43,"tag":674,"props":10717,"children":10718},{"style":2042},[10719],{"type":48,"value":3158},{"type":43,"tag":674,"props":10721,"children":10722},{"style":693},[10723],{"type":48,"value":696},{"type":43,"tag":674,"props":10725,"children":10726},{"style":687},[10727],{"type":48,"value":701},{"type":43,"tag":674,"props":10729,"children":10731},{"class":676,"line":10730},104,[10732,10736],{"type":43,"tag":674,"props":10733,"children":10734},{"style":708},[10735],{"type":48,"value":10183},{"type":43,"tag":674,"props":10737,"children":10738},{"style":687},[10739],{"type":48,"value":701},{"type":43,"tag":674,"props":10741,"children":10743},{"class":676,"line":10742},105,[10744,10748,10752,10756,10760,10764,10768,10772,10776],{"type":43,"tag":674,"props":10745,"children":10746},{"style":708},[10747],{"type":48,"value":10555},{"type":43,"tag":674,"props":10749,"children":10750},{"style":687},[10751],{"type":48,"value":5817},{"type":43,"tag":674,"props":10753,"children":10754},{"style":1009},[10755],{"type":48,"value":10214},{"type":43,"tag":674,"props":10757,"children":10758},{"style":714},[10759],{"type":48,"value":684},{"type":43,"tag":674,"props":10761,"children":10762},{"style":681},[10763],{"type":48,"value":3158},{"type":43,"tag":674,"props":10765,"children":10766},{"style":714},[10767],{"type":48,"value":2351},{"type":43,"tag":674,"props":10769,"children":10770},{"style":687},[10771],{"type":48,"value":897},{"type":43,"tag":674,"props":10773,"children":10774},{"style":681},[10775],{"type":48,"value":4607},{"type":43,"tag":674,"props":10777,"children":10778},{"style":687},[10779],{"type":48,"value":839},{"type":43,"tag":674,"props":10781,"children":10783},{"class":676,"line":10782},106,[10784,10788,10792],{"type":43,"tag":674,"props":10785,"children":10786},{"style":687},[10787],{"type":48,"value":3642},{"type":43,"tag":674,"props":10789,"children":10790},{"style":708},[10791],{"type":48,"value":10604},{"type":43,"tag":674,"props":10793,"children":10794},{"style":687},[10795],{"type":48,"value":701},{"type":43,"tag":674,"props":10797,"children":10799},{"class":676,"line":10798},107,[10800,10804,10808],{"type":43,"tag":674,"props":10801,"children":10802},{"style":708},[10803],{"type":48,"value":10555},{"type":43,"tag":674,"props":10805,"children":10806},{"style":681},[10807],{"type":48,"value":9772},{"type":43,"tag":674,"props":10809,"children":10810},{"style":687},[10811],{"type":48,"value":839},{"type":43,"tag":674,"props":10813,"children":10815},{"class":676,"line":10814},108,[10816],{"type":43,"tag":674,"props":10817,"children":10818},{"style":687},[10819],{"type":48,"value":9929},{"type":43,"tag":674,"props":10821,"children":10823},{"class":676,"line":10822},109,[10824,10828,10833,10837,10842,10846],{"type":43,"tag":674,"props":10825,"children":10826},{"style":687},[10827],{"type":48,"value":2736},{"type":43,"tag":674,"props":10829,"children":10830},{"style":714},[10831],{"type":48,"value":10832},"))]",{"type":43,"tag":674,"props":10834,"children":10835},{"style":687},[10836],{"type":48,"value":897},{"type":43,"tag":674,"props":10838,"children":10839},{"style":1009},[10840],{"type":48,"value":10841},"sort",{"type":43,"tag":674,"props":10843,"children":10844},{"style":714},[10845],{"type":48,"value":690},{"type":43,"tag":674,"props":10847,"children":10848},{"style":687},[10849],{"type":48,"value":839},{"type":43,"tag":674,"props":10851,"children":10853},{"class":676,"line":10852},110,[10854],{"type":43,"tag":674,"props":10855,"children":10856},{"emptyLinePlaceholder":808},[10857],{"type":48,"value":811},{"type":43,"tag":674,"props":10859,"children":10861},{"class":676,"line":10860},111,[10862,10866],{"type":43,"tag":674,"props":10863,"children":10864},{"style":708},[10865],{"type":48,"value":848},{"type":43,"tag":674,"props":10867,"children":10868},{"style":687},[10869],{"type":48,"value":701},{"type":43,"tag":674,"props":10871,"children":10873},{"class":676,"line":10872},112,[10874,10879,10883,10887,10891,10895,10899,10904,10909,10913,10917,10921],{"type":43,"tag":674,"props":10875,"children":10876},{"style":714},[10877],{"type":48,"value":10878},"    knownTools",{"type":43,"tag":674,"props":10880,"children":10881},{"style":687},[10882],{"type":48,"value":782},{"type":43,"tag":674,"props":10884,"children":10885},{"style":714},[10886],{"type":48,"value":5011},{"type":43,"tag":674,"props":10888,"children":10889},{"style":687},[10890],{"type":48,"value":5412},{"type":43,"tag":674,"props":10892,"children":10893},{"style":1009},[10894],{"type":48,"value":5417},{"type":43,"tag":674,"props":10896,"children":10897},{"style":714},[10898],{"type":48,"value":684},{"type":43,"tag":674,"props":10900,"children":10901},{"style":681},[10902],{"type":48,"value":10903},"knownTools",{"type":43,"tag":674,"props":10905,"children":10906},{"style":714},[10907],{"type":48,"value":10908},")]",{"type":43,"tag":674,"props":10910,"children":10911},{"style":687},[10912],{"type":48,"value":897},{"type":43,"tag":674,"props":10914,"children":10915},{"style":1009},[10916],{"type":48,"value":10841},{"type":43,"tag":674,"props":10918,"children":10919},{"style":714},[10920],{"type":48,"value":690},{"type":43,"tag":674,"props":10922,"children":10923},{"style":687},[10924],{"type":48,"value":875},{"type":43,"tag":674,"props":10926,"children":10928},{"class":676,"line":10927},113,[10929,10934,10938],{"type":43,"tag":674,"props":10930,"children":10931},{"style":714},[10932],{"type":48,"value":10933},"    unknownScripts",{"type":43,"tag":674,"props":10935,"children":10936},{"style":687},[10937],{"type":48,"value":782},{"type":43,"tag":674,"props":10939,"children":10940},{"style":681},[10941],{"type":48,"value":10942}," unknownDomains\n",{"type":43,"tag":674,"props":10944,"children":10946},{"class":676,"line":10945},114,[10947],{"type":43,"tag":674,"props":10948,"children":10949},{"style":687},[10950],{"type":48,"value":2133},{"type":43,"tag":674,"props":10952,"children":10954},{"class":676,"line":10953},115,[10955,10959],{"type":43,"tag":674,"props":10956,"children":10957},{"style":687},[10958],{"type":48,"value":2142},{"type":43,"tag":674,"props":10960,"children":10961},{"style":681},[10962],{"type":48,"value":2147},{"type":43,"tag":57,"props":10964,"children":10966},{"id":10965},"response-format",[10967],{"type":48,"value":10968},"Response Format",{"type":43,"tag":51,"props":10970,"children":10971},{},[10972],{"type":48,"value":10973},"After inspection, provide a structured summary. Be factual and concise - no commentary or recommendations unless asked. Use emojis to indicate status at a glance.",{"type":43,"tag":51,"props":10975,"children":10976},{},[10977],{"type":43,"tag":72,"props":10978,"children":10979},{},[10980],{"type":48,"value":10981},"Status emojis:",{"type":43,"tag":230,"props":10983,"children":10984},{},[10985,10990,10995],{"type":43,"tag":68,"props":10986,"children":10987},{},[10988],{"type":48,"value":10989},"✅ = Yes \u002F Enabled \u002F Active \u002F Installed",{"type":43,"tag":68,"props":10991,"children":10992},{},[10993],{"type":48,"value":10994},"❌ = No \u002F Disabled \u002F Not found",{"type":43,"tag":68,"props":10996,"children":10997},{},[10998],{"type":48,"value":10999},"⚠️ = Warning \u002F Issue detected",{"type":43,"tag":286,"props":11001,"children":11004},{"className":11002,"code":11003,"language":48},[289],"## PostHog Implementation Summary\n\n### Status\n✅ Installed \u002F ✅ Installed (bundled) \u002F ❌ Not Found\n\n### Implementation Type\n[Global window.posthog \u002F Bundled (not exposed globally) \u002F Custom proxy]\n\n### Configuration\n- **Version:** [version]\n- **API Host:** [host] ([US\u002FEU Cloud] \u002F [Custom proxy] \u002F [Self-hosted])\n- **Project Token:** [full token]\n- **Persistence:** [localStorage\u002FsessionStorage\u002Fcookie\u002Fmemory]\n\n### Features (Module Loaded → Feature Enabled)\n| Feature | Module Loaded | Enabled |\n|---------|---------------|---------|\n| Autocapture | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Session Recording | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Surveys | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Heatmaps | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Feature Flags | ✅ \u002F ❌ | ✅ \u002F ❌ |\n| Web Vitals | ✅ \u002F ❌ | ✅ \u002F ❌ |\n\n### Identifiers\n- **Distinct ID:** [id]\n- **Session ID:** [id]\n\n### Feature Flags\n[List of active flags or \"None loaded\"]\n\n### Network Activity\n- Events endpoint: ✅ \u002F ❌\n- Session recording: ✅ \u002F ❌\n- Decide\u002Fflags endpoint: ✅ \u002F ❌\n- Surveys endpoint: ✅ \u002F ❌\n\n### Issues Found\n✅ None detected\n— or —\n⚠️ [Issue description]\n\n### Script Loading\n- **Source:** [CDN\u002FSelf-hosted\u002FNPM bundle\u002FCustom proxy]\n- **Loading:** [Async\u002FSync\u002FDefer]\n\n### Other Analytics Tools Detected\n[List of recognized analytics, tracking, and marketing tools]\n\n### Other External Scripts\n[Third-party script domains not matched to known tools]\n",[11005],{"type":43,"tag":100,"props":11006,"children":11007},{"__ignoreMap":294},[11008],{"type":48,"value":11003},{"type":43,"tag":57,"props":11010,"children":11012},{"id":11011},"common-questions-and-how-to-answer-them",[11013],{"type":48,"value":11014},"Common Questions and How to Answer Them",{"type":43,"tag":332,"props":11016,"children":11018},{"id":11017},"how-is-posthog-implemented-on-this-page",[11019],{"type":48,"value":11020},"\"How is PostHog implemented on this page?\"",{"type":43,"tag":51,"props":11022,"children":11023},{},[11024],{"type":48,"value":11025},"Run full inspection workflow and provide complete summary.",{"type":43,"tag":332,"props":11027,"children":11029},{"id":11028},"is-posthog-tracking-working",[11030],{"type":48,"value":11031},"\"Is PostHog tracking working?\"",{"type":43,"tag":64,"props":11033,"children":11034},{},[11035,11040,11045,11050],{"type":43,"tag":68,"props":11036,"children":11037},{},[11038],{"type":48,"value":11039},"Check if posthog object exists",{"type":43,"tag":68,"props":11041,"children":11042},{},[11043],{"type":48,"value":11044},"Verify network requests are being sent",{"type":43,"tag":68,"props":11046,"children":11047},{},[11048],{"type":48,"value":11049},"Check for any errors in console",{"type":43,"tag":68,"props":11051,"children":11052},{},[11053],{"type":48,"value":11054},"Look for opted-out status",{"type":43,"tag":332,"props":11056,"children":11058},{"id":11057},"what-events-are-being-tracked",[11059],{"type":48,"value":11060},"\"What events are being tracked?\"",{"type":43,"tag":64,"props":11062,"children":11063},{},[11064,11069,11085,11090],{"type":43,"tag":68,"props":11065,"children":11066},{},[11067],{"type":48,"value":11068},"Check autocapture status",{"type":43,"tag":68,"props":11070,"children":11071},{},[11072,11074,11079,11080],{"type":48,"value":11073},"Look at network requests to ",{"type":43,"tag":100,"props":11075,"children":11077},{"className":11076},[],[11078],{"type":48,"value":3802},{"type":48,"value":3804},{"type":43,"tag":100,"props":11081,"children":11083},{"className":11082},[],[11084],{"type":48,"value":3810},{"type":43,"tag":68,"props":11086,"children":11087},{},[11088],{"type":48,"value":11089},"Try to access event queue",{"type":43,"tag":68,"props":11091,"children":11092},{},[11093],{"type":48,"value":11094},"Note if $pageview, $pageleave, etc. are enabled",{"type":43,"tag":332,"props":11096,"children":11098},{"id":11097},"is-session-recording-enabled",[11099],{"type":48,"value":11100},"\"Is session recording enabled?\"",{"type":43,"tag":64,"props":11102,"children":11103},{},[11104,11109,11120],{"type":43,"tag":68,"props":11105,"children":11106},{},[11107],{"type":48,"value":11108},"Check config for recording settings",{"type":43,"tag":68,"props":11110,"children":11111},{},[11112,11113,11118],{"type":48,"value":3923},{"type":43,"tag":100,"props":11114,"children":11116},{"className":11115},[],[11117],{"type":48,"value":3821},{"type":48,"value":11119}," network requests",{"type":43,"tag":68,"props":11121,"children":11122},{},[11123],{"type":48,"value":11124},"Check sessionRecording object state",{"type":43,"tag":332,"props":11126,"children":11128},{"id":11127},"what-feature-flags-are-active",[11129],{"type":48,"value":11130},"\"What feature flags are active?\"",{"type":43,"tag":64,"props":11132,"children":11133},{},[11134,11139,11150],{"type":43,"tag":68,"props":11135,"children":11136},{},[11137],{"type":48,"value":11138},"Check featureFlags object on posthog",{"type":43,"tag":68,"props":11140,"children":11141},{},[11142,11143,11148],{"type":48,"value":3923},{"type":43,"tag":100,"props":11144,"children":11146},{"className":11145},[],[11147],{"type":48,"value":3832},{"type":48,"value":11149}," network request",{"type":43,"tag":68,"props":11151,"children":11152},{},[11153],{"type":48,"value":11154},"List all flags and their values",{"type":43,"tag":332,"props":11156,"children":11158},{"id":11157},"are-there-any-issues-with-the-implementation",[11159],{"type":48,"value":11160},"\"Are there any issues with the implementation?\"",{"type":43,"tag":51,"props":11162,"children":11163},{},[11164],{"type":48,"value":11165},"Run the diagnostic checks and report findings.",{"type":43,"tag":332,"props":11167,"children":11169},{"id":11168},"is-this-using-the-eu-or-us-cloud",[11170],{"type":48,"value":11171},"\"Is this using the EU or US cloud?\"",{"type":43,"tag":51,"props":11173,"children":11174},{},[11175],{"type":48,"value":11176},"Check the api_host configuration:",{"type":43,"tag":230,"props":11178,"children":11179},{},[11180,11190,11200,11211],{"type":43,"tag":68,"props":11181,"children":11182},{},[11183,11188],{"type":43,"tag":100,"props":11184,"children":11186},{"className":11185},[],[11187],{"type":48,"value":3705},{"type":48,"value":11189}," = US Cloud",{"type":43,"tag":68,"props":11191,"children":11192},{},[11193,11198],{"type":43,"tag":100,"props":11194,"children":11196},{"className":11195},[],[11197],{"type":48,"value":3713},{"type":48,"value":11199}," = EU Cloud",{"type":43,"tag":68,"props":11201,"children":11202},{},[11203,11209],{"type":43,"tag":100,"props":11204,"children":11206},{"className":11205},[],[11207],{"type":48,"value":11208},"app.posthog.com",{"type":48,"value":11210}," = Legacy (defaults to US)",{"type":43,"tag":68,"props":11212,"children":11213},{},[11214],{"type":48,"value":11215},"Custom domain = Self-hosted or proxy",{"type":43,"tag":57,"props":11217,"children":11219},{"id":11218},"example-conversation",[11220],{"type":48,"value":11221},"Example Conversation",{"type":43,"tag":51,"props":11223,"children":11224},{},[11225,11230,11232,11240],{"type":43,"tag":72,"props":11226,"children":11227},{},[11228],{"type":48,"value":11229},"User:",{"type":48,"value":11231}," \"How is PostHog implemented on ",{"type":43,"tag":11233,"props":11234,"children":11238},"a",{"href":11235,"rel":11236},"https:\u002F\u002Fexample.com",[11237],"nofollow",[11239],{"type":48,"value":11235},{"type":48,"value":11241},"?\"",{"type":43,"tag":51,"props":11243,"children":11244},{},[11245,11250],{"type":43,"tag":72,"props":11246,"children":11247},{},[11248],{"type":48,"value":11249},"Claude:",{"type":48,"value":11251}," \"I'll navigate to example.com with debug mode enabled and inspect the PostHog implementation.\"",{"type":43,"tag":51,"props":11253,"children":11254},{},[11255,11265,11270,11275],{"type":43,"tag":674,"props":11256,"children":11257},{},[11258,11260],{"type":48,"value":11259},"Navigates to ",{"type":43,"tag":11233,"props":11261,"children":11263},{"href":509,"rel":11262},[11237],[11264],{"type":48,"value":509},{"type":43,"tag":674,"props":11266,"children":11267},{},[11268],{"type":48,"value":11269},"Runs JavaScript checks",{"type":43,"tag":674,"props":11271,"children":11272},{},[11273],{"type":48,"value":11274},"Checks console for PostHog debug messages",{"type":43,"tag":674,"props":11276,"children":11277},{},[11278],{"type":48,"value":11279},"Analyzes network requests",{"type":43,"tag":51,"props":11281,"children":11282},{},[11283],{"type":43,"tag":72,"props":11284,"children":11285},{},[11286],{"type":48,"value":11249},{"type":43,"tag":286,"props":11288,"children":11291},{"className":11289,"code":11290,"language":48},[289],"## PostHog Implementation Summary\n\n### Status\n✅ Installed\n\n### Implementation Type\nGlobal window.posthog\n\n### Configuration\n- **Version:** 1.96.1\n- **API Host:** https:\u002F\u002Fus.i.posthog.com (US Cloud)\n- **Project Token:** phc_abc123def456ghi789jkl012mno345\n- **Persistence:** localStorage+cookie\n\n### Features (Module Loaded → Feature Enabled)\n| Feature | Module Loaded | Enabled |\n|---------|---------------|---------|\n| Autocapture | ✅ | ✅ |\n| Session Recording | ✅ | ✅ |\n| Surveys | ✅ | ❌ |\n| Heatmaps | ❌ | ❌ |\n| Feature Flags | ✅ | ✅ |\n| Web Vitals | ✅ | ✅ |\n\n### Identifiers\n- **Distinct ID:** 018d4f2a-1234-7abc-def0-123456789abc\n- **Session ID:** 018d4f2a-5678-7xyz-abc0-987654321xyz\n\n### Feature Flags\n- `new-checkout-flow` ✅\n- `beta-features` ❌\n\n### Network Activity\n- Events endpoint: ✅\n- Session recording: ✅\n- Decide\u002Fflags endpoint: ✅\n- Surveys endpoint: ✅\n\n### Issues Found\n✅ None detected\n\n### Script Loading\n- **Source:** CDN (us-assets.i.posthog.com)\n- **Loading:** Async\n\n### Other Analytics Tools Detected\n- Google Tag Manager\n- Google Analytics\n- HubSpot\n\n### Other External Scripts\n- cdn.example-vendor.com\n",[11292],{"type":43,"tag":100,"props":11293,"children":11294},{"__ignoreMap":294},[11295],{"type":48,"value":11290},{"type":43,"tag":11297,"props":11298,"children":11299},"hr",{},[],{"type":43,"tag":51,"props":11301,"children":11302},{},[11303],{"type":43,"tag":72,"props":11304,"children":11305},{},[11306],{"type":48,"value":11307},"Example 2: Authenticated page with custom proxy",{"type":43,"tag":51,"props":11309,"children":11310},{},[11311,11315,11317,11323],{"type":43,"tag":72,"props":11312,"children":11313},{},[11314],{"type":48,"value":11229},{"type":48,"value":11316}," \"Check PostHog on ",{"type":43,"tag":11233,"props":11318,"children":11321},{"href":11319,"rel":11320},"https:\u002F\u002Fapp.example.com\u002Fdashboard",[11237],[11322],{"type":48,"value":11319},{"type":48,"value":11324},"\"",{"type":43,"tag":51,"props":11326,"children":11327},{},[11328,11332],{"type":43,"tag":72,"props":11329,"children":11330},{},[11331],{"type":48,"value":11249},{"type":48,"value":11333}," \"I'll navigate to that page with debug mode enabled.\"",{"type":43,"tag":51,"props":11335,"children":11336},{},[11337,11347],{"type":43,"tag":674,"props":11338,"children":11339},{},[11340,11341],{"type":48,"value":11259},{"type":43,"tag":11233,"props":11342,"children":11345},{"href":11343,"rel":11344},"https:\u002F\u002Fapp.example.com\u002Fdashboard?__posthog_debug=true",[11237],[11346],{"type":48,"value":11343},{"type":43,"tag":674,"props":11348,"children":11349},{},[11350],{"type":48,"value":11351},"Takes snapshot, sees login page",{"type":43,"tag":51,"props":11353,"children":11354},{},[11355,11359],{"type":43,"tag":72,"props":11356,"children":11357},{},[11358],{"type":48,"value":11249},{"type":48,"value":11360}," \"I've opened the page but it requires login. Please log in using the Chrome browser I just opened. Let me know when you're on the dashboard.\"",{"type":43,"tag":51,"props":11362,"children":11363},{},[11364,11368],{"type":43,"tag":72,"props":11365,"children":11366},{},[11367],{"type":48,"value":11229},{"type":48,"value":11369}," \"I'm logged in\"",{"type":43,"tag":51,"props":11371,"children":11372},{},[11373,11377,11379],{"type":43,"tag":72,"props":11374,"children":11375},{},[11376],{"type":48,"value":11249},{"type":48,"value":11378}," ",{"type":43,"tag":674,"props":11380,"children":11381},{},[11382],{"type":48,"value":11383},"Takes new snapshot, verifies authenticated, runs inspection",{"type":43,"tag":286,"props":11385,"children":11388},{"className":11386,"code":11387,"language":48},[289],"## PostHog Implementation Summary\n\n### Status\n✅ Installed (bundled)\n\n### Implementation Type\nBundled (not exposed globally) via custom proxy\n\n### Configuration\n- **Version:** 1.257.2\n- **API Host:** ph.example.com (Custom proxy)\n- **Project Token:** phc_abc123def456ghi789jkl012mno345\n- **Persistence:** sessionStorage\n\n### Features (Module Loaded → Feature Enabled)\n| Feature | Module Loaded | Enabled |\n|---------|---------------|---------|\n| Autocapture | ✅ | ❌ |\n| Session Recording | ❌ | ❌ |\n| Surveys | ✅ | ❌ |\n| Heatmaps | ❌ | ❌ |\n| Feature Flags | ✅ | ✅ |\n| Web Vitals | ✅ | ❌ |\n\n### Identifiers\n- **Distinct ID:** (not accessible - bundled)\n- **Session ID:** (not accessible - bundled)\n\n### Network Activity\n- Events endpoint: ✅\n- Session recording: ❌\n- Decide\u002Fflags endpoint: ✅\n- Surveys endpoint: ✅ (module loaded, feature disabled)\n\n### Issues Found\n✅ None detected\n\n### Script Loading\n- **Source:** Custom proxy (ph.example.com)\n- **Loading:** Bundled in app\n",[11389],{"type":43,"tag":100,"props":11390,"children":11391},{"__ignoreMap":294},[11392],{"type":48,"value":11387},{"type":43,"tag":11394,"props":11395,"children":11396},"style",{},[11397],{"type":48,"value":11398},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":11400,"total":11565},[11401,11417,11429,11442,11455,11468,11484,11501,11513,11527,11537,11555],{"slug":11402,"name":11402,"fn":11403,"description":11404,"org":11405,"tags":11406,"stars":11414,"repoUrl":11415,"updatedAt":11416},"analyzing-expensive-users","analyze expensive users in AI observability","Analyze the most expensive users in AI observability and explain why they cost so much. Use when the user asks about top spenders, expensive users, per-user LLM cost, user-level cost drivers, or patterns behind high AI observability spend.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11407,11409,11412,11413],{"name":11408,"slug":7478,"type":15},"Analytics",{"name":11410,"slug":11411,"type":15},"Cost Optimization","cost-optimization",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},35568,"https:\u002F\u002Fgithub.com\u002FPostHog\u002Fposthog","2026-07-28T05:34:11.117757",{"slug":11418,"name":11418,"fn":11419,"description":11420,"org":11421,"tags":11422,"stars":11414,"repoUrl":11415,"updatedAt":11428},"auditing-endpoints","audit PostHog project endpoints","Audit every endpoint in a PostHog project for staleness, failed materialisations, and unused materialised versions. Use when the user asks \"what endpoints can I clean up?\", \"are any of my endpoints broken?\", \"which materialised versions are still being called?\", or wants a one-shot cleanup pass over the Endpoints product. Produces a prioritised report grouped by issue type, with recommended actions but does not modify anything without explicit confirmation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11423,11424,11427],{"name":11408,"slug":7478,"type":15},{"name":11425,"slug":11426,"type":15},"Audit","audit",{"name":9,"slug":8,"type":15},"2026-06-08T08:08:33.693989",{"slug":11430,"name":11430,"fn":11431,"description":11432,"org":11433,"tags":11434,"stars":11414,"repoUrl":11415,"updatedAt":11441},"auditing-warehouse-source-health","audit PostHog data warehouse source health","Audit the health of a PostHog project's data warehouse sources and syncs — find every broken or degraded source connection, sync schema, and webhook channel. Use when the user asks \"why are my imports failing?\", \"what's broken with my sources?\", \"why is my warehouse data stale?\", or wants a one-shot triage of source\u002Fsync health before deciding where to dig in. Produces a prioritized report grouped by severity, with recommended next steps. For materialized-view health use `auditing-warehouse-view-health`; for a single failing sync use `diagnosing-failed-warehouse-syncs`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11435,11436,11439,11440],{"name":11425,"slug":11426,"type":15},{"name":11437,"slug":11438,"type":15},"Data Warehouse","data-warehouse",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-06-18T08:22:57.67984",{"slug":11443,"name":11443,"fn":11444,"description":11445,"org":11446,"tags":11447,"stars":11414,"repoUrl":11415,"updatedAt":11454},"auditing-warehouse-view-health","audit PostHog materialized view health","Audit the health of a PostHog project's materialized views (saved queries) — find every failed materialization and flag unused or stale materialized views that cost storage and compute. Use when the user asks \"which of my views are broken?\", \"why is this materialized view failing?\", \"are any of my views wasting compute?\", or wants a one-shot triage of view health. For source\u002Fsync health use `auditing-warehouse-source-health`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11448,11449,11450,11453],{"name":11425,"slug":11426,"type":15},{"name":11437,"slug":11438,"type":15},{"name":11451,"slug":11452,"type":15},"Performance","performance",{"name":9,"slug":8,"type":15},"2026-06-18T08:25:10.936787",{"slug":11456,"name":11456,"fn":11457,"description":11458,"org":11459,"tags":11460,"stars":11414,"repoUrl":11415,"updatedAt":11467},"authoring-error-tracking-alerts","author PostHog error tracking alerts","Author error tracking alerts that fire when an issue is created, reopened, or starts spiking. Use when the user asks to set up error notifications, route exceptions to Slack\u002Fwebhook\u002FLinear, or evaluate which error events are worth alerting on. Covers trigger-event selection, integration choice, dedup against existing alerts, and shipping with the canonical message body shape.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11461,11464,11465,11466],{"name":11462,"slug":11463,"type":15},"Alerting","alerting",{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-06-18T08:24:40.318583",{"slug":11469,"name":11469,"fn":11470,"description":11471,"org":11472,"tags":11473,"stars":11414,"repoUrl":11415,"updatedAt":11483},"authoring-log-alerts","author log alerts in PostHog","Author useful, low-noise log alerts on services in a PostHog project. Use when the user asks to set up alerts for their logs, suggest alerts they should add, or evaluate whether a service is worth monitoring. Covers service triage, baseline characterisation, threshold drafting, back-testing via simulate, and shipping with a notification destination.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11474,11475,11478,11479,11482],{"name":11408,"slug":7478,"type":15},{"name":11476,"slug":11477,"type":15},"Monitoring","monitoring",{"name":13,"slug":14,"type":15},{"name":11480,"slug":11481,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-18T05:10:54.430898",{"slug":11485,"name":11485,"fn":11486,"description":11487,"org":11488,"tags":11489,"stars":11414,"repoUrl":11415,"updatedAt":11500},"building-workflows","build and edit PostHog workflows","Build, edit, test, enable, and monitor PostHog workflows over MCP. Author the action\u002Fedge graph so it runs and opens cleanly in the visual editor, then change drafts surgically with patch operations. Use when asked to build, set up, automate, change, fix, or debug a workflow, campaign, broadcast, drip sequence, or event-triggered automation in the workflows product.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11490,11493,11496,11497],{"name":11491,"slug":11492,"type":15},"Automation","automation",{"name":11494,"slug":11495,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},{"name":11498,"slug":11499,"type":15},"Workflow Automation","workflow-automation","2026-07-28T05:34:12.167015",{"slug":11502,"name":11502,"fn":11503,"description":11504,"org":11505,"tags":11506,"stars":11414,"repoUrl":11415,"updatedAt":11512},"check-posthog-loading","inspect PostHog SDK loading across URLs","Inspect how the PostHog JavaScript SDK is loaded across a list of URLs. Use to confirm consistent installation across pages, find pages missing the snippet, detect mismatched API keys or hosts between pages, and verify the load method (head snippet vs deferred vs array.js).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11507,11508,11509,11510,11511],{"name":11408,"slug":7478,"type":15},{"name":24,"slug":25,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-05-07T05:56:19.828048",{"slug":11514,"name":11514,"fn":11515,"description":11516,"org":11517,"tags":11518,"stars":11414,"repoUrl":11415,"updatedAt":11526},"consuming-endpoints-from-client-code","integrate PostHog endpoints into client applications","Wire a PostHog endpoint into a client app or SDK. Covers fetching the OpenAPI spec, generating a typed client with openapi-generator or @hey-api\u002Fopenapi-ts, sending the right auth header, shaping the variables payload (HogQL code_name vs insight breakdown property), handling rate-limit and materialised-endpoint error responses. Use when the user says \"how do I call my endpoint\", \"generate a client for this\", or \"what auth header do I use\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11519,11522,11523,11524],{"name":11520,"slug":11521,"type":15},"API Development","api-development",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":11525,"slug":7305,"type":15},"SDK","2026-06-08T08:08:34.929454",{"slug":11528,"name":11528,"fn":11529,"description":11530,"org":11531,"tags":11532,"stars":11414,"repoUrl":11415,"updatedAt":11536},"copying-endpoints-across-projects","copy PostHog endpoints across projects","Copy a PostHog endpoint (a saved HogQL\u002Finsight query exposed as an API route) to another project in the same organization, or duplicate it under a new name in the same project. Use when the user wants to duplicate an endpoint, promote an endpoint from staging to production, replicate an endpoint's query\u002Fvariables\u002Ffreshness config in another workspace, or clone an endpoint to iterate on it. Unlike feature flags and experiments, endpoints have NO native cross-project copy tool — this skill covers the read-then-recreate flow (endpoint-get then endpoint-create), the active-project switching it requires, name-collision checks, and the safe defaults (land unmaterialised in the target, verify with endpoint-run). Does not cover editing endpoint versions (see managing-endpoint-versions) or authoring a brand-new endpoint from scratch (see creating-an-endpoint).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11533,11534,11535],{"name":11520,"slug":11521,"type":15},{"name":11480,"slug":11481,"type":15},{"name":9,"slug":8,"type":15},"2026-07-15T05:29:58.442727",{"slug":11538,"name":11538,"fn":11539,"description":11540,"org":11541,"tags":11542,"stars":11414,"repoUrl":11415,"updatedAt":11554},"creating-ai-subscription","schedule recurring AI-generated PostHog reports","Create a recurring AI-generated PostHog report — schedule a free-text prompt to run on a cron, with the LLM-synthesized markdown delivered to email or Slack on each tick. Use when the user wants a recurring AI summary of X on any cadence (daily, weekly, monthly, yearly) rather than a one-off report. (To attach an AI summary to an existing insight\u002Fdashboard subscription instead of a free-text prompt, see `managing-subscriptions` and its `summary_enabled` option.)\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11543,11544,11547,11548,11551],{"name":11491,"slug":11492,"type":15},{"name":11545,"slug":11546,"type":15},"Email","email",{"name":9,"slug":8,"type":15},{"name":11549,"slug":11550,"type":15},"Reporting","reporting",{"name":11552,"slug":11553,"type":15},"Slack","slack","2026-06-09T07:32:27.935712",{"slug":11556,"name":11556,"fn":11557,"description":11558,"org":11559,"tags":11560,"stars":11414,"repoUrl":11415,"updatedAt":11564},"creating-an-endpoint","create PostHog API endpoints","Create a PostHog endpoint with the right shape on the first try — covers query kind choice, name conventions, what to expose as variables (HogQL code_name vs insight breakdown), data_freshness_seconds, and whether to materialise on day one. Use when the user says \"create an endpoint\", \"expose this query as an API\", \"turn this insight into an endpoint\", or asks for help structuring a new endpoint. Steers away from common mistakes: materialising a query with cohort breakdowns or compare mode, inline-only variables on a materialised endpoint, unbounded date ranges, ambiguous names.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11561,11562,11563],{"name":11408,"slug":7478,"type":15},{"name":11520,"slug":11521,"type":15},{"name":9,"slug":8,"type":15},"2026-06-08T08:08:29.624498",231,{"items":11567,"total":10852},[11568,11585,11601,11615,11631,11643,11654],{"slug":11569,"name":11569,"fn":11570,"description":11571,"org":11572,"tags":11573,"stars":26,"repoUrl":27,"updatedAt":11584},"account-handover","draft sales account handover notes","Draft structured handover notes for transitioning a PostHog account from one TAM or CSM to another. Use this skill when a TAM needs to hand over an account, prepare a transition briefing, write handover notes, create an account summary for a new owner, or any request involving account transitions between TAMs or CSMs. Triggers on \"hand over this account\", \"transition account to\", \"draft handover notes\", \"account briefing for new TAM\", \"prepare account transition\", or when a TAM names an account and says they're leaving or reassigning it.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11574,11577,11580,11581],{"name":11575,"slug":11576,"type":15},"Communications","communications",{"name":11578,"slug":11579,"type":15},"CRM","crm",{"name":9,"slug":8,"type":15},{"name":11582,"slug":11583,"type":15},"Sales","sales","2026-04-16T05:13:00.172732",{"slug":11586,"name":11586,"fn":11587,"description":11588,"org":11589,"tags":11590,"stars":26,"repoUrl":27,"updatedAt":11600},"auditing-warehouse-data-health","audit PostHog data warehouse health","Audit the health of a PostHog project's data warehouse — find every broken or degraded pipeline item across sources, sync schemas, materialized views, batch exports, and transformations. Use when the user asks \"what's broken in my warehouse?\", \"give me a health check\", \"audit my data pipeline\", \"why are some dashboards stale?\", or wants a one-shot triage summary before deciding where to spend time. Produces a prioritized report of issues grouped by severity and type, with recommended next steps.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11591,11592,11595,11598,11599],{"name":11425,"slug":11426,"type":15},{"name":11593,"slug":11594,"type":15},"Data Engineering","data-engineering",{"name":11596,"slug":11597,"type":15},"Data Quality","data-quality",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-06-21T08:19:05.85849",{"slug":11602,"name":11602,"fn":11603,"description":11604,"org":11605,"tags":11606,"stars":26,"repoUrl":27,"updatedAt":11614},"copying-flags-across-projects","copy feature flags across PostHog projects","Copy a feature flag from one PostHog project to one or more target projects in the same organization. Use when the user wants to duplicate a flag, promote a flag from staging to production, sync flags across projects, or replicate a flag configuration in a different workspace. Covers cohort remapping, scheduled-change handling, encrypted payloads, and the safe defaults (disabled in target, no scheduled changes).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11607,11610,11613],{"name":11608,"slug":11609,"type":15},"Deployment","deployment",{"name":11611,"slug":11612,"type":15},"Feature Flags","feature-flags",{"name":9,"slug":8,"type":15},"2026-05-04T05:56:44.484909",{"slug":11616,"name":11616,"fn":11617,"description":11618,"org":11619,"tags":11620,"stars":26,"repoUrl":27,"updatedAt":11630},"diagnosing-experiment-results","diagnose PostHog experiment results and anomalies","Diagnoses bias, anomalies, and strange-looking results on a specific PostHog experiment. Covers empty \u002F 0-exposure experiments, sample ratio mismatch, identity fragmentation, multi-variant exposure, uneven-split exclusion bias, significance traps (peeking, A\u002FA, Bayesian vs Frequentist), PostHog-vs-SQL discrepancies, and surprises after mid-run edits. Symptom-driven dispatch to the right diagnostic.\nTRIGGER when: user asks 'is my experiment biased?' or 'why 0 exposures?', references the bias banner, says a variant looks strange \u002F wrong \u002F off, sees significance flipping, notices PostHog numbers disagreeing with their SQL, sees an A\u002FA test showing significance, or reports surprises after mid-run edits.\nDO NOT TRIGGER when: creating a new experiment (use creating-experiments), only configuring rollout (use configuring-experiment-rollout) or metrics (use configuring-experiment-analytics), or only asking lifecycle questions (use managing-experiment-lifecycle).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11621,11624,11625,11628,11629],{"name":11622,"slug":11623,"type":15},"A\u002FB Testing","a-b-testing",{"name":11408,"slug":7478,"type":15},{"name":11626,"slug":11627,"type":15},"Data Analysis","data-analysis",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},"2026-05-22T06:59:58.103867",{"slug":11632,"name":11632,"fn":11633,"description":11634,"org":11635,"tags":11636,"stars":26,"repoUrl":27,"updatedAt":11642},"diagnosing-missing-recordings","diagnose missing PostHog session recordings","Diagnoses why a session recording is missing or was not captured. Use when a user asks why a session has no replay, why recordings aren't appearing, or wants to troubleshoot session replay capture issues for a specific session ID or across their project. Covers SDK diagnostic signals, project settings, sampling, triggers, ad blockers, and quota\u002Fbilling scenarios.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11637,11638,11639,11640,11641],{"name":11408,"slug":7478,"type":15},{"name":24,"slug":25,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-04-22T05:06:51.989772",{"slug":11644,"name":11644,"fn":11645,"description":11646,"org":11647,"tags":11648,"stars":26,"repoUrl":27,"updatedAt":11653},"diagnosing-sdk-health","diagnose PostHog SDK health","Diagnoses the health of a project's PostHog SDK integrations — which SDKs are out of date and how to fix them. Use when a user asks about PostHog SDK versions, outdated SDKs, upgrade recommendations, \"SDK health\", \"SDK doctor\" (the former name), or when events or features seem off and it might be due to an old SDK.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11649,11650,11651,11652],{"name":11408,"slug":7478,"type":15},{"name":24,"slug":25,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-04-27T05:46:14.554016",{"slug":11655,"name":11655,"fn":11656,"description":11657,"org":11658,"tags":11659,"stars":26,"repoUrl":27,"updatedAt":11669},"error-tracking-android","track Android errors with PostHog","PostHog error tracking for Android",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[11660,11663,11664,11667,11668],{"name":11661,"slug":11662,"type":15},"Android","android",{"name":24,"slug":25,"type":15},{"name":11665,"slug":11666,"type":15},"Mobile","mobile",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:46:26.982494"]