From 28ef0e9d3f5dd0b943335d8c74494c4ad3cd1f4c Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Tue, 23 Jun 2026 21:59:24 -0400 Subject: [PATCH] feat(graphify): add full-project knowledge graph + Claude Code hooks Runs graphify over src/ + documentation/ to build a persistent knowledge graph (2,234 nodes, 4,651 edges, 217 communities) used by Claude for codebase queries. Includes post-commit hook for incremental updates and PreToolUse hooks enforcing query-before-grep in Claude Code sessions. - graphify-out/: graph.json, GRAPH_REPORT.md, labels, manifest, root ptr - .claude/settings.json: PreToolUse hooks (graphify query enforcement) - CLAUDE.md: graphify section added by `graphify claude install` - .gitignore: exclude cache/, graph.html, settings.local.json - vite.config.ts: exclude graphify-out/ from HMR watch Co-Authored-By: Claude Sonnet 4.6 --- .claude/settings.json | 24 + .gitignore | 10 +- CLAUDE.md | 10 + graphify-out/.graphify_labels.json | 1 + graphify-out/.graphify_manifest.json | 229 + graphify-out/.graphify_python | 1 + graphify-out/.graphify_root | 1 + graphify-out/GRAPH_REPORT.md | 787 + graphify-out/cost.json | 12 + graphify-out/graph.json | 69497 +++++++++++++++++++++++++ graphify-out/manifest.json | 2257 + vite.config.ts | 2 +- 12 files changed, 72829 insertions(+), 2 deletions(-) create mode 100644 .claude/settings.json create mode 100644 graphify-out/.graphify_labels.json create mode 100644 graphify-out/.graphify_manifest.json create mode 100644 graphify-out/.graphify_python create mode 100644 graphify-out/.graphify_root create mode 100644 graphify-out/GRAPH_REPORT.md create mode 100644 graphify-out/cost.json create mode 100644 graphify-out/graph.json create mode 100644 graphify-out/manifest.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 00000000..293d21a9 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,24 @@ +{ + "hooks": { + "PreToolUse": [ + { + "matcher": "Bash", + "hooks": [ + { + "type": "command", + "command": "CMD=$(python3 -c \"import json,sys; d=json.load(sys.stdin); print(d.get('tool_input',d).get('command',''))\" 2>/dev/null || true); case \"$CMD\" in *grep*|*rg\\ *|*ripgrep*|*find\\ *|*fd\\ *|*ack\\ *|*ag\\ *) [ -f graphify-out/graph.json ] && echo '{\"hookSpecificOutput\":{\"hookEventName\":\"PreToolUse\",\"additionalContext\":\"MANDATORY: graphify-out/graph.json exists. You MUST run `graphify query \\\"\\\"` before grepping raw files. Only grep after graphify has oriented you, or to modify/debug specific lines.\"}}' || true ;; esac" + } + ] + }, + { + "matcher": "Read|Glob", + "hooks": [ + { + "type": "command", + "command": "HIT=$(python3 -c \"import json,sys;d=json.load(sys.stdin);t=d.get('tool_input',d);s=(str(t.get('file_path') or '')+' '+str(t.get('pattern') or '')+' '+str(t.get('path') or '')).lower().replace(chr(92),'/');exts=('.py','.js','.ts','.tsx','.jsx','.go','.rs','.java','.rb','.c','.h','.cpp','.hpp','.cc','.cs','.kt','.swift','.php','.scala','.lua','.sh','.md','.rst','.txt','.mdx');sys.stdout.write('1' if 'graphify-out/' not in s and any(e in s for e in exts) else '')\" 2>/dev/null || true); if [ \"$HIT\" = 1 ] && [ -f graphify-out/graph.json ]; then echo '{\"hookSpecificOutput\":{\"hookEventName\":\"PreToolUse\",\"additionalContext\":\"MANDATORY: graphify-out/graph.json exists. You MUST run graphify before reading source files. Use: `graphify query \\\"\\\"` (scoped subgraph), `graphify explain \\\"\\\"`, or `graphify path \\\"\\\" \\\"\\\"`. Only read raw files after graphify has oriented you, or to modify/debug specific lines. This rule applies to subagents too \u2014 include it in every subagent prompt involving code exploration.\"}}'; fi || true" + } + ] + } + ] + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 03414e92..18bd41d3 100644 --- a/.gitignore +++ b/.gitignore @@ -33,4 +33,12 @@ tmp/ temp/ *.kate-swp test_results -test-results \ No newline at end of file +test-results + +# graphify knowledge graph — exclude derived/cache files +graphify-out/cache/ +graphify-out/graph.html +src/graphify-out/ + +# Claude Code local settings (machine-specific) +.claude/settings.local.json \ No newline at end of file diff --git a/CLAUDE.md b/CLAUDE.md index 240b61be..11dca7c9 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -117,3 +117,13 @@ src/routes/ | `documentation/GEMINI__Svelte_and_Me.md` | Svelte 5 runes patterns | | `documentation/PROJECT__AE_Events_Launcher_Native_integration.md` | Electron/Launcher | | `documentation/PROJECT__AE_Events_Badges_Review_Print.md` | Badges — kiosk editing (Task 4.0 open) | + +## graphify + +This project has a knowledge graph at graphify-out/ with god nodes, community structure, and cross-file relationships. + +Rules: +- For codebase questions, first run `graphify query ""` when graphify-out/graph.json exists. Use `graphify path "" ""` for relationships and `graphify explain ""` for focused concepts. These return a scoped subgraph, usually much smaller than GRAPH_REPORT.md or raw grep output. +- If graphify-out/wiki/index.md exists, use it for broad navigation instead of raw source browsing. +- Read graphify-out/GRAPH_REPORT.md only for broad architecture review or when query/path/explain do not surface enough context. +- After modifying code, run `graphify update .` to keep the graph current (AST-only, no API cost). diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json new file mode 100644 index 00000000..f5c93e63 --- /dev/null +++ b/graphify-out/.graphify_labels.json @@ -0,0 +1 @@ +{"0": "Events Sessions & Devices", "1": "IDAA Archives Module", "2": "Shared UI Components", "3": "V3 API Client Layer", "4": "Exhibit Tracking CRUD", "5": "Completed Project Archive", "6": "Core Admin Pages", "7": "User & Core Functions", "8": "Dev Dependencies", "9": "Module README Docs", "10": "Module Function Facades", "11": "Dexie IDB & Journals Data", "12": "Launcher Config Components", "13": "Type Definitions & Tracks", "14": "Launcher App Profiles", "15": "Posts & BB CRUD", "16": "App Auth & Account", "17": "Hosted Files UI", "18": "Archives CRUD Layer", "19": "Archived Badges Project Docs", "20": "Utility Functions", "21": "Electron Native Bridge", "22": "Runtime Dependencies", "23": "Event Badges CRUD", "24": "Event Device CRUD", "25": "Badge Print & Search UI", "26": "Events Object CRUD", "27": "Svelte Icon Type Augments", "28": "Activity Log CRUD", "29": "File Management UI", "30": "Core Data Store & Lookups", "31": "Sponsorships CRUD", "32": "Site & Domain CRUD", "33": "Accounts & Config Editor", "34": "Events Dexie Schema", "35": "Journals State Stores", "36": "Leads Test Helpers", "37": "Build & Deploy Scripts", "38": "Event Person & App Stores", "39": "Test IDB & API Helpers", "40": "Journals Full Module", "41": "Core Dexie DB Schema", "42": "Badge Templates Module Docs", "43": "Journal Decryption", "44": "Pres Mgmt Docs & Mistakes", "45": "Event Presentation CRUD", "46": "App Analytics & PWA", "47": "Historical Project Docs", "48": "Test Env & Helpers", "49": "Event Presenter CRUD", "50": "Event Session CRUD", "51": "IDAA BB Post Helpers", "52": "ShadCN Component Config", "53": "IDAA BB State & View", "54": "Data Stores Admin", "55": "Package Overrides", "56": "TypeScript Config", "57": "Account CRUD", "58": "Event File CRUD", "59": "Exhibit CRUD", "60": "Journal Export & Crypto", "61": "IDAA Client Architecture Docs", "62": "Electron & Leads Module Docs", "63": "Leads State Stores", "64": "IDB Versioning & Bootstrap", "65": "IDAA Novi Auth Tests", "66": "Address CRUD", "67": "Contact CRUD", "68": "Person CRUD", "69": "Architecture & Dev SOP Docs", "70": "Leads & Badges Module Docs", "71": "Journals Config Docs", "72": "Leads Licensed Sign-in Tests", "73": "Journals Function Facade", "74": "SWR & Svelte5 Pattern Docs", "75": "V3 API Guide Docs", "76": "Access Control Archive Docs", "77": "V3 CRUD Upgrade Archive", "78": "Contacts Admin Pages", "79": "Launcher Native Docs", "80": "Object Flags UI", "81": "Package Metadata", "82": "PWA Manifest", "83": "Journal Search Helpers", "84": "Encryption Utilities", "85": "IDAA Privacy & Permissions Docs", "86": "Launcher Config Menu Docs", "87": "Active Tasks & SW Fix", "88": "PWA Install Prompt", "89": "IDAA Recovery Meeting Tests", "90": "Journal Content Parsers", "91": "Onsite Badge Printing Guide", "92": "IDAA Module Security Docs", "93": "AI Tools Component", "94": "Badge Settings Config", "95": "IDAA Location Stores", "96": "V3 API Latency Tests", "97": "File Utility Functions", "98": "Permission Check Utils", "99": "UI Style Guide Docs", "100": "Core Module Docs", "101": "Naming Convention Docs", "102": "Site Passcode Security Docs", "103": "CodeMirror Editor", "104": "Events Module Docs", "105": "Datetime Formatters", "106": "Leads v3 Archive Docs", "107": "Badge Calibration Assets", "108": "Recovery Meetings UX Proposals", "109": "FA to Lucide Migration", "110": "SvelteKit Type Declarations", "111": "Service Worker Cache", "112": "Badge Header SVG Assets", "113": "V3 Field Editor", "114": "Display Name Utils", "115": "Firefly Theme Archive", "116": "PostInstall Scripts", "117": "App Entry & PWA", "118": "Vite & Test Config", "119": "Journal Editor Helpers", "120": "Sponsorship Field Config", "121": "Sponsorship Module Docs", "122": "Form Data Extraction", "123": "IDAA Recovery Meetings Roadmap", "124": "IDAA Video Conferences Docs", "125": "Fit Text Action", "126": "CodeMirror Module Loader", "127": "Journals README Docs", "128": "Badge Calibration PNG", "129": "OSIT Brand Logo", "130": "Activity Log Page", "131": "Archive Content Field Config", "132": "Archive Field Config", "133": "Account Field Config", "134": "Activity Log Field Config", "135": "Address Field Config", "136": "Contact Field Config", "137": "Person Field Config", "138": "Site Domain Field Config", "139": "Site Field Config", "140": "User Field Config", "141": "Badge Template Config Type", "142": "Event Badge Field Config", "143": "Badge Template Field Config", "144": "Event Device Field Config", "145": "Event Field Config", "146": "Event File Field Config", "147": "Location Field Config", "148": "Presentation Field Config", "149": "Presenter Field Config", "150": "Session Field Config", "151": "Exhibit Field Config", "152": "Exhibit Tracking Field Config", "153": "Journal Field Config", "154": "Journal Entry Field Config", "155": "Post Comment Field Config", "156": "Post Field Config", "157": "CSS Classname Util", "158": "Docker CI BuildKit Archive", "159": "Archive Index & Policy", "160": "IDAA Archives Layout", "161": "Core Root Page", "162": "Data Stores Page", "163": "V3 Field Editor Docs", "164": "Events Index Layout", "165": "Files Index Page", "166": "Server Health Endpoint", "167": "HTML5 QR Code Lib", "168": "IDAA Jitsi Reports Page", "169": "Journal Entry List Wrapper", "170": "Journals Layout", "171": "OpenAI Dependency", "172": "Svelte Idle Lib", "173": "People Index Page", "174": "Playwright Config", "175": "Recovery Meetings Layout", "176": "Sites Index Page", "177": "Lucide Icon Declarations", "178": "Video Conferences Page", "179": "Svelte Config", "180": "Tailwind Config", "181": "Private Network Tests", "182": "File Download Progress", "183": "Object Fetch Progress", "184": "Blob Upload Progress", "185": "Object Post Progress", "186": "Archives Function Facade", "187": "Badge Query Function", "188": "File Query Function", "189": "Presentation Query", "190": "Presenter Query", "191": "Event List Query", "192": "Session Query", "193": "Jitsi Report Loader", "194": "Source Layout Doc", "195": "IDAA Module Doc Node", "196": "Journals Module Doc Node", "197": "Badges Module Doc Node", "198": "Docker CI Cache Doc", "199": "ESLint Config", "200": "Event Module V3 Doc", "201": "Fix SW Redirect Page", "202": "Lucide Svelte Module", "203": "Leads Layout", "204": "Pres Mgmt Layout Component", "205": "Pres Mgmt Page Load", "206": "Badge Header Demo Branding", "207": "Badge Header Demo Image", "208": "Badge Demo OSIT Logo", "209": "Badge Header Hex Blue", "210": "App Favicon", "211": "Jitsi Reports Embed", "212": "Robots.txt", "213": "Skeleton UI Favicon", "214": "Stats Page", "215": "Svelte Core Module", "216": "Video Conferences Layout"} \ No newline at end of file diff --git a/graphify-out/.graphify_manifest.json b/graphify-out/.graphify_manifest.json new file mode 100644 index 00000000..1b189c41 --- /dev/null +++ b/graphify-out/.graphify_manifest.json @@ -0,0 +1,229 @@ +{ + "built": "2026-06-23", + "root": ".", + "directed": false, + "nodes": 2234, + "edges": 4651, + "communities": 217, + "community_labels": { + "0": "Events Sessions & Devices", + "1": "IDAA Archives Module", + "2": "Shared UI Components", + "3": "V3 API Client Layer", + "4": "Exhibit Tracking CRUD", + "5": "Completed Project Archive", + "6": "Core Admin Pages", + "7": "User & Core Functions", + "8": "Dev Dependencies", + "9": "Module README Docs", + "10": "Module Function Facades", + "11": "Dexie IDB & Journals Data", + "12": "Launcher Config Components", + "13": "Type Definitions & Tracks", + "14": "Launcher App Profiles", + "15": "Posts & BB CRUD", + "16": "App Auth & Account", + "17": "Hosted Files UI", + "18": "Archives CRUD Layer", + "19": "Archived Badges Project Docs", + "20": "Utility Functions", + "21": "Electron Native Bridge", + "22": "Runtime Dependencies", + "23": "Event Badges CRUD", + "24": "Event Device CRUD", + "25": "Badge Print & Search UI", + "26": "Events Object CRUD", + "27": "Svelte Icon Type Augments", + "28": "Activity Log CRUD", + "29": "File Management UI", + "30": "Core Data Store & Lookups", + "31": "Sponsorships CRUD", + "32": "Site & Domain CRUD", + "33": "Accounts & Config Editor", + "34": "Events Dexie Schema", + "35": "Journals State Stores", + "36": "Leads Test Helpers", + "37": "Build & Deploy Scripts", + "38": "Event Person & App Stores", + "39": "Test IDB & API Helpers", + "40": "Journals Full Module", + "41": "Core Dexie DB Schema", + "42": "Badge Templates Module Docs", + "43": "Journal Decryption", + "44": "Pres Mgmt Docs & Mistakes", + "45": "Event Presentation CRUD", + "46": "App Analytics & PWA", + "47": "Historical Project Docs", + "48": "Test Env & Helpers", + "49": "Event Presenter CRUD", + "50": "Event Session CRUD", + "51": "IDAA BB Post Helpers", + "52": "ShadCN Component Config", + "53": "IDAA BB State & View", + "54": "Data Stores Admin", + "55": "Package Overrides", + "56": "TypeScript Config", + "57": "Account CRUD", + "58": "Event File CRUD", + "59": "Exhibit CRUD", + "60": "Journal Export & Crypto", + "61": "IDAA Client Architecture Docs", + "62": "Electron & Leads Module Docs", + "63": "Leads State Stores", + "64": "IDB Versioning & Bootstrap", + "65": "IDAA Novi Auth Tests", + "66": "Address CRUD", + "67": "Contact CRUD", + "68": "Person CRUD", + "69": "Architecture & Dev SOP Docs", + "70": "Leads & Badges Module Docs", + "71": "Journals Config Docs", + "72": "Leads Licensed Sign-in Tests", + "73": "Journals Function Facade", + "74": "SWR & Svelte5 Pattern Docs", + "75": "V3 API Guide Docs", + "76": "Access Control Archive Docs", + "77": "V3 CRUD Upgrade Archive", + "78": "Contacts Admin Pages", + "79": "Launcher Native Docs", + "80": "Object Flags UI", + "81": "Package Metadata", + "82": "PWA Manifest", + "83": "Journal Search Helpers", + "84": "Encryption Utilities", + "85": "IDAA Privacy & Permissions Docs", + "86": "Launcher Config Menu Docs", + "87": "Active Tasks & SW Fix", + "88": "PWA Install Prompt", + "89": "IDAA Recovery Meeting Tests", + "90": "Journal Content Parsers", + "91": "Onsite Badge Printing Guide", + "92": "IDAA Module Security Docs", + "93": "AI Tools Component", + "94": "Badge Settings Config", + "95": "IDAA Location Stores", + "96": "V3 API Latency Tests", + "97": "File Utility Functions", + "98": "Permission Check Utils", + "99": "UI Style Guide Docs", + "100": "Core Module Docs", + "101": "Naming Convention Docs", + "102": "Site Passcode Security Docs", + "103": "CodeMirror Editor", + "104": "Events Module Docs", + "105": "Datetime Formatters", + "106": "Leads v3 Archive Docs", + "107": "Badge Calibration Assets", + "108": "Recovery Meetings UX Proposals", + "109": "FA to Lucide Migration", + "110": "SvelteKit Type Declarations", + "111": "Service Worker Cache", + "112": "Badge Header SVG Assets", + "113": "V3 Field Editor", + "114": "Display Name Utils", + "115": "Firefly Theme Archive", + "116": "PostInstall Scripts", + "117": "App Entry & PWA", + "118": "Vite & Test Config", + "119": "Journal Editor Helpers", + "120": "Sponsorship Field Config", + "121": "Sponsorship Module Docs", + "122": "Form Data Extraction", + "123": "IDAA Recovery Meetings Roadmap", + "124": "IDAA Video Conferences Docs", + "125": "Fit Text Action", + "126": "CodeMirror Module Loader", + "127": "Journals README Docs", + "128": "Badge Calibration PNG", + "129": "OSIT Brand Logo", + "130": "Activity Log Page", + "131": "Archive Content Field Config", + "132": "Archive Field Config", + "133": "Account Field Config", + "134": "Activity Log Field Config", + "135": "Address Field Config", + "136": "Contact Field Config", + "137": "Person Field Config", + "138": "Site Domain Field Config", + "139": "Site Field Config", + "140": "User Field Config", + "141": "Badge Template Config Type", + "142": "Event Badge Field Config", + "143": "Badge Template Field Config", + "144": "Event Device Field Config", + "145": "Event Field Config", + "146": "Event File Field Config", + "147": "Location Field Config", + "148": "Presentation Field Config", + "149": "Presenter Field Config", + "150": "Session Field Config", + "151": "Exhibit Field Config", + "152": "Exhibit Tracking Field Config", + "153": "Journal Field Config", + "154": "Journal Entry Field Config", + "155": "Post Comment Field Config", + "156": "Post Field Config", + "157": "CSS Classname Util", + "158": "Docker CI BuildKit Archive", + "159": "Archive Index & Policy", + "160": "IDAA Archives Layout", + "161": "Core Root Page", + "162": "Data Stores Page", + "163": "V3 Field Editor Docs", + "164": "Events Index Layout", + "165": "Files Index Page", + "166": "Server Health Endpoint", + "167": "HTML5 QR Code Lib", + "168": "IDAA Jitsi Reports Page", + "169": "Journal Entry List Wrapper", + "170": "Journals Layout", + "171": "OpenAI Dependency", + "172": "Svelte Idle Lib", + "173": "People Index Page", + "174": "Playwright Config", + "175": "Recovery Meetings Layout", + "176": "Sites Index Page", + "177": "Lucide Icon Declarations", + "178": "Video Conferences Page", + "179": "Svelte Config", + "180": "Tailwind Config", + "181": "Private Network Tests", + "182": "File Download Progress", + "183": "Object Fetch Progress", + "184": "Blob Upload Progress", + "185": "Object Post Progress", + "186": "Archives Function Facade", + "187": "Badge Query Function", + "188": "File Query Function", + "189": "Presentation Query", + "190": "Presenter Query", + "191": "Event List Query", + "192": "Session Query", + "193": "Jitsi Report Loader", + "194": "Source Layout Doc", + "195": "IDAA Module Doc Node", + "196": "Journals Module Doc Node", + "197": "Badges Module Doc Node", + "198": "Docker CI Cache Doc", + "199": "ESLint Config", + "200": "Event Module V3 Doc", + "201": "Fix SW Redirect Page", + "202": "Lucide Svelte Module", + "203": "Leads Layout", + "204": "Pres Mgmt Layout Component", + "205": "Pres Mgmt Page Load", + "206": "Badge Header Demo Branding", + "207": "Badge Header Demo Image", + "208": "Badge Demo OSIT Logo", + "209": "Badge Header Hex Blue", + "210": "App Favicon", + "211": "Jitsi Reports Embed", + "212": "Robots.txt", + "213": "Skeleton UI Favicon", + "214": "Stats Page", + "215": "Svelte Core Module", + "216": "Video Conferences Layout" + }, + "input_tokens": 41362, + "output_tokens": 6718 +} \ No newline at end of file diff --git a/graphify-out/.graphify_python b/graphify-out/.graphify_python new file mode 100644 index 00000000..efa54858 --- /dev/null +++ b/graphify-out/.graphify_python @@ -0,0 +1 @@ +/home/scott/.local/share/uv/tools/graphifyy/bin/python \ No newline at end of file diff --git a/graphify-out/.graphify_root b/graphify-out/.graphify_root new file mode 100644 index 00000000..5bde7e99 --- /dev/null +++ b/graphify-out/.graphify_root @@ -0,0 +1 @@ +/home/scott/OSIT_dev/aether_app_sveltekit diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md new file mode 100644 index 00000000..f94d8fd1 --- /dev/null +++ b/graphify-out/GRAPH_REPORT.md @@ -0,0 +1,787 @@ +# Graph Report - . (2026-06-23) + +## Corpus Check +- Large corpus: 580 files · ~505,679 words. Semantic extraction will be expensive (many Claude tokens). Consider running on a subfolder. + +## Summary +- 2234 nodes · 4651 edges · 217 communities (143 shown, 74 thin omitted) +- Extraction: 99% EXTRACTED · 1% INFERRED · 0% AMBIGUOUS · INFERRED: 64 edges (avg confidence: 0.87) +- Token cost: 41,362 input · 6,718 output + +## Community Hubs (Navigation) +- [[_COMMUNITY_Events Sessions & Devices|Events Sessions & Devices]] +- [[_COMMUNITY_IDAA Archives Module|IDAA Archives Module]] +- [[_COMMUNITY_Shared UI Components|Shared UI Components]] +- [[_COMMUNITY_V3 API Client Layer|V3 API Client Layer]] +- [[_COMMUNITY_Exhibit Tracking CRUD|Exhibit Tracking CRUD]] +- [[_COMMUNITY_Completed Project Archive|Completed Project Archive]] +- [[_COMMUNITY_Core Admin Pages|Core Admin Pages]] +- [[_COMMUNITY_User & Core Functions|User & Core Functions]] +- [[_COMMUNITY_Dev Dependencies|Dev Dependencies]] +- [[_COMMUNITY_Module README Docs|Module README Docs]] +- [[_COMMUNITY_Module Function Facades|Module Function Facades]] +- [[_COMMUNITY_Dexie IDB & Journals Data|Dexie IDB & Journals Data]] +- [[_COMMUNITY_Launcher Config Components|Launcher Config Components]] +- [[_COMMUNITY_Type Definitions & Tracks|Type Definitions & Tracks]] +- [[_COMMUNITY_Launcher App Profiles|Launcher App Profiles]] +- [[_COMMUNITY_Posts & BB CRUD|Posts & BB CRUD]] +- [[_COMMUNITY_App Auth & Account|App Auth & Account]] +- [[_COMMUNITY_Hosted Files UI|Hosted Files UI]] +- [[_COMMUNITY_Archives CRUD Layer|Archives CRUD Layer]] +- [[_COMMUNITY_Archived Badges Project Docs|Archived Badges Project Docs]] +- [[_COMMUNITY_Utility Functions|Utility Functions]] +- [[_COMMUNITY_Electron Native Bridge|Electron Native Bridge]] +- [[_COMMUNITY_Runtime Dependencies|Runtime Dependencies]] +- [[_COMMUNITY_Event Badges CRUD|Event Badges CRUD]] +- [[_COMMUNITY_Event Device CRUD|Event Device CRUD]] +- [[_COMMUNITY_Badge Print & Search UI|Badge Print & Search UI]] +- [[_COMMUNITY_Events Object CRUD|Events Object CRUD]] +- [[_COMMUNITY_Svelte Icon Type Augments|Svelte Icon Type Augments]] +- [[_COMMUNITY_Activity Log CRUD|Activity Log CRUD]] +- [[_COMMUNITY_File Management UI|File Management UI]] +- [[_COMMUNITY_Core Data Store & Lookups|Core Data Store & Lookups]] +- [[_COMMUNITY_Sponsorships CRUD|Sponsorships CRUD]] +- [[_COMMUNITY_Site & Domain CRUD|Site & Domain CRUD]] +- [[_COMMUNITY_Accounts & Config Editor|Accounts & Config Editor]] +- [[_COMMUNITY_Events Dexie Schema|Events Dexie Schema]] +- [[_COMMUNITY_Journals State Stores|Journals State Stores]] +- [[_COMMUNITY_Leads Test Helpers|Leads Test Helpers]] +- [[_COMMUNITY_Build & Deploy Scripts|Build & Deploy Scripts]] +- [[_COMMUNITY_Event Person & App Stores|Event Person & App Stores]] +- [[_COMMUNITY_Test IDB & API Helpers|Test IDB & API Helpers]] +- [[_COMMUNITY_Journals Full Module|Journals Full Module]] +- [[_COMMUNITY_Core Dexie DB Schema|Core Dexie DB Schema]] +- [[_COMMUNITY_Badge Templates Module Docs|Badge Templates Module Docs]] +- [[_COMMUNITY_Journal Decryption|Journal Decryption]] +- [[_COMMUNITY_Pres Mgmt Docs & Mistakes|Pres Mgmt Docs & Mistakes]] +- [[_COMMUNITY_Event Presentation CRUD|Event Presentation CRUD]] +- [[_COMMUNITY_App Analytics & PWA|App Analytics & PWA]] +- [[_COMMUNITY_Historical Project Docs|Historical Project Docs]] +- [[_COMMUNITY_Test Env & Helpers|Test Env & Helpers]] +- [[_COMMUNITY_Event Presenter CRUD|Event Presenter CRUD]] +- [[_COMMUNITY_Event Session CRUD|Event Session CRUD]] +- [[_COMMUNITY_IDAA BB Post Helpers|IDAA BB Post Helpers]] +- [[_COMMUNITY_ShadCN Component Config|ShadCN Component Config]] +- [[_COMMUNITY_IDAA BB State & View|IDAA BB State & View]] +- [[_COMMUNITY_Data Stores Admin|Data Stores Admin]] +- [[_COMMUNITY_Package Overrides|Package Overrides]] +- [[_COMMUNITY_TypeScript Config|TypeScript Config]] +- [[_COMMUNITY_Account CRUD|Account CRUD]] +- [[_COMMUNITY_Event File CRUD|Event File CRUD]] +- [[_COMMUNITY_Exhibit CRUD|Exhibit CRUD]] +- [[_COMMUNITY_Journal Export & Crypto|Journal Export & Crypto]] +- [[_COMMUNITY_IDAA Client Architecture Docs|IDAA Client Architecture Docs]] +- [[_COMMUNITY_Electron & Leads Module Docs|Electron & Leads Module Docs]] +- [[_COMMUNITY_Leads State Stores|Leads State Stores]] +- [[_COMMUNITY_IDB Versioning & Bootstrap|IDB Versioning & Bootstrap]] +- [[_COMMUNITY_IDAA Novi Auth Tests|IDAA Novi Auth Tests]] +- [[_COMMUNITY_Address CRUD|Address CRUD]] +- [[_COMMUNITY_Contact CRUD|Contact CRUD]] +- [[_COMMUNITY_Person CRUD|Person CRUD]] +- [[_COMMUNITY_Architecture & Dev SOP Docs|Architecture & Dev SOP Docs]] +- [[_COMMUNITY_Leads & Badges Module Docs|Leads & Badges Module Docs]] +- [[_COMMUNITY_Journals Config Docs|Journals Config Docs]] +- [[_COMMUNITY_Leads Licensed Sign-in Tests|Leads Licensed Sign-in Tests]] +- [[_COMMUNITY_Journals Function Facade|Journals Function Facade]] +- [[_COMMUNITY_SWR & Svelte5 Pattern Docs|SWR & Svelte5 Pattern Docs]] +- [[_COMMUNITY_V3 API Guide Docs|V3 API Guide Docs]] +- [[_COMMUNITY_Access Control Archive Docs|Access Control Archive Docs]] +- [[_COMMUNITY_V3 CRUD Upgrade Archive|V3 CRUD Upgrade Archive]] +- [[_COMMUNITY_Contacts Admin Pages|Contacts Admin Pages]] +- [[_COMMUNITY_Launcher Native Docs|Launcher Native Docs]] +- [[_COMMUNITY_Object Flags UI|Object Flags UI]] +- [[_COMMUNITY_Package Metadata|Package Metadata]] +- [[_COMMUNITY_PWA Manifest|PWA Manifest]] +- [[_COMMUNITY_Journal Search Helpers|Journal Search Helpers]] +- [[_COMMUNITY_Encryption Utilities|Encryption Utilities]] +- [[_COMMUNITY_IDAA Privacy & Permissions Docs|IDAA Privacy & Permissions Docs]] +- [[_COMMUNITY_Launcher Config Menu Docs|Launcher Config Menu Docs]] +- [[_COMMUNITY_Active Tasks & SW Fix|Active Tasks & SW Fix]] +- [[_COMMUNITY_PWA Install Prompt|PWA Install Prompt]] +- [[_COMMUNITY_IDAA Recovery Meeting Tests|IDAA Recovery Meeting Tests]] +- [[_COMMUNITY_Journal Content Parsers|Journal Content Parsers]] +- [[_COMMUNITY_Onsite Badge Printing Guide|Onsite Badge Printing Guide]] +- [[_COMMUNITY_IDAA Module Security Docs|IDAA Module Security Docs]] +- [[_COMMUNITY_AI Tools Component|AI Tools Component]] +- [[_COMMUNITY_Badge Settings Config|Badge Settings Config]] +- [[_COMMUNITY_IDAA Location Stores|IDAA Location Stores]] +- [[_COMMUNITY_V3 API Latency Tests|V3 API Latency Tests]] +- [[_COMMUNITY_File Utility Functions|File Utility Functions]] +- [[_COMMUNITY_Permission Check Utils|Permission Check Utils]] +- [[_COMMUNITY_UI Style Guide Docs|UI Style Guide Docs]] +- [[_COMMUNITY_Core Module Docs|Core Module Docs]] +- [[_COMMUNITY_Naming Convention Docs|Naming Convention Docs]] +- [[_COMMUNITY_Site Passcode Security Docs|Site Passcode Security Docs]] +- [[_COMMUNITY_CodeMirror Editor|CodeMirror Editor]] +- [[_COMMUNITY_Events Module Docs|Events Module Docs]] +- [[_COMMUNITY_Datetime Formatters|Datetime Formatters]] +- [[_COMMUNITY_Leads v3 Archive Docs|Leads v3 Archive Docs]] +- [[_COMMUNITY_Badge Calibration Assets|Badge Calibration Assets]] +- [[_COMMUNITY_Recovery Meetings UX Proposals|Recovery Meetings UX Proposals]] +- [[_COMMUNITY_FA to Lucide Migration|FA to Lucide Migration]] +- [[_COMMUNITY_SvelteKit Type Declarations|SvelteKit Type Declarations]] +- [[_COMMUNITY_Service Worker Cache|Service Worker Cache]] +- [[_COMMUNITY_Badge Header SVG Assets|Badge Header SVG Assets]] +- [[_COMMUNITY_V3 Field Editor|V3 Field Editor]] +- [[_COMMUNITY_Display Name Utils|Display Name Utils]] +- [[_COMMUNITY_Firefly Theme Archive|Firefly Theme Archive]] +- [[_COMMUNITY_PostInstall Scripts|PostInstall Scripts]] +- [[_COMMUNITY_App Entry & PWA|App Entry & PWA]] +- [[_COMMUNITY_Vite & Test Config|Vite & Test Config]] +- [[_COMMUNITY_Sponsorship Field Config|Sponsorship Field Config]] +- [[_COMMUNITY_Sponsorship Module Docs|Sponsorship Module Docs]] +- [[_COMMUNITY_Form Data Extraction|Form Data Extraction]] +- [[_COMMUNITY_IDAA Recovery Meetings Roadmap|IDAA Recovery Meetings Roadmap]] +- [[_COMMUNITY_IDAA Video Conferences Docs|IDAA Video Conferences Docs]] +- [[_COMMUNITY_Fit Text Action|Fit Text Action]] +- [[_COMMUNITY_CodeMirror Module Loader|CodeMirror Module Loader]] +- [[_COMMUNITY_Journals README Docs|Journals README Docs]] +- [[_COMMUNITY_Badge Calibration PNG|Badge Calibration PNG]] +- [[_COMMUNITY_OSIT Brand Logo|OSIT Brand Logo]] +- [[_COMMUNITY_Archive Content Field Config|Archive Content Field Config]] +- [[_COMMUNITY_Archive Field Config|Archive Field Config]] +- [[_COMMUNITY_Account Field Config|Account Field Config]] +- [[_COMMUNITY_Activity Log Field Config|Activity Log Field Config]] +- [[_COMMUNITY_Address Field Config|Address Field Config]] +- [[_COMMUNITY_Contact Field Config|Contact Field Config]] +- [[_COMMUNITY_Person Field Config|Person Field Config]] +- [[_COMMUNITY_Site Domain Field Config|Site Domain Field Config]] +- [[_COMMUNITY_Site Field Config|Site Field Config]] +- [[_COMMUNITY_User Field Config|User Field Config]] +- [[_COMMUNITY_Badge Template Config Type|Badge Template Config Type]] +- [[_COMMUNITY_Event Badge Field Config|Event Badge Field Config]] +- [[_COMMUNITY_Badge Template Field Config|Badge Template Field Config]] +- [[_COMMUNITY_Event Device Field Config|Event Device Field Config]] +- [[_COMMUNITY_Event Field Config|Event Field Config]] +- [[_COMMUNITY_Event File Field Config|Event File Field Config]] +- [[_COMMUNITY_Location Field Config|Location Field Config]] +- [[_COMMUNITY_Presentation Field Config|Presentation Field Config]] +- [[_COMMUNITY_Presenter Field Config|Presenter Field Config]] +- [[_COMMUNITY_Session Field Config|Session Field Config]] +- [[_COMMUNITY_Exhibit Field Config|Exhibit Field Config]] +- [[_COMMUNITY_Exhibit Tracking Field Config|Exhibit Tracking Field Config]] +- [[_COMMUNITY_Journal Field Config|Journal Field Config]] +- [[_COMMUNITY_Journal Entry Field Config|Journal Entry Field Config]] +- [[_COMMUNITY_Post Comment Field Config|Post Comment Field Config]] +- [[_COMMUNITY_Post Field Config|Post Field Config]] +- [[_COMMUNITY_Docker CI BuildKit Archive|Docker CI BuildKit Archive]] +- [[_COMMUNITY_Archive Index & Policy|Archive Index & Policy]] +- [[_COMMUNITY_V3 Field Editor Docs|V3 Field Editor Docs]] +- [[_COMMUNITY_HTML5 QR Code Lib|HTML5 QR Code Lib]] +- [[_COMMUNITY_Journal Entry List Wrapper|Journal Entry List Wrapper]] +- [[_COMMUNITY_OpenAI Dependency|OpenAI Dependency]] +- [[_COMMUNITY_Svelte Idle Lib|Svelte Idle Lib]] +- [[_COMMUNITY_Playwright Config|Playwright Config]] +- [[_COMMUNITY_Lucide Icon Declarations|Lucide Icon Declarations]] +- [[_COMMUNITY_Svelte Config|Svelte Config]] +- [[_COMMUNITY_Tailwind Config|Tailwind Config]] +- [[_COMMUNITY_File Download Progress|File Download Progress]] +- [[_COMMUNITY_Object Fetch Progress|Object Fetch Progress]] +- [[_COMMUNITY_Blob Upload Progress|Blob Upload Progress]] +- [[_COMMUNITY_Object Post Progress|Object Post Progress]] +- [[_COMMUNITY_Archives Function Facade|Archives Function Facade]] +- [[_COMMUNITY_Badge Query Function|Badge Query Function]] +- [[_COMMUNITY_File Query Function|File Query Function]] +- [[_COMMUNITY_Presentation Query|Presentation Query]] +- [[_COMMUNITY_Presenter Query|Presenter Query]] +- [[_COMMUNITY_Event List Query|Event List Query]] +- [[_COMMUNITY_Session Query|Session Query]] +- [[_COMMUNITY_Jitsi Report Loader|Jitsi Report Loader]] +- [[_COMMUNITY_Source Layout Doc|Source Layout Doc]] +- [[_COMMUNITY_IDAA Module Doc Node|IDAA Module Doc Node]] +- [[_COMMUNITY_Journals Module Doc Node|Journals Module Doc Node]] +- [[_COMMUNITY_Badges Module Doc Node|Badges Module Doc Node]] +- [[_COMMUNITY_Docker CI Cache Doc|Docker CI Cache Doc]] +- [[_COMMUNITY_Event Module V3 Doc|Event Module V3 Doc]] +- [[_COMMUNITY_Lucide Svelte Module|Lucide Svelte Module]] +- [[_COMMUNITY_Badge Header Demo Branding|Badge Header Demo Branding]] +- [[_COMMUNITY_Badge Header Demo Image|Badge Header Demo Image]] +- [[_COMMUNITY_Badge Demo OSIT Logo|Badge Demo OSIT Logo]] +- [[_COMMUNITY_Badge Header Hex Blue|Badge Header Hex Blue]] +- [[_COMMUNITY_App Favicon|App Favicon]] +- [[_COMMUNITY_Jitsi Reports Embed|Jitsi Reports Embed]] +- [[_COMMUNITY_Robots.txt|Robots.txt]] +- [[_COMMUNITY_Skeleton UI Favicon|Skeleton UI Favicon]] + +## God Nodes (most connected - your core abstractions) +1. `db_save_ae_obj_li__ae_obj()` - 138 edges +2. `key_val` - 88 edges +3. `./launcher_file_cont.svelte` - 43 edges +4. `ae_BaseObj` - 40 edges +5. `api` - 40 edges +6. `./ae_comp__event_presenter_obj_li.svelte` - 35 edges +7. `./ae_comp__journal_entry_obj_li.svelte` - 32 edges +8. `$lib/elements/element_data_store.svelte` - 28 edges +9. `././ae_comp__event_device_obj_li.svelte` - 28 edges +10. `$lib/stores/ae_events_stores__pres_mgmt.svelte` - 27 edges + +## Surprising Connections (you probably didn't know these) +- `Journals Module as Canonical Pattern Reference` --semantically_similar_to--> `Journals as Canonical Frontend Pattern` [INFERRED] [semantically similar] + CLAUDE.md → documentation/AE__Architecture.md +- `IDB Content Version Management` --semantically_similar_to--> `try_cache:false Bug (Cold-Start Nested Load Race)` [INFERRED] [semantically similar] + README.md → documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md +- `Aether Way Reactivity Patterns (GEMINI)` --semantically_similar_to--> `Svelte 5 Runes Mode Key Patterns` [INFERRED] [semantically similar] + GEMINI.md → documentation/BOOTSTRAP__AI_Agent_Quickstart.md +- `V3 Bootstrap FQDN Handshake` --semantically_similar_to--> `Bootstrap Paradox (x-no-account-id for initial lookup)` [INFERRED] [semantically similar] + documentation/GUIDE__AE_API_V3_for_Frontend.md → GEMINI.md +- `Bootstrap Race: Gate on $slct.account_id not $ae_loc` --semantically_similar_to--> `Bootstrap Paradox (x-no-account-id for initial lookup)` [INFERRED] [semantically similar] + documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md → GEMINI.md + +## Import Cycles +- None detected. + +## Hyperedges (group relationships) +- **IDAA Privacy: Auth Gate + Cache Rule + Triple Linkage** — aether_app_sveltekit_claude_idaa_privacy, documentation_ae__permissions_idaa_auth_before_cache, documentation_client__idaa_triple_linkage [EXTRACTED 0.95] +- **SvelteKit Data Load: SWR Pattern + LiveQuery + try_cache Bug** — aether_app_sveltekit_claude_swr_pattern, documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns, documentation_guide__sveltekit2_svelte5_dexiejs_try_cache_bug [INFERRED 0.85] +- **V3 API: Auth Headers + ID Convention + PATCH Body Rule** — documentation_guide__ae_api_v3_auth_headers, documentation_ae__naming_conventions_id_convention, documentation_bootstrap__ai_agent_quickstart_patch_id_rule [INFERRED 0.85] +- **IDAA Privacy Enforcement Cluster** — documentation_module__ae_idaa_archives_idaa_archives_module, documentation_module__ae_idaa_bulletin_board_idaa_bb_module, documentation_module__ae_idaa_recovery_meetings_recovery_meetings_module, documentation_module__ae_idaa_video_conferences_video_conf_module, documentation_reference__common_agent_mistakes_idaa_public_exposure, documentation_module__ae_idaa_archives_security_requirement, documentation_module__ae_idaa_bulletin_board_sev1_privacy [INFERRED 0.95] +- **Events Module Family** — documentation_module__ae_events_presentation_management_pres_mgmt_module, documentation_module__ae_events_launcher_launcher_module, documentation_module__ae_events_badges_badges_module, documentation_module__ae_events_badge_templates_badge_template_module, documentation_module__ae_events_leads_leads_module, documentation_module__ae_events_launcher_native_native_integration, documentation_module__ae_events_launcher_config_menu_config_menu [INFERRED 0.95] +- **Native Launcher Technical Stack** — documentation_module__ae_events_launcher_native_three_layer_bridge, documentation_module__ae_events_launcher_native_electron_relay, documentation_module__ae_events_launcher_native_hashed_cache, documentation_module__ae_events_launcher_native_safe_handover, documentation_module__ae_events_launcher_native_launch_profiles, documentation_module__ae_events_launcher_native_applescript_hardened, documentation_module__ae_events_launcher_native_ipc_whitelist [INFERRED 0.95] +- **Journals Privacy and Encryption Cluster** — documentation_module__ae_journals_journals_module, documentation_module__ae_journals_e2ee_encryption, documentation_module__ae_journals_security_limitations, documentation_module__ae_journals_access_privacy, documentation_module__ae_journals_config_map_encryption_behavior, documentation_todo__agents_journal_entry_followups [INFERRED 0.90] +- **Pres Mgmt Config Cleanup: Schema + Store + UI** — documentation_project__ae_events_pressmgmt_config_cleanup_pressmgmt_remote_cfg, documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store, documentation_project__ae_events_pressmgmt_config_cleanup_config_ui_page, documentation_project__ae_events_pressmgmt_config_cleanup_sync_config_function [INFERRED 0.95] +- **Svelte 5 PersistedState Migration (all modules)** — documentation_project__stores_svelte5_migration_document, documentation_project__stores_svelte5_migration_events_module_complete, documentation_project__stores_svelte5_migration_persisted_state_pattern, documentation_project__idaa_stores_svelte5_migration_document, documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store, archive_project__ae_events_badges_config_cleanup_badges_loc_store [INFERRED 0.95] +- **Passcode Security: Exposure + API Auth + JWT** — documentation_project__ae_site_passcode_security_access_code_kv_json_exposure, documentation_project__ae_site_passcode_security_api_verified_auth, documentation_project__ae_site_passcode_security_authenticate_passcode_endpoint, documentation_project__ae_site_passcode_security_role_ttl [INFERRED 0.95] +- **Badges Module: Config, Review, Print Projects** — archive_project__ae_events_badges_config_cleanup_document, archive_project__ae_events_badges_review_print_document, archive_project__ae_events_badges_config_cleanup_edit_permissions, archive_project__ae_events_badges_review_print_two_flows, archive_project__ae_events_badges_review_print_email_rule [INFERRED 0.85] +- **Svelte 5 Reactivity Best Practices** — archive_reference__legacy_performance_guidelines_derived_by_livequery_rule, archive_reference__legacy_performance_guidelines_livequery_pure_data_rule, archive_reference__legacy_performance_guidelines_untrack_in_effect_rule, archive_project__ae_ui_journals_module_update_2026_untrack_pattern, archive_project__ae_object_field_editor_v3_upgrade_svelte5_runes_pattern [INFERRED 0.85] +- **Style Modernization Effort (FA→Lucide, variant→preset)** — archive_project__ae_style_review_2026_03_style_review_project, archive_project__ae_style_review_2026_03_fontawesome_to_lucide_migration, archive_project__ae_style_review_2026_03_variant_to_preset_migration, archive_project__ae_ui_journals_module_update_2026_skeleton_v4_token_reference, archive_todo__agents__archive_2026_03_stores_phase_1_2_cleanup, archive_reference__legacy_ui_component_patterns_ui_component_patterns [INFERRED 0.85] +- **V3 API CRUD Migration Effort** — archive_project__use_ae_api_v3_crud_upgrade_crud_v3_migration, archive_project__ae_object_field_editor_v3_upgrade_field_editor_v3, archive_project__ae_object_field_editor_v3_upgrade_crud_v1_v2_retirement, archive_project__use_ae_api_v3_crud_upgrade_permissive_update_mode [INFERRED 0.90] +- **2026 Live Conference Events** — archive_project__ae_events_zebra_hardware_test_day_zebra_zc10l_badge_printing, archive_todo__agents__archive_2026_06_cmsc_charlotte_event, archive_todo__agents__archive_2026_06_axonius_dc_badges, archive_todo__agents__archive_2026_05_launcher_force_sync_location [INFERRED 0.85] +- **IDAA Novi iframe Bridge Pattern (Archives, BB, Recovery Meetings, Jitsi)** — idaa_readme_novi_iframe_bridge_arch, static_idaa_novi_iframe_archives_novi_archive_embed, static_idaa_novi_iframe_bulletin_board_bb_embed, static_idaa_novi_iframe_recovery_meetings_recovery_meetings_embed, static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed, static_idaa_novi_iframe_jitsi_reports_jitsi_reports_embed, static_idaa_novi_iframe_archives_novi_customer_uid_inject, static_idaa_novi_iframe_archives_restricted_access_key [EXTRACTED 1.00] +- **IDAA iframe postMessage Communication Protocol** — static_idaa_novi_iframe_archives_postmessage_scroll_sync, static_idaa_novi_iframe_bulletin_board_bb_embed, static_idaa_novi_iframe_recovery_meetings_recovery_meetings_embed, src_parent_iframe_html_postmessage_height_sync [INFERRED 0.95] +- **Events Module Core Data Objects** — events_readme_event_object, events_readme_event_session_object, events_readme_event_presentation_object, events_readme_event_presenter_object, events_readme_event_file_object, leads_readme_event_exhibit_object, leads_readme_event_exhibit_tracking_object [EXTRACTED 1.00] +- **Playwright Test Hard-Won Lessons** — tests_readme_ae_version_guard, tests_readme_idb_inject_reload_pattern, tests_readme_html5_validation_trap, tests_readme_svelte5_value_bind_trap, tests_readme_addInitScript_pattern, tests_readme_test_mode_email_suppress, tests_readme_idaa_store_seed_trap, tests_readme_storage_event_approach [EXTRACTED 1.00] + +## Communities (217 total, 74 thin omitted) + +### Community 0 - "Events Sessions & Devices" +Cohesion: 0.06 +Nodes (41): ../device/device/ae_comp__event_device_obj_li_wrapper.svelte, svelte/easing, $lib/elements/element_access_denied.svelte, $lib/elements/element_websocket.svelte, dq__where_eq_id_val, dq__where_type_id_val, lq__event_file_obj_li, ./ae_comp__event_session_obj_tbl.svelte (+33 more) + +### Community 1 - "IDAA Archives Module" +Cohesion: 0.05 +Nodes (40): $lib/app_components/e_app_help_tech.svelte, hidden, ../ae_comp__badge_review_form.svelte, xl, ./ae_idaa_comp__post_comment_obj_id_edit.svelte, ./ae_idaa_comp__post_obj_id_edit.svelte, $lib/elements/element_editor_tiptap.svelte, $app/environment (+32 more) + +### Community 2 - "Shared UI Components" +Cohesion: 0.09 +Nodes (26): $lib/elements/ae_record_controls.svelte, $lib/elements/element_data_store.svelte, $lib/elements/element_data_store_form.svelte, hidden, ae_btn_surface, ae_btn_surface_outlined, hidden, ./ae_comp__event_session_obj_li.svelte (+18 more) + +### Community 3 - "V3 API Client Layer" +Cohesion: 0.10 +Nodes (35): delete_object(), get_ae_obj_li_for_lu(), get_ae_obj(), get_ae_obj_li(), get_nested_ae_obj(), get_nested_obj_li(), GetAeObjLiV3Params, GetAeObjV3Params (+27 more) + +### Community 4 - "Exhibit Tracking CRUD" +Cohesion: 0.07 +Nodes (14): ae_promises, create_ae_obj__exhibit_tracking(), download_export__event_exhibit_tracking(), load_ae_obj_id__event_exhibit_tracking(), load_ae_obj_li__event_exhibit_tracking(), process_ae_obj__exhibit_tracking_props(), _process_generic_props(), properties_to_save_exhibit_tracking (+6 more) + +### Community 5 - "Completed Project Archive" +Cohesion: 0.05 +Nodes (46): ae_comp__badge_print_controls.svelte, Badge Print Count Tracking, PVC Badge Layout (badge_layout_zebra_zc10l_pvc.css), Zebra ZC10L Badge Printing Test Day, Blocking Hydration Option (Option A), Microtask Yield Pattern (await Promise.resolve()), Pres Mgmt Session Cold-Start Bug Fix, try_cache Caching Fix in Nested Loaders (+38 more) + +### Community 6 - "Core Admin Pages" +Cohesion: 0.06 +Nodes (18): $lib/app_components/e_app_debug_menu.svelte, ../ae_comp__person_obj_tbl.svelte, gray, iframe, $lib/ae_core/ae_core__address, $lib/ae_core/ae_core__address.editable_fields, $lib/ae_core/ae_core__person, $lib/ae_core/ae_core__user (+10 more) + +### Community 7 - "User & Core Functions" +Cohesion: 0.08 +Nodes (28): export_obj, ae_promises, auth_ae_obj__user_id_change_password(), auth_ae_obj__user_id_user_auth_key(), auth_ae_obj__username_password(), create_ae_obj__user(), load_ae_obj_id__user(), process_ae_obj__user_props() (+20 more) + +### Community 8 - "Dev Dependencies" +Cohesion: 0.05 +Nodes (41): devDependencies, clsx, eslint, eslint-config-prettier, @eslint/js, eslint-plugin-svelte, flowbite, globals (+33 more) + +### Community 9 - "Module README Docs" +Cohesion: 0.06 +Nodes (39): Archive Content Object, Archive Object, AE Archives Module, Post Comment Object, Post Object, AE Posts Module, IDAA Archives Route (/idaa/archives), IDAA Bulletin Board Route (/idaa/bb) (+31 more) + +### Community 10 - "Module Function Facades" +Cohesion: 0.11 +Nodes (27): core_func, string_snippets, ae_util, ././ae_comp__event_device_obj_li.svelte, ./ae_comp__event_presenter_obj_li.svelte, hidden, events_auth_loc, events_auth_loc_defaults (+19 more) + +### Community 11 - "Dexie IDB & Journals Data" +Cohesion: 0.09 +Nodes (29): check_and_clear_idb_tables(), build_tmp_sort(), ae_promises, create_ae_obj__journal(), ae_promises, create_ae_obj__journal_entry(), load_ae_obj_id__journal_entry(), load_ae_obj_li__journal_entry() (+21 more) + +### Community 12 - "Launcher Config Components" +Cohesion: 0.10 +Nodes (21): ./cfg_components/launcher_cfg_app_modes.svelte, ./cfg_components/launcher_cfg_controller.svelte, ./cfg_components/launcher_cfg_health.svelte, ./cfg_components/launcher_cfg_launch_timing.svelte, ./cfg_components/launcher_cfg_local_actions.svelte, ./cfg_components/launcher_cfg_native_os.svelte, ./cfg_components/launcher_cfg_screen_saver.svelte, ./launcher_cfg_section.svelte (+13 more) + +### Community 13 - "Type Definitions & Tracks" +Cohesion: 0.11 +Nodes (31): ae_AccountCfg, ae_Archive, ae_ArchiveContent, ae_BaseObj, ae_Event, ae_EventAbstract, ae_EventBadge, ae_EventBadgeTemplate (+23 more) + +### Community 14 - "Launcher App Profiles" +Cohesion: 0.07 +Nodes (28): ACROBAT_MAC_MIRROR_PROFILE, ACROBAT_WIN_MIRROR_PROFILE, DEFAULT_LAUNCH_PROFILE_ALIASES, DEFAULT_LAUNCH_PROFILE_DEFS, DEFAULT_LAUNCH_PROFILE_LIBRARY, DEFAULT_LAUNCH_PROFILES, DEFAULT_OS_PROFILE, DefaultLaunchProfileDefinition (+20 more) + +### Community 15 - "Posts & BB CRUD" +Cohesion: 0.12 +Nodes (25): export_obj, posts_func, ae_promises, ae_promises, create_ae_obj__post_comment(), delete_ae_obj_id__post_comment(), load_ae_obj_id__post_comment(), load_ae_obj_li__post_comment() (+17 more) + +### Community 16 - "App Auth & Account" +Cohesion: 0.07 +Nodes (15): $lib/app_components/e_app_access_type.svelte, $lib/app_components/e_app_sign_in_out.svelte, $lib/app_components/e_app_sys_bar.svelte, opacity, $lib/elements/element_ae_obj_field_editor.svelte, $lib/ae_core/ae_core__account.editable_fields, $lib/ae_core/ae_core__activity_log, $lib/ae_events/ae_events__event (+7 more) + +### Community 17 - "Hosted Files UI" +Cohesion: 0.11 +Nodes (20): $lib/elements/ae_comp__hosted_files_clip_video.svelte, $lib/elements/ae_comp__hosted_files_clip_video_li.svelte, $lib/elements/ae_comp__hosted_files_download_button.svelte, $lib/elements/ae_comp__hosted_files_upload.svelte, $lib/elements/element_input_files_tbl.svelte, $lib/elements/element_manage_hosted_file_li.svelte, $lib/elements/element_manage_hosted_file_li_all.svelte, hidden (+12 more) + +### Community 18 - "Archives CRUD Layer" +Cohesion: 0.14 +Nodes (23): ae_promises, ae_promises, create_ae_obj__archive_content(), delete_ae_obj_id__archive_content(), load_ae_obj_id__archive_content(), load_ae_obj_li__archive_content(), process_ae_obj__archive_content_props(), _process_generic_props() (+15 more) + +### Community 19 - "Archived Badges Project Docs" +Cohesion: 0.09 +Nodes (29): badges_loc PersistedState Store, BadgesRemoteCfg TypeScript Interface, Badges Config Cleanup Project (Archived), Badges edit_permissions Config (per-access-tier field edits), Badges Passcode Security (admin-only config gate), Badge Auto-Scaling Text (element_fit_text.svelte), Chrome @page PDF Centering Issue, Badges Review Form and Print Project (Archived) (+21 more) + +### Community 20 - "Utility Functions" +Cohesion: 0.11 +Nodes (12): create_a_element(), create_img_element(), create_video_element(), file_extension_icon(), file_extension_icon_lucide(), format_html(), get_obj_li_w_match_prop(), is_datetime_recent() (+4 more) + +### Community 21 - "Electron Native Bridge" +Cohesion: 0.09 +Nodes (8): cleanup_tmp_files(), control_presentation(), get_device_info(), launch_presentation(), open_local_file_v2(), restore_macos_default_wallpaper(), run_cmd(), run_osascript() + +### Community 22 - "Runtime Dependencies" +Cohesion: 0.07 +Nodes (27): dependencies, @codemirror/autocomplete, @codemirror/commands, @codemirror/lang-css, @codemirror/lang-html, @codemirror/lang-javascript, @codemirror/lang-json, @codemirror/lang-markdown (+19 more) + +### Community 23 - "Event Badges CRUD" +Cohesion: 0.16 +Nodes (20): db_save_ae_obj_li__ae_obj(), ae_promises, create_ae_obj__event_badge(), load_ae_obj_id__event_badge(), load_ae_obj_li__event_badge(), process_ae_obj__event_badge_props(), _process_generic_props(), properties_to_save (+12 more) + +### Community 24 - "Event Device CRUD" +Cohesion: 0.15 +Nodes (22): ae_promises, create_ae_obj__event_device(), load_ae_obj_id__event_device(), load_ae_obj_li__event_device(), process_ae_obj__event_device_props(), _process_generic_props(), properties_to_save, search__event_device() (+14 more) + +### Community 25 - "Badge Print & Search UI" +Cohesion: 0.09 +Nodes (12): ../[badge_id]/ae_comp__badge_obj_view.svelte, ../ae_comp__badge_print_controls.svelte, $lib/elements/element_fit_text.svelte, $lib/elements/element_qr_scanner.svelte, ./action_fit_text, $lib/elements/styles/badge_layout_epson_4x5_fanfold.css, $lib/elements/styles/badge_layout_epson_4x6_fanfold.css, $lib/elements/styles/badge_layout_zebra_zc10l_pvc.css (+4 more) + +### Community 26 - "Events Object CRUD" +Cohesion: 0.12 +Nodes (19): ae_promises, create_ae_obj__event(), _handle_nested_loads(), load_ae_obj_id__event(), load_ae_obj_li__event(), process_ae_obj__event_props(), _process_generic_props(), properties_to_save (+11 more) + +### Community 27 - "Svelte Icon Type Augments" +Cohesion: 0.14 +Nodes (24): Briefcase, Button, CalendarDays, ChevronLeft, Collapse, Drawer, Dropdown, Eye (+16 more) + +### Community 28 - "Activity Log CRUD" +Cohesion: 0.14 +Nodes (21): ae_promises, create_ae_obj__activity_log(), load_ae_obj_id__activity_log(), load_ae_obj_li__activity_log(), process_ae_obj__activity_log_props(), _process_generic_props(), properties_to_save, update_ae_obj__activity_log() (+13 more) + +### Community 29 - "File Management UI" +Cohesion: 0.09 +Nodes (21): $lib/app_components/e_app_clipboard.svelte, { + children, + log_lvl = 0, + value = $bindable(''), + success = $bindable(false), + btn_text = 'Copy to Clipboard', + btn_title = 'Copy to Clipboard', + btn_class = 'btn btn-sm preset-tonal-warning text-warning-500 m-1', + hide_icon = false, + hide_text = false, + icon_name = 'copy' // copy, check, link +}, $lib/elements/element_manage_event_file_li.svelte, $lib/elements/element_manage_event_file_li_all.svelte, { + container_class_li = [], + link_to_type, + link_to_id, + allow_basic = false, + allow_moderator = false, + display_mode = 'default' +}, dq__where_eq_val, dq__where_val, lq__context_session_type_code (+13 more) + +### Community 30 - "Core Data Store & Lookups" +Cohesion: 0.12 +Nodes (14): api, check_hosted_file_obj_w_hash(), load_ae_obj_li__country(), _refresh_lu_country_background(), load_ae_obj_li__country_subdivision(), _refresh_lu_country_subdivision_background(), load_ae_obj_li__time_zone(), _refresh_lu_time_zone_background() (+6 more) + +### Community 31 - "Sponsorships CRUD" +Cohesion: 0.12 +Nodes (16): ae_promises, load_ae_obj_id__sponsorship(), load_ae_obj_id__sponsorship_cfg(), load_ae_obj_li__sponsorship(), process_ae_obj__sponsorship_cfg_props(), process_ae_obj__sponsorship_props(), _process_generic_props(), properties_to_save_sponsorship (+8 more) + +### Community 32 - "Site & Domain CRUD" +Cohesion: 0.15 +Nodes (18): ae_promises, create_ae_obj__site(), create_ae_obj__site_domain(), load_ae_obj_id__site(), load_ae_obj_li__site(), load_ae_obj_li__site_domain(), lookup_site_domain(), process_ae_obj__site_domain_props() (+10 more) + +### Community 33 - "Accounts & Config Editor" +Cohesion: 0.10 +Nodes (14): handle_add_account(), load_accounts(), $lib/elements/ae_comp__site_config_editor.svelte, $lib/elements/element_obj_tbl_row.svelte, $lib/ae_api/api_get_object, $lib/ae_api/api_patch_object, $lib/ae_api/api_post_object, $lib/ae_core/ae_core__account (+6 more) + +### Community 34 - "Events Dexie Schema" +Cohesion: 0.10 +Nodes (18): Badge, Badge_template, db_events, Device, Event, EventFile, Exhibit, Exhibit_tracking (+10 more) + +### Community 35 - "Journals State Stores" +Cohesion: 0.13 +Nodes (19): journals_loc, journals_local_data_struct, journals_prom, journals_prom_template, journals_sess, journals_session_data_struct, journals_slct, journals_slct_obj_template (+11 more) + +### Community 36 - "Leads Test Helpers" +Cohesion: 0.17 +Nodes (10): attach_leads_routes(), minimal_badge(), minimal_exhibit(), seed_ae_loc(), seed_events_loc(), seed_leads_loc(), setup_leads_test_page(), search_mode_seed (+2 more) + +### Community 37 - "Build & Deploy Scripts" +Cohesion: 0.11 +Nodes (19): scripts, build, build:dev, build:docker:dev, build:prod, build:test, check, check:watch (+11 more) + +### Community 38 - "Event Person & App Stores" +Cohesion: 0.12 +Nodes (15): ae_promises, create_ae_obj__event_person(), ae_api_data_struct, ae_api_headers, ae_app_local_data_defaults, ae_app_session_data_defaults, ae_trig_template, AccessType (+7 more) + +### Community 39 - "Test IDB & API Helpers" +Cohesion: 0.18 +Nodes (8): inject_badge_and_template(), attach_minimal_routes(), seed_trusted_session(), setup_badge_test_page(), mock_badge, mock_template, mock_badge, mock_template + +### Community 40 - "Journals Full Module" +Cohesion: 0.21 +Nodes (6): $lib/ae_journals/ae_journals_functions, $lib/ae_journals/ae_journals_parsers, $lib/ae_journals/ae_journals_search_helpers, $lib/ae_journals/ae_journals_stores, ./$types, ./ae_comp__journal_obj_id_edit.svelte + +### Community 41 - "Core Dexie DB Schema" +Cohesion: 0.20 +Nodes (14): load_ae_obj_by_code__data_store(), ae_LocalFile, MySubClassedDexie, Person, ae_Account, ae_ActivityLog, ae_Address, ae_Contact (+6 more) + +### Community 42 - "Badge Templates Module Docs" +Cohesion: 0.12 +Nodes (17): Badge Templates Module, Badge Type List (template field), Badge Template cfg_json Reference, controls_cfg (print controls access), Cross-Browser Print Behavior (Firefox vs Chrome), Duplex Field (single/double-sided printing), Event Badge Template (DB Object), External Badge CSS (style_href) (+9 more) + +### Community 43 - "Journal Decryption" +Cohesion: 0.17 +Nodes (14): decrypt_journal_entry(), $lib/ae_journals/ae_journals_decryption, deep_copy(), handle_content_decryption(), handle_force_reset(), handle_marked(), has_unsaved_changes, is_processing (+6 more) + +### Community 44 - "Pres Mgmt Docs & Mistakes" +Cohesion: 0.13 +Nodes (16): Client Setup Variation (Minimal/Mid-range/Full), File Attachment Levels (Presenter/Session/Location/Event/Presentation), mod_pres_mgmt_json Configuration, Pres Mgmt Object Hierarchy (Event/Location/Session/Presentation/Presenter/File), Presentation Management Module, Mistake #3: Coarse-Store $effect Reactivity Loops, Mistake #18: Conditional Sync Gates Are Effectively Undebuggable, Mistake #4: Dexie .get() with String Object ID (false miss) (+8 more) + +### Community 45 - "Event Presentation CRUD" +Cohesion: 0.24 +Nodes (13): ae_promises, create_ae_obj__event_presentation(), _handle_nested_loads(), load_ae_obj_id__event_presentation(), load_ae_obj_li__event_presentation(), process_ae_obj__event_presentation_props(), _process_generic_props(), properties_to_save (+5 more) + +### Community 46 - "App Analytics & PWA" +Cohesion: 0.13 +Nodes (13): $lib/app_components/e_app_analytics.svelte, highlight.js/lib/core, highlight.js/lib/languages/css, $lib/elements/element_pwa_install_prompt.svelte, highlight.js/styles/github-dark.css, ../app.css, $lib/elements/pwa_install.svelte, ./$types (+5 more) + +### Community 47 - "Historical Project Docs" +Cohesion: 0.13 +Nodes (15): ae_app Docker Service (SvelteKit in container), Internal Docker Networking (ae_api internal DNS), Unified Aether Platform Docker Orchestration V3, Events Launcher Unified Config Menu Vision v3.1, Launcher Vertical Sidebar Modal Layout, Completed Agent Tasks Archive March 2026, Frontend + Backend Unified Docker Compose Deploy, PUBLIC_AE_API_SECRET_KEY Security Audit (Sev-1, resolved 2026-03-11) (+7 more) + +### Community 49 - "Event Presenter CRUD" +Cohesion: 0.24 +Nodes (11): load_ae_obj_li__event_file(), ae_promises, create_ae_obj__event_presenter(), load_ae_obj_id__event_presenter(), process_ae_obj__event_presenter_props(), _process_generic_props(), properties_to_save, _refresh_presenter_id_background() (+3 more) + +### Community 50 - "Event Session CRUD" +Cohesion: 0.24 +Nodes (11): ae_promises, create_ae_obj__event_session(), _handle_nested_loads(), load_ae_obj_id__event_session(), process_ae_obj__event_session_props(), _process_generic_props(), properties_to_save, _refresh_session_id_background() (+3 more) + +### Community 51 - "IDAA BB Post Helpers" +Cohesion: 0.18 +Nodes (12): BbPostFormValues, BbPostIdentityDefaults, BbPostObjectLike, BbPostStaffNotificationEmail, BbPostStaffNotificationSiteCfg, build_bb_post_payload(), BuildBbPostPayloadArgs, BuildBbPostStaffNotificationEmailArgs (+4 more) + +### Community 52 - "ShadCN Component Config" +Cohesion: 0.14 +Nodes (13): aliases, components, hooks, ui, utils, registry, $schema, style (+5 more) + +### Community 53 - "IDAA BB State & View" +Cohesion: 0.21 +Nodes (11): { + lq__post_obj, + lq__post_comment_obj_li, + lq__post_comment_obj, + log_lvl = 0 +}, idaa_loc, idaa_local_data_struct, idaa_prom, idaa_prom_template, idaa_sess, idaa_session_data_struct, idaa_slct (+3 more) + +### Community 54 - "Data Stores Admin" +Cohesion: 0.18 +Nodes (4): do_rename_apply(), do_search(), toggle_sort(), svelte/reactivity + +### Community 55 - "Package Overrides" +Cohesion: 0.15 +Nodes (13): overrides, @codemirror/autocomplete, @codemirror/commands, @codemirror/lang-markdown, @codemirror/language, @codemirror/lint, @codemirror/search, @codemirror/state (+5 more) + +### Community 56 - "TypeScript Config" +Cohesion: 0.15 +Nodes (12): compilerOptions, allowJs, checkJs, esModuleInterop, forceConsistentCasingInFileNames, moduleResolution, plugins, resolveJsonModule (+4 more) + +### Community 57 - "Account CRUD" +Cohesion: 0.26 +Nodes (8): ae_promises, create_ae_obj__account(), load_ae_obj_id__account(), load_ae_obj_li__account(), process_ae_obj__account_props(), _process_generic_props(), properties_to_save, update_ae_obj__account() + +### Community 58 - "Event File CRUD" +Cohesion: 0.26 +Nodes (9): ae_promises, load_ae_obj_id__event_file(), process_ae_obj__event_file_props(), _process_generic_props(), properties_to_save, _refresh_file_id_background(), _refresh_file_li_background(), search__event_file() (+1 more) + +### Community 59 - "Exhibit CRUD" +Cohesion: 0.29 +Nodes (11): ae_promises, create_ae_obj__exhibit(), load_ae_obj_id__event_exhibit(), load_ae_obj_li__event_exhibit(), process_ae_obj__exhibit_props(), _process_generic_props(), properties_to_save_exhibit, _refresh_exhibit_id_background() (+3 more) + +### Community 60 - "Journal Export & Crypto" +Cohesion: 0.18 +Nodes (10): DecryptionResult, EXPORT_TEMPLATES, ExportTemplate, template_amazon_vine, template_personal_log, template_standard_html, template_standard_json, template_standard_markdown (+2 more) + +### Community 61 - "IDAA Client Architecture Docs" +Cohesion: 0.17 +Nodes (12): Events Module Routes, IDAA Jitsi Breakout Link Fix Plan, IDAA Bulletin Board Module (Posts), IDAA Jitsi Breakout Links (iframe persistence), IDAA Composite Module Architecture, IDAA State Stores (idaa_loc/sess/slct/trig), IDAA Iframe Integration (Novi CMS embed), IDAA Jitsi Reports Module (+4 more) + +### Community 62 - "Electron & Leads Module Docs" +Cohesion: 0.17 +Nodes (12): Electron contextBridge Security Model, Electron Native Bridge (SvelteKit Side), electron_relay.ts (IPC Messenger), Event Launcher (Electron App), Electron Three-Layer Bridge Architecture, event_exhibit Object, event_exhibit_tracking Object, Exhibitor Leads Module v3 (/routes/events/[event_id]/(leads)) (+4 more) + +### Community 63 - "Leads State Stores" +Cohesion: 0.18 +Nodes (7): leads_loc_defaults, leads_sess_defaults, LeadsLocState, LeadsSessState, TmpLicense, leads_loc, IDB_CONTENT_VERSIONS + +### Community 64 - "IDB Versioning & Bootstrap" +Cohesion: 0.18 +Nodes (11): Bootstrap Paradox (x-no-account-id for initial lookup), Docker Multi-Stage Build and Deploy, IDB Content Version Management, Aether SvelteKit Application, V3 Bootstrap FQDN Handshake, Bootstrap Race: Gate on $slct.account_id not $ae_loc, build_tmp_sort Pattern (Pre-computed IDB Sort Keys), Async $effect Guard-Reset Infinite Loop Pattern (+3 more) + +### Community 65 - "IDAA Novi Auth Tests" +Cohesion: 0.20 +Nodes (4): mock_site_domain, minimal_event_for_leads(), mock_novi_member, setup_config_routes() + +### Community 66 - "Address CRUD" +Cohesion: 0.27 +Nodes (6): ae_promises, create_ae_obj__address(), process_ae_obj__address_props(), _process_generic_props(), properties_to_save, update_ae_obj__address() + +### Community 67 - "Contact CRUD" +Cohesion: 0.27 +Nodes (6): ae_promises, create_ae_obj__contact(), process_ae_obj__contact_props(), _process_generic_props(), properties_to_save, update_ae_obj__contact() + +### Community 68 - "Person CRUD" +Cohesion: 0.31 +Nodes (9): ae_promises, create_ae_obj__person(), delete_ae_obj_id__person(), load_ae_obj_id__person(), load_ae_obj_li__person(), process_ae_obj__person_props(), _process_generic_props(), properties_to_save (+1 more) + +### Community 69 - "Architecture & Dev SOP Docs" +Cohesion: 0.20 +Nodes (10): Journals Module as Canonical Pattern Reference, Mandatory Agent Workflow, Aether Project Architecture, Journals as Canonical Frontend Pattern, IndexedDB LiveQuery Naming Convention (lq/lqw), Frontend Development SOP, element_ae_obj_field_editor (Inline Field Edit Component), svelte-check Zero-Tolerance Mandate (+2 more) + +### Community 70 - "Leads & Badges Module Docs" +Cohesion: 0.20 +Nodes (10): Event Badge (DB Object), allow_tracking Opt-In (lead capture gate), Capture Identity (external_person_id + group resolution), Event Exhibit (DB Object), Event Exhibit Tracking (DB Object / Lead Record), Exhibitor Leads Module, PWA / Offline-First (Leads module), QR Scan Modes (Confirm/Auto/Multi) (+2 more) + +### Community 71 - "Journals Config Docs" +Cohesion: 0.24 +Nodes (10): Journal Access and Privacy Requirements, Journals Config Map, Journal Encryption Behavior and Gaps, Journal Entry-Level Settings, Journal-Level Settings (Remote DB), Journals Module-Level Settings (journals_loc), Journal Entry E2EE Encryption, Journals Module (+2 more) + +### Community 72 - "Leads Licensed Sign-in Tests" +Cohesion: 0.22 +Nodes (7): exhibit_with_licenses, goto_and_wait_for_exhibit_ready(), license_li_json, licensed_user, licensed_user_b, passcode_input(), search_mode_seed + +### Community 74 - "SWR & Svelte5 Pattern Docs" +Cohesion: 0.22 +Nodes (9): SWR Load Pattern (Stale-While-Revalidate), Aether Way Reactivity Patterns (GEMINI), Common Agent Mistakes (10 categories), Dexie Query Rule (.where not .get for string IDs), AI Agent Quickstart Guide, Svelte 5 Runes Mode Key Patterns, Svelte 5 Learnings and Best Practices (Gemini), Svelte Async/Await in Runes Mode Rule (+1 more) + +### Community 75 - "V3 API Guide Docs" +Cohesion: 0.25 +Nodes (9): Aether V3 API (CRUD Pattern), Aether API V3 Frontend Integration Guide, V3 API Auth Headers (x-aether-api-key + x-account-id), V3 JSON Field Auto-Serialization Rule, Event Exhibit Tracking Export (Leads Export), V3 Uniform Lookup System, WebSocket Granular Routing via Redis (V3), Aether API V3 WebSocket Integration Guide (+1 more) + +### Community 76 - "Access Control Archive Docs" +Cohesion: 0.25 +Nodes (9): ae_auth_error Store (session expired signal), Access Control UX Project (Archived), element_access_denied.svelte Component, IDAA Novi UUID Gate (intentionally custom, do not touch), Session Expired Banner (root layout), Doc Archive Strategy (documentation/archive/), Documentation Refresh and Archive Plan 2026, Module Coverage Baseline (active module docs) (+1 more) + +### Community 77 - "V3 CRUD Upgrade Archive" +Cohesion: 0.22 +Nodes (9): Legacy CRUD V1/V2 Retirement (element_ae_crud.svelte), AE Object Field Editor V3 (element_ae_obj_field_editor.svelte), Svelte 5 Runes Pattern (props/state/derived), CRUD V3 Final Migration Project, Integer Trap Bug (V3 Search Mapping), Permissive Update Mode (x-ae-ignore-extra-fields), element_ae_obj_field_editor (V3 replacement for ae_crud), Legacy Aether UI Component Reference (+1 more) + +### Community 78 - "Contacts Admin Pages" +Cohesion: 0.28 +Nodes (4): loading, show_add_form, $lib/ae_core/ae_core__contact, $lib/ae_core/ae_core__contact.editable_fields + +### Community 79 - "Launcher Native Docs" +Cohesion: 0.28 +Nodes (9): AppleScript Hardening (temp .scpt file approach), electron_relay.ts (SvelteKit Relay Layer), Hashed Cache Pattern (SHA-256), IPC Whitelist / electron_relay.ts API, Launch Profiles and Native Templates, Launcher Native Integration (Electron), Safe Handover Launch Sequence, Three-Layer Electron Bridge (Engine/Gatekeeper/Messenger) (+1 more) + +### Community 80 - "Object Flags UI" +Cohesion: 0.39 +Nodes (9): $lib/elements/ae_object_flags.svelte, emit_toggle(), { + obj = $bindable(), + show_labels = true, + hide_alert: hide_alert = false, + hide_private: hide_private = false, + hide_public: hide_public = false, + hide_personal: hide_personal = false, + hide_professional: hide_professional = false, + hide_template: hide_template = false, + on_toggle: onToggle, + container_class = 'flex flex-row flex-wrap gap-1 items-center justify-evenly py-2 border-y border-surface-500/10' +}, toggle_alert(), toggle_personal(), toggle_private(), toggle_professional(), toggle_public() (+1 more) + +### Community 81 - "Package Metadata" +Cohesion: 0.22 +Nodes (8): description, homepage, name, private, type, version, vitest, exclude + +### Community 82 - "PWA Manifest" +Cohesion: 0.22 +Nodes (8): background_color, description, display, icons, name, short_name, start_url, testing + +### Community 83 - "Journal Search Helpers" +Cohesion: 0.36 +Nodes (4): build_journal_entry_search_blob(), journal_entry_filter_list(), journal_entry_matches_search(), JournalEntrySearchParams + +### Community 84 - "Encryption Utilities" +Cohesion: 0.43 +Nodes (7): combine_iv_and_base64(), decrypt_content(), decrypt_wrapper(), encrypt_content(), encrypt_wrapper(), generate_iv(), split_iv_and_base64() + +### Community 85 - "IDAA Privacy & Permissions Docs" +Cohesion: 0.25 +Nodes (8): IDAA Privacy Rules, Access Level Hierarchy (super→anonymous), $ae_loc Permission Store, Aether Permissions and Security, Edit Mode Rules (user preference, not permission), IDAA Auth-Before-Cache Rule (IDB Caching), Site Passcode Security Warning, SvelteKit Layout Auth Gate Execution Order + +### Community 86 - "Launcher Config Menu Docs" +Cohesion: 0.25 +Nodes (8): Launcher Configuration Menu, Config Menu Section Expansion Logic (collapsed/auto/pinned), Config Menu Visibility Modes (Standard/Technical/Native), Launcher Display Views, Launcher Download Priority (4-tier chronological), Launcher Module (Podium Display), Launcher Operational Modes (Default/Onsite/Native), Launcher Sync Engine and File Warming + +### Community 87 - "Active Tasks & SW Fix" +Cohesion: 0.25 +Nodes (8): Mistake #15: Incomplete Cache Clearing (SW + Cache Storage omitted), TODO: Active Agent Tasks, IDB Sort + Content Version Rollout, Launcher Wallpaper Reliability (open), Service Worker skipWaiting + clients.claim Fix (complete 2026-06-03), Site Passcode JWT Migration (mostly complete 2026-06-18), Svelte 4 to 5 Store Migration (PersistedState), V3 CRUD Migration (complete 2026-06-23) + +### Community 88 - "PWA Install Prompt" +Cohesion: 0.25 +Nodes (5): BeforeInstallPromptEvent, _deferred_prompt, _is_dismissed, _is_installed, pwa_install + +### Community 89 - "IDAA Recovery Meeting Tests" +Cohesion: 0.32 +Nodes (5): build_idaa_loc_defaults(), mock_event, open_edit_form(), seed_event_idb(), setup_idaa_auth() + +### Community 90 - "Journal Content Parsers" +Cohesion: 0.38 +Nodes (6): AeJournalEntryInput, format_vine_entry(), parse_amazon_vine(), parse_personal_log(), parse_standard_note(), PARSERS + +### Community 91 - "Onsite Badge Printing Guide" +Cohesion: 0.29 +Nodes (7): Launcher Config UX Refinement Plan, Electron Native App Runtime (Launcher Only), Onsite Badge Printing Guide, Epson ColorWorks C3500 Fan-Fold Label Printer, Zebra ZC10L PVC Card Printer Setup, Events Onsite Operations Runbook, Speaker Ready Room (SRR) Workflow + +### Community 92 - "IDAA Module Security Docs" +Cohesion: 0.43 +Nodes (7): IDAA Archives Module, IDAA Archives Security (All Private), IDAA Bulletin Board Module, IDAA BB Sev-1 Privacy Requirement, Recovery Meetings reuses ae_events lib, IDAA Recovery Meetings Module, Mistake #1: IDAA Content Exposed Publicly (Sev-1) + +### Community 93 - "AI Tools Component" +Cohesion: 0.29 +Nodes (4): $lib/elements/ae_ai_tools.svelte, show_api_token, tmp_summary, ./ae_comp__journal_entry_ai_tools.svelte + +### Community 94 - "Badge Settings Config" +Cohesion: 0.33 +Nodes (4): all_attendee_fields, all_staff_fields, ensure_permissions(), toggle_field() + +### Community 95 - "IDAA Location Stores" +Cohesion: 0.29 +Nodes (6): idaa_loc, idaa_loc_defaults, IdaaArchivesLoc, IdaaBbLoc, IdaaLocState, IdaaRecoveryMeetingsLoc + +### Community 96 - "V3 API Latency Tests" +Cohesion: 0.33 +Nodes (4): EndpointProbe, percentile(), ProbeSample, summarize() + +### Community 97 - "File Utility Functions" +Cohesion: 0.33 +Nodes (5): clean_filename(), format_bytes(), get_file_hash(), guess_file_extension(), guess_file_name() + +### Community 98 - "Permission Check Utils" +Cohesion: 0.53 +Nodes (4): access_level_order, compare_access_levels(), key_val, process_permission_checks() + +### Community 99 - "UI Style Guide Docs" +Cohesion: 0.33 +Nodes (6): Aether Frontend Tech Stack, AE Firefly Theme (Default Palette), Aether UI Design System Style Guidelines, Skeleton v4 Mandate (preset-* not variant-*), Color Token Rules (use theme tokens, not hardcoded colors), WCAG 2.1 AA Accessibility Requirements + +### Community 100 - "Core Module Docs" +Cohesion: 0.33 +Nodes (6): Accounts Admin UI, Core Routes Module (/routes/core), Hosted Files Admin UI, People Admin UI, Sites and Site Domains Admin UI, Users Admin UI + +### Community 101 - "Naming Convention Docs" +Cohesion: 0.33 +Nodes (6): Aether Standard Object Fields, File Naming Rules (ae_module__concept.ts), Function Naming Prefixes (load/create/update/delete), ID Naming Convention (object_type_id, not _id_random), Aether Project Naming Conventions, V3 PATCH — Object ID in URL not Body + +### Community 102 - "Site Passcode Security Docs" +Cohesion: 0.47 +Nodes (6): access_code_kv_json localStorage Exposure Bug, API-Verified Passcode + JWT Session, /authenticate_passcode Backend Endpoint, Site Passcode Security Project, JWT Per-Role TTL Decisions, Passcode Security Threat Model + +### Community 103 - "CodeMirror Editor" +Cohesion: 0.33 +Nodes (3): $lib/elements/element_editor_codemirror.svelte, ./codemirror_modules, ./ae_comp__journal_entry_editor.svelte + +### Community 104 - "Events Module Docs" +Cohesion: 0.33 +Nodes (6): EventFile Object, Event Object, EventPresentation Object, EventPresenter Object, EventSession Object, Events Presentation Management Module (/routes/events) + +### Community 105 - "Datetime Formatters" +Cohesion: 0.40 +Nodes (4): FORMAT_PAIRS, iso_datetime_formatter(), TO_12H, TO_24H + +### Community 106 - "Leads v3 Archive Docs" +Cohesion: 0.50 +Nodes (5): Exhibitor Leads v3 Detailed Spec (Archived), Leads Manage/Config Tab (Exhibit + App Specific), Exhibitor Leads v3 Design Overview (Archived), Leads Module Four Primary Tabs, Leads License Model (shared passcode + licensed users) + +### Community 107 - "Badge Calibration Assets" +Cohesion: 0.40 +Nodes (5): Event Badge Header Printing, Lanyard Clip Slot Danger Zones, Inch Ruler (Bottom), Millimeter Ruler (Top), Badge Header Calibration Strip SVG + +### Community 108 - "Recovery Meetings UX Proposals" +Cohesion: 0.40 +Nodes (5): Confirmed Meetings Only Default Filter (item 15), AE UI/UX Future Ideas Proposal, Favorites Stored Server-Side (data_store record), Live Now / Starting Soon Indicators (item 7), IDAA Recovery Meetings UX Improvements + +### Community 109 - "FA to Lucide Migration" +Cohesion: 0.40 +Nodes (4): parse_fa_class(), Return (icon_name, extra_classes, has_spin) from a FA class string., Regex sub callback: replace a single FA span with a Lucide component., replace_span() + +### Community 110 - "SvelteKit Type Declarations" +Cohesion: 0.40 +Nodes (4): IntrinsicElements, Locals, Platform, Window + +### Community 112 - "Badge Header SVG Assets" +Cohesion: 0.40 +Nodes (5): AETHER PLATFORM Text Label, Blue Linear Gradient (#1e3a8a → #1e40af), Hexagon Tile Pattern (white stroke, 10% opacity), ONE SKY IT Text Label, Badge Header Hex Blue SVG + +### Community 113 - "V3 Field Editor" +Cohesion: 0.50 +Nodes (3): $lib/ae_journals/ae_journals__journal, $lib/ae_journals/ae_journals__journal_entry, $lib/ae_journals/db_journals + +### Community 115 - "Firefly Theme Archive" +Cohesion: 0.50 +Nodes (4): ae_app_3x_llm Branch (stable baseline), element_modal_v1.svelte (Svelte 5 Snippets), AE Firefly CSS Theme Files, AE Firefly Theme Repair + +### Community 117 - "App Entry & PWA" +Cohesion: 0.50 +Nodes (4): Pre-JS Loading Spinner (#ae_loader), PWA Web App Manifest, Service Worker Suppression on Localhost, SvelteKit App Entry Point (app.html) + +### Community 121 - "Sponsorship Module Docs" +Cohesion: 0.67 +Nodes (3): Sponsorship Configuration Object (Sponsorship_Cfg), Sponsorship Object, AE Sponsorships Module + +### Community 123 - "IDAA Recovery Meetings Roadmap" +Cohesion: 0.67 +Nodes (3): Live Now Badge for IDAA Meetings, IDAA Recovery Meetings UI/UX Improvement Roadmap 2026, Automatic Timezone Conversion for IDAA Meetings + +### Community 124 - "IDAA Video Conferences Docs" +Cohesion: 0.67 +Nodes (3): Breakout Link URL Bootstrap Parameters, Jitsi Meeting Integration, IDAA Video Conferences Module + +### Community 127 - "Journals README Docs" +Cohesion: 0.67 +Nodes (3): Journal Entry Encryption (Passcode), Journals Offline Support (Dexie IndexedDB), Journals Module (/routes/journals) + +### Community 128 - "Badge Calibration PNG" +Cohesion: 0.67 +Nodes (3): Badge Header Calibration Image, Clip Slot Danger Zone, ZC10L Badge Header Format + +### Community 129 - "OSIT Brand Logo" +Cohesion: 1.00 +Nodes (3): Blue Color Scheme, Hexagon Cluster Motif, One Sky IT Logo 2022 + +## Knowledge Gaps +- **669 isolated node(s):** `$schema`, `style`, `config`, `css`, `baseColor` (+664 more) + These have ≤1 connection - possible missing edges or undocumented components. +- **74 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. + +## Suggested Questions +_Questions this graph is uniquely positioned to answer:_ + +- **Why does `./launcher_file_cont.svelte` connect `Launcher App Profiles` to `Events Sessions & Devices`, `IDAA Archives Module`, `Shared UI Components`, `V3 API Client Layer`, `Exhibit Tracking CRUD`, `Journals State Stores`, `Core Admin Pages`, `User & Core Functions`, `Event Person & App Stores`, `Module Function Facades`, `Launcher Config Components`, `Hosted Files UI`, `Utility Functions`, `Electron Native Bridge`, `Badge Print & Search UI`, `Core Data Store & Lookups`?** + _High betweenness centrality (0.061) - this node is a cross-community bridge._ +- **Why does `key_val` connect `V3 API Client Layer` to `Exhibit Tracking CRUD`, `User & Core Functions`, `Module Function Facades`, `Dexie IDB & Journals Data`, `Launcher App Profiles`, `Posts & BB CRUD`, `Archives CRUD Layer`, `Event Badges CRUD`, `Event Device CRUD`, `Events Object CRUD`, `Activity Log CRUD`, `File Management UI`, `Core Data Store & Lookups`, `Sponsorships CRUD`, `Site & Domain CRUD`, `Events Dexie Schema`, `Journals State Stores`, `Event Person & App Stores`, `Core Dexie DB Schema`, `Journal Decryption`, `Event Presentation CRUD`, `Event Presenter CRUD`, `Event Session CRUD`, `IDAA BB Post Helpers`, `IDAA BB State & View`, `Account CRUD`, `Event File CRUD`, `Exhibit CRUD`, `Address CRUD`, `Contact CRUD`, `Person CRUD`, `Journal Content Parsers`?** + _High betweenness centrality (0.052) - this node is a cross-community bridge._ +- **Why does `dependencies` connect `Runtime Dependencies` to `Package Metadata`, `Dexie IDB & Journals Data`, `OpenAI Dependency`, `HTML5 QR Code Lib`?** + _High betweenness centrality (0.043) - this node is a cross-community bridge._ +- **What connects `$schema`, `style`, `config` to the rest of the system?** + _696 weakly-connected nodes found - possible documentation gaps or missing edges._ +- **Should `Events Sessions & Devices` be split into smaller, more focused modules?** + _Cohesion score 0.06210670314637483 - nodes in this community are weakly interconnected._ +- **Should `IDAA Archives Module` be split into smaller, more focused modules?** + _Cohesion score 0.0484593837535014 - nodes in this community are weakly interconnected._ +- **Should `Shared UI Components` be split into smaller, more focused modules?** + _Cohesion score 0.08635703918722787 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/cost.json b/graphify-out/cost.json new file mode 100644 index 00000000..350bb8b8 --- /dev/null +++ b/graphify-out/cost.json @@ -0,0 +1,12 @@ +{ + "runs": [ + { + "date": "2026-06-24T01:11:55.678656+00:00", + "input_tokens": 0, + "output_tokens": 0, + "files": 451 + } + ], + "total_input_tokens": 0, + "total_output_tokens": 0 +} \ No newline at end of file diff --git a/graphify-out/graph.json b/graphify-out/graph.json new file mode 100644 index 00000000..37f57d5e --- /dev/null +++ b/graphify-out/graph.json @@ -0,0 +1,69497 @@ +{ + "directed": false, + "multigraph": false, + "graph": { + "hyperedges": [ + { + "id": "idaa_privacy_auth_cache_triad", + "label": "IDAA Privacy: Auth Gate + Cache Rule + Triple Linkage", + "nodes": [ + "aether_app_sveltekit_claude_idaa_privacy", + "documentation_ae__permissions_idaa_auth_before_cache", + "documentation_client__idaa_triple_linkage" + ], + "relation": "implement", + "confidence": "EXTRACTED", + "confidence_score": 0.95, + "source_file": "CLAUDE.md" + }, + { + "id": "sveltekit_data_load_idb_swr_triad", + "label": "SvelteKit Data Load: SWR Pattern + LiveQuery + try_cache Bug", + "nodes": [ + "aether_app_sveltekit_claude_swr_pattern", + "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "documentation_guide__sveltekit2_svelte5_dexiejs_try_cache_bug" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md" + }, + { + "id": "v3_api_auth_naming_patch_triad", + "label": "V3 API: Auth Headers + ID Convention + PATCH Body Rule", + "nodes": [ + "documentation_guide__ae_api_v3_auth_headers", + "documentation_ae__naming_conventions_id_convention", + "documentation_bootstrap__ai_agent_quickstart_patch_id_rule" + ], + "relation": "form", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md" + }, + { + "id": "idaa_privacy_cluster", + "label": "IDAA Privacy Enforcement Cluster", + "nodes": [ + "documentation_module__ae_idaa_archives_idaa_archives_module", + "documentation_module__ae_idaa_bulletin_board_idaa_bb_module", + "documentation_module__ae_idaa_recovery_meetings_recovery_meetings_module", + "documentation_module__ae_idaa_video_conferences_video_conf_module", + "documentation_reference__common_agent_mistakes_idaa_public_exposure", + "documentation_module__ae_idaa_archives_security_requirement", + "documentation_module__ae_idaa_bulletin_board_sev1_privacy" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_IDAA_Archives.md" + }, + { + "id": "events_module_cluster", + "label": "Events Module Family", + "nodes": [ + "documentation_module__ae_events_presentation_management_pres_mgmt_module", + "documentation_module__ae_events_launcher_launcher_module", + "documentation_module__ae_events_badges_badges_module", + "documentation_module__ae_events_badge_templates_badge_template_module", + "documentation_module__ae_events_leads_leads_module", + "documentation_module__ae_events_launcher_native_native_integration", + "documentation_module__ae_events_launcher_config_menu_config_menu" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md" + }, + { + "id": "native_launcher_tech_cluster", + "label": "Native Launcher Technical Stack", + "nodes": [ + "documentation_module__ae_events_launcher_native_three_layer_bridge", + "documentation_module__ae_events_launcher_native_electron_relay", + "documentation_module__ae_events_launcher_native_hashed_cache", + "documentation_module__ae_events_launcher_native_safe_handover", + "documentation_module__ae_events_launcher_native_launch_profiles", + "documentation_module__ae_events_launcher_native_applescript_hardened", + "documentation_module__ae_events_launcher_native_ipc_whitelist" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md" + }, + { + "id": "journal_privacy_cluster", + "label": "Journals Privacy and Encryption Cluster", + "nodes": [ + "documentation_module__ae_journals_journals_module", + "documentation_module__ae_journals_e2ee_encryption", + "documentation_module__ae_journals_security_limitations", + "documentation_module__ae_journals_access_privacy", + "documentation_module__ae_journals_config_map_encryption_behavior", + "documentation_todo__agents_journal_entry_followups" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.9, + "source_file": "documentation/MODULE__AE_Journals.md" + }, + { + "id": "he_pressmgmt_config_cleanup_trio", + "label": "Pres Mgmt Config Cleanup: Schema + Store + UI", + "nodes": [ + "documentation_project__ae_events_pressmgmt_config_cleanup_pressmgmt_remote_cfg", + "documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store", + "documentation_project__ae_events_pressmgmt_config_cleanup_config_ui_page", + "documentation_project__ae_events_pressmgmt_config_cleanup_sync_config_function" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md" + }, + { + "id": "he_svelte5_migration_family", + "label": "Svelte 5 PersistedState Migration (all modules)", + "nodes": [ + "documentation_project__stores_svelte5_migration_document", + "documentation_project__stores_svelte5_migration_events_module_complete", + "documentation_project__stores_svelte5_migration_persisted_state_pattern", + "documentation_project__idaa_stores_svelte5_migration_document", + "documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store", + "archive_project__ae_events_badges_config_cleanup_badges_loc_store" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md" + }, + { + "id": "he_passcode_security_flow", + "label": "Passcode Security: Exposure + API Auth + JWT", + "nodes": [ + "documentation_project__ae_site_passcode_security_access_code_kv_json_exposure", + "documentation_project__ae_site_passcode_security_api_verified_auth", + "documentation_project__ae_site_passcode_security_authenticate_passcode_endpoint", + "documentation_project__ae_site_passcode_security_role_ttl" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md" + }, + { + "id": "he_badges_module_projects", + "label": "Badges Module: Config, Review, Print Projects", + "nodes": [ + "archive_project__ae_events_badges_config_cleanup_document", + "archive_project__ae_events_badges_review_print_document", + "archive_project__ae_events_badges_config_cleanup_edit_permissions", + "archive_project__ae_events_badges_review_print_two_flows", + "archive_project__ae_events_badges_review_print_email_rule" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md" + }, + { + "id": "hyperedge_svelte5_reactivity_patterns", + "label": "Svelte 5 Reactivity Best Practices", + "nodes": [ + "archive_reference__legacy_performance_guidelines_derived_by_livequery_rule", + "archive_reference__legacy_performance_guidelines_livequery_pure_data_rule", + "archive_reference__legacy_performance_guidelines_untrack_in_effect_rule", + "archive_project__ae_ui_journals_module_update_2026_untrack_pattern", + "archive_project__ae_object_field_editor_v3_upgrade_svelte5_runes_pattern" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md" + }, + { + "id": "hyperedge_style_modernization_effort", + "label": "Style Modernization Effort (FA\u2192Lucide, variant\u2192preset)", + "nodes": [ + "archive_project__ae_style_review_2026_03_style_review_project", + "archive_project__ae_style_review_2026_03_fontawesome_to_lucide_migration", + "archive_project__ae_style_review_2026_03_variant_to_preset_migration", + "archive_project__ae_ui_journals_module_update_2026_skeleton_v4_token_reference", + "archive_todo__agents__archive_2026_03_stores_phase_1_2_cleanup", + "archive_reference__legacy_ui_component_patterns_ui_component_patterns" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md" + }, + { + "id": "hyperedge_v3_api_migration", + "label": "V3 API CRUD Migration Effort", + "nodes": [ + "archive_project__use_ae_api_v3_crud_upgrade_crud_v3_migration", + "archive_project__ae_object_field_editor_v3_upgrade_field_editor_v3", + "archive_project__ae_object_field_editor_v3_upgrade_crud_v1_v2_retirement", + "archive_project__use_ae_api_v3_crud_upgrade_permissive_update_mode" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.9, + "source_file": "documentation/archive/PROJECT__Use_AE_API_V3_CRUD_upgrade.md" + }, + { + "id": "hyperedge_conference_events_2026", + "label": "2026 Live Conference Events", + "nodes": [ + "archive_project__ae_events_zebra_hardware_test_day_zebra_zc10l_badge_printing", + "archive_todo__agents__archive_2026_06_cmsc_charlotte_event", + "archive_todo__agents__archive_2026_06_axonius_dc_badges", + "archive_todo__agents__archive_2026_05_launcher_force_sync_location" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md" + }, + { + "id": "idaa_novi_iframe_bridge_pattern", + "label": "IDAA Novi iframe Bridge Pattern (Archives, BB, Recovery Meetings, Jitsi)", + "nodes": [ + "idaa_readme_novi_iframe_bridge_arch", + "static_idaa_novi_iframe_archives_novi_archive_embed", + "static_idaa_novi_iframe_bulletin_board_bb_embed", + "static_idaa_novi_iframe_recovery_meetings_recovery_meetings_embed", + "static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed", + "static_idaa_novi_iframe_jitsi_reports_jitsi_reports_embed", + "static_idaa_novi_iframe_archives_novi_customer_uid_inject", + "static_idaa_novi_iframe_archives_restricted_access_key" + ], + "relation": "participate_in", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md" + }, + { + "id": "idaa_postmessage_protocol", + "label": "IDAA iframe postMessage Communication Protocol", + "nodes": [ + "static_idaa_novi_iframe_archives_postmessage_scroll_sync", + "static_idaa_novi_iframe_bulletin_board_bb_embed", + "static_idaa_novi_iframe_recovery_meetings_recovery_meetings_embed", + "src_parent_iframe_html_postmessage_height_sync" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "static/idaa_novi_iframe_archives.html" + }, + { + "id": "events_data_model_objects", + "label": "Events Module Core Data Objects", + "nodes": [ + "events_readme_event_object", + "events_readme_event_session_object", + "events_readme_event_presentation_object", + "events_readme_event_presenter_object", + "events_readme_event_file_object", + "leads_readme_event_exhibit_object", + "leads_readme_event_exhibit_tracking_object" + ], + "relation": "participate_in", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/README.md" + }, + { + "id": "playwright_hard_won_lessons", + "label": "Playwright Test Hard-Won Lessons", + "nodes": [ + "tests_readme_ae_version_guard", + "tests_readme_idb_inject_reload_pattern", + "tests_readme_html5_validation_trap", + "tests_readme_svelte5_value_bind_trap", + "tests_readme_addInitScript_pattern", + "tests_readme_test_mode_email_suppress", + "tests_readme_idaa_store_seed_trap", + "tests_readme_storage_event_approach" + ], + "relation": "participate_in", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md" + } + ] + }, + "nodes": [ + { + "label": "components.json", + "file_type": "code", + "source_file": "components.json", + "source_location": "L1", + "_origin": "ast", + "id": "components", + "community": 52, + "norm_label": "components.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "components.json", + "source_location": "L2", + "_origin": "ast", + "id": "components_schema", + "community": 52, + "norm_label": "$schema" + }, + { + "label": "style", + "file_type": "code", + "source_file": "components.json", + "source_location": "L3", + "_origin": "ast", + "id": "components_style", + "community": 52, + "norm_label": "style" + }, + { + "label": "tailwind", + "file_type": "code", + "source_file": "components.json", + "source_location": "L4", + "_origin": "ast", + "id": "components_tailwind", + "community": 52, + "norm_label": "tailwind" + }, + { + "label": "config", + "file_type": "code", + "source_file": "components.json", + "source_location": "L5", + "_origin": "ast", + "id": "components_tailwind_config", + "community": 52, + "norm_label": "config" + }, + { + "label": "css", + "file_type": "code", + "source_file": "components.json", + "source_location": "L6", + "_origin": "ast", + "id": "components_tailwind_css", + "community": 52, + "norm_label": "css" + }, + { + "label": "baseColor", + "file_type": "code", + "source_file": "components.json", + "source_location": "L7", + "_origin": "ast", + "id": "components_tailwind_basecolor", + "community": 52, + "norm_label": "basecolor" + }, + { + "label": "aliases", + "file_type": "code", + "source_file": "components.json", + "source_location": "L9", + "_origin": "ast", + "id": "components_aliases", + "community": 52, + "norm_label": "aliases" + }, + { + "label": "components", + "file_type": "code", + "source_file": "components.json", + "source_location": "L10", + "_origin": "ast", + "id": "components_aliases_components", + "community": 52, + "norm_label": "components" + }, + { + "label": "utils", + "file_type": "code", + "source_file": "components.json", + "source_location": "L11", + "_origin": "ast", + "id": "components_aliases_utils", + "community": 52, + "norm_label": "utils" + }, + { + "label": "ui", + "file_type": "code", + "source_file": "components.json", + "source_location": "L12", + "_origin": "ast", + "id": "components_aliases_ui", + "community": 52, + "norm_label": "ui" + }, + { + "label": "hooks", + "file_type": "code", + "source_file": "components.json", + "source_location": "L13", + "_origin": "ast", + "id": "components_aliases_hooks", + "community": 52, + "norm_label": "hooks" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "components.json", + "source_location": "L15", + "_origin": "ast", + "id": "components_typescript", + "community": 52, + "norm_label": "typescript" + }, + { + "label": "registry", + "file_type": "code", + "source_file": "components.json", + "source_location": "L16", + "_origin": "ast", + "id": "components_registry", + "community": 52, + "norm_label": "registry" + }, + { + "label": "eslint.config.js", + "file_type": "code", + "source_file": "eslint.config.js", + "source_location": "L1", + "_origin": "ast", + "id": "eslint_config", + "community": 199, + "norm_label": "eslint.config.js" + }, + { + "label": "package.json", + "file_type": "code", + "source_file": "package.json", + "source_location": "L1", + "_origin": "ast", + "id": "package", + "community": 81, + "norm_label": "package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "package.json", + "source_location": "L2", + "_origin": "ast", + "id": "package_name", + "community": 81, + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "package.json", + "source_location": "L3", + "_origin": "ast", + "id": "package_version", + "community": 81, + "norm_label": "version" + }, + { + "label": "description", + "file_type": "code", + "source_file": "package.json", + "source_location": "L4", + "_origin": "ast", + "id": "package_description", + "community": 81, + "norm_label": "description" + }, + { + "label": "homepage", + "file_type": "code", + "source_file": "package.json", + "source_location": "L5", + "_origin": "ast", + "id": "package_homepage", + "community": 81, + "norm_label": "homepage" + }, + { + "label": "private", + "file_type": "code", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "id": "package_private", + "community": 81, + "norm_label": "private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "package.json", + "source_location": "L7", + "_origin": "ast", + "id": "package_scripts", + "community": 37, + "norm_label": "scripts" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "package.json", + "source_location": "L8", + "_origin": "ast", + "id": "package_scripts_dev", + "community": 37, + "norm_label": "dev" + }, + { + "label": "build", + "file_type": "code", + "source_file": "package.json", + "source_location": "L9", + "_origin": "ast", + "id": "package_scripts_build", + "community": 37, + "norm_label": "build" + }, + { + "label": "build:dev", + "file_type": "code", + "source_file": "package.json", + "source_location": "L10", + "_origin": "ast", + "id": "package_scripts_build_dev", + "community": 37, + "norm_label": "build:dev" + }, + { + "label": "build:test", + "file_type": "code", + "source_file": "package.json", + "source_location": "L11", + "_origin": "ast", + "id": "package_scripts_build_test", + "community": 37, + "norm_label": "build:test" + }, + { + "label": "build:prod", + "file_type": "code", + "source_file": "package.json", + "source_location": "L12", + "_origin": "ast", + "id": "package_scripts_build_prod", + "community": 37, + "norm_label": "build:prod" + }, + { + "label": "preview", + "file_type": "code", + "source_file": "package.json", + "source_location": "L13", + "_origin": "ast", + "id": "package_scripts_preview", + "community": 37, + "norm_label": "preview" + }, + { + "label": "test", + "file_type": "code", + "source_file": "package.json", + "source_location": "L14", + "_origin": "ast", + "id": "package_scripts_test", + "community": 37, + "norm_label": "test" + }, + { + "label": "check", + "file_type": "code", + "source_file": "package.json", + "source_location": "L15", + "_origin": "ast", + "id": "package_scripts_check", + "community": 37, + "norm_label": "check" + }, + { + "label": "check:watch", + "file_type": "code", + "source_file": "package.json", + "source_location": "L16", + "_origin": "ast", + "id": "package_scripts_check_watch", + "community": 37, + "norm_label": "check:watch" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L17", + "_origin": "ast", + "id": "package_scripts_lint", + "community": 37, + "norm_label": "lint" + }, + { + "label": "format", + "file_type": "code", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "id": "package_scripts_format", + "community": 37, + "norm_label": "format" + }, + { + "label": "test:integration", + "file_type": "code", + "source_file": "package.json", + "source_location": "L19", + "_origin": "ast", + "id": "package_scripts_test_integration", + "community": 37, + "norm_label": "test:integration" + }, + { + "label": "test:unit", + "file_type": "code", + "source_file": "package.json", + "source_location": "L20", + "_origin": "ast", + "id": "package_scripts_test_unit", + "community": 37, + "norm_label": "test:unit" + }, + { + "label": "build:docker:dev", + "file_type": "code", + "source_file": "package.json", + "source_location": "L21", + "_origin": "ast", + "id": "package_scripts_build_docker_dev", + "community": 37, + "norm_label": "build:docker:dev" + }, + { + "label": "compose:down", + "file_type": "code", + "source_file": "package.json", + "source_location": "L22", + "_origin": "ast", + "id": "package_scripts_compose_down", + "community": 37, + "norm_label": "compose:down" + }, + { + "label": "deploy:remote:test", + "file_type": "code", + "source_file": "package.json", + "source_location": "L23", + "_origin": "ast", + "id": "package_scripts_deploy_remote_test", + "community": 37, + "norm_label": "deploy:remote:test" + }, + { + "label": "deploy:remote:prod", + "file_type": "code", + "source_file": "package.json", + "source_location": "L24", + "_origin": "ast", + "id": "package_scripts_deploy_remote_prod", + "community": 37, + "norm_label": "deploy:remote:prod" + }, + { + "label": "postinstall", + "file_type": "code", + "source_file": "package.json", + "source_location": "L25", + "_origin": "ast", + "id": "package_scripts_postinstall", + "community": 37, + "norm_label": "postinstall" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L27", + "_origin": "ast", + "id": "package_devdependencies", + "community": 8, + "norm_label": "devdependencies" + }, + { + "label": "@eslint/js", + "file_type": "code", + "source_file": "package.json", + "source_location": "L28", + "_origin": "ast", + "id": "package_devdependencies_eslint_js", + "community": 8, + "norm_label": "@eslint/js" + }, + { + "label": "@playwright/test", + "file_type": "code", + "source_file": "package.json", + "source_location": "L29", + "_origin": "ast", + "id": "package_devdependencies_playwright_test", + "community": 8, + "norm_label": "@playwright/test" + }, + { + "label": "@skeletonlabs/skeleton", + "file_type": "code", + "source_file": "package.json", + "source_location": "L30", + "_origin": "ast", + "id": "package_devdependencies_skeletonlabs_skeleton", + "community": 8, + "norm_label": "@skeletonlabs/skeleton" + }, + { + "label": "@skeletonlabs/skeleton-svelte", + "file_type": "code", + "source_file": "package.json", + "source_location": "L31", + "_origin": "ast", + "id": "package_devdependencies_skeletonlabs_skeleton_svelte", + "community": 8, + "norm_label": "@skeletonlabs/skeleton-svelte" + }, + { + "label": "@sveltejs/adapter-auto", + "file_type": "code", + "source_file": "package.json", + "source_location": "L32", + "_origin": "ast", + "id": "package_devdependencies_sveltejs_adapter_auto", + "community": 8, + "norm_label": "@sveltejs/adapter-auto" + }, + { + "label": "@sveltejs/adapter-node", + "file_type": "code", + "source_file": "package.json", + "source_location": "L33", + "_origin": "ast", + "id": "package_devdependencies_sveltejs_adapter_node", + "community": 8, + "norm_label": "@sveltejs/adapter-node" + }, + { + "label": "@sveltejs/adapter-static", + "file_type": "code", + "source_file": "package.json", + "source_location": "L34", + "_origin": "ast", + "id": "package_devdependencies_sveltejs_adapter_static", + "community": 8, + "norm_label": "@sveltejs/adapter-static" + }, + { + "label": "@sveltejs/kit", + "file_type": "code", + "source_file": "package.json", + "source_location": "L35", + "_origin": "ast", + "id": "package_devdependencies_sveltejs_kit", + "community": 8, + "norm_label": "@sveltejs/kit" + }, + { + "label": "@sveltejs/vite-plugin-svelte", + "file_type": "code", + "source_file": "package.json", + "source_location": "L36", + "_origin": "ast", + "id": "package_devdependencies_sveltejs_vite_plugin_svelte", + "community": 8, + "norm_label": "@sveltejs/vite-plugin-svelte" + }, + { + "label": "@tailwindcss/forms", + "file_type": "code", + "source_file": "package.json", + "source_location": "L37", + "_origin": "ast", + "id": "package_devdependencies_tailwindcss_forms", + "community": 8, + "norm_label": "@tailwindcss/forms" + }, + { + "label": "@tailwindcss/typography", + "file_type": "code", + "source_file": "package.json", + "source_location": "L38", + "_origin": "ast", + "id": "package_devdependencies_tailwindcss_typography", + "community": 8, + "norm_label": "@tailwindcss/typography" + }, + { + "label": "@types/eslint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L39", + "_origin": "ast", + "id": "package_devdependencies_types_eslint", + "community": 8, + "norm_label": "@types/eslint" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "package.json", + "source_location": "L40", + "_origin": "ast", + "id": "package_devdependencies_types_node", + "community": 8, + "norm_label": "@types/node" + }, + { + "label": "@types/qrcode", + "file_type": "code", + "source_file": "package.json", + "source_location": "L41", + "_origin": "ast", + "id": "package_devdependencies_types_qrcode", + "community": 8, + "norm_label": "@types/qrcode" + }, + { + "label": "@typescript-eslint/eslint-plugin", + "file_type": "code", + "source_file": "package.json", + "source_location": "L42", + "_origin": "ast", + "id": "package_devdependencies_typescript_eslint_eslint_plugin", + "community": 8, + "norm_label": "@typescript-eslint/eslint-plugin" + }, + { + "label": "@typescript-eslint/parser", + "file_type": "code", + "source_file": "package.json", + "source_location": "L43", + "_origin": "ast", + "id": "package_devdependencies_typescript_eslint_parser", + "community": 8, + "norm_label": "@typescript-eslint/parser" + }, + { + "label": "clsx", + "file_type": "code", + "source_file": "package.json", + "source_location": "L44", + "_origin": "ast", + "id": "package_devdependencies_clsx", + "community": 8, + "norm_label": "clsx" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L45", + "_origin": "ast", + "id": "package_devdependencies_eslint", + "community": 8, + "norm_label": "eslint" + }, + { + "label": "eslint-config-prettier", + "file_type": "code", + "source_file": "package.json", + "source_location": "L46", + "_origin": "ast", + "id": "package_devdependencies_eslint_config_prettier", + "community": 8, + "norm_label": "eslint-config-prettier" + }, + { + "label": "eslint-plugin-svelte", + "file_type": "code", + "source_file": "package.json", + "source_location": "L47", + "_origin": "ast", + "id": "package_devdependencies_eslint_plugin_svelte", + "community": 8, + "norm_label": "eslint-plugin-svelte" + }, + { + "label": "flowbite", + "file_type": "code", + "source_file": "package.json", + "source_location": "L48", + "_origin": "ast", + "id": "package_devdependencies_flowbite", + "community": 8, + "norm_label": "flowbite" + }, + { + "label": "globals", + "file_type": "code", + "source_file": "package.json", + "source_location": "L49", + "_origin": "ast", + "id": "package_devdependencies_globals", + "community": 8, + "norm_label": "globals" + }, + { + "label": "highlight.js", + "file_type": "code", + "source_file": "package.json", + "source_location": "L50", + "_origin": "ast", + "id": "package_devdependencies_highlight_js", + "community": 8, + "norm_label": "highlight.js" + }, + { + "label": "lowlight", + "file_type": "code", + "source_file": "package.json", + "source_location": "L51", + "_origin": "ast", + "id": "package_devdependencies_lowlight", + "community": 8, + "norm_label": "lowlight" + }, + { + "label": "mode-watcher", + "file_type": "code", + "source_file": "package.json", + "source_location": "L52", + "_origin": "ast", + "id": "package_devdependencies_mode_watcher", + "community": 8, + "norm_label": "mode-watcher" + }, + { + "label": "prettier", + "file_type": "code", + "source_file": "package.json", + "source_location": "L53", + "_origin": "ast", + "id": "package_devdependencies_prettier", + "community": 8, + "norm_label": "prettier" + }, + { + "label": "prettier-plugin-svelte", + "file_type": "code", + "source_file": "package.json", + "source_location": "L54", + "_origin": "ast", + "id": "package_devdependencies_prettier_plugin_svelte", + "community": 8, + "norm_label": "prettier-plugin-svelte" + }, + { + "label": "sass-embedded", + "file_type": "code", + "source_file": "package.json", + "source_location": "L55", + "_origin": "ast", + "id": "package_devdependencies_sass_embedded", + "community": 8, + "norm_label": "sass-embedded" + }, + { + "label": "svelte", + "file_type": "code", + "source_file": "package.json", + "source_location": "L56", + "_origin": "ast", + "id": "package_devdependencies_svelte", + "community": 8, + "norm_label": "svelte" + }, + { + "label": "svelte-awesome-color-picker", + "file_type": "code", + "source_file": "package.json", + "source_location": "L57", + "_origin": "ast", + "id": "package_devdependencies_svelte_awesome_color_picker", + "community": 8, + "norm_label": "svelte-awesome-color-picker" + }, + { + "label": "svelte-check", + "file_type": "code", + "source_file": "package.json", + "source_location": "L58", + "_origin": "ast", + "id": "package_devdependencies_svelte_check", + "community": 8, + "norm_label": "svelte-check" + }, + { + "label": "svelte-highlight", + "file_type": "code", + "source_file": "package.json", + "source_location": "L59", + "_origin": "ast", + "id": "package_devdependencies_svelte_highlight", + "community": 8, + "norm_label": "svelte-highlight" + }, + { + "label": "svelte-idle", + "file_type": "code", + "source_file": "package.json", + "source_location": "L60", + "_origin": "ast", + "id": "package_devdependencies_svelte_idle", + "community": 172, + "norm_label": "svelte-idle" + }, + { + "label": "tailwind-merge", + "file_type": "code", + "source_file": "package.json", + "source_location": "L61", + "_origin": "ast", + "id": "package_devdependencies_tailwind_merge", + "community": 8, + "norm_label": "tailwind-merge" + }, + { + "label": "tailwind-variants", + "file_type": "code", + "source_file": "package.json", + "source_location": "L62", + "_origin": "ast", + "id": "package_devdependencies_tailwind_variants", + "community": 8, + "norm_label": "tailwind-variants" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "package.json", + "source_location": "L63", + "_origin": "ast", + "id": "package_devdependencies_tailwindcss", + "community": 8, + "norm_label": "tailwindcss" + }, + { + "label": "tailwindcss-animate", + "file_type": "code", + "source_file": "package.json", + "source_location": "L64", + "_origin": "ast", + "id": "package_devdependencies_tailwindcss_animate", + "community": 8, + "norm_label": "tailwindcss-animate" + }, + { + "label": "tslib", + "file_type": "code", + "source_file": "package.json", + "source_location": "L65", + "_origin": "ast", + "id": "package_devdependencies_tslib", + "community": 8, + "norm_label": "tslib" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "package.json", + "source_location": "L66", + "_origin": "ast", + "id": "package_devdependencies_typescript", + "community": 46, + "norm_label": "typescript" + }, + { + "label": "typescript-svelte-plugin", + "file_type": "code", + "source_file": "package.json", + "source_location": "L67", + "_origin": "ast", + "id": "package_devdependencies_typescript_svelte_plugin", + "community": 8, + "norm_label": "typescript-svelte-plugin" + }, + { + "label": "vite", + "file_type": "code", + "source_file": "package.json", + "source_location": "L68", + "_origin": "ast", + "id": "package_devdependencies_vite", + "community": 8, + "norm_label": "vite" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "package.json", + "source_location": "L69", + "_origin": "ast", + "id": "package_devdependencies_vitest", + "community": 8, + "norm_label": "vitest" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "package.json", + "source_location": "L71", + "_origin": "ast", + "id": "package_vitest", + "community": 81, + "norm_label": "vitest" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "package.json", + "source_location": "L72", + "_origin": "ast", + "id": "package_vitest_exclude", + "community": 81, + "norm_label": "exclude" + }, + { + "label": "type", + "file_type": "code", + "source_file": "package.json", + "source_location": "L76", + "_origin": "ast", + "id": "package_type", + "community": 81, + "norm_label": "type" + }, + { + "label": "overrides", + "file_type": "code", + "source_file": "package.json", + "source_location": "L77", + "_origin": "ast", + "id": "package_overrides", + "community": 55, + "norm_label": "overrides" + }, + { + "label": "esbuild", + "file_type": "code", + "source_file": "package.json", + "source_location": "L78", + "_origin": "ast", + "id": "package_overrides_esbuild", + "community": 55, + "norm_label": "esbuild" + }, + { + "label": "@codemirror/state", + "file_type": "code", + "source_file": "package.json", + "source_location": "L79", + "_origin": "ast", + "id": "package_overrides_codemirror_state", + "community": 55, + "norm_label": "@codemirror/state" + }, + { + "label": "@codemirror/view", + "file_type": "code", + "source_file": "package.json", + "source_location": "L80", + "_origin": "ast", + "id": "package_overrides_codemirror_view", + "community": 55, + "norm_label": "@codemirror/view" + }, + { + "label": "@codemirror/language", + "file_type": "code", + "source_file": "package.json", + "source_location": "L81", + "_origin": "ast", + "id": "package_overrides_codemirror_language", + "community": 55, + "norm_label": "@codemirror/language" + }, + { + "label": "@codemirror/commands", + "file_type": "code", + "source_file": "package.json", + "source_location": "L82", + "_origin": "ast", + "id": "package_overrides_codemirror_commands", + "community": 55, + "norm_label": "@codemirror/commands" + }, + { + "label": "@codemirror/lang-markdown", + "file_type": "code", + "source_file": "package.json", + "source_location": "L83", + "_origin": "ast", + "id": "package_overrides_codemirror_lang_markdown", + "community": 55, + "norm_label": "@codemirror/lang-markdown" + }, + { + "label": "@codemirror/autocomplete", + "file_type": "code", + "source_file": "package.json", + "source_location": "L84", + "_origin": "ast", + "id": "package_overrides_codemirror_autocomplete", + "community": 55, + "norm_label": "@codemirror/autocomplete" + }, + { + "label": "@codemirror/search", + "file_type": "code", + "source_file": "package.json", + "source_location": "L85", + "_origin": "ast", + "id": "package_overrides_codemirror_search", + "community": 55, + "norm_label": "@codemirror/search" + }, + { + "label": "@codemirror/lint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L86", + "_origin": "ast", + "id": "package_overrides_codemirror_lint", + "community": 55, + "norm_label": "@codemirror/lint" + }, + { + "label": "@lezer/common", + "file_type": "code", + "source_file": "package.json", + "source_location": "L87", + "_origin": "ast", + "id": "package_overrides_lezer_common", + "community": 55, + "norm_label": "@lezer/common" + }, + { + "label": "@lezer/highlight", + "file_type": "code", + "source_file": "package.json", + "source_location": "L88", + "_origin": "ast", + "id": "package_overrides_lezer_highlight", + "community": 55, + "norm_label": "@lezer/highlight" + }, + { + "label": "@lezer/lr", + "file_type": "code", + "source_file": "package.json", + "source_location": "L89", + "_origin": "ast", + "id": "package_overrides_lezer_lr", + "community": 55, + "norm_label": "@lezer/lr" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L91", + "_origin": "ast", + "id": "package_dependencies", + "community": 22, + "norm_label": "dependencies" + }, + { + "label": "@codemirror/autocomplete", + "file_type": "code", + "source_file": "package.json", + "source_location": "L92", + "_origin": "ast", + "id": "package_dependencies_codemirror_autocomplete", + "community": 22, + "norm_label": "@codemirror/autocomplete" + }, + { + "label": "@codemirror/commands", + "file_type": "code", + "source_file": "package.json", + "source_location": "L93", + "_origin": "ast", + "id": "package_dependencies_codemirror_commands", + "community": 22, + "norm_label": "@codemirror/commands" + }, + { + "label": "@codemirror/lang-css", + "file_type": "code", + "source_file": "package.json", + "source_location": "L94", + "_origin": "ast", + "id": "package_dependencies_codemirror_lang_css", + "community": 22, + "norm_label": "@codemirror/lang-css" + }, + { + "label": "@codemirror/lang-html", + "file_type": "code", + "source_file": "package.json", + "source_location": "L95", + "_origin": "ast", + "id": "package_dependencies_codemirror_lang_html", + "community": 22, + "norm_label": "@codemirror/lang-html" + }, + { + "label": "@codemirror/lang-javascript", + "file_type": "code", + "source_file": "package.json", + "source_location": "L96", + "_origin": "ast", + "id": "package_dependencies_codemirror_lang_javascript", + "community": 22, + "norm_label": "@codemirror/lang-javascript" + }, + { + "label": "@codemirror/lang-json", + "file_type": "code", + "source_file": "package.json", + "source_location": "L97", + "_origin": "ast", + "id": "package_dependencies_codemirror_lang_json", + "community": 22, + "norm_label": "@codemirror/lang-json" + }, + { + "label": "@codemirror/lang-markdown", + "file_type": "code", + "source_file": "package.json", + "source_location": "L98", + "_origin": "ast", + "id": "package_dependencies_codemirror_lang_markdown", + "community": 22, + "norm_label": "@codemirror/lang-markdown" + }, + { + "label": "@codemirror/language", + "file_type": "code", + "source_file": "package.json", + "source_location": "L99", + "_origin": "ast", + "id": "package_dependencies_codemirror_language", + "community": 22, + "norm_label": "@codemirror/language" + }, + { + "label": "@codemirror/language-data", + "file_type": "code", + "source_file": "package.json", + "source_location": "L100", + "_origin": "ast", + "id": "package_dependencies_codemirror_language_data", + "community": 22, + "norm_label": "@codemirror/language-data" + }, + { + "label": "@codemirror/lint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L101", + "_origin": "ast", + "id": "package_dependencies_codemirror_lint", + "community": 22, + "norm_label": "@codemirror/lint" + }, + { + "label": "@codemirror/search", + "file_type": "code", + "source_file": "package.json", + "source_location": "L102", + "_origin": "ast", + "id": "package_dependencies_codemirror_search", + "community": 22, + "norm_label": "@codemirror/search" + }, + { + "label": "@codemirror/state", + "file_type": "code", + "source_file": "package.json", + "source_location": "L103", + "_origin": "ast", + "id": "package_dependencies_codemirror_state", + "community": 22, + "norm_label": "@codemirror/state" + }, + { + "label": "@codemirror/theme-one-dark", + "file_type": "code", + "source_file": "package.json", + "source_location": "L104", + "_origin": "ast", + "id": "package_dependencies_codemirror_theme_one_dark", + "community": 22, + "norm_label": "@codemirror/theme-one-dark" + }, + { + "label": "@codemirror/view", + "file_type": "code", + "source_file": "package.json", + "source_location": "L105", + "_origin": "ast", + "id": "package_dependencies_codemirror_view", + "community": 22, + "norm_label": "@codemirror/view" + }, + { + "label": "@floating-ui/dom", + "file_type": "code", + "source_file": "package.json", + "source_location": "L106", + "_origin": "ast", + "id": "package_dependencies_floating_ui_dom", + "community": 22, + "norm_label": "@floating-ui/dom" + }, + { + "label": "@lucide/svelte", + "file_type": "code", + "source_file": "package.json", + "source_location": "L107", + "_origin": "ast", + "id": "package_dependencies_lucide_svelte", + "community": 22, + "norm_label": "@lucide/svelte" + }, + { + "label": "@popperjs/core", + "file_type": "code", + "source_file": "package.json", + "source_location": "L108", + "_origin": "ast", + "id": "package_dependencies_popperjs_core", + "community": 22, + "norm_label": "@popperjs/core" + }, + { + "label": "@tailwindcss/vite", + "file_type": "code", + "source_file": "package.json", + "source_location": "L109", + "_origin": "ast", + "id": "package_dependencies_tailwindcss_vite", + "community": 22, + "norm_label": "@tailwindcss/vite" + }, + { + "label": "dayjs", + "file_type": "code", + "source_file": "package.json", + "source_location": "L110", + "_origin": "ast", + "id": "package_dependencies_dayjs", + "community": 22, + "norm_label": "dayjs" + }, + { + "label": "dexie", + "file_type": "code", + "source_file": "package.json", + "source_location": "L111", + "_origin": "ast", + "id": "package_dependencies_dexie", + "community": 22, + "norm_label": "dexie" + }, + { + "label": "flowbite-svelte", + "file_type": "code", + "source_file": "package.json", + "source_location": "L112", + "_origin": "ast", + "id": "package_dependencies_flowbite_svelte", + "community": 22, + "norm_label": "flowbite-svelte" + }, + { + "label": "html5-qrcode", + "file_type": "code", + "source_file": "package.json", + "source_location": "L113", + "_origin": "ast", + "id": "package_dependencies_html5_qrcode", + "community": 167, + "norm_label": "html5-qrcode" + }, + { + "label": "marked", + "file_type": "code", + "source_file": "package.json", + "source_location": "L114", + "_origin": "ast", + "id": "package_dependencies_marked", + "community": 11, + "norm_label": "marked" + }, + { + "label": "openai", + "file_type": "code", + "source_file": "package.json", + "source_location": "L115", + "_origin": "ast", + "id": "package_dependencies_openai", + "community": 171, + "norm_label": "openai" + }, + { + "label": "prettier-plugin-tailwindcss", + "file_type": "code", + "source_file": "package.json", + "source_location": "L116", + "_origin": "ast", + "id": "package_dependencies_prettier_plugin_tailwindcss", + "community": 22, + "norm_label": "prettier-plugin-tailwindcss" + }, + { + "label": "qrcode", + "file_type": "code", + "source_file": "package.json", + "source_location": "L117", + "_origin": "ast", + "id": "package_dependencies_qrcode", + "community": 22, + "norm_label": "qrcode" + }, + { + "label": "runed", + "file_type": "code", + "source_file": "package.json", + "source_location": "L118", + "_origin": "ast", + "id": "package_dependencies_runed", + "community": 22, + "norm_label": "runed" + }, + { + "label": "svelte-persisted-store", + "file_type": "code", + "source_file": "package.json", + "source_location": "L119", + "_origin": "ast", + "id": "package_dependencies_svelte_persisted_store", + "community": 22, + "norm_label": "svelte-persisted-store" + }, + { + "label": "typescript-eslint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L120", + "_origin": "ast", + "id": "package_dependencies_typescript_eslint", + "community": 22, + "norm_label": "typescript-eslint" + }, + { + "label": "playwright.config.ts", + "file_type": "code", + "source_file": "playwright.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "playwright_config", + "community": 174, + "norm_label": "playwright.config.ts" + }, + { + "label": "config", + "file_type": "code", + "source_file": "playwright.config.ts", + "source_location": "L3", + "_origin": "ast", + "id": "playwright_config_config", + "community": 174, + "norm_label": "config" + }, + { + "label": "migrate_fa_to_lucide.py", + "file_type": "code", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_migrate_fa_to_lucide", + "community": 109, + "norm_label": "migrate_fa_to_lucide.py" + }, + { + "label": "parse_fa_class()", + "file_type": "code", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L180", + "_origin": "ast", + "id": "scripts_migrate_fa_to_lucide_parse_fa_class", + "community": 109, + "norm_label": "parse_fa_class()" + }, + { + "label": "replace_span()", + "file_type": "code", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L196", + "_origin": "ast", + "id": "scripts_migrate_fa_to_lucide_replace_span", + "community": 109, + "norm_label": "replace_span()" + }, + { + "label": "Return (icon_name, extra_classes, has_spin) from a FA class string.", + "file_type": "rationale", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L181", + "_origin": "ast", + "id": "scripts_migrate_fa_to_lucide_rationale_181", + "community": 109, + "norm_label": "return (icon_name, extra_classes, has_spin) from a fa class string." + }, + { + "label": "Regex sub callback: replace a single FA span with a Lucide component.", + "file_type": "rationale", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L197", + "_origin": "ast", + "id": "scripts_migrate_fa_to_lucide_rationale_197", + "community": 109, + "norm_label": "regex sub callback: replace a single fa span with a lucide component." + }, + { + "label": "postinstall.mjs", + "file_type": "code", + "source_file": "scripts/postinstall.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "scripts_postinstall", + "community": 116, + "norm_label": "postinstall.mjs" + }, + { + "label": "root", + "file_type": "code", + "source_file": "scripts/postinstall.mjs", + "source_location": "L22", + "_origin": "ast", + "id": "scripts_postinstall_root", + "community": 116, + "norm_label": "root" + }, + { + "label": "dist", + "file_type": "code", + "source_file": "scripts/postinstall.mjs", + "source_location": "L23", + "_origin": "ast", + "id": "scripts_postinstall_dist", + "community": 116, + "norm_label": "dist" + }, + { + "label": "patch()", + "file_type": "code", + "source_file": "scripts/postinstall.mjs", + "source_location": "L32", + "_origin": "ast", + "id": "scripts_postinstall_patch", + "community": 116, + "norm_label": "patch()" + }, + { + "label": "app.d.ts", + "file_type": "code", + "source_file": "src/app.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_app_d", + "community": 110, + "norm_label": "app.d.ts" + }, + { + "label": "Locals", + "file_type": "code", + "source_file": "src/app.d.ts", + "source_location": "L5", + "_origin": "ast", + "id": "src_app_d_locals", + "community": 110, + "norm_label": "locals" + }, + { + "label": "Platform", + "file_type": "code", + "source_file": "src/app.d.ts", + "source_location": "L18", + "_origin": "ast", + "id": "src_app_d_platform", + "community": 110, + "norm_label": "platform" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "src/app.d.ts", + "source_location": "L21", + "_origin": "ast", + "id": "src_app_d_window", + "community": 110, + "norm_label": "window" + }, + { + "label": "IntrinsicElements", + "file_type": "code", + "source_file": "src/app.d.ts", + "source_location": "L31", + "_origin": "ast", + "id": "src_app_d_intrinsicelements", + "community": 110, + "norm_label": "intrinsicelements" + }, + { + "label": "api.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api", + "community": 3, + "norm_label": "api.ts" + }, + { + "label": "serialize_json_field_pretty()", + "file_type": "code", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L33", + "_origin": "ast", + "id": "ae_api_api_serialize_json_field_pretty", + "community": 3, + "norm_label": "serialize_json_field_pretty()" + }, + { + "label": "get_ae_obj_li_for_lu()", + "file_type": "code", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L52", + "_origin": "ast", + "id": "ae_api_api_get_ae_obj_li_for_lu", + "community": 3, + "norm_label": "get_ae_obj_li_for_lu()" + }, + { + "label": "download_hosted_file()", + "file_type": "code", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L110", + "_origin": "ast", + "id": "ae_api_api_download_hosted_file", + "community": 3, + "norm_label": "download_hosted_file()" + }, + { + "label": "delete_hosted_file()", + "file_type": "code", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L163", + "_origin": "ast", + "id": "ae_api_api_delete_hosted_file", + "community": 3, + "norm_label": "delete_hosted_file()" + }, + { + "label": "send_email()", + "file_type": "code", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L211", + "_origin": "ast", + "id": "ae_api_api_send_email", + "community": 3, + "norm_label": "send_email()" + }, + { + "label": "obj", + "file_type": "code", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L315", + "_origin": "ast", + "id": "ae_api_api_obj", + "community": 3, + "norm_label": "obj" + }, + { + "label": "api_delete_object.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_delete_object.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_delete_object", + "community": 3, + "norm_label": "api_delete_object.ts" + }, + { + "label": "delete_object()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_delete_object.ts", + "source_location": "L10", + "_origin": "ast", + "id": "ae_api_api_delete_object_delete_object", + "community": 3, + "norm_label": "delete_object()" + }, + { + "label": "api_get__crud_obj_li.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li", + "community": 3, + "norm_label": "api_get__crud_obj_li.ts" + }, + { + "label": "GetAeObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li_getaeobjv3params", + "community": 3, + "norm_label": "getaeobjv3params" + }, + { + "label": "get_ae_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L17", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li_get_ae_obj", + "community": 3, + "norm_label": "get_ae_obj()" + }, + { + "label": "GetNestedAeObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L44", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li_getnestedaeobjv3params", + "community": 3, + "norm_label": "getnestedaeobjv3params" + }, + { + "label": "get_nested_ae_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L59", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li_get_nested_ae_obj", + "community": 3, + "norm_label": "get_nested_ae_obj()" + }, + { + "label": "GetAeObjLiV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L88", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li_getaeobjliv3params", + "community": 3, + "norm_label": "getaeobjliv3params" + }, + { + "label": "get_ae_obj_li()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L108", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li_get_ae_obj_li", + "community": 3, + "norm_label": "get_ae_obj_li()" + }, + { + "label": "GetNestedObjLiV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L158", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li_getnestedobjliv3params", + "community": 3, + "norm_label": "getnestedobjliv3params" + }, + { + "label": "get_nested_obj_li()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L176", + "_origin": "ast", + "id": "ae_api_api_get_crud_obj_li_get_nested_obj_li", + "community": 3, + "norm_label": "get_nested_obj_li()" + }, + { + "label": "api_get__data_store.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_get_data_store", + "community": 3, + "norm_label": "api_get__data_store.ts" + }, + { + "label": "GetDataStoreV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_api_api_get_data_store_getdatastorev3params", + "community": 3, + "norm_label": "getdatastorev3params" + }, + { + "label": "get_data_store()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L20", + "_origin": "ast", + "id": "ae_api_api_get_data_store_get_data_store", + "community": 3, + "norm_label": "get_data_store()" + }, + { + "label": "api_get__lookup.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__lookup.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_get_lookup", + "community": 3, + "norm_label": "api_get__lookup.ts" + }, + { + "label": "get_ae_lookup_li()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get__lookup.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_api_api_get_lookup_get_ae_lookup_li", + "community": 3, + "norm_label": "get_ae_lookup_li()" + }, + { + "label": "api_get_object.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_get_object", + "community": 3, + "norm_label": "api_get_object.ts" + }, + { + "label": "get_object()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_api_api_get_object_get_object", + "community": 3, + "norm_label": "get_object()" + }, + { + "label": "api_patch_object.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_patch_object.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_patch_object", + "community": 3, + "norm_label": "api_patch_object.ts" + }, + { + "label": "patch_object()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_patch_object.ts", + "source_location": "L10", + "_origin": "ast", + "id": "ae_api_api_patch_object_patch_object", + "community": 3, + "norm_label": "patch_object()" + }, + { + "label": "api_post__crud_obj.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj", + "community": 3, + "norm_label": "api_post__crud_obj.ts" + }, + { + "label": "serialize_json_field_pretty()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_serialize_json_field_pretty", + "community": 3, + "norm_label": "serialize_json_field_pretty()" + }, + { + "label": "CreateAeObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L26", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_createaeobjv3params", + "community": 3, + "norm_label": "createaeobjv3params" + }, + { + "label": "create_ae_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L34", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_create_ae_obj", + "community": 3, + "norm_label": "create_ae_obj()" + }, + { + "label": "CreateNestedObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L73", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_createnestedobjv3params", + "community": 3, + "norm_label": "createnestedobjv3params" + }, + { + "label": "create_nested_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L88", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_create_nested_obj", + "community": 3, + "norm_label": "create_nested_obj()" + }, + { + "label": "UpdateAeObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L135", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_updateaeobjv3params", + "community": 3, + "norm_label": "updateaeobjv3params" + }, + { + "label": "update_ae_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L144", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_update_ae_obj", + "community": 3, + "norm_label": "update_ae_obj()" + }, + { + "label": "UpdateNestedObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L180", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_updatenestedobjv3params", + "community": 3, + "norm_label": "updatenestedobjv3params" + }, + { + "label": "update_nested_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L197", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_update_nested_obj", + "community": 3, + "norm_label": "update_nested_obj()" + }, + { + "label": "DeleteAeObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L247", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_deleteaeobjv3params", + "community": 3, + "norm_label": "deleteaeobjv3params" + }, + { + "label": "delete_ae_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L260", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_delete_ae_obj", + "community": 3, + "norm_label": "delete_ae_obj()" + }, + { + "label": "DeleteNestedAeObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L285", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_deletenestedaeobjv3params", + "community": 3, + "norm_label": "deletenestedaeobjv3params" + }, + { + "label": "delete_nested_ae_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L305", + "_origin": "ast", + "id": "ae_api_api_post_crud_obj_delete_nested_ae_obj", + "community": 3, + "norm_label": "delete_nested_ae_obj()" + }, + { + "label": "api_post__crud_search.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_post_crud_search", + "community": 3, + "norm_label": "api_post__crud_search.ts" + }, + { + "label": "SearchAeObjV3Params", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_api_api_post_crud_search_searchaeobjv3params", + "community": 3, + "norm_label": "searchaeobjv3params" + }, + { + "label": "search_ae_obj()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L25", + "_origin": "ast", + "id": "ae_api_api_post_crud_search_search_ae_obj", + "community": 3, + "norm_label": "search_ae_obj()" + }, + { + "label": "api_post_object.ts", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_api_api_post_object", + "community": 3, + "norm_label": "api_post_object.ts" + }, + { + "label": "post_object()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_api_api_post_object_post_object", + "community": 3, + "norm_label": "post_object()" + }, + { + "label": "_post_with_xhr()", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L446", + "_origin": "ast", + "id": "ae_api_api_post_object_post_with_xhr", + "community": 3, + "norm_label": "_post_with_xhr()" + }, + { + "label": "ae_archives__archive.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_editable_fields", + "community": 132, + "norm_label": "ae_archives__archive.editable_fields.ts" + }, + { + "label": "editable_fields__archive", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_editable_fields_editable_fields_archive", + "community": 132, + "norm_label": "editable_fields__archive" + }, + { + "label": "ae_archives__archive.ts", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive", + "community": 18, + "norm_label": "ae_archives__archive.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L10", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_ae_promises", + "community": 18, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__archive()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L13", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_load_ae_obj_id_archive", + "community": 18, + "norm_label": "load_ae_obj_id__archive()" + }, + { + "label": "load_ae_obj_li__archive()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L103", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_load_ae_obj_li_archive", + "community": 18, + "norm_label": "load_ae_obj_li__archive()" + }, + { + "label": "create_ae_obj__archive()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L217", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_create_ae_obj_archive", + "community": 18, + "norm_label": "create_ae_obj__archive()" + }, + { + "label": "delete_ae_obj_id__archive()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L267", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_delete_ae_obj_id_archive", + "community": 18, + "norm_label": "delete_ae_obj_id__archive()" + }, + { + "label": "update_ae_obj__archive()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L305", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_update_ae_obj_archive", + "community": 18, + "norm_label": "update_ae_obj__archive()" + }, + { + "label": "qry__archive()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L354", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_qry_archive", + "community": 18, + "norm_label": "qry__archive()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L414", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_properties_to_save", + "community": 18, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L441", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_process_generic_props", + "community": 18, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__archive_props()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L494", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_process_ae_obj_archive_props", + "community": 18, + "norm_label": "process_ae_obj__archive_props()" + }, + { + "label": "ae_archives__archive_content.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_editable_fields", + "community": 131, + "norm_label": "ae_archives__archive_content.editable_fields.ts" + }, + { + "label": "editable_fields__archive_content", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_editable_fields_editable_fields_archive_content", + "community": 131, + "norm_label": "editable_fields__archive_content" + }, + { + "label": "ae_archives__archive_content.ts", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content", + "community": 18, + "norm_label": "ae_archives__archive_content.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_ae_promises", + "community": 18, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__archive_content()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_load_ae_obj_id_archive_content", + "community": 18, + "norm_label": "load_ae_obj_id__archive_content()" + }, + { + "label": "load_ae_obj_li__archive_content()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L71", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_load_ae_obj_li_archive_content", + "community": 18, + "norm_label": "load_ae_obj_li__archive_content()" + }, + { + "label": "create_ae_obj__archive_content()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L153", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_create_ae_obj_archive_content", + "community": 18, + "norm_label": "create_ae_obj__archive_content()" + }, + { + "label": "delete_ae_obj_id__archive_content()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L209", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_delete_ae_obj_id_archive_content", + "community": 18, + "norm_label": "delete_ae_obj_id__archive_content()" + }, + { + "label": "update_ae_obj__archive_content()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L247", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_update_ae_obj_archive_content", + "community": 18, + "norm_label": "update_ae_obj__archive_content()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L296", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_properties_to_save", + "community": 18, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L334", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_process_generic_props", + "community": 18, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__archive_content_props()", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L387", + "_origin": "ast", + "id": "ae_archives_ae_archives_archive_content_process_ae_obj_archive_content_props", + "community": 18, + "norm_label": "process_ae_obj__archive_content_props()" + }, + { + "label": "ae_archives_functions.ts", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_archives_ae_archives_functions", + "community": 18, + "norm_label": "ae_archives_functions.ts" + }, + { + "label": "export_obj", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L19", + "_origin": "ast", + "id": "ae_archives_ae_archives_functions_export_obj", + "community": 18, + "norm_label": "export_obj" + }, + { + "label": "db_archives.ts", + "file_type": "code", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_archives_db_archives", + "community": 18, + "norm_label": "db_archives.ts" + }, + { + "label": "Archive", + "file_type": "code", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L15", + "_origin": "ast", + "id": "ae_archives_db_archives_archive", + "community": 18, + "norm_label": "archive" + }, + { + "label": "Archive_Content", + "file_type": "code", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L81", + "_origin": "ast", + "id": "ae_archives_db_archives_archive_content", + "community": 18, + "norm_label": "archive_content" + }, + { + "label": "MySubClassedDexie", + "file_type": "code", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L145", + "_origin": "ast", + "id": "ae_archives_db_archives_mysubclasseddexie", + "community": 18, + "norm_label": "mysubclasseddexie" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L150", + "_origin": "ast", + "id": "ae_archives_db_archives_mysubclasseddexie_constructor", + "community": 18, + "norm_label": ".constructor()" + }, + { + "label": "db_archives", + "file_type": "code", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L197", + "_origin": "ast", + "id": "ae_archives_db_archives_db_archives", + "community": 18, + "norm_label": "db_archives" + }, + { + "label": "ae_core__account.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_account_editable_fields", + "community": 133, + "norm_label": "ae_core__account.editable_fields.ts" + }, + { + "label": "editable_fields__account", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_account_editable_fields_editable_fields_account", + "community": 133, + "norm_label": "editable_fields__account" + }, + { + "label": "ae_core__account.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_account", + "community": 57, + "norm_label": "ae_core__account.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_core_ae_core_account_ae_promises", + "community": 57, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__account()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_core_ae_core_account_load_ae_obj_id_account", + "community": 57, + "norm_label": "load_ae_obj_id__account()" + }, + { + "label": "load_ae_obj_li__account()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L72", + "_origin": "ast", + "id": "ae_core_ae_core_account_load_ae_obj_li_account", + "community": 57, + "norm_label": "load_ae_obj_li__account()" + }, + { + "label": "create_ae_obj__account()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L143", + "_origin": "ast", + "id": "ae_core_ae_core_account_create_ae_obj_account", + "community": 57, + "norm_label": "create_ae_obj__account()" + }, + { + "label": "update_ae_obj__account()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L198", + "_origin": "ast", + "id": "ae_core_ae_core_account_update_ae_obj_account", + "community": 57, + "norm_label": "update_ae_obj__account()" + }, + { + "label": "delete_ae_obj_id__account()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L251", + "_origin": "ast", + "id": "ae_core_ae_core_account_delete_ae_obj_id_account", + "community": 57, + "norm_label": "delete_ae_obj_id__account()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L293", + "_origin": "ast", + "id": "ae_core_ae_core_account_properties_to_save", + "community": 57, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L315", + "_origin": "ast", + "id": "ae_core_ae_core_account_process_generic_props", + "community": 57, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__account_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L367", + "_origin": "ast", + "id": "ae_core_ae_core_account_process_ae_obj_account_props", + "community": 57, + "norm_label": "process_ae_obj__account_props()" + }, + { + "label": "ae_core__activity_log.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_editable_fields", + "community": 134, + "norm_label": "ae_core__activity_log.editable_fields.ts" + }, + { + "label": "editable_fields__activity_log", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_editable_fields_editable_fields_activity_log", + "community": 134, + "norm_label": "editable_fields__activity_log" + }, + { + "label": "ae_core__activity_log.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log", + "community": 28, + "norm_label": "ae_core__activity_log.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L5", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_ae_promises", + "community": 28, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__activity_log()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_load_ae_obj_id_activity_log", + "community": 28, + "norm_label": "load_ae_obj_id__activity_log()" + }, + { + "label": "load_ae_obj_li__activity_log()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L40", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_load_ae_obj_li_activity_log", + "community": 28, + "norm_label": "load_ae_obj_li__activity_log()" + }, + { + "label": "create_ae_obj__activity_log()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L89", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_create_ae_obj_activity_log", + "community": 28, + "norm_label": "create_ae_obj__activity_log()" + }, + { + "label": "update_ae_obj__activity_log()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L130", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_update_ae_obj_activity_log", + "community": 28, + "norm_label": "update_ae_obj__activity_log()" + }, + { + "label": "qry__activity_log()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L163", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_qry_activity_log", + "community": 28, + "norm_label": "qry__activity_log()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L262", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_properties_to_save", + "community": 28, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L302", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_process_generic_props", + "community": 28, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__activity_log_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L357", + "_origin": "ast", + "id": "ae_core_ae_core_activity_log_process_ae_obj_activity_log_props", + "community": 28, + "norm_label": "process_ae_obj__activity_log_props()" + }, + { + "label": "ae_core__address.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_address_editable_fields", + "community": 135, + "norm_label": "ae_core__address.editable_fields.ts" + }, + { + "label": "editable_fields__address", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_address_editable_fields_editable_fields_address", + "community": 135, + "norm_label": "editable_fields__address" + }, + { + "label": "ae_core__address.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_address", + "community": 66, + "norm_label": "ae_core__address.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_core_ae_core_address_ae_promises", + "community": 66, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__address()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_core_ae_core_address_load_ae_obj_id_address", + "community": 66, + "norm_label": "load_ae_obj_id__address()" + }, + { + "label": "load_ae_obj_li__address()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L58", + "_origin": "ast", + "id": "ae_core_ae_core_address_load_ae_obj_li_address", + "community": 66, + "norm_label": "load_ae_obj_li__address()" + }, + { + "label": "create_ae_obj__address()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L122", + "_origin": "ast", + "id": "ae_core_ae_core_address_create_ae_obj_address", + "community": 66, + "norm_label": "create_ae_obj__address()" + }, + { + "label": "update_ae_obj__address()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L165", + "_origin": "ast", + "id": "ae_core_ae_core_address_update_ae_obj_address", + "community": 66, + "norm_label": "update_ae_obj__address()" + }, + { + "label": "delete_ae_obj_id__address()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L206", + "_origin": "ast", + "id": "ae_core_ae_core_address_delete_ae_obj_id_address", + "community": 66, + "norm_label": "delete_ae_obj_id__address()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L236", + "_origin": "ast", + "id": "ae_core_ae_core_address_properties_to_save", + "community": 66, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L258", + "_origin": "ast", + "id": "ae_core_ae_core_address_process_generic_props", + "community": 66, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__address_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L299", + "_origin": "ast", + "id": "ae_core_ae_core_address_process_ae_obj_address_props", + "community": 66, + "norm_label": "process_ae_obj__address_props()" + }, + { + "label": "ae_core__contact.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_contact_editable_fields", + "community": 136, + "norm_label": "ae_core__contact.editable_fields.ts" + }, + { + "label": "editable_fields__contact", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_contact_editable_fields_editable_fields_contact", + "community": 136, + "norm_label": "editable_fields__contact" + }, + { + "label": "ae_core__contact.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_contact", + "community": 67, + "norm_label": "ae_core__contact.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_core_ae_core_contact_ae_promises", + "community": 67, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__contact()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_core_ae_core_contact_load_ae_obj_id_contact", + "community": 67, + "norm_label": "load_ae_obj_id__contact()" + }, + { + "label": "load_ae_obj_li__contact()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L58", + "_origin": "ast", + "id": "ae_core_ae_core_contact_load_ae_obj_li_contact", + "community": 67, + "norm_label": "load_ae_obj_li__contact()" + }, + { + "label": "create_ae_obj__contact()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L120", + "_origin": "ast", + "id": "ae_core_ae_core_contact_create_ae_obj_contact", + "community": 67, + "norm_label": "create_ae_obj__contact()" + }, + { + "label": "update_ae_obj__contact()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L163", + "_origin": "ast", + "id": "ae_core_ae_core_contact_update_ae_obj_contact", + "community": 67, + "norm_label": "update_ae_obj__contact()" + }, + { + "label": "delete_ae_obj_id__contact()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L204", + "_origin": "ast", + "id": "ae_core_ae_core_contact_delete_ae_obj_id_contact", + "community": 67, + "norm_label": "delete_ae_obj_id__contact()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L234", + "_origin": "ast", + "id": "ae_core_ae_core_contact_properties_to_save", + "community": 67, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L256", + "_origin": "ast", + "id": "ae_core_ae_core_contact_process_generic_props", + "community": 67, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__contact_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L297", + "_origin": "ast", + "id": "ae_core_ae_core_contact_process_ae_obj_contact_props", + "community": 67, + "norm_label": "process_ae_obj__contact_props()" + }, + { + "label": "ae_core__person.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_person_editable_fields", + "community": 137, + "norm_label": "ae_core__person.editable_fields.ts" + }, + { + "label": "editable_fields__person", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_person_editable_fields_editable_fields_person", + "community": 137, + "norm_label": "editable_fields__person" + }, + { + "label": "ae_core__person.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_person", + "community": 68, + "norm_label": "ae_core__person.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_core_ae_core_person_ae_promises", + "community": 68, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__person()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_core_ae_core_person_load_ae_obj_id_person", + "community": 68, + "norm_label": "load_ae_obj_id__person()" + }, + { + "label": "load_ae_obj_li__person()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L66", + "_origin": "ast", + "id": "ae_core_ae_core_person_load_ae_obj_li_person", + "community": 68, + "norm_label": "load_ae_obj_li__person()" + }, + { + "label": "create_ae_obj__person()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L205", + "_origin": "ast", + "id": "ae_core_ae_core_person_create_ae_obj_person", + "community": 68, + "norm_label": "create_ae_obj__person()" + }, + { + "label": "update_ae_obj__person()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L252", + "_origin": "ast", + "id": "ae_core_ae_core_person_update_ae_obj_person", + "community": 68, + "norm_label": "update_ae_obj__person()" + }, + { + "label": "delete_ae_obj_id__person()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L294", + "_origin": "ast", + "id": "ae_core_ae_core_person_delete_ae_obj_id_person", + "community": 68, + "norm_label": "delete_ae_obj_id__person()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L325", + "_origin": "ast", + "id": "ae_core_ae_core_person_properties_to_save", + "community": 68, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L395", + "_origin": "ast", + "id": "ae_core_ae_core_person_process_generic_props", + "community": 68, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__person_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L447", + "_origin": "ast", + "id": "ae_core_ae_core_person_process_ae_obj_person_props", + "community": 68, + "norm_label": "process_ae_obj__person_props()" + }, + { + "label": "ae_core__site.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_site_editable_fields", + "community": 139, + "norm_label": "ae_core__site.editable_fields.ts" + }, + { + "label": "editable_fields__site", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_site_editable_fields_editable_fields_site", + "community": 139, + "norm_label": "editable_fields__site" + }, + { + "label": "ae_core__site.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_site", + "community": 32, + "norm_label": "ae_core__site.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L10", + "_origin": "ast", + "id": "ae_core_ae_core_site_ae_promises", + "community": 32, + "norm_label": "ae_promises" + }, + { + "label": "lookup_site_domain()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L98", + "_origin": "ast", + "id": "ae_core_ae_core_site_lookup_site_domain", + "community": 32, + "norm_label": "lookup_site_domain()" + }, + { + "label": "_refresh_site_domain_background()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L157", + "_origin": "ast", + "id": "ae_core_ae_core_site_refresh_site_domain_background", + "community": 32, + "norm_label": "_refresh_site_domain_background()" + }, + { + "label": "load_ae_obj_id__site()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L263", + "_origin": "ast", + "id": "ae_core_ae_core_site_load_ae_obj_id_site", + "community": 32, + "norm_label": "load_ae_obj_id__site()" + }, + { + "label": "load_ae_obj_li__site()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L316", + "_origin": "ast", + "id": "ae_core_ae_core_site_load_ae_obj_li_site", + "community": 32, + "norm_label": "load_ae_obj_li__site()" + }, + { + "label": "create_ae_obj__site()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L392", + "_origin": "ast", + "id": "ae_core_ae_core_site_create_ae_obj_site", + "community": 32, + "norm_label": "create_ae_obj__site()" + }, + { + "label": "update_ae_obj__site()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L436", + "_origin": "ast", + "id": "ae_core_ae_core_site_update_ae_obj_site", + "community": 32, + "norm_label": "update_ae_obj__site()" + }, + { + "label": "delete_ae_obj_id__site()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L478", + "_origin": "ast", + "id": "ae_core_ae_core_site_delete_ae_obj_id_site", + "community": 32, + "norm_label": "delete_ae_obj_id__site()" + }, + { + "label": "load_ae_obj_li__site_domain()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L514", + "_origin": "ast", + "id": "ae_core_ae_core_site_load_ae_obj_li_site_domain", + "community": 32, + "norm_label": "load_ae_obj_li__site_domain()" + }, + { + "label": "create_ae_obj__site_domain()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L580", + "_origin": "ast", + "id": "ae_core_ae_core_site_create_ae_obj_site_domain", + "community": 32, + "norm_label": "create_ae_obj__site_domain()" + }, + { + "label": "update_ae_obj__site_domain()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L624", + "_origin": "ast", + "id": "ae_core_ae_core_site_update_ae_obj_site_domain", + "community": 32, + "norm_label": "update_ae_obj__site_domain()" + }, + { + "label": "delete_ae_obj_id__site_domain()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L671", + "_origin": "ast", + "id": "ae_core_ae_core_site_delete_ae_obj_id_site_domain", + "community": 32, + "norm_label": "delete_ae_obj_id__site_domain()" + }, + { + "label": "properties_to_save__site", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L706", + "_origin": "ast", + "id": "ae_core_ae_core_site_properties_to_save_site", + "community": 32, + "norm_label": "properties_to_save__site" + }, + { + "label": "properties_to_save__site_domain", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L739", + "_origin": "ast", + "id": "ae_core_ae_core_site_properties_to_save_site_domain", + "community": 32, + "norm_label": "properties_to_save__site_domain" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L771", + "_origin": "ast", + "id": "ae_core_ae_core_site_process_generic_props", + "community": 32, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__site_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L823", + "_origin": "ast", + "id": "ae_core_ae_core_site_process_ae_obj_site_props", + "community": 32, + "norm_label": "process_ae_obj__site_props()" + }, + { + "label": "process_ae_obj__site_domain_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L837", + "_origin": "ast", + "id": "ae_core_ae_core_site_process_ae_obj_site_domain_props", + "community": 32, + "norm_label": "process_ae_obj__site_domain_props()" + }, + { + "label": "ae_core__site_domain.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site_domain.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_site_domain_editable_fields", + "community": 138, + "norm_label": "ae_core__site_domain.editable_fields.ts" + }, + { + "label": "editable_fields__site_domain", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site_domain.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_site_domain_editable_fields_editable_fields_site_domain", + "community": 138, + "norm_label": "editable_fields__site_domain" + }, + { + "label": "ae_core__user.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_user_editable_fields", + "community": 140, + "norm_label": "ae_core__user.editable_fields.ts" + }, + { + "label": "editable_fields__user", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_user_editable_fields_editable_fields_user", + "community": 140, + "norm_label": "editable_fields__user" + }, + { + "label": "ae_core__user.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_user", + "community": 7, + "norm_label": "ae_core__user.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_core_ae_core_user_ae_promises", + "community": 7, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__user()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_core_ae_core_user_load_ae_obj_id_user", + "community": 7, + "norm_label": "load_ae_obj_id__user()" + }, + { + "label": "load_ae_obj_li__user()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L64", + "_origin": "ast", + "id": "ae_core_ae_core_user_load_ae_obj_li_user", + "community": 7, + "norm_label": "load_ae_obj_li__user()" + }, + { + "label": "create_ae_obj__user()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L213", + "_origin": "ast", + "id": "ae_core_ae_core_user_create_ae_obj_user", + "community": 7, + "norm_label": "create_ae_obj__user()" + }, + { + "label": "update_ae_obj__user()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L257", + "_origin": "ast", + "id": "ae_core_ae_core_user_update_ae_obj_user", + "community": 7, + "norm_label": "update_ae_obj__user()" + }, + { + "label": "delete_ae_obj_id__user()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L299", + "_origin": "ast", + "id": "ae_core_ae_core_user_delete_ae_obj_id_user", + "community": 7, + "norm_label": "delete_ae_obj_id__user()" + }, + { + "label": "auth_ae_obj__username_password()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L346", + "_origin": "ast", + "id": "ae_core_ae_core_user_auth_ae_obj_username_password", + "community": 7, + "norm_label": "auth_ae_obj__username_password()" + }, + { + "label": "auth_ae_obj__user_id_user_auth_key()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L390", + "_origin": "ast", + "id": "ae_core_ae_core_user_auth_ae_obj_user_id_user_auth_key", + "community": 7, + "norm_label": "auth_ae_obj__user_id_user_auth_key()" + }, + { + "label": "send_email_auth_ae_obj__user_id()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L433", + "_origin": "ast", + "id": "ae_core_ae_core_user_send_email_auth_ae_obj_user_id", + "community": 7, + "norm_label": "send_email_auth_ae_obj__user_id()" + }, + { + "label": "qry_ae_obj_li__user_email()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L469", + "_origin": "ast", + "id": "ae_core_ae_core_user_qry_ae_obj_li_user_email", + "community": 7, + "norm_label": "qry_ae_obj_li__user_email()" + }, + { + "label": "auth_ae_obj__user_id_change_password()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L508", + "_origin": "ast", + "id": "ae_core_ae_core_user_auth_ae_obj_user_id_change_password", + "community": 7, + "norm_label": "auth_ae_obj__user_id_change_password()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L545", + "_origin": "ast", + "id": "ae_core_ae_core_user_properties_to_save", + "community": 7, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L574", + "_origin": "ast", + "id": "ae_core_ae_core_user_process_generic_props", + "community": 7, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__user_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L626", + "_origin": "ast", + "id": "ae_core_ae_core_user_process_ae_obj_user_props", + "community": 7, + "norm_label": "process_ae_obj__user_props()" + }, + { + "label": "ae_core_functions.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_ae_core_functions", + "community": 7, + "norm_label": "ae_core_functions.ts" + }, + { + "label": "export_obj", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L51", + "_origin": "ast", + "id": "ae_core_ae_core_functions_export_obj", + "community": 7, + "norm_label": "export_obj" + }, + { + "label": "core__api_helpers.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__api_helpers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_api_helpers", + "community": 7, + "norm_label": "core__api_helpers.ts" + }, + { + "label": "add_url_params()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__api_helpers.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_core_core_api_helpers_add_url_params", + "community": 7, + "norm_label": "add_url_params()" + }, + { + "label": "clean_headers()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__api_helpers.ts", + "source_location": "L38", + "_origin": "ast", + "id": "ae_core_core_api_helpers_clean_headers", + "community": 7, + "norm_label": "clean_headers()" + }, + { + "label": "core__check_hosted_file_obj_w_hash.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__check_hosted_file_obj_w_hash.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_check_hosted_file_obj_w_hash", + "community": 30, + "norm_label": "core__check_hosted_file_obj_w_hash.ts" + }, + { + "label": "check_hosted_file_obj_w_hash()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__check_hosted_file_obj_w_hash.ts", + "source_location": "L5", + "_origin": "ast", + "id": "ae_core_core_check_hosted_file_obj_w_hash_check_hosted_file_obj_w_hash", + "community": 30, + "norm_label": "check_hosted_file_obj_w_hash()" + }, + { + "label": "core__countries.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_countries", + "community": 30, + "norm_label": "core__countries.ts" + }, + { + "label": "_refresh_lu_country_background()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L15", + "_origin": "ast", + "id": "ae_core_core_countries_refresh_lu_country_background", + "community": 30, + "norm_label": "_refresh_lu_country_background()" + }, + { + "label": "load_ae_obj_li__country()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L50", + "_origin": "ast", + "id": "ae_core_core_countries_load_ae_obj_li_country", + "community": 30, + "norm_label": "load_ae_obj_li__country()" + }, + { + "label": "core__country_subdivisions.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_country_subdivisions", + "community": 30, + "norm_label": "core__country_subdivisions.ts" + }, + { + "label": "_refresh_lu_country_subdivision_background()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L14", + "_origin": "ast", + "id": "ae_core_core_country_subdivisions_refresh_lu_country_subdivision_background", + "community": 30, + "norm_label": "_refresh_lu_country_subdivision_background()" + }, + { + "label": "load_ae_obj_li__country_subdivision()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L50", + "_origin": "ast", + "id": "ae_core_core_country_subdivisions_load_ae_obj_li_country_subdivision", + "community": 30, + "norm_label": "load_ae_obj_li__country_subdivision()" + }, + { + "label": "core__data_store.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_data_store", + "community": 41, + "norm_label": "core__data_store.ts" + }, + { + "label": "load_ae_obj_by_code__data_store()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L17", + "_origin": "ast", + "id": "ae_core_core_data_store_load_ae_obj_by_code_data_store", + "community": 41, + "norm_label": "load_ae_obj_by_code__data_store()" + }, + { + "label": "core__export.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__export.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_export", + "community": 7, + "norm_label": "core__export.ts" + }, + { + "label": "download_export__obj_type()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__export.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_core_core_export_download_export_obj_type", + "community": 7, + "norm_label": "download_export__obj_type()" + }, + { + "label": "core__hosted_files.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_hosted_files", + "community": 7, + "norm_label": "core__hosted_files.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_core_core_hosted_files_ae_promises", + "community": 7, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__hosted_file()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_core_core_hosted_files_load_ae_obj_id_hosted_file", + "community": 7, + "norm_label": "load_ae_obj_id__hosted_file()" + }, + { + "label": "load_ae_obj_li__hosted_file()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L70", + "_origin": "ast", + "id": "ae_core_core_hosted_files_load_ae_obj_li_hosted_file", + "community": 7, + "norm_label": "load_ae_obj_li__hosted_file()" + }, + { + "label": "delete_ae_obj_id__hosted_file()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L152", + "_origin": "ast", + "id": "ae_core_core_hosted_files_delete_ae_obj_id_hosted_file", + "community": 7, + "norm_label": "delete_ae_obj_id__hosted_file()" + }, + { + "label": "download_ae_obj_id__hosted_file()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L200", + "_origin": "ast", + "id": "ae_core_core_hosted_files_download_ae_obj_id_hosted_file", + "community": 7, + "norm_label": "download_ae_obj_id__hosted_file()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L244", + "_origin": "ast", + "id": "ae_core_core_hosted_files_properties_to_save", + "community": 7, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L272", + "_origin": "ast", + "id": "ae_core_core_hosted_files_process_generic_props", + "community": 7, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__hosted_file_props()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L324", + "_origin": "ast", + "id": "ae_core_core_hosted_files_process_ae_obj_hosted_file_props", + "community": 7, + "norm_label": "process_ae_obj__hosted_file_props()" + }, + { + "label": "core__idb_dexie.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_idb_dexie", + "community": 11, + "norm_label": "core__idb_dexie.ts" + }, + { + "label": "check_and_clear_idb_tables()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L19", + "_origin": "ast", + "id": "ae_core_core_idb_dexie_check_and_clear_idb_tables", + "community": 11, + "norm_label": "check_and_clear_idb_tables()" + }, + { + "label": "find_object_id()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L58", + "_origin": "ast", + "id": "ae_core_core_idb_dexie_find_object_id", + "community": 11, + "norm_label": "find_object_id()" + }, + { + "label": "db_save_ae_obj_li__ae_obj()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L108", + "_origin": "ast", + "id": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "community": 23, + "norm_label": "db_save_ae_obj_li__ae_obj()" + }, + { + "label": "core__idb_sort.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__idb_sort.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_idb_sort", + "community": 11, + "norm_label": "core__idb_sort.ts" + }, + { + "label": "build_tmp_sort()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__idb_sort.ts", + "source_location": "L22", + "_origin": "ast", + "id": "ae_core_core_idb_sort_build_tmp_sort", + "community": 11, + "norm_label": "build_tmp_sort()" + }, + { + "label": "core__qr_code.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_qr_code", + "community": 7, + "norm_label": "core__qr_code.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_core_core_qr_code_ae_promises", + "community": 7, + "norm_label": "ae_promises" + }, + { + "label": "generate_qr_code()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L12", + "_origin": "ast", + "id": "ae_core_core_qr_code_generate_qr_code", + "community": 7, + "norm_label": "generate_qr_code()" + }, + { + "label": "js_generate_qr_code()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L161", + "_origin": "ast", + "id": "ae_core_core_qr_code_js_generate_qr_code", + "community": 7, + "norm_label": "js_generate_qr_code()" + }, + { + "label": "core__time_zones.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_core_time_zones", + "community": 30, + "norm_label": "core__time_zones.ts" + }, + { + "label": "_refresh_lu_time_zone_background()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L15", + "_origin": "ast", + "id": "ae_core_core_time_zones_refresh_lu_time_zone_background", + "community": 30, + "norm_label": "_refresh_lu_time_zone_background()" + }, + { + "label": "load_ae_obj_li__time_zone()", + "file_type": "code", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L51", + "_origin": "ast", + "id": "ae_core_core_time_zones_load_ae_obj_li_time_zone", + "community": 30, + "norm_label": "load_ae_obj_li__time_zone()" + }, + { + "label": "db_core.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_db_core", + "community": 41, + "norm_label": "db_core.ts" + }, + { + "label": "ae_LocalFile", + "file_type": "code", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L19", + "_origin": "ast", + "id": "ae_core_db_core_ae_localfile", + "community": 41, + "norm_label": "ae_localfile" + }, + { + "label": "Person", + "file_type": "code", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L38", + "_origin": "ast", + "id": "ae_core_db_core_person", + "community": 41, + "norm_label": "person" + }, + { + "label": "MySubClassedDexie", + "file_type": "code", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L66", + "_origin": "ast", + "id": "ae_core_db_core_mysubclasseddexie", + "community": 41, + "norm_label": "mysubclasseddexie" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L78", + "_origin": "ast", + "id": "ae_core_db_core_mysubclasseddexie_constructor", + "community": 41, + "norm_label": ".constructor()" + }, + { + "label": "db_core", + "file_type": "code", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L156", + "_origin": "ast", + "id": "ae_core_db_core_db_core", + "community": 7, + "norm_label": "db_core" + }, + { + "label": "db_lookups.ts", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_core_db_lookups", + "community": 30, + "norm_label": "db_lookups.ts" + }, + { + "label": "LuCountry", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L13", + "_origin": "ast", + "id": "ae_core_db_lookups_lucountry", + "community": 30, + "norm_label": "lucountry" + }, + { + "label": "LuCountrySubdivision", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L28", + "_origin": "ast", + "id": "ae_core_db_lookups_lucountrysubdivision", + "community": 30, + "norm_label": "lucountrysubdivision" + }, + { + "label": "LuTimeZone", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L43", + "_origin": "ast", + "id": "ae_core_db_lookups_lutimezone", + "community": 30, + "norm_label": "lutimezone" + }, + { + "label": "LuCacheMeta", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L56", + "_origin": "ast", + "id": "ae_core_db_lookups_lucachemeta", + "community": 30, + "norm_label": "lucachemeta" + }, + { + "label": "LookupsDexie", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L61", + "_origin": "ast", + "id": "ae_core_db_lookups_lookupsdexie", + "community": 30, + "norm_label": "lookupsdexie" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L67", + "_origin": "ast", + "id": "ae_core_db_lookups_lookupsdexie_constructor", + "community": 30, + "norm_label": ".constructor()" + }, + { + "label": "db_lookups", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L78", + "_origin": "ast", + "id": "ae_core_db_lookups_db_lookups", + "community": 30, + "norm_label": "db_lookups" + }, + { + "label": "ae_events__badge_template_cfg.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__badge_template_cfg.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_badge_template_cfg", + "community": 141, + "norm_label": "ae_events__badge_template_cfg.ts" + }, + { + "label": "BadgeTemplateCfg", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__badge_template_cfg.ts", + "source_location": "L2", + "_origin": "ast", + "id": "ae_events_ae_events_badge_template_cfg_badgetemplatecfg", + "community": 141, + "norm_label": "badgetemplatecfg" + }, + { + "label": "ae_events__event.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_editable_fields", + "community": 145, + "norm_label": "ae_events__event.editable_fields.ts" + }, + { + "label": "editable_fields", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_editable_fields_editable_fields", + "community": 145, + "norm_label": "editable_fields" + }, + { + "label": "ae_events__event.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event", + "community": 26, + "norm_label": "ae_events__event.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L18", + "_origin": "ast", + "id": "ae_events_ae_events_event_ae_promises", + "community": 26, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__event()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L21", + "_origin": "ast", + "id": "ae_events_ae_events_event_load_ae_obj_id_event", + "community": 26, + "norm_label": "load_ae_obj_id__event()" + }, + { + "label": "_refresh_event_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L132", + "_origin": "ast", + "id": "ae_events_ae_events_event_refresh_event_background", + "community": 26, + "norm_label": "_refresh_event_background()" + }, + { + "label": "_handle_nested_loads()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L204", + "_origin": "ast", + "id": "ae_events_ae_events_event_handle_nested_loads", + "community": 26, + "norm_label": "_handle_nested_loads()" + }, + { + "label": "load_ae_obj_li__event()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L300", + "_origin": "ast", + "id": "ae_events_ae_events_event_load_ae_obj_li_event", + "community": 26, + "norm_label": "load_ae_obj_li__event()" + }, + { + "label": "create_ae_obj__event()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L467", + "_origin": "ast", + "id": "ae_events_ae_events_event_create_ae_obj_event", + "community": 26, + "norm_label": "create_ae_obj__event()" + }, + { + "label": "delete_ae_obj_id__event()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L516", + "_origin": "ast", + "id": "ae_events_ae_events_event_delete_ae_obj_id_event", + "community": 26, + "norm_label": "delete_ae_obj_id__event()" + }, + { + "label": "update_ae_obj__event()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L548", + "_origin": "ast", + "id": "ae_events_ae_events_event_update_ae_obj_event", + "community": 26, + "norm_label": "update_ae_obj__event()" + }, + { + "label": "search__event()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L603", + "_origin": "ast", + "id": "ae_events_ae_events_event_search_event", + "community": 26, + "norm_label": "search__event()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L785", + "_origin": "ast", + "id": "ae_events_ae_events_event_properties_to_save", + "community": 26, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L865", + "_origin": "ast", + "id": "ae_events_ae_events_event_process_generic_props", + "community": 26, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__event_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L925", + "_origin": "ast", + "id": "ae_events_ae_events_event_process_ae_obj_event_props", + "community": 26, + "norm_label": "process_ae_obj__event_props()" + }, + { + "label": "sync_config__event_pres_mgmt()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L976", + "_origin": "ast", + "id": "ae_events_ae_events_event_sync_config_event_pres_mgmt", + "community": 26, + "norm_label": "sync_config__event_pres_mgmt()" + }, + { + "label": "sync_config__event_badges()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L1084", + "_origin": "ast", + "id": "ae_events_ae_events_event_sync_config_event_badges", + "community": 26, + "norm_label": "sync_config__event_badges()" + }, + { + "label": "ae_events__event_badge.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_editable_fields", + "community": 142, + "norm_label": "ae_events__event_badge.editable_fields.ts" + }, + { + "label": "editable_fields__event_badge", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_editable_fields_editable_fields_event_badge", + "community": 142, + "norm_label": "editable_fields__event_badge" + }, + { + "label": "ae_events__event_badge.test.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_test", + "community": 23, + "norm_label": "ae_events__event_badge.test.ts" + }, + { + "label": "ae_events__event_badge.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge", + "community": 23, + "norm_label": "ae_events__event_badge.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L10", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_ae_promises", + "community": 23, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__event_badge()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L20", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_load_ae_obj_id_event_badge", + "community": 23, + "norm_label": "load_ae_obj_id__event_badge()" + }, + { + "label": "load_ae_obj_li__event_badge()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L120", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_load_ae_obj_li_event_badge", + "community": 23, + "norm_label": "load_ae_obj_li__event_badge()" + }, + { + "label": "create_ae_obj__event_badge()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L239", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_create_ae_obj_event_badge", + "community": 23, + "norm_label": "create_ae_obj__event_badge()" + }, + { + "label": "delete_ae_obj_id__event_badge()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L291", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_delete_ae_obj_id_event_badge", + "community": 23, + "norm_label": "delete_ae_obj_id__event_badge()" + }, + { + "label": "update_ae_obj__event_badge()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L333", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_update_ae_obj_event_badge", + "community": 23, + "norm_label": "update_ae_obj__event_badge()" + }, + { + "label": "search__event_badge()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L388", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_search_event_badge", + "community": 23, + "norm_label": "search__event_badge()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L573", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_properties_to_save", + "community": 23, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L669", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_process_generic_props", + "community": 23, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__event_badge_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L725", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_process_ae_obj_event_badge_props", + "community": 23, + "norm_label": "process_ae_obj__event_badge_props()" + }, + { + "label": "ae_events__event_badge_template.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_editable_fields", + "community": 143, + "norm_label": "ae_events__event_badge_template.editable_fields.ts" + }, + { + "label": "editable_fields__event_badge_template", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_editable_fields_editable_fields_event_badge_template", + "community": 143, + "norm_label": "editable_fields__event_badge_template" + }, + { + "label": "ae_events__event_badge_template.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template", + "community": 23, + "norm_label": "ae_events__event_badge_template.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L6", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_ae_promises", + "community": 23, + "norm_label": "ae_promises" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L9", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_properties_to_save", + "community": 23, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L58", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_process_generic_props", + "community": 23, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_badge_template_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L110", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_process_ae_badge_template_props", + "community": 23, + "norm_label": "process_ae_badge_template_props()" + }, + { + "label": "load_ae_obj_id__event_badge_template()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L125", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_load_ae_obj_id_event_badge_template", + "community": 23, + "norm_label": "load_ae_obj_id__event_badge_template()" + }, + { + "label": "load_ae_obj_li__event_badge_template()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L182", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_load_ae_obj_li_event_badge_template", + "community": 23, + "norm_label": "load_ae_obj_li__event_badge_template()" + }, + { + "label": "create_ae_obj__event_badge_template()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L262", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_create_ae_obj_event_badge_template", + "community": 23, + "norm_label": "create_ae_obj__event_badge_template()" + }, + { + "label": "delete_ae_obj_id__event_badge_template()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L301", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_delete_ae_obj_id_event_badge_template", + "community": 23, + "norm_label": "delete_ae_obj_id__event_badge_template()" + }, + { + "label": "update_ae_obj__event_badge_template()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L333", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_update_ae_obj_event_badge_template", + "community": 23, + "norm_label": "update_ae_obj__event_badge_template()" + }, + { + "label": "search__event_badge_template()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L375", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_template_search_event_badge_template", + "community": 23, + "norm_label": "search__event_badge_template()" + }, + { + "label": "ae_events__event_device.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_editable_fields", + "community": 144, + "norm_label": "ae_events__event_device.editable_fields.ts" + }, + { + "label": "editable_fields__event_device", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_editable_fields_editable_fields_event_device", + "community": 144, + "norm_label": "editable_fields__event_device" + }, + { + "label": "ae_events__event_device.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_device", + "community": 24, + "norm_label": "ae_events__event_device.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L12", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_ae_promises", + "community": 24, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__event_device()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L15", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_load_ae_obj_id_event_device", + "community": 24, + "norm_label": "load_ae_obj_id__event_device()" + }, + { + "label": "load_ae_obj_li__event_device()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L93", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "community": 24, + "norm_label": "load_ae_obj_li__event_device()" + }, + { + "label": "create_ae_obj__event_device()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L193", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_create_ae_obj_event_device", + "community": 24, + "norm_label": "create_ae_obj__event_device()" + }, + { + "label": "delete_ae_obj_id__event_device()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L249", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_delete_ae_obj_id_event_device", + "community": 24, + "norm_label": "delete_ae_obj_id__event_device()" + }, + { + "label": "update_ae_obj__event_device()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L293", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_update_ae_obj_event_device", + "community": 24, + "norm_label": "update_ae_obj__event_device()" + }, + { + "label": "search__event_device()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L352", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_search_event_device", + "community": 24, + "norm_label": "search__event_device()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L433", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_properties_to_save", + "community": 24, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L487", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_process_generic_props", + "community": 24, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__event_device_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L542", + "_origin": "ast", + "id": "ae_events_ae_events_event_device_process_ae_obj_event_device_props", + "community": 24, + "norm_label": "process_ae_obj__event_device_props()" + }, + { + "label": "ae_events__event_file.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_editable_fields", + "community": 146, + "norm_label": "ae_events__event_file.editable_fields.ts" + }, + { + "label": "editable_fields__event_file", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_editable_fields_editable_fields_event_file", + "community": 146, + "norm_label": "editable_fields__event_file" + }, + { + "label": "ae_events__event_file.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_file", + "community": 58, + "norm_label": "ae_events__event_file.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_ae_promises", + "community": 58, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__event_file()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_load_ae_obj_id_event_file", + "community": 58, + "norm_label": "load_ae_obj_id__event_file()" + }, + { + "label": "_refresh_file_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L59", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_refresh_file_id_background", + "community": 58, + "norm_label": "_refresh_file_id_background()" + }, + { + "label": "load_ae_obj_li__event_file()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L98", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "community": 49, + "norm_label": "load_ae_obj_li__event_file()" + }, + { + "label": "_refresh_file_li_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L177", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_refresh_file_li_background", + "community": 58, + "norm_label": "_refresh_file_li_background()" + }, + { + "label": "create_event_file_obj_from_hosted_file_async()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L328", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_create_event_file_obj_from_hosted_file_async", + "community": 58, + "norm_label": "create_event_file_obj_from_hosted_file_async()" + }, + { + "label": "delete_ae_obj_id__event_file()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L365", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_delete_ae_obj_id_event_file", + "community": 58, + "norm_label": "delete_ae_obj_id__event_file()" + }, + { + "label": "update_ae_obj__event_file()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L391", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_update_ae_obj_event_file", + "community": 58, + "norm_label": "update_ae_obj__event_file()" + }, + { + "label": "search__event_file()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L430", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_search_event_file", + "community": 58, + "norm_label": "search__event_file()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L529", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_properties_to_save", + "community": 58, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L584", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_process_generic_props", + "community": 58, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__event_file_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L620", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_process_ae_obj_event_file_props", + "community": 58, + "norm_label": "process_ae_obj__event_file_props()" + }, + { + "label": "ae_events__event_location.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_editable_fields", + "community": 147, + "norm_label": "ae_events__event_location.editable_fields.ts" + }, + { + "label": "editable_fields__event_location", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_editable_fields_editable_fields_event_location", + "community": 147, + "norm_label": "editable_fields__event_location" + }, + { + "label": "ae_events__event_location.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_location", + "community": 24, + "norm_label": "ae_events__event_location.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_ae_promises", + "community": 24, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__event_location()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L14", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_load_ae_obj_id_event_location", + "community": 24, + "norm_label": "load_ae_obj_id__event_location()" + }, + { + "label": "_refresh_location_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L93", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_refresh_location_id_background", + "community": 24, + "norm_label": "_refresh_location_id_background()" + }, + { + "label": "load_ae_obj_li__event_location()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L146", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_load_ae_obj_li_event_location", + "community": 24, + "norm_label": "load_ae_obj_li__event_location()" + }, + { + "label": "_refresh_location_li_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L260", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_refresh_location_li_background", + "community": 24, + "norm_label": "_refresh_location_li_background()" + }, + { + "label": "_handle_nested_loads()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L335", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_handle_nested_loads", + "community": 24, + "norm_label": "_handle_nested_loads()" + }, + { + "label": "create_ae_obj__event_location()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L402", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_create_ae_obj_event_location", + "community": 24, + "norm_label": "create_ae_obj__event_location()" + }, + { + "label": "delete_ae_obj_id__event_location()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L445", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_delete_ae_obj_id_event_location", + "community": 24, + "norm_label": "delete_ae_obj_id__event_location()" + }, + { + "label": "update_ae_obj__event_location()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L474", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_update_ae_obj_event_location", + "community": 24, + "norm_label": "update_ae_obj__event_location()" + }, + { + "label": "search__event_location()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L519", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_search_event_location", + "community": 24, + "norm_label": "search__event_location()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L586", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_properties_to_save", + "community": 24, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L610", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_process_generic_props", + "community": 24, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__event_location_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L655", + "_origin": "ast", + "id": "ae_events_ae_events_event_location_process_ae_obj_event_location_props", + "community": 24, + "norm_label": "process_ae_obj__event_location_props()" + }, + { + "label": "ae_events__event_person.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_person", + "community": 38, + "norm_label": "ae_events__event_person.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_events_ae_events_event_person_ae_promises", + "community": 38, + "norm_label": "ae_promises" + }, + { + "label": "create_ae_obj__event_person()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L12", + "_origin": "ast", + "id": "ae_events_ae_events_event_person_create_ae_obj_event_person", + "community": 38, + "norm_label": "create_ae_obj__event_person()" + }, + { + "label": "ae_events__event_presentation.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_editable_fields", + "community": 148, + "norm_label": "ae_events__event_presentation.editable_fields.ts" + }, + { + "label": "editable_fields__event_presentation", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_editable_fields_editable_fields_event_presentation", + "community": 148, + "norm_label": "editable_fields__event_presentation" + }, + { + "label": "ae_events__event_presentation.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation", + "community": 45, + "norm_label": "ae_events__event_presentation.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L14", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_ae_promises", + "community": 45, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__event_presentation()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L17", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_load_ae_obj_id_event_presentation", + "community": 45, + "norm_label": "load_ae_obj_id__event_presentation()" + }, + { + "label": "_refresh_presentation_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L104", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_refresh_presentation_id_background", + "community": 45, + "norm_label": "_refresh_presentation_id_background()" + }, + { + "label": "_handle_nested_loads()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L161", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_handle_nested_loads", + "community": 45, + "norm_label": "_handle_nested_loads()" + }, + { + "label": "load_ae_obj_li__event_presentation()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L218", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_load_ae_obj_li_event_presentation", + "community": 45, + "norm_label": "load_ae_obj_li__event_presentation()" + }, + { + "label": "_refresh_presentation_li_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L317", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_refresh_presentation_li_background", + "community": 45, + "norm_label": "_refresh_presentation_li_background()" + }, + { + "label": "create_ae_obj__event_presentation()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L399", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_create_ae_obj_event_presentation", + "community": 45, + "norm_label": "create_ae_obj__event_presentation()" + }, + { + "label": "delete_ae_obj_id__event_presentation()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L449", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_delete_ae_obj_id_event_presentation", + "community": 45, + "norm_label": "delete_ae_obj_id__event_presentation()" + }, + { + "label": "update_ae_obj__event_presentation()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L474", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_update_ae_obj_event_presentation", + "community": 45, + "norm_label": "update_ae_obj__event_presentation()" + }, + { + "label": "search__event_presentation()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L515", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_search_event_presentation", + "community": 45, + "norm_label": "search__event_presentation()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L592", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_properties_to_save", + "community": 45, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L629", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_process_generic_props", + "community": 45, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__event_presentation_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L677", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_process_ae_obj_event_presentation_props", + "community": 45, + "norm_label": "process_ae_obj__event_presentation_props()" + }, + { + "label": "ae_events__event_presenter.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_editable_fields", + "community": 149, + "norm_label": "ae_events__event_presenter.editable_fields.ts" + }, + { + "label": "editable_fields__event_presenter", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_editable_fields_editable_fields_event_presenter", + "community": 149, + "norm_label": "editable_fields__event_presenter" + }, + { + "label": "ae_events__event_presenter.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter", + "community": 49, + "norm_label": "ae_events__event_presenter.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L13", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_ae_promises", + "community": 49, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__event_presenter()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L16", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_load_ae_obj_id_event_presenter", + "community": 49, + "norm_label": "load_ae_obj_id__event_presenter()" + }, + { + "label": "_refresh_presenter_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L67", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_refresh_presenter_id_background", + "community": 49, + "norm_label": "_refresh_presenter_id_background()" + }, + { + "label": "load_ae_obj_li__event_presenter()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L119", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_load_ae_obj_li_event_presenter", + "community": 45, + "norm_label": "load_ae_obj_li__event_presenter()" + }, + { + "label": "_refresh_presenter_li_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L216", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_refresh_presenter_li_background", + "community": 49, + "norm_label": "_refresh_presenter_li_background()" + }, + { + "label": "create_ae_obj__event_presenter()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L305", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_create_ae_obj_event_presenter", + "community": 49, + "norm_label": "create_ae_obj__event_presenter()" + }, + { + "label": "delete_ae_obj_id__event_presenter()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L365", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_delete_ae_obj_id_event_presenter", + "community": 49, + "norm_label": "delete_ae_obj_id__event_presenter()" + }, + { + "label": "update_ae_obj__event_presenter()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L402", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_update_ae_obj_event_presenter", + "community": 49, + "norm_label": "update_ae_obj__event_presenter()" + }, + { + "label": "search__event_presenter()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L455", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_search_event_presenter", + "community": 49, + "norm_label": "search__event_presenter()" + }, + { + "label": "email_sign_in__event_presenter()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L569", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_email_sign_in_event_presenter", + "community": 49, + "norm_label": "email_sign_in__event_presenter()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L630", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_properties_to_save", + "community": 49, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L689", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_process_generic_props", + "community": 49, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__event_presenter_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L738", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_process_ae_obj_event_presenter_props", + "community": 49, + "norm_label": "process_ae_obj__event_presenter_props()" + }, + { + "label": "ae_events__event_session.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_editable_fields", + "community": 150, + "norm_label": "ae_events__event_session.editable_fields.ts" + }, + { + "label": "editable_fields__event_session", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_editable_fields_editable_fields_event_session", + "community": 150, + "norm_label": "editable_fields__event_session" + }, + { + "label": "ae_events__event_session.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_session", + "community": 50, + "norm_label": "ae_events__event_session.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L13", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_ae_promises", + "community": 50, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__event_session()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L16", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_load_ae_obj_id_event_session", + "community": 50, + "norm_label": "load_ae_obj_id__event_session()" + }, + { + "label": "_refresh_session_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L142", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_refresh_session_id_background", + "community": 50, + "norm_label": "_refresh_session_id_background()" + }, + { + "label": "_handle_nested_loads()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L253", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_handle_nested_loads", + "community": 50, + "norm_label": "_handle_nested_loads()" + }, + { + "label": "load_ae_obj_li__event_session()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L321", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_load_ae_obj_li_event_session", + "community": 24, + "norm_label": "load_ae_obj_li__event_session()" + }, + { + "label": "_refresh_session_li_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L445", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_refresh_session_li_background", + "community": 50, + "norm_label": "_refresh_session_li_background()" + }, + { + "label": "create_ae_obj__event_session()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L536", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_create_ae_obj_event_session", + "community": 50, + "norm_label": "create_ae_obj__event_session()" + }, + { + "label": "delete_ae_obj_id__event_session()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L582", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_delete_ae_obj_id_event_session", + "community": 50, + "norm_label": "delete_ae_obj_id__event_session()" + }, + { + "label": "update_ae_obj__event_session()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L615", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_update_ae_obj_event_session", + "community": 50, + "norm_label": "update_ae_obj__event_session()" + }, + { + "label": "search__event_session()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L664", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_search_event_session", + "community": 50, + "norm_label": "search__event_session()" + }, + { + "label": "email_sign_in__event_session()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L809", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_email_sign_in_event_session", + "community": 50, + "norm_label": "email_sign_in__event_session()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L846", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_properties_to_save", + "community": 50, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L896", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_process_generic_props", + "community": 50, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__event_session_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L936", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_process_ae_obj_event_session_props", + "community": 50, + "norm_label": "process_ae_obj__event_session_props()" + }, + { + "label": "ae_events__event_track.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_track.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_event_track", + "community": 13, + "norm_label": "ae_events__event_track.ts" + }, + { + "label": "load_ae_obj_li__event_track()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_track.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_events_ae_events_event_track_load_ae_obj_li_event_track", + "community": 13, + "norm_label": "load_ae_obj_li__event_track()" + }, + { + "label": "ae_events__exhibit.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_editable_fields", + "community": 151, + "norm_label": "ae_events__exhibit.editable_fields.ts" + }, + { + "label": "editable_fields__event_exhibit", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_editable_fields_editable_fields_event_exhibit", + "community": 151, + "norm_label": "editable_fields__event_exhibit" + }, + { + "label": "ae_events__exhibit.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit", + "community": 59, + "norm_label": "ae_events__exhibit.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_ae_promises", + "community": 59, + "norm_label": "ae_promises" + }, + { + "label": "properties_to_save_exhibit", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_properties_to_save_exhibit", + "community": 59, + "norm_label": "properties_to_save_exhibit" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L43", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_process_generic_props", + "community": 59, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__exhibit_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L112", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_process_ae_obj_exhibit_props", + "community": 59, + "norm_label": "process_ae_obj__exhibit_props()" + }, + { + "label": "load_ae_obj_id__event_exhibit()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L129", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_load_ae_obj_id_event_exhibit", + "community": 59, + "norm_label": "load_ae_obj_id__event_exhibit()" + }, + { + "label": "_refresh_exhibit_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L189", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_refresh_exhibit_id_background", + "community": 59, + "norm_label": "_refresh_exhibit_id_background()" + }, + { + "label": "load_ae_obj_li__event_exhibit()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L248", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_load_ae_obj_li_event_exhibit", + "community": 59, + "norm_label": "load_ae_obj_li__event_exhibit()" + }, + { + "label": "_refresh_exhibit_li_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L335", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_refresh_exhibit_li_background", + "community": 59, + "norm_label": "_refresh_exhibit_li_background()" + }, + { + "label": "create_ae_obj__exhibit()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L400", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_create_ae_obj_exhibit", + "community": 59, + "norm_label": "create_ae_obj__exhibit()" + }, + { + "label": "update_ae_obj__exhibit()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L445", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_update_ae_obj_exhibit", + "community": 59, + "norm_label": "update_ae_obj__exhibit()" + }, + { + "label": "search__exhibit()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L493", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_search_exhibit", + "community": 59, + "norm_label": "search__exhibit()" + }, + { + "label": "ae_events__exhibit_tracking.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_editable_fields", + "community": 152, + "norm_label": "ae_events__exhibit_tracking.editable_fields.ts" + }, + { + "label": "editable_fields__event_exhibit_tracking", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_editable_fields_editable_fields_event_exhibit_tracking", + "community": 152, + "norm_label": "editable_fields__event_exhibit_tracking" + }, + { + "label": "ae_events__exhibit_tracking.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking", + "community": 4, + "norm_label": "ae_events__exhibit_tracking.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_ae_promises", + "community": 4, + "norm_label": "ae_promises" + }, + { + "label": "properties_to_save_exhibit_tracking", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_properties_to_save_exhibit_tracking", + "community": 4, + "norm_label": "properties_to_save_exhibit_tracking" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L57", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_process_generic_props", + "community": 4, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__exhibit_tracking_props()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L126", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_process_ae_obj_exhibit_tracking_props", + "community": 4, + "norm_label": "process_ae_obj__exhibit_tracking_props()" + }, + { + "label": "load_ae_obj_id__event_exhibit_tracking()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L143", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_load_ae_obj_id_event_exhibit_tracking", + "community": 4, + "norm_label": "load_ae_obj_id__event_exhibit_tracking()" + }, + { + "label": "_refresh_tracking_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L204", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_refresh_tracking_id_background", + "community": 4, + "norm_label": "_refresh_tracking_id_background()" + }, + { + "label": "load_ae_obj_li__event_exhibit_tracking()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L263", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_load_ae_obj_li_event_exhibit_tracking", + "community": 4, + "norm_label": "load_ae_obj_li__event_exhibit_tracking()" + }, + { + "label": "_refresh_tracking_li_background()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L349", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_refresh_tracking_li_background", + "community": 4, + "norm_label": "_refresh_tracking_li_background()" + }, + { + "label": "create_ae_obj__exhibit_tracking()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L414", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_create_ae_obj_exhibit_tracking", + "community": 4, + "norm_label": "create_ae_obj__exhibit_tracking()" + }, + { + "label": "update_ae_obj__exhibit_tracking()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L467", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_update_ae_obj_exhibit_tracking", + "community": 4, + "norm_label": "update_ae_obj__exhibit_tracking()" + }, + { + "label": "download_export__event_exhibit_tracking()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L527", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_download_export_event_exhibit_tracking", + "community": 4, + "norm_label": "download_export__event_exhibit_tracking()" + }, + { + "label": "search__exhibit_tracking()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L566", + "_origin": "ast", + "id": "ae_events_ae_events_exhibit_tracking_search_exhibit_tracking", + "community": 4, + "norm_label": "search__exhibit_tracking()" + }, + { + "label": "ae_events_functions.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_events_functions", + "community": 4, + "norm_label": "ae_events_functions.ts" + }, + { + "label": "export_obj", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L40", + "_origin": "ast", + "id": "ae_events_ae_events_functions_export_obj", + "community": 4, + "norm_label": "export_obj" + }, + { + "label": "ae_launcher__default_launch_profiles.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles", + "community": 14, + "norm_label": "ae_launcher__default_launch_profiles.ts" + }, + { + "label": "LaunchProfile", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L29", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_launchprofile", + "community": 14, + "norm_label": "launchprofile" + }, + { + "label": "make_vlc_mirror_mac_profile()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L77", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_make_vlc_mirror_mac_profile", + "community": 14, + "norm_label": "make_vlc_mirror_mac_profile()" + }, + { + "label": "make_vlc_mirror_linux_profile()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L94", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_make_vlc_mirror_linux_profile", + "community": 14, + "norm_label": "make_vlc_mirror_linux_profile()" + }, + { + "label": "POWERPOINT_MAC_EXTEND_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L105", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_powerpoint_mac_extend_profile", + "community": 14, + "norm_label": "powerpoint_mac_extend_profile" + }, + { + "label": "KEYNOTE_MAC_EXTEND_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L127", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_keynote_mac_extend_profile", + "community": 14, + "norm_label": "keynote_mac_extend_profile" + }, + { + "label": "LIBREOFFICE_MAC_EXTEND_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L149", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_libreoffice_mac_extend_profile", + "community": 14, + "norm_label": "libreoffice_mac_extend_profile" + }, + { + "label": "ACROBAT_MAC_MIRROR_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L171", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_acrobat_mac_mirror_profile", + "community": 14, + "norm_label": "acrobat_mac_mirror_profile" + }, + { + "label": "VLC_MIRROR_MAC_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L193", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_vlc_mirror_mac_profile", + "community": 14, + "norm_label": "vlc_mirror_mac_profile" + }, + { + "label": "VLC_MIRROR_LINUX_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L194", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_vlc_mirror_linux_profile", + "community": 14, + "norm_label": "vlc_mirror_linux_profile" + }, + { + "label": "POWERPOINT_WIN_EXTEND_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L196", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_powerpoint_win_extend_profile", + "community": 14, + "norm_label": "powerpoint_win_extend_profile" + }, + { + "label": "LIBREOFFICE_WIN_EXTEND_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L216", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_libreoffice_win_extend_profile", + "community": 14, + "norm_label": "libreoffice_win_extend_profile" + }, + { + "label": "ACROBAT_WIN_MIRROR_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L238", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_acrobat_win_mirror_profile", + "community": 14, + "norm_label": "acrobat_win_mirror_profile" + }, + { + "label": "URL_WEB_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L258", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_url_web_profile", + "community": 14, + "norm_label": "url_web_profile" + }, + { + "label": "DEFAULT_OS_PROFILE", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L264", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_default_os_profile", + "community": 14, + "norm_label": "default_os_profile" + }, + { + "label": "DefaultLaunchProfileDefinition", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L271", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_defaultlaunchprofiledefinition", + "community": 14, + "norm_label": "defaultlaunchprofiledefinition" + }, + { + "label": "DEFAULT_LAUNCH_PROFILE_DEFS", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L277", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_default_launch_profile_defs", + "community": 14, + "norm_label": "default_launch_profile_defs" + }, + { + "label": "DEFAULT_LAUNCH_PROFILE_LIBRARY", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L340", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_default_launch_profile_library", + "community": 14, + "norm_label": "default_launch_profile_library" + }, + { + "label": "DEFAULT_LAUNCH_PROFILE_ALIASES", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L344", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_default_launch_profile_aliases", + "community": 14, + "norm_label": "default_launch_profile_aliases" + }, + { + "label": "DEFAULT_LAUNCH_PROFILES", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L350", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_default_launch_profiles", + "community": 14, + "norm_label": "default_launch_profiles" + }, + { + "label": "resolve_launch_profile()", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L363", + "_origin": "ast", + "id": "ae_events_ae_launcher_default_launch_profiles_resolve_launch_profile", + "community": 14, + "norm_label": "resolve_launch_profile()" + }, + { + "label": "db_events.ts", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_events_db_events", + "community": 34, + "norm_label": "db_events.ts" + }, + { + "label": "Event", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L15", + "_origin": "ast", + "id": "ae_events_db_events_event", + "community": 34, + "norm_label": "event" + }, + { + "label": "Badge", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L114", + "_origin": "ast", + "id": "ae_events_db_events_badge", + "community": 34, + "norm_label": "badge" + }, + { + "label": "Badge_template", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L210", + "_origin": "ast", + "id": "ae_events_db_events_badge_template", + "community": 34, + "norm_label": "badge_template" + }, + { + "label": "Device", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L279", + "_origin": "ast", + "id": "ae_events_db_events_device", + "community": 34, + "norm_label": "device" + }, + { + "label": "Exhibit", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L347", + "_origin": "ast", + "id": "ae_events_db_events_exhibit", + "community": 34, + "norm_label": "exhibit" + }, + { + "label": "Exhibit_tracking", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L385", + "_origin": "ast", + "id": "ae_events_db_events_exhibit_tracking", + "community": 34, + "norm_label": "exhibit_tracking" + }, + { + "label": "EventFile", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L447", + "_origin": "ast", + "id": "ae_events_db_events_eventfile", + "community": 34, + "norm_label": "eventfile" + }, + { + "label": "Location", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L520", + "_origin": "ast", + "id": "ae_events_db_events_location", + "community": 34, + "norm_label": "location" + }, + { + "label": "Presentation", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L574", + "_origin": "ast", + "id": "ae_events_db_events_presentation", + "community": 34, + "norm_label": "presentation" + }, + { + "label": "Presenter", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L633", + "_origin": "ast", + "id": "ae_events_db_events_presenter", + "community": 34, + "norm_label": "presenter" + }, + { + "label": "Registration", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L723", + "_origin": "ast", + "id": "ae_events_db_events_registration", + "community": 34, + "norm_label": "registration" + }, + { + "label": "Session", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L734", + "_origin": "ast", + "id": "ae_events_db_events_session", + "community": 34, + "norm_label": "session" + }, + { + "label": "MySubClassedDexie", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L821", + "_origin": "ast", + "id": "ae_events_db_events_mysubclasseddexie", + "community": 34, + "norm_label": "mysubclasseddexie" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L836", + "_origin": "ast", + "id": "ae_events_db_events_mysubclasseddexie_constructor", + "community": 34, + "norm_label": ".constructor()" + }, + { + "label": "db_events", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L960", + "_origin": "ast", + "id": "ae_events_db_events_db_events", + "community": 34, + "norm_label": "db_events" + }, + { + "label": "ae_idaa__bb_post_helpers.ts", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers", + "community": 51, + "norm_label": "ae_idaa__bb_post_helpers.ts" + }, + { + "label": "BbPostIdentityDefaults", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L3", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_bbpostidentitydefaults", + "community": 51, + "norm_label": "bbpostidentitydefaults" + }, + { + "label": "BbPostObjectLike", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L9", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_bbpostobjectlike", + "community": 51, + "norm_label": "bbpostobjectlike" + }, + { + "label": "BbPostFormValues", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L28", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_bbpostformvalues", + "community": 51, + "norm_label": "bbpostformvalues" + }, + { + "label": "BbPostStaffNotificationSiteCfg", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L43", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_bbpoststaffnotificationsitecfg", + "community": 51, + "norm_label": "bbpoststaffnotificationsitecfg" + }, + { + "label": "BbPostStaffNotificationEmail", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L51", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_bbpoststaffnotificationemail", + "community": 51, + "norm_label": "bbpoststaffnotificationemail" + }, + { + "label": "empty_identity_defaults", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L60", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_empty_identity_defaults", + "community": 51, + "norm_label": "empty_identity_defaults" + }, + { + "label": "is_new_bb_post()", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L66", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_is_new_bb_post", + "community": 51, + "norm_label": "is_new_bb_post()" + }, + { + "label": "normalize_identity_defaults()", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L70", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_normalize_identity_defaults", + "community": 51, + "norm_label": "normalize_identity_defaults()" + }, + { + "label": "create_bb_post_form()", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L80", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_create_bb_post_form", + "community": 51, + "norm_label": "create_bb_post_form()" + }, + { + "label": "BuildBbPostPayloadArgs", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L108", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_buildbbpostpayloadargs", + "community": 51, + "norm_label": "buildbbpostpayloadargs" + }, + { + "label": "build_bb_post_payload()", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L118", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_build_bb_post_payload", + "community": 51, + "norm_label": "build_bb_post_payload()" + }, + { + "label": "BuildBbPostStaffNotificationEmailArgs", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L185", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_buildbbpoststaffnotificationemailargs", + "community": 51, + "norm_label": "buildbbpoststaffnotificationemailargs" + }, + { + "label": "build_bb_post_staff_notification_email()", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L191", + "_origin": "ast", + "id": "ae_idaa_ae_idaa_bb_post_helpers_build_bb_post_staff_notification_email", + "community": 51, + "norm_label": "build_bb_post_staff_notification_email()" + }, + { + "label": "ae_journals__journal.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_editable_fields", + "community": 153, + "norm_label": "ae_journals__journal.editable_fields.ts" + }, + { + "label": "editable_fields__journal", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_editable_fields_editable_fields_journal", + "community": 153, + "norm_label": "editable_fields__journal" + }, + { + "label": "ae_journals__journal.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal", + "community": 11, + "norm_label": "ae_journals__journal.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L13", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_ae_promises", + "community": 11, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__journal()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L16", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_load_ae_obj_id_journal", + "community": 11, + "norm_label": "load_ae_obj_id__journal()" + }, + { + "label": "_refresh_journal_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L119", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_refresh_journal_id_background", + "community": 11, + "norm_label": "_refresh_journal_id_background()" + }, + { + "label": "load_ae_obj_li__journal()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L186", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_load_ae_obj_li_journal", + "community": 11, + "norm_label": "load_ae_obj_li__journal()" + }, + { + "label": "_refresh_journal_li_background()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L277", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_refresh_journal_li_background", + "community": 11, + "norm_label": "_refresh_journal_li_background()" + }, + { + "label": "create_ae_obj__journal()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L381", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_create_ae_obj_journal", + "community": 11, + "norm_label": "create_ae_obj__journal()" + }, + { + "label": "delete_ae_obj_id__journal()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L458", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_delete_ae_obj_id_journal", + "community": 11, + "norm_label": "delete_ae_obj_id__journal()" + }, + { + "label": "update_ae_obj__journal()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L506", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_update_ae_obj_journal", + "community": 11, + "norm_label": "update_ae_obj__journal()" + }, + { + "label": "qry__journal()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L571", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_qry_journal", + "community": 11, + "norm_label": "qry__journal()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L711", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_properties_to_save", + "community": 11, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L793", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_process_generic_props", + "community": 11, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__journal_props()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L864", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_process_ae_obj_journal_props", + "community": 11, + "norm_label": "process_ae_obj__journal_props()" + }, + { + "label": "ae_journals__journal_entry.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_editable_fields", + "community": 154, + "norm_label": "ae_journals__journal_entry.editable_fields.ts" + }, + { + "label": "editable_fields__journal_entry", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_editable_fields_editable_fields_journal_entry", + "community": 154, + "norm_label": "editable_fields__journal_entry" + }, + { + "label": "ae_journals__journal_entry.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry", + "community": 11, + "norm_label": "ae_journals__journal_entry.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_ae_promises", + "community": 11, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__journal_entry()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L14", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_load_ae_obj_id_journal_entry", + "community": 11, + "norm_label": "load_ae_obj_id__journal_entry()" + }, + { + "label": "load_ae_obj_li__journal_entry()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L78", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_load_ae_obj_li_journal_entry", + "community": 11, + "norm_label": "load_ae_obj_li__journal_entry()" + }, + { + "label": "create_ae_obj__journal_entry()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L202", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_create_ae_obj_journal_entry", + "community": 11, + "norm_label": "create_ae_obj__journal_entry()" + }, + { + "label": "delete_ae_obj_id__journal_entry()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L277", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_delete_ae_obj_id_journal_entry", + "community": 11, + "norm_label": "delete_ae_obj_id__journal_entry()" + }, + { + "label": "qry__journal_entry()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L326", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_qry_journal_entry", + "community": 11, + "norm_label": "qry__journal_entry()" + }, + { + "label": "update_ae_obj__journal_entry()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L568", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_update_ae_obj_journal_entry", + "community": 11, + "norm_label": "update_ae_obj__journal_entry()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L840", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_properties_to_save", + "community": 11, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L923", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_process_generic_props", + "community": 11, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__journal_entry_props()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L994", + "_origin": "ast", + "id": "ae_journals_ae_journals_journal_entry_process_ae_obj_journal_entry_props", + "community": 11, + "norm_label": "process_ae_obj__journal_entry_props()" + }, + { + "label": "ae_journals_decryption.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_decryption", + "community": 60, + "norm_label": "ae_journals_decryption.ts" + }, + { + "label": "DecryptionResult", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L7", + "_origin": "ast", + "id": "ae_journals_ae_journals_decryption_decryptionresult", + "community": 60, + "norm_label": "decryptionresult" + }, + { + "label": "decrypt_journal_entry()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L22", + "_origin": "ast", + "id": "ae_journals_ae_journals_decryption_decrypt_journal_entry", + "community": 43, + "norm_label": "decrypt_journal_entry()" + }, + { + "label": "ae_journals_editor_helpers.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_editor_helpers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_editor_helpers", + "community": 119, + "norm_label": "ae_journals_editor_helpers.ts" + }, + { + "label": "wrapSelection()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_editor_helpers.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_journals_ae_journals_editor_helpers_wrapselection", + "community": 119, + "norm_label": "wrapselection()" + }, + { + "label": "toggleLinePrefix()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_editor_helpers.ts", + "source_location": "L32", + "_origin": "ast", + "id": "ae_journals_ae_journals_editor_helpers_togglelineprefix", + "community": 119, + "norm_label": "togglelineprefix()" + }, + { + "label": "ae_journals_export_templates.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_export_templates", + "community": 60, + "norm_label": "ae_journals_export_templates.ts" + }, + { + "label": "ExportTemplate", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L10", + "_origin": "ast", + "id": "ae_journals_ae_journals_export_templates_exporttemplate", + "community": 60, + "norm_label": "exporttemplate" + }, + { + "label": "template_standard_markdown", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L21", + "_origin": "ast", + "id": "ae_journals_ae_journals_export_templates_template_standard_markdown", + "community": 60, + "norm_label": "template_standard_markdown" + }, + { + "label": "template_personal_log", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L45", + "_origin": "ast", + "id": "ae_journals_ae_journals_export_templates_template_personal_log", + "community": 60, + "norm_label": "template_personal_log" + }, + { + "label": "template_amazon_vine", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L76", + "_origin": "ast", + "id": "ae_journals_ae_journals_export_templates_template_amazon_vine", + "community": 60, + "norm_label": "template_amazon_vine" + }, + { + "label": "template_standard_html", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L106", + "_origin": "ast", + "id": "ae_journals_ae_journals_export_templates_template_standard_html", + "community": 60, + "norm_label": "template_standard_html" + }, + { + "label": "template_standard_json", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L157", + "_origin": "ast", + "id": "ae_journals_ae_journals_export_templates_template_standard_json", + "community": 60, + "norm_label": "template_standard_json" + }, + { + "label": "EXPORT_TEMPLATES", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L165", + "_origin": "ast", + "id": "ae_journals_ae_journals_export_templates_export_templates", + "community": 60, + "norm_label": "export_templates" + }, + { + "label": "ae_journals_functions.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_functions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_functions", + "community": 73, + "norm_label": "ae_journals_functions.ts" + }, + { + "label": "export_obj", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_functions.ts", + "source_location": "L6", + "_origin": "ast", + "id": "ae_journals_ae_journals_functions_export_obj", + "community": 73, + "norm_label": "export_obj" + }, + { + "label": "ae_journals_parsers.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_parsers", + "community": 90, + "norm_label": "ae_journals_parsers.ts" + }, + { + "label": "AeJournalEntryInput", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_journals_ae_journals_parsers_aejournalentryinput", + "community": 90, + "norm_label": "aejournalentryinput" + }, + { + "label": "parse_standard_note()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L22", + "_origin": "ast", + "id": "ae_journals_ae_journals_parsers_parse_standard_note", + "community": 90, + "norm_label": "parse_standard_note()" + }, + { + "label": "parse_personal_log()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L99", + "_origin": "ast", + "id": "ae_journals_ae_journals_parsers_parse_personal_log", + "community": 90, + "norm_label": "parse_personal_log()" + }, + { + "label": "parse_amazon_vine()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L168", + "_origin": "ast", + "id": "ae_journals_ae_journals_parsers_parse_amazon_vine", + "community": 90, + "norm_label": "parse_amazon_vine()" + }, + { + "label": "format_vine_entry()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L205", + "_origin": "ast", + "id": "ae_journals_ae_journals_parsers_format_vine_entry", + "community": 90, + "norm_label": "format_vine_entry()" + }, + { + "label": "PARSERS", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L243", + "_origin": "ast", + "id": "ae_journals_ae_journals_parsers_parsers", + "community": 90, + "norm_label": "parsers" + }, + { + "label": "ae_journals_search_helpers.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_search_helpers", + "community": 83, + "norm_label": "ae_journals_search_helpers.ts" + }, + { + "label": "JournalEntrySearchParams", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_search_helpers_journalentrysearchparams", + "community": 83, + "norm_label": "journalentrysearchparams" + }, + { + "label": "normalize_search_value()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L9", + "_origin": "ast", + "id": "ae_journals_ae_journals_search_helpers_normalize_search_value", + "community": 83, + "norm_label": "normalize_search_value()" + }, + { + "label": "build_journal_entry_search_blob()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L24", + "_origin": "ast", + "id": "ae_journals_ae_journals_search_helpers_build_journal_entry_search_blob", + "community": 83, + "norm_label": "build_journal_entry_search_blob()" + }, + { + "label": "journal_entry_matches_search()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L50", + "_origin": "ast", + "id": "ae_journals_ae_journals_search_helpers_journal_entry_matches_search", + "community": 83, + "norm_label": "journal_entry_matches_search()" + }, + { + "label": "journal_entry_compare_for_list()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L77", + "_origin": "ast", + "id": "ae_journals_ae_journals_search_helpers_journal_entry_compare_for_list", + "community": 83, + "norm_label": "journal_entry_compare_for_list()" + }, + { + "label": "journal_entry_filter_list()", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L87", + "_origin": "ast", + "id": "ae_journals_ae_journals_search_helpers_journal_entry_filter_list", + "community": 83, + "norm_label": "journal_entry_filter_list()" + }, + { + "label": "ae_journals_stores.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores", + "community": 35, + "norm_label": "ae_journals_stores.ts" + }, + { + "label": "journals_local_data_struct", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_local_data_struct", + "community": 35, + "norm_label": "journals_local_data_struct" + }, + { + "label": "journals_loc", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L115", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_loc", + "community": 35, + "norm_label": "journals_loc" + }, + { + "label": "journals_session_data_struct", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L124", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_session_data_struct", + "community": 35, + "norm_label": "journals_session_data_struct" + }, + { + "label": "journals_sess", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L168", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_sess", + "community": 35, + "norm_label": "journals_sess" + }, + { + "label": "journals_slct_obj_template", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L175", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_slct_obj_template", + "community": 35, + "norm_label": "journals_slct_obj_template" + }, + { + "label": "journals_slct", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L189", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_slct", + "community": 35, + "norm_label": "journals_slct" + }, + { + "label": "journals_trig_template", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L194", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_trig_template", + "community": 35, + "norm_label": "journals_trig_template" + }, + { + "label": "journals_trig", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L198", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_trig", + "community": 35, + "norm_label": "journals_trig" + }, + { + "label": "journals_prom_template", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L204", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_prom_template", + "community": 35, + "norm_label": "journals_prom_template" + }, + { + "label": "journals_prom", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L208", + "_origin": "ast", + "id": "ae_journals_ae_journals_stores_journals_prom", + "community": 35, + "norm_label": "journals_prom" + }, + { + "label": "db_journals.ts", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_journals_db_journals", + "community": 11, + "norm_label": "db_journals.ts" + }, + { + "label": "Journal", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L23", + "_origin": "ast", + "id": "ae_journals_db_journals_journal", + "community": 11, + "norm_label": "journal" + }, + { + "label": "journal_field_li", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L42", + "_origin": "ast", + "id": "ae_journals_db_journals_journal_field_li", + "community": 11, + "norm_label": "journal_field_li" + }, + { + "label": "Journal_Entry", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L78", + "_origin": "ast", + "id": "ae_journals_db_journals_journal_entry", + "community": 11, + "norm_label": "journal_entry" + }, + { + "label": "journal_entry_field_li", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L91", + "_origin": "ast", + "id": "ae_journals_db_journals_journal_entry_field_li", + "community": 11, + "norm_label": "journal_entry_field_li" + }, + { + "label": "MySubClassedDexie", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L120", + "_origin": "ast", + "id": "ae_journals_db_journals_mysubclasseddexie", + "community": 11, + "norm_label": "mysubclasseddexie" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L124", + "_origin": "ast", + "id": "ae_journals_db_journals_mysubclasseddexie_constructor", + "community": 11, + "norm_label": ".constructor()" + }, + { + "label": "db_journals", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L146", + "_origin": "ast", + "id": "ae_journals_db_journals_db_journals", + "community": 11, + "norm_label": "db_journals" + }, + { + "label": "ae_posts__post.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_editable_fields", + "community": 156, + "norm_label": "ae_posts__post.editable_fields.ts" + }, + { + "label": "editable_fields__post", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_editable_fields_editable_fields_post", + "community": 156, + "norm_label": "editable_fields__post" + }, + { + "label": "ae_posts__post.ts", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_posts_ae_posts_post", + "community": 15, + "norm_label": "ae_posts__post.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_ae_promises", + "community": 15, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__post()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L14", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_load_ae_obj_id_post", + "community": 15, + "norm_label": "load_ae_obj_id__post()" + }, + { + "label": "load_ae_obj_li__post()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L97", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_load_ae_obj_li_post", + "community": 15, + "norm_label": "load_ae_obj_li__post()" + }, + { + "label": "create_ae_obj__post()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L197", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_create_ae_obj_post", + "community": 15, + "norm_label": "create_ae_obj__post()" + }, + { + "label": "delete_ae_obj_id__post()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L246", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_delete_ae_obj_id_post", + "community": 15, + "norm_label": "delete_ae_obj_id__post()" + }, + { + "label": "update_ae_obj__post()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L282", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_update_ae_obj_post", + "community": 15, + "norm_label": "update_ae_obj__post()" + }, + { + "label": "qry__post()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L331", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_qry_post", + "community": 15, + "norm_label": "qry__post()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L466", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_properties_to_save", + "community": 15, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L499", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_process_generic_props", + "community": 15, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__post_props()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L555", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_process_ae_obj_post_props", + "community": 15, + "norm_label": "process_ae_obj__post_props()" + }, + { + "label": "ae_posts__post_comment.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_editable_fields", + "community": 155, + "norm_label": "ae_posts__post_comment.editable_fields.ts" + }, + { + "label": "editable_fields__post_comment", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_editable_fields_editable_fields_post_comment", + "community": 155, + "norm_label": "editable_fields__post_comment" + }, + { + "label": "ae_posts__post_comment.ts", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment", + "community": 15, + "norm_label": "ae_posts__post_comment.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L9", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_ae_promises", + "community": 15, + "norm_label": "ae_promises" + }, + { + "label": "load_ae_obj_id__post_comment()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L12", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_load_ae_obj_id_post_comment", + "community": 15, + "norm_label": "load_ae_obj_id__post_comment()" + }, + { + "label": "load_ae_obj_li__post_comment()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L72", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment", + "community": 15, + "norm_label": "load_ae_obj_li__post_comment()" + }, + { + "label": "create_ae_obj__post_comment()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L151", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_create_ae_obj_post_comment", + "community": 15, + "norm_label": "create_ae_obj__post_comment()" + }, + { + "label": "delete_ae_obj_id__post_comment()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L206", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_delete_ae_obj_id_post_comment", + "community": 15, + "norm_label": "delete_ae_obj_id__post_comment()" + }, + { + "label": "update_ae_obj__post_comment()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L244", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_update_ae_obj_post_comment", + "community": 15, + "norm_label": "update_ae_obj__post_comment()" + }, + { + "label": "properties_to_save", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L293", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_properties_to_save", + "community": 15, + "norm_label": "properties_to_save" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L319", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_process_generic_props", + "community": 15, + "norm_label": "_process_generic_props()" + }, + { + "label": "process_ae_obj__post_comment_props()", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L375", + "_origin": "ast", + "id": "ae_posts_ae_posts_post_comment_process_ae_obj_post_comment_props", + "community": 15, + "norm_label": "process_ae_obj__post_comment_props()" + }, + { + "label": "ae_posts_functions.ts", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_posts_ae_posts_functions", + "community": 15, + "norm_label": "ae_posts_functions.ts" + }, + { + "label": "export_obj", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L20", + "_origin": "ast", + "id": "ae_posts_ae_posts_functions_export_obj", + "community": 15, + "norm_label": "export_obj" + }, + { + "label": "db_posts.ts", + "file_type": "code", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_posts_db_posts", + "community": 15, + "norm_label": "db_posts.ts" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L15", + "_origin": "ast", + "id": "ae_posts_db_posts_post", + "community": 15, + "norm_label": "post" + }, + { + "label": "Post_Comment", + "file_type": "code", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L76", + "_origin": "ast", + "id": "ae_posts_db_posts_post_comment", + "community": 15, + "norm_label": "post_comment" + }, + { + "label": "MySubClassedDexie", + "file_type": "code", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L115", + "_origin": "ast", + "id": "ae_posts_db_posts_mysubclasseddexie", + "community": 15, + "norm_label": "mysubclasseddexie" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L120", + "_origin": "ast", + "id": "ae_posts_db_posts_mysubclasseddexie_constructor", + "community": 15, + "norm_label": ".constructor()" + }, + { + "label": "db_posts", + "file_type": "code", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L146", + "_origin": "ast", + "id": "ae_posts_db_posts_db_posts", + "community": 15, + "norm_label": "db_posts" + }, + { + "label": "reports_functions.ts", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_reports_reports_functions", + "community": 28, + "norm_label": "reports_functions.ts" + }, + { + "label": "MeetingEvent", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L10", + "_origin": "ast", + "id": "ae_reports_reports_functions_meetingevent", + "community": 28, + "norm_label": "meetingevent" + }, + { + "label": "MeetingParticipant", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L16", + "_origin": "ast", + "id": "ae_reports_reports_functions_meetingparticipant", + "community": 28, + "norm_label": "meetingparticipant" + }, + { + "label": "MeetingReport", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L22", + "_origin": "ast", + "id": "ae_reports_reports_functions_meetingreport", + "community": 28, + "norm_label": "meetingreport" + }, + { + "label": "safe_parse_meta()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L35", + "_origin": "ast", + "id": "ae_reports_reports_functions_safe_parse_meta", + "community": 28, + "norm_label": "safe_parse_meta()" + }, + { + "label": "parse_duration_seconds()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L45", + "_origin": "ast", + "id": "ae_reports_reports_functions_parse_duration_seconds", + "community": 28, + "norm_label": "parse_duration_seconds()" + }, + { + "label": "normalize_text()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L51", + "_origin": "ast", + "id": "ae_reports_reports_functions_normalize_text", + "community": 28, + "norm_label": "normalize_text()" + }, + { + "label": "normalize_uuid()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L55", + "_origin": "ast", + "id": "ae_reports_reports_functions_normalize_uuid", + "community": 28, + "norm_label": "normalize_uuid()" + }, + { + "label": "extract_uuid_from_url_params()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L59", + "_origin": "ast", + "id": "ae_reports_reports_functions_extract_uuid_from_url_params", + "community": 28, + "norm_label": "extract_uuid_from_url_params()" + }, + { + "label": "extract_participant_uuid()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L69", + "_origin": "ast", + "id": "ae_reports_reports_functions_extract_participant_uuid", + "community": 28, + "norm_label": "extract_participant_uuid()" + }, + { + "label": "extract_flat_search_results()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L94", + "_origin": "ast", + "id": "ae_reports_reports_functions_extract_flat_search_results", + "community": 28, + "norm_label": "extract_flat_search_results()" + }, + { + "label": "build_jitsi_report_from_logs()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L118", + "_origin": "ast", + "id": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "community": 28, + "norm_label": "build_jitsi_report_from_logs()" + }, + { + "label": "load_jitsi_report_from_cache()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L302", + "_origin": "ast", + "id": "ae_reports_reports_functions_load_jitsi_report_from_cache", + "community": 28, + "norm_label": "load_jitsi_report_from_cache()" + }, + { + "label": "qry__jitsi_report()", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L345", + "_origin": "ast", + "id": "ae_reports_reports_functions_qry_jitsi_report", + "community": 28, + "norm_label": "qry__jitsi_report()" + }, + { + "label": "ae_sponsorships__sponsorship.editable_fields.ts", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_sponsorship_editable_fields", + "community": 120, + "norm_label": "ae_sponsorships__sponsorship.editable_fields.ts" + }, + { + "label": "editable_fields__sponsorship_cfg", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.editable_fields.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_sponsorship_editable_fields_editable_fields_sponsorship_cfg", + "community": 120, + "norm_label": "editable_fields__sponsorship_cfg" + }, + { + "label": "editable_fields__sponsorship", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.editable_fields.ts", + "source_location": "L16", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_sponsorship_editable_fields_editable_fields_sponsorship", + "community": 120, + "norm_label": "editable_fields__sponsorship" + }, + { + "label": "ae_sponsorships__sponsorship.ts", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_sponsorship", + "community": 30, + "norm_label": "ae_sponsorships__sponsorship.ts" + }, + { + "label": "load_ae_obj_id__sponsorship()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L9", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_sponsorship_load_ae_obj_id_sponsorship", + "community": 30, + "norm_label": "load_ae_obj_id__sponsorship()" + }, + { + "label": "load_ae_obj_li__sponsorship()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L26", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_sponsorship_load_ae_obj_li_sponsorship", + "community": 30, + "norm_label": "load_ae_obj_li__sponsorship()" + }, + { + "label": "ae_sponsorships_functions.ts", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions", + "community": 31, + "norm_label": "ae_sponsorships_functions.ts" + }, + { + "label": "ae_promises", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L7", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_ae_promises", + "community": 31, + "norm_label": "ae_promises" + }, + { + "label": "properties_to_save_sponsorship_cfg", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L10", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_properties_to_save_sponsorship_cfg", + "community": 31, + "norm_label": "properties_to_save_sponsorship_cfg" + }, + { + "label": "process_ae_obj__sponsorship_cfg_props()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L34", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_cfg_props", + "community": 31, + "norm_label": "process_ae_obj__sponsorship_cfg_props()" + }, + { + "label": "properties_to_save_sponsorship", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L61", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_properties_to_save_sponsorship", + "community": 31, + "norm_label": "properties_to_save_sponsorship" + }, + { + "label": "process_ae_obj__sponsorship_props()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L101", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_props", + "community": 31, + "norm_label": "process_ae_obj__sponsorship_props()" + }, + { + "label": "_process_generic_props()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L131", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_process_generic_props", + "community": 31, + "norm_label": "_process_generic_props()" + }, + { + "label": "load_ae_obj_id__sponsorship_cfg()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L196", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_id_sponsorship_cfg", + "community": 31, + "norm_label": "load_ae_obj_id__sponsorship_cfg()" + }, + { + "label": "_refresh_sponsorship_cfg_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L238", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_cfg_id_background", + "community": 31, + "norm_label": "_refresh_sponsorship_cfg_id_background()" + }, + { + "label": "load_ae_obj_id__sponsorship()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L274", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_id_sponsorship", + "community": 31, + "norm_label": "load_ae_obj_id__sponsorship()" + }, + { + "label": "_refresh_sponsorship_id_background()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L317", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_id_background", + "community": 31, + "norm_label": "_refresh_sponsorship_id_background()" + }, + { + "label": "load_ae_obj_li__sponsorship()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L353", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_li_sponsorship", + "community": 31, + "norm_label": "load_ae_obj_li__sponsorship()" + }, + { + "label": "create_ae_obj__sponsorship()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L420", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_create_ae_obj_sponsorship", + "community": 31, + "norm_label": "create_ae_obj__sponsorship()" + }, + { + "label": "update_ae_obj__sponsorship()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L440", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_update_ae_obj_sponsorship", + "community": 31, + "norm_label": "update_ae_obj__sponsorship()" + }, + { + "label": "delete_ae_obj__sponsorship()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L463", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_delete_ae_obj_sponsorship", + "community": 31, + "norm_label": "delete_ae_obj__sponsorship()" + }, + { + "label": "download_export__sponsorship()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L480", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_download_export_sponsorship", + "community": 31, + "norm_label": "download_export__sponsorship()" + }, + { + "label": "spons_func", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L516", + "_origin": "ast", + "id": "ae_sponsorships_ae_sponsorships_functions_spons_func", + "community": 31, + "norm_label": "spons_func" + }, + { + "label": "db_sponsorships.ts", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_sponsorships_db_sponsorships", + "community": 31, + "norm_label": "db_sponsorships.ts" + }, + { + "label": "Sponsorship", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L9", + "_origin": "ast", + "id": "ae_sponsorships_db_sponsorships_sponsorship", + "community": 31, + "norm_label": "sponsorship" + }, + { + "label": "Sponsorship_Cfg", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L77", + "_origin": "ast", + "id": "ae_sponsorships_db_sponsorships_sponsorship_cfg", + "community": 31, + "norm_label": "sponsorship_cfg" + }, + { + "label": "MySubClassedDexie", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L108", + "_origin": "ast", + "id": "ae_sponsorships_db_sponsorships_mysubclasseddexie", + "community": 31, + "norm_label": "mysubclasseddexie" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L113", + "_origin": "ast", + "id": "ae_sponsorships_db_sponsorships_mysubclasseddexie_constructor", + "community": 31, + "norm_label": ".constructor()" + }, + { + "label": "db_sponsorships", + "file_type": "code", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L133", + "_origin": "ast", + "id": "ae_sponsorships_db_sponsorships_db_sponsorships", + "community": 31, + "norm_label": "db_sponsorships" + }, + { + "label": "ae_string_snippets.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_string_snippets.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_string_snippets", + "community": 10, + "norm_label": "ae_string_snippets.ts" + }, + { + "label": "string_snippets", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_string_snippets.ts", + "source_location": "L3", + "_origin": "ast", + "id": "ae_utils_ae_string_snippets_string_snippets", + "community": 10, + "norm_label": "string_snippets" + }, + { + "label": "ae_utils.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils", + "community": 20, + "norm_label": "ae_utils.ts" + }, + { + "label": "key_str", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L32", + "_origin": "ast", + "id": "ae_utils_ae_utils_key_str", + "community": 20, + "norm_label": "key_str" + }, + { + "label": "key_val", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L36", + "_origin": "ast", + "id": "ae_utils_ae_utils_key_val", + "community": 20, + "norm_label": "key_val" + }, + { + "label": "number_w_commas()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L41", + "_origin": "ast", + "id": "ae_utils_ae_utils_number_w_commas", + "community": 20, + "norm_label": "number_w_commas()" + }, + { + "label": "handle_url_and_message()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L53", + "_origin": "ast", + "id": "ae_utils_ae_utils_handle_url_and_message", + "community": 20, + "norm_label": "handle_url_and_message()" + }, + { + "label": "create_a_element()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L88", + "_origin": "ast", + "id": "ae_utils_ae_utils_create_a_element", + "community": 20, + "norm_label": "create_a_element()" + }, + { + "label": "create_img_element()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L109", + "_origin": "ast", + "id": "ae_utils_ae_utils_create_img_element", + "community": 20, + "norm_label": "create_img_element()" + }, + { + "label": "create_video_element()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L150", + "_origin": "ast", + "id": "ae_utils_ae_utils_create_video_element", + "community": 20, + "norm_label": "create_video_element()" + }, + { + "label": "count_words()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L207", + "_origin": "ast", + "id": "ae_utils_ae_utils_count_words", + "community": 20, + "norm_label": "count_words()" + }, + { + "label": "shorten_string()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L218", + "_origin": "ast", + "id": "ae_utils_ae_utils_shorten_string", + "community": 20, + "norm_label": "shorten_string()" + }, + { + "label": "strip_html()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L273", + "_origin": "ast", + "id": "ae_utils_ae_utils_strip_html", + "community": 20, + "norm_label": "strip_html()" + }, + { + "label": "set_focus()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L279", + "_origin": "ast", + "id": "ae_utils_ae_utils_set_focus", + "community": 20, + "norm_label": "set_focus()" + }, + { + "label": "shorten_filename()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L296", + "_origin": "ast", + "id": "ae_utils_ae_utils_shorten_filename", + "community": 20, + "norm_label": "shorten_filename()" + }, + { + "label": "ae_util", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L333", + "_origin": "ast", + "id": "ae_utils_ae_utils_ae_util", + "community": 10, + "norm_label": "ae_util" + }, + { + "label": "ae_utils__crypto.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_crypto", + "community": 84, + "norm_label": "ae_utils__crypto.ts" + }, + { + "label": "generate_iv()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_utils_ae_utils_crypto_generate_iv", + "community": 84, + "norm_label": "generate_iv()" + }, + { + "label": "encrypt_content()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L11", + "_origin": "ast", + "id": "ae_utils_ae_utils_crypto_encrypt_content", + "community": 84, + "norm_label": "encrypt_content()" + }, + { + "label": "combine_iv_and_base64()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L40", + "_origin": "ast", + "id": "ae_utils_ae_utils_crypto_combine_iv_and_base64", + "community": 84, + "norm_label": "combine_iv_and_base64()" + }, + { + "label": "encrypt_wrapper()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L65", + "_origin": "ast", + "id": "ae_utils_ae_utils_crypto_encrypt_wrapper", + "community": 84, + "norm_label": "encrypt_wrapper()" + }, + { + "label": "decrypt_content()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L84", + "_origin": "ast", + "id": "ae_utils_ae_utils_crypto_decrypt_content", + "community": 84, + "norm_label": "decrypt_content()" + }, + { + "label": "split_iv_and_base64()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L114", + "_origin": "ast", + "id": "ae_utils_ae_utils_crypto_split_iv_and_base64", + "community": 84, + "norm_label": "split_iv_and_base64()" + }, + { + "label": "decrypt_wrapper()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L134", + "_origin": "ast", + "id": "ae_utils_ae_utils_crypto_decrypt_wrapper", + "community": 84, + "norm_label": "decrypt_wrapper()" + }, + { + "label": "ae_utils__datetime_format.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_datetime_format", + "community": 105, + "norm_label": "ae_utils__datetime_format.ts" + }, + { + "label": "FORMAT_PAIRS", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L6", + "_origin": "ast", + "id": "ae_utils_ae_utils_datetime_format_format_pairs", + "community": 105, + "norm_label": "format_pairs" + }, + { + "label": "TO_12H", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L18", + "_origin": "ast", + "id": "ae_utils_ae_utils_datetime_format_to_12h", + "community": 105, + "norm_label": "to_12h" + }, + { + "label": "TO_24H", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L21", + "_origin": "ast", + "id": "ae_utils_ae_utils_datetime_format_to_24h", + "community": 105, + "norm_label": "to_24h" + }, + { + "label": "iso_datetime_formatter()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L25", + "_origin": "ast", + "id": "ae_utils_ae_utils_datetime_format_iso_datetime_formatter", + "community": 105, + "norm_label": "iso_datetime_formatter()" + }, + { + "label": "ae_utils__extract_prefixed_form_data.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__extract_prefixed_form_data.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_extract_prefixed_form_data", + "community": 122, + "norm_label": "ae_utils__extract_prefixed_form_data.ts" + }, + { + "label": "key_val", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__extract_prefixed_form_data.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_extract_prefixed_form_data_key_val", + "community": 122, + "norm_label": "key_val" + }, + { + "label": "extract_prefixed_form_data()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__extract_prefixed_form_data.ts", + "source_location": "L14", + "_origin": "ast", + "id": "ae_utils_ae_utils_extract_prefixed_form_data_extract_prefixed_form_data", + "community": 122, + "norm_label": "extract_prefixed_form_data()" + }, + { + "label": "ae_utils__file_extension_icon.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__file_extension_icon.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_file_extension_icon", + "community": 20, + "norm_label": "ae_utils__file_extension_icon.ts" + }, + { + "label": "file_extension_icon()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__file_extension_icon.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_utils_ae_utils_file_extension_icon_file_extension_icon", + "community": 20, + "norm_label": "file_extension_icon()" + }, + { + "label": "ae_utils__file_extension_icon_lucide.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__file_extension_icon_lucide.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_file_extension_icon_lucide", + "community": 20, + "norm_label": "ae_utils__file_extension_icon_lucide.ts" + }, + { + "label": "file_extension_icon_lucide()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__file_extension_icon_lucide.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_utils_ae_utils_file_extension_icon_lucide_file_extension_icon_lucide", + "community": 20, + "norm_label": "file_extension_icon_lucide()" + }, + { + "label": "ae_utils__files.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_files", + "community": 97, + "norm_label": "ae_utils__files.ts" + }, + { + "label": "clean_filename()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L5", + "_origin": "ast", + "id": "ae_utils_ae_utils_files_clean_filename", + "community": 97, + "norm_label": "clean_filename()" + }, + { + "label": "format_bytes()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L23", + "_origin": "ast", + "id": "ae_utils_ae_utils_files_format_bytes", + "community": 97, + "norm_label": "format_bytes()" + }, + { + "label": "guess_file_name()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L39", + "_origin": "ast", + "id": "ae_utils_ae_utils_files_guess_file_name", + "community": 97, + "norm_label": "guess_file_name()" + }, + { + "label": "guess_file_extension()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L60", + "_origin": "ast", + "id": "ae_utils_ae_utils_files_guess_file_extension", + "community": 97, + "norm_label": "guess_file_extension()" + }, + { + "label": "get_file_hash()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L82", + "_origin": "ast", + "id": "ae_utils_ae_utils_files_get_file_hash", + "community": 97, + "norm_label": "get_file_hash()" + }, + { + "label": "ae_utils__format_html.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__format_html.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_format_html", + "community": 20, + "norm_label": "ae_utils__format_html.ts" + }, + { + "label": "format_html()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__format_html.ts", + "source_location": "L5", + "_origin": "ast", + "id": "ae_utils_ae_utils_format_html_format_html", + "community": 20, + "norm_label": "format_html()" + }, + { + "label": "ae_utils__get_obj_li_w_match_prop.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__get_obj_li_w_match_prop.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_get_obj_li_w_match_prop", + "community": 20, + "norm_label": "ae_utils__get_obj_li_w_match_prop.ts" + }, + { + "label": "get_obj_li_w_match_prop()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__get_obj_li_w_match_prop.ts", + "source_location": "L3", + "_origin": "ast", + "id": "ae_utils_ae_utils_get_obj_li_w_match_prop_get_obj_li_w_match_prop", + "community": 20, + "norm_label": "get_obj_li_w_match_prop()" + }, + { + "label": "ae_utils__is_datetime_recent.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__is_datetime_recent.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_is_datetime_recent", + "community": 20, + "norm_label": "ae_utils__is_datetime_recent.ts" + }, + { + "label": "is_datetime_recent()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__is_datetime_recent.ts", + "source_location": "L2", + "_origin": "ast", + "id": "ae_utils_ae_utils_is_datetime_recent_is_datetime_recent", + "community": 20, + "norm_label": "is_datetime_recent()" + }, + { + "label": "ae_utils__perm_checks.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_perm_checks", + "community": 98, + "norm_label": "ae_utils__perm_checks.ts" + }, + { + "label": "key_val", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_perm_checks_key_val", + "community": 98, + "norm_label": "key_val" + }, + { + "label": "access_level_order", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L6", + "_origin": "ast", + "id": "ae_utils_ae_utils_perm_checks_access_level_order", + "community": 98, + "norm_label": "access_level_order" + }, + { + "label": "compare_access_levels()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L20", + "_origin": "ast", + "id": "ae_utils_ae_utils_perm_checks_compare_access_levels", + "community": 98, + "norm_label": "compare_access_levels()" + }, + { + "label": "process_permission_checks()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L36", + "_origin": "ast", + "id": "ae_utils_ae_utils_perm_checks_process_permission_checks", + "community": 98, + "norm_label": "process_permission_checks()" + }, + { + "label": "ae_utils__process_data_string.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__process_data_string.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_process_data_string", + "community": 20, + "norm_label": "ae_utils__process_data_string.ts" + }, + { + "label": "process_data_string()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__process_data_string.ts", + "source_location": "L20", + "_origin": "ast", + "id": "ae_utils_ae_utils_process_data_string_process_data_string", + "community": 20, + "norm_label": "process_data_string()" + }, + { + "label": "ae_utils__return_obj_type_path.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__return_obj_type_path.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_return_obj_type_path", + "community": 20, + "norm_label": "ae_utils__return_obj_type_path.ts" + }, + { + "label": "return_obj_type_path()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__return_obj_type_path.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_return_obj_type_path_return_obj_type_path", + "community": 20, + "norm_label": "return_obj_type_path()" + }, + { + "label": "ae_utils__set_obj_prop_display_name.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__set_obj_prop_display_name.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_set_obj_prop_display_name", + "community": 114, + "norm_label": "ae_utils__set_obj_prop_display_name.ts" + }, + { + "label": "set_obj_prop_display_name()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__set_obj_prop_display_name.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_utils_ae_utils_set_obj_prop_display_name_set_obj_prop_display_name", + "community": 114, + "norm_label": "set_obj_prop_display_name()" + }, + { + "label": "ae_utils__to_title_case.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__to_title_case.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_ae_utils_to_title_case", + "community": 114, + "norm_label": "ae_utils__to_title_case.ts" + }, + { + "label": "to_title_case()", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils__to_title_case.ts", + "source_location": "L3", + "_origin": "ast", + "id": "ae_utils_ae_utils_to_title_case_to_title_case", + "community": 114, + "norm_label": "to_title_case()" + }, + { + "label": "perm_checks.test.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/perm_checks.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_perm_checks_test", + "community": 98, + "norm_label": "perm_checks.test.ts" + }, + { + "label": "utils.ts", + "file_type": "code", + "source_file": "src/lib/ae_utils/utils.ts", + "source_location": "L1", + "_origin": "ast", + "id": "ae_utils_utils", + "community": 157, + "norm_label": "utils.ts" + }, + { + "label": "cn()", + "file_type": "code", + "source_file": "src/lib/ae_utils/utils.ts", + "source_location": "L4", + "_origin": "ast", + "id": "ae_utils_utils_cn", + "community": 157, + "norm_label": "cn()" + }, + { + "label": "$lib/app_components/e_app_access_type.svelte", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "app_components_e_app_access_type", + "community": 16, + "norm_label": "$lib/app_components/e_app_access_type.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source_location": "L113", + "_origin": "ast", + "id": "app_components_e_app_access_type_if", + "community": 16, + "norm_label": "if()" + }, + { + "label": "handle_check_passcode_api()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source_location": "L209", + "_origin": "ast", + "id": "app_components_e_app_access_type_handle_check_passcode_api", + "community": 16, + "norm_label": "handle_check_passcode_api()" + }, + { + "label": "svelte", + "file_type": "code", + "source_file": "svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "svelte_svelte", + "community": 215, + "norm_label": "svelte" + }, + { + "label": "$app/navigation", + "file_type": "code", + "source_file": "$app/navigation", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "navigation", + "community": 2, + "norm_label": "$app/navigation" + }, + { + "label": "dexie", + "file_type": "code", + "source_file": "dexie", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "dexie", + "community": 0, + "norm_label": "dexie" + }, + { + "label": "$lib/ae_utils/ae_utils", + "file_type": "code", + "source_file": "src/lib/ae_utils/ae_utils", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "community": 1, + "norm_label": "$lib/ae_utils/ae_utils" + }, + { + "label": "$lib/stores/ae_stores", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "community": 6, + "norm_label": "$lib/stores/ae_stores" + }, + { + "label": "$lib/ae_core/ae_core_functions", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core_functions", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "community": 1, + "norm_label": "$lib/ae_core/ae_core_functions" + }, + { + "label": "$lib/db_events", + "file_type": "code", + "source_file": "src/lib/db_events", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "community": 16, + "norm_label": "$lib/db_events" + }, + { + "label": "$lib/app_components/e_app_analytics.svelte", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_analytics.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "app_components_e_app_analytics", + "community": 46, + "norm_label": "$lib/app_components/e_app_analytics.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_analytics.svelte", + "source_location": "L22", + "_origin": "ast", + "id": "app_components_e_app_analytics_if", + "community": 46, + "norm_label": "if()" + }, + { + "label": "$app/environment", + "file_type": "code", + "source_file": "$app/environment", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "environment", + "community": 1, + "norm_label": "$app/environment" + }, + { + "label": "$lib/app_components/e_app_clipboard.svelte", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_clipboard.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "app_components_e_app_clipboard", + "community": 29, + "norm_label": "$lib/app_components/e_app_clipboard.svelte" + }, + { + "label": "{\n children,\n log_lvl = 0,\n value = $bindable(''),\n success = $bindable(false),\n btn_text = 'Copy to Clipboard',\n btn_title = 'Copy to Clipboard',\n btn_class = 'btn btn-sm preset-tonal-warning text-warning-500 m-1',\n hide_icon = false,\n hide_text = false,\n icon_name = 'copy' // copy, check, link\n}", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_clipboard.svelte", + "source_location": "L15", + "_origin": "ast", + "id": "app_components_e_app_clipboard_children_log_lvl_0_value_bindable_success_bindable_false_btn_text_copy_to_clipboard_btn_title_copy_to_clipboard_btn_class_btn_btn_sm_preset_tonal_warning_text_warning_500_m_1_hide_icon_false_hide_text_false_icon_name_copy_copy_check_link", + "community": 29, + "norm_label": "{\n children,\n log_lvl = 0,\n value = $bindable(''),\n success = $bindable(false),\n btn_text = 'copy to clipboard',\n btn_title = 'copy to clipboard',\n btn_class = 'btn btn-sm preset-tonal-warning text-warning-500 m-1',\n hide_icon = false,\n hide_text = false,\n icon_name = 'copy' // copy, check, link\n}" + }, + { + "label": "$lib/app_components/e_app_debug_menu.svelte", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_debug_menu.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "app_components_e_app_debug_menu", + "community": 6, + "norm_label": "$lib/app_components/e_app_debug_menu.svelte" + }, + { + "label": "@lucide/svelte", + "file_type": "code", + "source_file": "@lucide/svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "lucide_svelte_svelte", + "community": 202, + "norm_label": "@lucide/svelte" + }, + { + "label": "$lib/app_components/e_app_help_tech.svelte", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_help_tech.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "app_components_e_app_help_tech", + "community": 1, + "norm_label": "$lib/app_components/e_app_help_tech.svelte" + }, + { + "label": "$lib/ae_api/api", + "file_type": "code", + "source_file": "src/lib/ae_api/api", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "community": 2, + "norm_label": "$lib/ae_api/api" + }, + { + "label": "$lib/app_components/e_app_sign_in_out.svelte", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "app_components_e_app_sign_in_out", + "community": 16, + "norm_label": "$lib/app_components/e_app_sign_in_out.svelte" + }, + { + "label": "sign_in()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L101", + "_origin": "ast", + "id": "app_components_e_app_sign_in_out_sign_in", + "community": 16, + "norm_label": "sign_in()" + }, + { + "label": "sign_out()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L151", + "_origin": "ast", + "id": "app_components_e_app_sign_in_out_sign_out", + "community": 16, + "norm_label": "sign_out()" + }, + { + "label": "handle_send_auth_email()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L229", + "_origin": "ast", + "id": "app_components_e_app_sign_in_out_handle_send_auth_email", + "community": 16, + "norm_label": "handle_send_auth_email()" + }, + { + "label": "handle_lookup_user_email()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L253", + "_origin": "ast", + "id": "app_components_e_app_sign_in_out_handle_lookup_user_email", + "community": 16, + "norm_label": "handle_lookup_user_email()" + }, + { + "label": "handle_change_password()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L279", + "_origin": "ast", + "id": "app_components_e_app_sign_in_out_handle_change_password", + "community": 16, + "norm_label": "handle_change_password()" + }, + { + "label": "async()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L479", + "_origin": "ast", + "id": "app_components_e_app_sign_in_out_async", + "community": 16, + "norm_label": "async()" + }, + { + "label": "flowbite-svelte", + "file_type": "code", + "source_file": "flowbite-svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "flowbite_svelte", + "community": 2, + "norm_label": "flowbite-svelte" + }, + { + "label": "$lib/app_components/e_app_sys_bar.svelte", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "app_components_e_app_sys_bar", + "community": 16, + "norm_label": "$lib/app_components/e_app_sys_bar.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source_location": "L157", + "_origin": "ast", + "id": "app_components_e_app_sys_bar_if", + "community": 16, + "norm_label": "if()" + }, + { + "label": "opacity", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source_location": "L632", + "_origin": "ast", + "id": "app_components_e_app_sys_bar_opacity", + "community": 16, + "norm_label": "opacity" + }, + { + "label": "e_app_url_builder.svelte", + "file_type": "code", + "source_file": "src/lib/app_components/e_app_url_builder.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "app_components_e_app_url_builder", + "community": 16, + "norm_label": "e_app_url_builder.svelte" + }, + { + "label": "$lib/stores/ae_events_stores__badges_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_defaults", + "community": 0, + "norm_label": "$lib/stores/ae_events_stores__badges_defaults" + }, + { + "label": "$app/stores", + "file_type": "code", + "source_file": "$app/stores", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "stores", + "community": 16, + "norm_label": "$app/stores" + }, + { + "label": "electron_relay.ts", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L1", + "_origin": "ast", + "id": "electron_electron_relay", + "community": 21, + "norm_label": "electron_relay.ts" + }, + { + "label": "get_device_config()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L16", + "_origin": "ast", + "id": "electron_electron_relay_get_device_config", + "community": 21, + "norm_label": "get_device_config()" + }, + { + "label": "get_device_info()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L21", + "_origin": "ast", + "id": "electron_electron_relay_get_device_info", + "community": 21, + "norm_label": "get_device_info()" + }, + { + "label": "check_hash_file_cache()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L27", + "_origin": "ast", + "id": "electron_electron_relay_check_hash_file_cache", + "community": 21, + "norm_label": "check_hash_file_cache()" + }, + { + "label": "download_to_cache()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L42", + "_origin": "ast", + "id": "electron_electron_relay_download_to_cache", + "community": 21, + "norm_label": "download_to_cache()" + }, + { + "label": "launch_from_cache()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L62", + "_origin": "ast", + "id": "electron_electron_relay_launch_from_cache", + "community": 21, + "norm_label": "launch_from_cache()" + }, + { + "label": "copy_from_cache_to_temp()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L113", + "_origin": "ast", + "id": "electron_electron_relay_copy_from_cache_to_temp", + "community": 21, + "norm_label": "copy_from_cache_to_temp()" + }, + { + "label": "open_folder()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L138", + "_origin": "ast", + "id": "electron_electron_relay_open_folder", + "community": 21, + "norm_label": "open_folder()" + }, + { + "label": "run_cmd()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L144", + "_origin": "ast", + "id": "electron_electron_relay_run_cmd", + "community": 21, + "norm_label": "run_cmd()" + }, + { + "label": "run_cmd_sync()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L158", + "_origin": "ast", + "id": "electron_electron_relay_run_cmd_sync", + "community": 21, + "norm_label": "run_cmd_sync()" + }, + { + "label": "cleanup_tmp_files()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L176", + "_origin": "ast", + "id": "electron_electron_relay_cleanup_tmp_files", + "community": 21, + "norm_label": "cleanup_tmp_files()" + }, + { + "label": "run_osascript()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L201", + "_origin": "ast", + "id": "electron_electron_relay_run_osascript", + "community": 21, + "norm_label": "run_osascript()" + }, + { + "label": "kill_processes()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L207", + "_origin": "ast", + "id": "electron_electron_relay_kill_processes", + "community": 21, + "norm_label": "kill_processes()" + }, + { + "label": "open_local_file_v2()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L217", + "_origin": "ast", + "id": "electron_electron_relay_open_local_file_v2", + "community": 21, + "norm_label": "open_local_file_v2()" + }, + { + "label": "launch_presentation()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L228", + "_origin": "ast", + "id": "electron_electron_relay_launch_presentation", + "community": 21, + "norm_label": "launch_presentation()" + }, + { + "label": "control_presentation()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L322", + "_origin": "ast", + "id": "electron_electron_relay_control_presentation", + "community": 21, + "norm_label": "control_presentation()" + }, + { + "label": "set_wallpaper()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L387", + "_origin": "ast", + "id": "electron_electron_relay_set_wallpaper", + "community": 21, + "norm_label": "set_wallpaper()" + }, + { + "label": "restore_macos_default_wallpaper()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L422", + "_origin": "ast", + "id": "electron_electron_relay_restore_macos_default_wallpaper", + "community": 21, + "norm_label": "restore_macos_default_wallpaper()" + }, + { + "label": "update_app()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L448", + "_origin": "ast", + "id": "electron_electron_relay_update_app", + "community": 21, + "norm_label": "update_app()" + }, + { + "label": "window_control()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L461", + "_origin": "ast", + "id": "electron_electron_relay_window_control", + "community": 21, + "norm_label": "window_control()" + }, + { + "label": "manage_recording()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L476", + "_origin": "ast", + "id": "electron_electron_relay_manage_recording", + "community": 21, + "norm_label": "manage_recording()" + }, + { + "label": "set_display_layout()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L491", + "_origin": "ast", + "id": "electron_electron_relay_set_display_layout", + "community": 21, + "norm_label": "set_display_layout()" + }, + { + "label": "list_display_modes()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L506", + "_origin": "ast", + "id": "electron_electron_relay_list_display_modes", + "community": 21, + "norm_label": "list_display_modes()" + }, + { + "label": "set_display_mode()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L512", + "_origin": "ast", + "id": "electron_electron_relay_set_display_mode", + "community": 21, + "norm_label": "set_display_mode()" + }, + { + "label": "power_control()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L530", + "_origin": "ast", + "id": "electron_electron_relay_power_control", + "community": 21, + "norm_label": "power_control()" + }, + { + "label": "open_external()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L543", + "_origin": "ast", + "id": "electron_electron_relay_open_external", + "community": 21, + "norm_label": "open_external()" + }, + { + "label": "list_tools()", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L562", + "_origin": "ast", + "id": "electron_electron_relay_list_tools", + "community": 21, + "norm_label": "list_tools()" + }, + { + "label": "action_fit_text.ts", + "file_type": "code", + "source_file": "src/lib/elements/action_fit_text.ts", + "source_location": "L1", + "_origin": "ast", + "id": "elements_action_fit_text", + "community": 125, + "norm_label": "action_fit_text.ts" + }, + { + "label": "FitTextParams", + "file_type": "code", + "source_file": "src/lib/elements/action_fit_text.ts", + "source_location": "L15", + "_origin": "ast", + "id": "elements_action_fit_text_fittextparams", + "community": 125, + "norm_label": "fittextparams" + }, + { + "label": "fit_text()", + "file_type": "code", + "source_file": "src/lib/elements/action_fit_text.ts", + "source_location": "L20", + "_origin": "ast", + "id": "elements_action_fit_text_fit_text", + "community": 125, + "norm_label": "fit_text()" + }, + { + "label": "$lib/elements/ae_ai_tools.svelte", + "file_type": "code", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_ae_ai_tools", + "community": 93, + "norm_label": "$lib/elements/ae_ai_tools.svelte" + }, + { + "label": "tmp_summary", + "file_type": "code", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L74", + "_origin": "ast", + "id": "elements_ae_ai_tools_tmp_summary", + "community": 93, + "norm_label": "tmp_summary" + }, + { + "label": "show_api_token", + "file_type": "code", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L75", + "_origin": "ast", + "id": "elements_ae_ai_tools_show_api_token", + "community": 93, + "norm_label": "show_api_token" + }, + { + "label": "tab_button_class()", + "file_type": "code", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L83", + "_origin": "ast", + "id": "elements_ae_ai_tools_tab_button_class", + "community": 93, + "norm_label": "tab_button_class()" + }, + { + "label": "generate_ai_result()", + "file_type": "code", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L87", + "_origin": "ast", + "id": "elements_ae_ai_tools_generate_ai_result", + "community": 93, + "norm_label": "generate_ai_result()" + }, + { + "label": "handle_save()", + "file_type": "code", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L149", + "_origin": "ast", + "id": "elements_ae_ai_tools_handle_save", + "community": 93, + "norm_label": "handle_save()" + }, + { + "label": "openai", + "file_type": "code", + "source_file": "openai", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "openai", + "community": 171, + "norm_label": "openai" + }, + { + "label": "$lib/elements/element_editor_codemirror.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_editor_codemirror.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "elements_element_editor_codemirror", + "community": 103, + "norm_label": "$lib/elements/element_editor_codemirror.svelte" + }, + { + "label": "$lib/elements/ae_comp__hosted_files_clip_video.svelte", + "file_type": "code", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_ae_comp_hosted_files_clip_video", + "community": 17, + "norm_label": "$lib/elements/ae_comp__hosted_files_clip_video.svelte" + }, + { + "label": "$lib/element_input_files_tbl.svelte", + "file_type": "code", + "source_file": "src/lib/element_input_files_tbl.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_element_input_files_tbl_svelte", + "community": 17, + "norm_label": "$lib/element_input_files_tbl.svelte" + }, + { + "label": "$lib/elements/ae_comp__hosted_files_download_button.svelte", + "file_type": "code", + "source_file": "src/lib/elements/ae_comp__hosted_files_download_button.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "elements_ae_comp_hosted_files_download_button", + "community": 17, + "norm_label": "$lib/elements/ae_comp__hosted_files_download_button.svelte" + }, + { + "label": "$lib/elements/ae_comp__hosted_files_clip_video_li.svelte", + "file_type": "code", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video_li.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_ae_comp_hosted_files_clip_video_li", + "community": 17, + "norm_label": "$lib/elements/ae_comp__hosted_files_clip_video_li.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/lib/elements/ae_comp__hosted_files_download_button.svelte", + "source_location": "L146", + "_origin": "ast", + "id": "elements_ae_comp_hosted_files_download_button_if", + "community": 17, + "norm_label": "if()" + }, + { + "label": "svelte/transition", + "file_type": "code", + "source_file": "svelte/transition", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "transition", + "community": 25, + "norm_label": "svelte/transition" + }, + { + "label": "$lib/ae_core/core__hosted_files", + "file_type": "code", + "source_file": "src/lib/ae_core/core__hosted_files", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_core_hosted_files", + "community": 17, + "norm_label": "$lib/ae_core/core__hosted_files" + }, + { + "label": "$lib/elements/ae_comp__hosted_files_upload.svelte", + "file_type": "code", + "source_file": "src/lib/elements/ae_comp__hosted_files_upload.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_ae_comp_hosted_files_upload", + "community": 17, + "norm_label": "$lib/elements/ae_comp__hosted_files_upload.svelte" + }, + { + "label": "function()", + "file_type": "code", + "source_file": "src/lib/elements/ae_comp__hosted_files_upload.svelte", + "source_location": "L88", + "_origin": "ast", + "id": "elements_ae_comp_hosted_files_upload_function", + "community": 17, + "norm_label": "function()" + }, + { + "label": "$lib/elements/element_input_files_tbl.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_input_files_tbl.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "elements_element_input_files_tbl", + "community": 17, + "norm_label": "$lib/elements/element_input_files_tbl.svelte" + }, + { + "label": "$lib/elements/ae_comp__site_config_editor.svelte", + "file_type": "code", + "source_file": "src/lib/elements/ae_comp__site_config_editor.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_ae_comp_site_config_editor", + "community": 33, + "norm_label": "$lib/elements/ae_comp__site_config_editor.svelte" + }, + { + "label": "$lib/elements/ae_object_flags.svelte", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_ae_object_flags", + "community": 80, + "norm_label": "$lib/elements/ae_object_flags.svelte" + }, + { + "label": "{\n obj = $bindable(),\n show_labels = true,\n hide_alert: hide_alert = false,\n hide_private: hide_private = false,\n hide_public: hide_public = false,\n hide_personal: hide_personal = false,\n hide_professional: hide_professional = false,\n hide_template: hide_template = false,\n on_toggle: onToggle,\n container_class = 'flex flex-row flex-wrap gap-1 items-center justify-evenly py-2 border-y border-surface-500/10'\n}", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L39", + "_origin": "ast", + "id": "elements_ae_object_flags_obj_bindable_show_labels_true_hide_alert_hide_alert_false_hide_private_hide_private_false_hide_public_hide_public_false_hide_personal_hide_personal_false_hide_professional_hide_professional_false_hide_template_hide_template_false_on_toggle_ontoggle_container_class_flex_flex_row_flex_wrap_gap_1_items_center_justify_evenly_py_2_border_y_border_surface_500_10", + "community": 80, + "norm_label": "{\n obj = $bindable(),\n show_labels = true,\n hide_alert: hide_alert = false,\n hide_private: hide_private = false,\n hide_public: hide_public = false,\n hide_personal: hide_personal = false,\n hide_professional: hide_professional = false,\n hide_template: hide_template = false,\n on_toggle: ontoggle,\n container_class = 'flex flex-row flex-wrap gap-1 items-center justify-evenly py-2 border-y border-surface-500/10'\n}" + }, + { + "label": "emit_toggle()", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L52", + "_origin": "ast", + "id": "elements_ae_object_flags_emit_toggle", + "community": 80, + "norm_label": "emit_toggle()" + }, + { + "label": "toggle_alert()", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L56", + "_origin": "ast", + "id": "elements_ae_object_flags_toggle_alert", + "community": 80, + "norm_label": "toggle_alert()" + }, + { + "label": "toggle_private()", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L61", + "_origin": "ast", + "id": "elements_ae_object_flags_toggle_private", + "community": 80, + "norm_label": "toggle_private()" + }, + { + "label": "toggle_public()", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L66", + "_origin": "ast", + "id": "elements_ae_object_flags_toggle_public", + "community": 80, + "norm_label": "toggle_public()" + }, + { + "label": "toggle_personal()", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L71", + "_origin": "ast", + "id": "elements_ae_object_flags_toggle_personal", + "community": 80, + "norm_label": "toggle_personal()" + }, + { + "label": "toggle_professional()", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L76", + "_origin": "ast", + "id": "elements_ae_object_flags_toggle_professional", + "community": 80, + "norm_label": "toggle_professional()" + }, + { + "label": "toggle_template()", + "file_type": "code", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L81", + "_origin": "ast", + "id": "elements_ae_object_flags_toggle_template", + "community": 80, + "norm_label": "toggle_template()" + }, + { + "label": "$lib/types/ae_types", + "file_type": "code", + "source_file": "src/lib/types/ae_types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "community": 6, + "norm_label": "$lib/types/ae_types" + }, + { + "label": "$lib/elements/ae_record_controls.svelte", + "file_type": "code", + "source_file": "src/lib/elements/ae_record_controls.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_ae_record_controls", + "community": 2, + "norm_label": "$lib/elements/ae_record_controls.svelte" + }, + { + "label": "codemirror_modules.ts", + "file_type": "code", + "source_file": "src/lib/elements/codemirror_modules.ts", + "source_location": "L1", + "_origin": "ast", + "id": "elements_codemirror_modules", + "community": 126, + "norm_label": "codemirror_modules.ts" + }, + { + "label": "CMCache", + "file_type": "code", + "source_file": "src/lib/elements/codemirror_modules.ts", + "source_location": "L45", + "_origin": "ast", + "id": "elements_codemirror_modules_cmcache", + "community": 126, + "norm_label": "cmcache" + }, + { + "label": "ensure_CodeMirror_modules()", + "file_type": "code", + "source_file": "src/lib/elements/codemirror_modules.ts", + "source_location": "L89", + "_origin": "ast", + "id": "elements_codemirror_modules_ensure_codemirror_modules", + "community": 126, + "norm_label": "ensure_codemirror_modules()" + }, + { + "label": "$lib/elements/element_access_denied.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_access_denied.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_access_denied", + "community": 0, + "norm_label": "$lib/elements/element_access_denied.svelte" + }, + { + "label": "$lib/elements/element_ae_obj_field_editor.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_ae_obj_field_editor.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_ae_obj_field_editor", + "community": 16, + "norm_label": "$lib/elements/element_ae_obj_field_editor.svelte" + }, + { + "label": "$lib/elements/element_editor_tiptap.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_editor_tiptap.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "elements_element_editor_tiptap", + "community": 1, + "norm_label": "$lib/elements/element_editor_tiptap.svelte" + }, + { + "label": "$lib/elements/element_data_store.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_data_store.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_data_store", + "community": 2, + "norm_label": "$lib/elements/element_data_store.svelte" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/lib/elements/element_data_store.svelte", + "source_location": "L187", + "_origin": "ast", + "id": "elements_element_data_store_hidden", + "community": 2, + "norm_label": "hidden" + }, + { + "label": "$lib/ae_core/db_core", + "file_type": "code", + "source_file": "src/lib/ae_core/db_core", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "community": 17, + "norm_label": "$lib/ae_core/db_core" + }, + { + "label": "$lib/elements/element_data_store_form.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_data_store_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "elements_element_data_store_form", + "community": 2, + "norm_label": "$lib/elements/element_data_store_form.svelte" + }, + { + "label": "wrap_selection()", + "file_type": "code", + "source_file": "src/lib/elements/element_editor_codemirror.svelte", + "source_location": "L164", + "_origin": "ast", + "id": "elements_element_editor_codemirror_wrap_selection", + "community": 103, + "norm_label": "wrap_selection()" + }, + { + "label": "toggle_list()", + "file_type": "code", + "source_file": "src/lib/elements/element_editor_codemirror.svelte", + "source_location": "L204", + "_origin": "ast", + "id": "elements_element_editor_codemirror_toggle_list", + "community": 103, + "norm_label": "toggle_list()" + }, + { + "label": "./codemirror_modules", + "file_type": "code", + "source_file": "src/lib/elements/codemirror_modules", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_codemirror_modules", + "community": 103, + "norm_label": "./codemirror_modules" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/lib/elements/element_editor_tiptap.svelte", + "source_location": "L71", + "_origin": "ast", + "id": "elements_element_editor_tiptap_if", + "community": 1, + "norm_label": "if()" + }, + { + "label": "$lib/elements/element_fit_text.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_fit_text.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_fit_text", + "community": 25, + "norm_label": "$lib/elements/element_fit_text.svelte" + }, + { + "label": "./action_fit_text", + "file_type": "code", + "source_file": "src/lib/elements/action_fit_text", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_action_fit_text", + "community": 25, + "norm_label": "./action_fit_text" + }, + { + "label": "element_input_file.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_input_file.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "elements_element_input_file", + "community": 17, + "norm_label": "element_input_file.svelte" + }, + { + "label": "function()", + "file_type": "code", + "source_file": "src/lib/elements/element_input_file.svelte", + "source_location": "L70", + "_origin": "ast", + "id": "elements_element_input_file_function", + "community": 17, + "norm_label": "function()" + }, + { + "label": "svelte/legacy", + "file_type": "code", + "source_file": "svelte/legacy", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "legacy", + "community": 17, + "norm_label": "svelte/legacy" + }, + { + "label": "$lib/api", + "file_type": "code", + "source_file": "src/lib/api", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "community": 17, + "norm_label": "$lib/api" + }, + { + "label": "$lib/ae_core/core__check_hosted_file_obj_w_hash", + "file_type": "code", + "source_file": "src/lib/ae_core/core__check_hosted_file_obj_w_hash", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_core_check_hosted_file_obj_w_hash", + "community": 17, + "norm_label": "$lib/ae_core/core__check_hosted_file_obj_w_hash" + }, + { + "label": "$lib/elements/element_manage_event_file_li.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_manage_event_file_li", + "community": 29, + "norm_label": "$lib/elements/element_manage_event_file_li.svelte" + }, + { + "label": "$lib/ae_core_functions", + "file_type": "code", + "source_file": "src/lib/ae_core_functions", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "community": 29, + "norm_label": "$lib/ae_core_functions" + }, + { + "label": "$lib/stores/ae_events_stores", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "community": 0, + "norm_label": "$lib/stores/ae_events_stores" + }, + { + "label": "$lib/stores/ae_events_stores__pres_mgmt.svelte", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "community": 2, + "norm_label": "$lib/stores/ae_events_stores__pres_mgmt.svelte" + }, + { + "label": "$lib/ae_events/ae_events_functions", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events_functions", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "community": 0, + "norm_label": "$lib/ae_events/ae_events_functions" + }, + { + "label": "$lib/elements/element_manage_event_file_li_all.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_manage_event_file_li_all", + "community": 29, + "norm_label": "$lib/elements/element_manage_event_file_li_all.svelte" + }, + { + "label": "{\n container_class_li = [],\n link_to_type,\n link_to_id,\n allow_basic = false,\n allow_moderator = false,\n display_mode = 'default'\n}", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L12", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_all_container_class_li_link_to_type_link_to_id_allow_basic_false_allow_moderator_false_display_mode_default", + "community": 29, + "norm_label": "{\n container_class_li = [],\n link_to_type,\n link_to_id,\n allow_basic = false,\n allow_moderator = false,\n display_mode = 'default'\n}" + }, + { + "label": "lq__context_session_type_code", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L46", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_all_lq_context_session_type_code", + "community": 29, + "norm_label": "lq__context_session_type_code" + }, + { + "label": "dq__where_val", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L72", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_all_dq_where_val", + "community": 29, + "norm_label": "dq__where_val" + }, + { + "label": "dq__where_eq_val", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L73", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_all_dq_where_eq_val", + "community": 29, + "norm_label": "dq__where_eq_val" + }, + { + "label": "lq__event_file_obj_li", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L77", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_all_lq_event_file_obj_li", + "community": 29, + "norm_label": "lq__event_file_obj_li" + }, + { + "label": "$lib/ae_stores", + "file_type": "code", + "source_file": "src/lib/ae_stores", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "community": 1, + "norm_label": "$lib/ae_stores" + }, + { + "label": "$lib/ae_events/db_events", + "file_type": "code", + "source_file": "src/lib/ae_events/db_events", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "community": 0, + "norm_label": "$lib/ae_events/db_events" + }, + { + "label": "$lib/elements/element_manage_event_file_li_direct.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_manage_event_file_li_direct", + "community": 29, + "norm_label": "$lib/elements/element_manage_event_file_li_direct.svelte" + }, + { + "label": "{\n log_lvl = 0,\n container_class_li = [],\n link_to_type,\n link_to_id,\n allow_basic = false,\n allow_moderator = false,\n display_mode = 'default'\n}", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L13", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_direct_log_lvl_0_container_class_li_link_to_type_link_to_id_allow_basic_false_allow_moderator_false_display_mode_default", + "community": 29, + "norm_label": "{\n log_lvl = 0,\n container_class_li = [],\n link_to_type,\n link_to_id,\n allow_basic = false,\n allow_moderator = false,\n display_mode = 'default'\n}" + }, + { + "label": "lq__context_session_type_code", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L50", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_direct_lq_context_session_type_code", + "community": 29, + "norm_label": "lq__context_session_type_code" + }, + { + "label": "dq__where_eq_val", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L82", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_direct_dq_where_eq_val", + "community": 29, + "norm_label": "dq__where_eq_val" + }, + { + "label": "dq__where_for_id_eq_val", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L83", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_direct_dq_where_for_id_eq_val", + "community": 29, + "norm_label": "dq__where_for_id_eq_val" + }, + { + "label": "lq__event_file_obj_li", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L87", + "_origin": "ast", + "id": "elements_element_manage_event_file_li_direct_lq_event_file_obj_li", + "community": 29, + "norm_label": "lq__event_file_obj_li" + }, + { + "label": "$lib/elements/element_manage_hosted_file_li.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_manage_hosted_file_li", + "community": 17, + "norm_label": "$lib/elements/element_manage_hosted_file_li.svelte" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source_location": "L74", + "_origin": "ast", + "id": "elements_element_manage_hosted_file_li_hidden", + "community": 17, + "norm_label": "hidden" + }, + { + "label": "$lib/element_data_store.svelte", + "file_type": "code", + "source_file": "src/lib/element_data_store.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_element_data_store_svelte", + "community": 17, + "norm_label": "$lib/element_data_store.svelte" + }, + { + "label": "$lib/elements/element_manage_hosted_file_li_all.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_manage_hosted_file_li_all", + "community": 17, + "norm_label": "$lib/elements/element_manage_hosted_file_li_all.svelte" + }, + { + "label": "$lib/elements/element_obj_tbl_row.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_obj_tbl_row.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_obj_tbl_row", + "community": 33, + "norm_label": "$lib/elements/element_obj_tbl_row.svelte" + }, + { + "label": "$lib/elements/element_pwa_install_prompt.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_pwa_install_prompt.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_pwa_install_prompt", + "community": 46, + "norm_label": "$lib/elements/element_pwa_install_prompt.svelte" + }, + { + "label": "$lib/elements/pwa_install.svelte", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_pwa_install_svelte", + "community": 46, + "norm_label": "$lib/elements/pwa_install.svelte" + }, + { + "label": "$lib/elements/element_qr_scanner.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_qr_scanner.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_qr_scanner", + "community": 25, + "norm_label": "$lib/elements/element_qr_scanner.svelte" + }, + { + "label": "await()", + "file_type": "code", + "source_file": "src/lib/elements/element_qr_scanner.svelte", + "source_location": "L138", + "_origin": "ast", + "id": "elements_element_qr_scanner_await", + "community": 25, + "norm_label": "await()" + }, + { + "label": "html5-qrcode", + "file_type": "code", + "source_file": "html5-qrcode", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "html5_qrcode", + "community": 167, + "norm_label": "html5-qrcode" + }, + { + "label": "element_sql_qry.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_sql_qry.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "elements_element_sql_qry", + "community": 33, + "norm_label": "element_sql_qry.svelte" + }, + { + "label": "$lib/ae_api/api_post_object", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post_object", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api_post_object", + "community": 33, + "norm_label": "$lib/ae_api/api_post_object" + }, + { + "label": "$lib/elements/element_websocket.svelte", + "file_type": "code", + "source_file": "src/lib/elements/element_websocket.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "elements_element_websocket", + "community": 0, + "norm_label": "$lib/elements/element_websocket.svelte" + }, + { + "label": "pwa_install.svelte.ts", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L1", + "_origin": "ast", + "id": "elements_pwa_install_svelte", + "community": 88, + "norm_label": "pwa_install.svelte.ts" + }, + { + "label": "BeforeInstallPromptEvent", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L25", + "_origin": "ast", + "id": "elements_pwa_install_svelte_beforeinstallpromptevent", + "community": 88, + "norm_label": "beforeinstallpromptevent" + }, + { + "label": "_deferred_prompt", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L37", + "_origin": "ast", + "id": "elements_pwa_install_svelte_deferred_prompt", + "community": 88, + "norm_label": "_deferred_prompt" + }, + { + "label": "_is_installed", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L38", + "_origin": "ast", + "id": "elements_pwa_install_svelte_is_installed", + "community": 88, + "norm_label": "_is_installed" + }, + { + "label": "_is_dismissed", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L39", + "_origin": "ast", + "id": "elements_pwa_install_svelte_is_dismissed", + "community": 88, + "norm_label": "_is_dismissed" + }, + { + "label": "_in_standalone()", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L59", + "_origin": "ast", + "id": "elements_pwa_install_svelte_in_standalone", + "community": 88, + "norm_label": "_in_standalone()" + }, + { + "label": "_is_ios()", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L69", + "_origin": "ast", + "id": "elements_pwa_install_svelte_is_ios", + "community": 88, + "norm_label": "_is_ios()" + }, + { + "label": "pwa_install", + "file_type": "code", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L80", + "_origin": "ast", + "id": "elements_pwa_install_svelte_pwa_install", + "community": 88, + "norm_label": "pwa_install" + }, + { + "label": "ae_events_stores.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores", + "community": 10, + "norm_label": "ae_events_stores.ts" + }, + { + "label": "events_session_data_struct", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L22", + "_origin": "ast", + "id": "stores_ae_events_stores_events_session_data_struct", + "community": 10, + "norm_label": "events_session_data_struct" + }, + { + "label": "events_sess", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L76", + "_origin": "ast", + "id": "stores_ae_events_stores_events_sess", + "community": 10, + "norm_label": "events_sess" + }, + { + "label": "events_slct_obj_template", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L83", + "_origin": "ast", + "id": "stores_ae_events_stores_events_slct_obj_template", + "community": 10, + "norm_label": "events_slct_obj_template" + }, + { + "label": "events_slct", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L133", + "_origin": "ast", + "id": "stores_ae_events_stores_events_slct", + "community": 10, + "norm_label": "events_slct" + }, + { + "label": "events_trigger", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L136", + "_origin": "ast", + "id": "stores_ae_events_stores_events_trigger", + "community": 10, + "norm_label": "events_trigger" + }, + { + "label": "tmp__events_trig", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L140", + "_origin": "ast", + "id": "stores_ae_events_stores_tmp_events_trig", + "community": 10, + "norm_label": "tmp__events_trig" + }, + { + "label": "events_trig", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L153", + "_origin": "ast", + "id": "stores_ae_events_stores_events_trig", + "community": 10, + "norm_label": "events_trig" + }, + { + "label": "tmp__events_trig_kv", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L157", + "_origin": "ast", + "id": "stores_ae_events_stores_tmp_events_trig_kv", + "community": 10, + "norm_label": "tmp__events_trig_kv" + }, + { + "label": "events_trig_kv", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L158", + "_origin": "ast", + "id": "stores_ae_events_stores_events_trig_kv", + "community": 10, + "norm_label": "events_trig_kv" + }, + { + "label": "ae_events_stores__auth.svelte.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__auth.svelte.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_auth_svelte", + "community": 10, + "norm_label": "ae_events_stores__auth.svelte.ts" + }, + { + "label": "events_auth_loc_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__auth.svelte.ts", + "source_location": "L3", + "_origin": "ast", + "id": "stores_ae_events_stores_auth_svelte_events_auth_loc_defaults", + "community": 10, + "norm_label": "events_auth_loc_defaults" + }, + { + "label": "events_auth_loc", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__auth.svelte.ts", + "source_location": "L25", + "_origin": "ast", + "id": "stores_ae_events_stores_auth_svelte_events_auth_loc", + "community": 10, + "norm_label": "events_auth_loc" + }, + { + "label": "ae_events_stores__badges.svelte.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges.svelte.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_svelte", + "community": 26, + "norm_label": "ae_events_stores__badges.svelte.ts" + }, + { + "label": "badges_loc", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges.svelte.ts", + "source_location": "L20", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_svelte_badges_loc", + "community": 26, + "norm_label": "badges_loc" + }, + { + "label": "ae_events_stores__badges_defaults.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_defaults", + "community": 26, + "norm_label": "ae_events_stores__badges_defaults.ts" + }, + { + "label": "BadgesRemoteCfg", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L15", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_defaults_badgesremotecfg", + "community": 26, + "norm_label": "badgesremotecfg" + }, + { + "label": "default_authenticated_can_edit", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L51", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_defaults_default_authenticated_can_edit", + "community": 26, + "norm_label": "default_authenticated_can_edit" + }, + { + "label": "default_trusted_can_edit", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L62", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_defaults_default_trusted_can_edit", + "community": 26, + "norm_label": "default_trusted_can_edit" + }, + { + "label": "BadgesLocState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L98", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_defaults_badgeslocstate", + "community": 26, + "norm_label": "badgeslocstate" + }, + { + "label": "BadgesSessState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L147", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_defaults_badgessessstate", + "community": 26, + "norm_label": "badgessessstate" + }, + { + "label": "badges_loc_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L163", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_defaults_badges_loc_defaults", + "community": 26, + "norm_label": "badges_loc_defaults" + }, + { + "label": "badges_sess_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L215", + "_origin": "ast", + "id": "stores_ae_events_stores_badges_defaults_badges_sess_defaults", + "community": 26, + "norm_label": "badges_sess_defaults" + }, + { + "label": "ae_events_stores__launcher.svelte.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher.svelte.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_launcher_svelte", + "community": 14, + "norm_label": "ae_events_stores__launcher.svelte.ts" + }, + { + "label": "launcher_loc", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher.svelte.ts", + "source_location": "L4", + "_origin": "ast", + "id": "stores_ae_events_stores_launcher_svelte_launcher_loc", + "community": 14, + "norm_label": "launcher_loc" + }, + { + "label": "ae_events_stores__launcher_defaults.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_launcher_defaults", + "community": 14, + "norm_label": "ae_events_stores__launcher_defaults.ts" + }, + { + "label": "SectionState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L13", + "_origin": "ast", + "id": "stores_ae_events_stores_launcher_defaults_sectionstate", + "community": 14, + "norm_label": "sectionstate" + }, + { + "label": "LauncherLocState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L15", + "_origin": "ast", + "id": "stores_ae_events_stores_launcher_defaults_launcherlocstate", + "community": 14, + "norm_label": "launcherlocstate" + }, + { + "label": "LauncherSessState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L110", + "_origin": "ast", + "id": "stores_ae_events_stores_launcher_defaults_launchersessstate", + "community": 14, + "norm_label": "launchersessstate" + }, + { + "label": "launcher_loc_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L144", + "_origin": "ast", + "id": "stores_ae_events_stores_launcher_defaults_launcher_loc_defaults", + "community": 14, + "norm_label": "launcher_loc_defaults" + }, + { + "label": "launcher_sess_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L244", + "_origin": "ast", + "id": "stores_ae_events_stores_launcher_defaults_launcher_sess_defaults", + "community": 14, + "norm_label": "launcher_sess_defaults" + }, + { + "label": "ae_events_stores__leads.svelte.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads.svelte.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_leads_svelte", + "community": 63, + "norm_label": "ae_events_stores__leads.svelte.ts" + }, + { + "label": "leads_loc", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads.svelte.ts", + "source_location": "L22", + "_origin": "ast", + "id": "stores_ae_events_stores_leads_svelte_leads_loc", + "community": 63, + "norm_label": "leads_loc" + }, + { + "label": "ae_events_stores__leads_defaults.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_leads_defaults", + "community": 63, + "norm_label": "ae_events_stores__leads_defaults.ts" + }, + { + "label": "LeadsLocState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L9", + "_origin": "ast", + "id": "stores_ae_events_stores_leads_defaults_leadslocstate", + "community": 63, + "norm_label": "leadslocstate" + }, + { + "label": "TmpLicense", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L53", + "_origin": "ast", + "id": "stores_ae_events_stores_leads_defaults_tmplicense", + "community": 63, + "norm_label": "tmplicense" + }, + { + "label": "LeadsSessState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L62", + "_origin": "ast", + "id": "stores_ae_events_stores_leads_defaults_leadssessstate", + "community": 63, + "norm_label": "leadssessstate" + }, + { + "label": "leads_loc_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L82", + "_origin": "ast", + "id": "stores_ae_events_stores_leads_defaults_leads_loc_defaults", + "community": 63, + "norm_label": "leads_loc_defaults" + }, + { + "label": "leads_sess_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L136", + "_origin": "ast", + "id": "stores_ae_events_stores_leads_defaults_leads_sess_defaults", + "community": 63, + "norm_label": "leads_sess_defaults" + }, + { + "label": "ae_events_stores__pres_mgmt.svelte.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt.svelte.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_pres_mgmt_svelte", + "community": 10, + "norm_label": "ae_events_stores__pres_mgmt.svelte.ts" + }, + { + "label": "pres_mgmt_loc", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt.svelte.ts", + "source_location": "L19", + "_origin": "ast", + "id": "stores_ae_events_stores_pres_mgmt_svelte_pres_mgmt_loc", + "community": 10, + "norm_label": "pres_mgmt_loc" + }, + { + "label": "ae_events_stores__pres_mgmt_defaults.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_events_stores_pres_mgmt_defaults", + "community": 10, + "norm_label": "ae_events_stores__pres_mgmt_defaults.ts" + }, + { + "label": "PressMgmtRemoteCfg", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L25", + "_origin": "ast", + "id": "stores_ae_events_stores_pres_mgmt_defaults_pressmgmtremotecfg", + "community": 10, + "norm_label": "pressmgmtremotecfg" + }, + { + "label": "PresMgmtLocState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L89", + "_origin": "ast", + "id": "stores_ae_events_stores_pres_mgmt_defaults_presmgmtlocstate", + "community": 10, + "norm_label": "presmgmtlocstate" + }, + { + "label": "PresMgmtSessState", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L218", + "_origin": "ast", + "id": "stores_ae_events_stores_pres_mgmt_defaults_presmgmtsessstate", + "community": 10, + "norm_label": "presmgmtsessstate" + }, + { + "label": "pres_mgmt_loc_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L267", + "_origin": "ast", + "id": "stores_ae_events_stores_pres_mgmt_defaults_pres_mgmt_loc_defaults", + "community": 10, + "norm_label": "pres_mgmt_loc_defaults" + }, + { + "label": "pres_mgmt_sess_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L387", + "_origin": "ast", + "id": "stores_ae_events_stores_pres_mgmt_defaults_pres_mgmt_sess_defaults", + "community": 10, + "norm_label": "pres_mgmt_sess_defaults" + }, + { + "label": "ae_idaa_stores.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_idaa_stores", + "community": 53, + "norm_label": "ae_idaa_stores.ts" + }, + { + "label": "idaa_local_data_struct", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L11", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_local_data_struct", + "community": 53, + "norm_label": "idaa_local_data_struct" + }, + { + "label": "idaa_loc", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L99", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_loc", + "community": 53, + "norm_label": "idaa_loc" + }, + { + "label": "idaa_session_data_struct", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L106", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_session_data_struct", + "community": 53, + "norm_label": "idaa_session_data_struct" + }, + { + "label": "idaa_sess", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L147", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_sess", + "community": 53, + "norm_label": "idaa_sess" + }, + { + "label": "idaa_slct_obj_template", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L150", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_slct_obj_template", + "community": 53, + "norm_label": "idaa_slct_obj_template" + }, + { + "label": "idaa_slct", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L172", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_slct", + "community": 53, + "norm_label": "idaa_slct" + }, + { + "label": "idaa_trig_template", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L175", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_trig_template", + "community": 53, + "norm_label": "idaa_trig_template" + }, + { + "label": "idaa_trig", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L182", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_trig", + "community": 53, + "norm_label": "idaa_trig" + }, + { + "label": "idaa_prom_template", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L185", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_prom_template", + "community": 53, + "norm_label": "idaa_prom_template" + }, + { + "label": "idaa_prom", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L191", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_prom", + "community": 53, + "norm_label": "idaa_prom" + }, + { + "label": "ae_idaa_stores__idaa_loc.svelte.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_loc_svelte", + "community": 95, + "norm_label": "ae_idaa_stores__idaa_loc.svelte.ts" + }, + { + "label": "IdaaArchivesLoc", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L5", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_loc_svelte_idaaarchivesloc", + "community": 95, + "norm_label": "idaaarchivesloc" + }, + { + "label": "IdaaBbLoc", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L15", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_loc_svelte_idaabbloc", + "community": 95, + "norm_label": "idaabbloc" + }, + { + "label": "IdaaRecoveryMeetingsLoc", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L32", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_loc_svelte_idaarecoverymeetingsloc", + "community": 95, + "norm_label": "idaarecoverymeetingsloc" + }, + { + "label": "IdaaLocState", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L53", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_loc_svelte_idaalocstate", + "community": 95, + "norm_label": "idaalocstate" + }, + { + "label": "idaa_loc_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L76", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_loc_svelte_idaa_loc_defaults", + "community": 95, + "norm_label": "idaa_loc_defaults" + }, + { + "label": "idaa_loc", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L149", + "_origin": "ast", + "id": "stores_ae_idaa_stores_idaa_loc_svelte_idaa_loc", + "community": 95, + "norm_label": "idaa_loc" + }, + { + "label": "ae_stores.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_stores", + "community": 38, + "norm_label": "ae_stores.ts" + }, + { + "label": "key_val", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L43", + "_origin": "ast", + "id": "stores_ae_stores_key_val", + "community": 3, + "norm_label": "key_val" + }, + { + "label": "ae_app_local_data_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L57", + "_origin": "ast", + "id": "stores_ae_stores_ae_app_local_data_defaults", + "community": 38, + "norm_label": "ae_app_local_data_defaults" + }, + { + "label": "ae_loc", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L158", + "_origin": "ast", + "id": "stores_ae_stores_ae_loc", + "community": 35, + "norm_label": "ae_loc" + }, + { + "label": "ae_app_session_data_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L164", + "_origin": "ast", + "id": "stores_ae_stores_ae_app_session_data_defaults", + "community": 38, + "norm_label": "ae_app_session_data_defaults" + }, + { + "label": "ae_sess", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L223", + "_origin": "ast", + "id": "stores_ae_stores_ae_sess", + "community": 14, + "norm_label": "ae_sess" + }, + { + "label": "ae_api_data_struct", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L225", + "_origin": "ast", + "id": "stores_ae_stores_ae_api_data_struct", + "community": 38, + "norm_label": "ae_api_data_struct" + }, + { + "label": "ae_api_headers", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L237", + "_origin": "ast", + "id": "stores_ae_stores_ae_api_headers", + "community": 38, + "norm_label": "ae_api_headers" + }, + { + "label": "ae_api", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L248", + "_origin": "ast", + "id": "stores_ae_stores_ae_api", + "community": 10, + "norm_label": "ae_api" + }, + { + "label": "ae_trig_template", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L251", + "_origin": "ast", + "id": "stores_ae_stores_ae_trig_template", + "community": 38, + "norm_label": "ae_trig_template" + }, + { + "label": "ae_trig", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L252", + "_origin": "ast", + "id": "stores_ae_stores_ae_trig", + "community": 10, + "norm_label": "ae_trig" + }, + { + "label": "slct_obj_template", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L259", + "_origin": "ast", + "id": "stores_ae_stores_slct_obj_template", + "community": 38, + "norm_label": "slct_obj_template" + }, + { + "label": "slct", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L288", + "_origin": "ast", + "id": "stores_ae_stores_slct", + "community": 35, + "norm_label": "slct" + }, + { + "label": "slct_trigger", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L292", + "_origin": "ast", + "id": "stores_ae_stores_slct_trigger", + "community": 10, + "norm_label": "slct_trigger" + }, + { + "label": "ae_auth_error", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L296", + "_origin": "ast", + "id": "stores_ae_stores_ae_auth_error", + "community": 3, + "norm_label": "ae_auth_error" + }, + { + "label": "time", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L302", + "_origin": "ast", + "id": "stores_ae_stores_time", + "community": 38, + "norm_label": "time" + }, + { + "label": "ae_stores__auth_loc_defaults.ts", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_ae_stores_auth_loc_defaults", + "community": 38, + "norm_label": "ae_stores__auth_loc_defaults.ts" + }, + { + "label": "SiteCfgJson", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L16", + "_origin": "ast", + "id": "stores_ae_stores_auth_loc_defaults_sitecfgjson", + "community": 38, + "norm_label": "sitecfgjson" + }, + { + "label": "AePerson", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L24", + "_origin": "ast", + "id": "stores_ae_stores_auth_loc_defaults_aeperson", + "community": 38, + "norm_label": "aeperson" + }, + { + "label": "AeUser", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L36", + "_origin": "ast", + "id": "stores_ae_stores_auth_loc_defaults_aeuser", + "community": 38, + "norm_label": "aeuser" + }, + { + "label": "AccessType", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L53", + "_origin": "ast", + "id": "stores_ae_stores_auth_loc_defaults_accesstype", + "community": 38, + "norm_label": "accesstype" + }, + { + "label": "AuthLocState", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L60", + "_origin": "ast", + "id": "stores_ae_stores_auth_loc_defaults_authlocstate", + "community": 38, + "norm_label": "authlocstate" + }, + { + "label": "auth_loc_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L91", + "_origin": "ast", + "id": "stores_ae_stores_auth_loc_defaults_auth_loc_defaults", + "community": 38, + "norm_label": "auth_loc_defaults" + }, + { + "label": "store_versions.ts", + "file_type": "code", + "source_file": "src/lib/stores/store_versions.ts", + "source_location": "L1", + "_origin": "ast", + "id": "stores_store_versions", + "community": 63, + "norm_label": "store_versions.ts" + }, + { + "label": "IDB_CONTENT_VERSIONS", + "file_type": "code", + "source_file": "src/lib/stores/store_versions.ts", + "source_location": "L83", + "_origin": "ast", + "id": "stores_store_versions_idb_content_versions", + "community": 63, + "norm_label": "idb_content_versions" + }, + { + "label": "_check_and_wipe()", + "file_type": "code", + "source_file": "src/lib/stores/store_versions.ts", + "source_location": "L135", + "_origin": "ast", + "id": "stores_store_versions_check_and_wipe", + "community": 63, + "norm_label": "_check_and_wipe()" + }, + { + "label": "check_and_clear_idb_table()", + "file_type": "code", + "source_file": "src/lib/stores/store_versions.ts", + "source_location": "L181", + "_origin": "ast", + "id": "stores_store_versions_check_and_clear_idb_table", + "community": 63, + "norm_label": "check_and_clear_idb_table()" + }, + { + "label": "ae_types.ts", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1", + "_origin": "ast", + "id": "types_ae_types", + "community": 13, + "norm_label": "ae_types.ts" + }, + { + "label": "ae_BaseObj", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L9", + "_origin": "ast", + "id": "types_ae_types_ae_baseobj", + "community": 13, + "norm_label": "ae_baseobj" + }, + { + "label": "ae_Account", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L43", + "_origin": "ast", + "id": "types_ae_types_ae_account", + "community": 41, + "norm_label": "ae_account" + }, + { + "label": "ae_AccountCfg", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L53", + "_origin": "ast", + "id": "types_ae_types_ae_accountcfg", + "community": 13, + "norm_label": "ae_accountcfg" + }, + { + "label": "ae_Site", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L71", + "_origin": "ast", + "id": "types_ae_types_ae_site", + "community": 41, + "norm_label": "ae_site" + }, + { + "label": "ae_SiteDomain", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L95", + "_origin": "ast", + "id": "types_ae_types_ae_sitedomain", + "community": 41, + "norm_label": "ae_sitedomain" + }, + { + "label": "ae_Journal", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L126", + "_origin": "ast", + "id": "types_ae_types_ae_journal", + "community": 60, + "norm_label": "ae_journal" + }, + { + "label": "ae_JournalEntry", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L164", + "_origin": "ast", + "id": "types_ae_types_ae_journalentry", + "community": 60, + "norm_label": "ae_journalentry" + }, + { + "label": "ae_JournalEntryDraft", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L233", + "_origin": "ast", + "id": "types_ae_types_ae_journalentrydraft", + "community": 43, + "norm_label": "ae_journalentrydraft" + }, + { + "label": "ae_Person", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L260", + "_origin": "ast", + "id": "types_ae_types_ae_person", + "community": 41, + "norm_label": "ae_person" + }, + { + "label": "ae_User", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L307", + "_origin": "ast", + "id": "types_ae_types_ae_user", + "community": 41, + "norm_label": "ae_user" + }, + { + "label": "ae_UserRole", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L334", + "_origin": "ast", + "id": "types_ae_types_ae_userrole", + "community": 13, + "norm_label": "ae_userrole" + }, + { + "label": "ae_Address", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L352", + "_origin": "ast", + "id": "types_ae_types_ae_address", + "community": 41, + "norm_label": "ae_address" + }, + { + "label": "ae_Contact", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L381", + "_origin": "ast", + "id": "types_ae_types_ae_contact", + "community": 41, + "norm_label": "ae_contact" + }, + { + "label": "ae_ActivityLog", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L407", + "_origin": "ast", + "id": "types_ae_types_ae_activitylog", + "community": 41, + "norm_label": "ae_activitylog" + }, + { + "label": "ae_Event", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L436", + "_origin": "ast", + "id": "types_ae_types_ae_event", + "community": 13, + "norm_label": "ae_event" + }, + { + "label": "ae_EventCfg", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L482", + "_origin": "ast", + "id": "types_ae_types_ae_eventcfg", + "community": 13, + "norm_label": "ae_eventcfg" + }, + { + "label": "ae_EventBadge", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L496", + "_origin": "ast", + "id": "types_ae_types_ae_eventbadge", + "community": 13, + "norm_label": "ae_eventbadge" + }, + { + "label": "ae_EventBadgeTemplate", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L545", + "_origin": "ast", + "id": "types_ae_types_ae_eventbadgetemplate", + "community": 13, + "norm_label": "ae_eventbadgetemplate" + }, + { + "label": "ae_EventLocation", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L570", + "_origin": "ast", + "id": "types_ae_types_ae_eventlocation", + "community": 13, + "norm_label": "ae_eventlocation" + }, + { + "label": "ae_EventSession", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L590", + "_origin": "ast", + "id": "types_ae_types_ae_eventsession", + "community": 13, + "norm_label": "ae_eventsession" + }, + { + "label": "ae_EventPresentation", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L642", + "_origin": "ast", + "id": "types_ae_types_ae_eventpresentation", + "community": 13, + "norm_label": "ae_eventpresentation" + }, + { + "label": "ae_EventPresenter", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L671", + "_origin": "ast", + "id": "types_ae_types_ae_eventpresenter", + "community": 13, + "norm_label": "ae_eventpresenter" + }, + { + "label": "ae_EventTrack", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L698", + "_origin": "ast", + "id": "types_ae_types_ae_eventtrack", + "community": 13, + "norm_label": "ae_eventtrack" + }, + { + "label": "ae_HostedFile", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L714", + "_origin": "ast", + "id": "types_ae_types_ae_hostedfile", + "community": 41, + "norm_label": "ae_hostedfile" + }, + { + "label": "ae_HostedFileLink", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L733", + "_origin": "ast", + "id": "types_ae_types_ae_hostedfilelink", + "community": 13, + "norm_label": "ae_hostedfilelink" + }, + { + "label": "ae_DataStore", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L747", + "_origin": "ast", + "id": "types_ae_types_ae_datastore", + "community": 41, + "norm_label": "ae_datastore" + }, + { + "label": "ae_Post", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L779", + "_origin": "ast", + "id": "types_ae_types_ae_post", + "community": 13, + "norm_label": "ae_post" + }, + { + "label": "ae_PostComment", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L801", + "_origin": "ast", + "id": "types_ae_types_ae_postcomment", + "community": 13, + "norm_label": "ae_postcomment" + }, + { + "label": "ae_Page", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L815", + "_origin": "ast", + "id": "types_ae_types_ae_page", + "community": 13, + "norm_label": "ae_page" + }, + { + "label": "ae_Archive", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L833", + "_origin": "ast", + "id": "types_ae_types_ae_archive", + "community": 13, + "norm_label": "ae_archive" + }, + { + "label": "ae_ArchiveContent", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L856", + "_origin": "ast", + "id": "types_ae_types_ae_archivecontent", + "community": 13, + "norm_label": "ae_archivecontent" + }, + { + "label": "ae_EventFile", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L876", + "_origin": "ast", + "id": "types_ae_types_ae_eventfile", + "community": 13, + "norm_label": "ae_eventfile" + }, + { + "label": "ae_EventDevice", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L901", + "_origin": "ast", + "id": "types_ae_types_ae_eventdevice", + "community": 13, + "norm_label": "ae_eventdevice" + }, + { + "label": "ae_EventAbstract", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L919", + "_origin": "ast", + "id": "types_ae_types_ae_eventabstract", + "community": 13, + "norm_label": "ae_eventabstract" + }, + { + "label": "ae_Organization", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L934", + "_origin": "ast", + "id": "types_ae_types_ae_organization", + "community": 13, + "norm_label": "ae_organization" + }, + { + "label": "ae_EventRegistration", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L948", + "_origin": "ast", + "id": "types_ae_types_ae_eventregistration", + "community": 13, + "norm_label": "ae_eventregistration" + }, + { + "label": "ae_EventExhibit", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L963", + "_origin": "ast", + "id": "types_ae_types_ae_eventexhibit", + "community": 13, + "norm_label": "ae_eventexhibit" + }, + { + "label": "ae_EventExhibitTracking", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L981", + "_origin": "ast", + "id": "types_ae_types_ae_eventexhibittracking", + "community": 13, + "norm_label": "ae_eventexhibittracking" + }, + { + "label": "ae_EventPerson", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1001", + "_origin": "ast", + "id": "types_ae_types_ae_eventperson", + "community": 13, + "norm_label": "ae_eventperson" + }, + { + "label": "ae_EventPersonProfile", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1019", + "_origin": "ast", + "id": "types_ae_types_ae_eventpersonprofile", + "community": 13, + "norm_label": "ae_eventpersonprofile" + }, + { + "label": "ae_EventPersonTracking", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1037", + "_origin": "ast", + "id": "types_ae_types_ae_eventpersontracking", + "community": 13, + "norm_label": "ae_eventpersontracking" + }, + { + "label": "ae_Sponsorship", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1052", + "_origin": "ast", + "id": "types_ae_types_ae_sponsorship", + "community": 13, + "norm_label": "ae_sponsorship" + }, + { + "label": "ae_SponsorshipCfg", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1066", + "_origin": "ast", + "id": "types_ae_types_ae_sponsorshipcfg", + "community": 13, + "norm_label": "ae_sponsorshipcfg" + }, + { + "label": "ae_LogClientViewing", + "file_type": "code", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1080", + "_origin": "ast", + "id": "types_ae_types_ae_logclientviewing", + "community": 13, + "norm_label": "ae_logclientviewing" + }, + { + "label": "temporary-svelte-augments.d.ts", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d", + "community": 27, + "norm_label": "temporary-svelte-augments.d.ts" + }, + { + "label": "Modal", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L10", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_modal", + "community": 27, + "norm_label": "modal" + }, + { + "label": "Drawer", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L11", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_drawer", + "community": 27, + "norm_label": "drawer" + }, + { + "label": "Dropdown", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L12", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_dropdown", + "community": 27, + "norm_label": "dropdown" + }, + { + "label": "Button", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L13", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_button", + "community": 27, + "norm_label": "button" + }, + { + "label": "Collapse", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L14", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_collapse", + "community": 27, + "norm_label": "collapse" + }, + { + "label": "IconBase", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L21", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_iconbase", + "community": 27, + "norm_label": "iconbase" + }, + { + "label": "Star", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L24", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_star", + "community": 27, + "norm_label": "star" + }, + { + "label": "User", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L25", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_user", + "community": 27, + "norm_label": "user" + }, + { + "label": "Briefcase", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L26", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_briefcase", + "community": 27, + "norm_label": "briefcase" + }, + { + "label": "CalendarDays", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L27", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_calendardays", + "community": 27, + "norm_label": "calendardays" + }, + { + "label": "ChevronLeft", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L28", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_chevronleft", + "community": 27, + "norm_label": "chevronleft" + }, + { + "label": "Eye", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L29", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_eye", + "community": 27, + "norm_label": "eye" + }, + { + "label": "FileText", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L30", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_filetext", + "community": 27, + "norm_label": "filetext" + }, + { + "label": "ListTodo", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L31", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_listtodo", + "community": 27, + "norm_label": "listtodo" + }, + { + "label": "LoaderCircle", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L32", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_loadercircle", + "community": 27, + "norm_label": "loadercircle" + }, + { + "label": "Mail", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L33", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_mail", + "community": 27, + "norm_label": "mail" + }, + { + "label": "MapPin", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L34", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_mappin", + "community": 27, + "norm_label": "mappin" + }, + { + "label": "RotateCcw", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L35", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_rotateccw", + "community": 27, + "norm_label": "rotateccw" + }, + { + "label": "ShieldCheck", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L36", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_shieldcheck", + "community": 27, + "norm_label": "shieldcheck" + }, + { + "label": "SquarePen", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L37", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_squarepen", + "community": 27, + "norm_label": "squarepen" + }, + { + "label": "Store", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L38", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_store", + "community": 27, + "norm_label": "store" + }, + { + "label": "Trash2", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L39", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_trash2", + "community": 27, + "norm_label": "trash2" + }, + { + "label": "UserPlus", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L40", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_userplus", + "community": 27, + "norm_label": "userplus" + }, + { + "label": "StarHalf", + "file_type": "code", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L41", + "_origin": "ast", + "id": "types_temporary_svelte_augments_d_starhalf", + "community": 27, + "norm_label": "starhalf" + }, + { + "label": "lucide-augment.d.ts", + "file_type": "code", + "source_file": "src/lucide-augment.d.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_lucide_augment_d", + "community": 177, + "norm_label": "lucide-augment.d.ts" + }, + { + "label": "IconProps", + "file_type": "code", + "source_file": "src/lucide-augment.d.ts", + "source_location": "L22", + "_origin": "ast", + "id": "src_lucide_augment_d_iconprops", + "community": 177, + "norm_label": "iconprops" + }, + { + "label": "+error.svelte", + "file_type": "code", + "source_file": "src/routes/+error.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "routes_error", + "community": 1, + "norm_label": "+error.svelte" + }, + { + "label": "$app/state", + "file_type": "code", + "source_file": "$app/state", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "state", + "community": 0, + "norm_label": "$app/state" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_layout_svelte_routes_layout", + "community": 46, + "norm_label": "+layout.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_types", + "community": 46, + "norm_label": "./$types" + }, + { + "label": "../app.css", + "file_type": "code", + "source_file": "src/app.css", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_app_css", + "community": 46, + "norm_label": "../app.css" + }, + { + "label": "highlight.js/lib/core", + "file_type": "code", + "source_file": "highlight.js/lib/core", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "core", + "community": 46, + "norm_label": "highlight.js/lib/core" + }, + { + "label": "highlight.js/styles/github-dark.css", + "file_type": "code", + "source_file": "highlight.js/styles/github-dark.css", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "github_dark_css", + "community": 46, + "norm_label": "highlight.js/styles/github-dark.css" + }, + { + "label": "svelte/reactivity/window", + "file_type": "code", + "source_file": "svelte/reactivity/window", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "window", + "community": 46, + "norm_label": "svelte/reactivity/window" + }, + { + "label": "highlight.js/lib/languages/xml", + "file_type": "code", + "source_file": "highlight.js/lib/languages/xml", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "xml", + "community": 46, + "norm_label": "highlight.js/lib/languages/xml" + }, + { + "label": "highlight.js/lib/languages/css", + "file_type": "code", + "source_file": "highlight.js/lib/languages/css", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "css", + "community": 46, + "norm_label": "highlight.js/lib/languages/css" + }, + { + "label": "highlight.js/lib/languages/javascript", + "file_type": "code", + "source_file": "highlight.js/lib/languages/javascript", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "javascript", + "community": 46, + "norm_label": "highlight.js/lib/languages/javascript" + }, + { + "label": "highlight.js/lib/languages/typescript", + "file_type": "code", + "source_file": "highlight.js/lib/languages/typescript", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "typescript", + "community": 46, + "norm_label": "highlight.js/lib/languages/typescript" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_layout_ts_routes_layout", + "community": 32, + "norm_label": "+layout.ts" + }, + { + "label": "ae_api_init", + "file_type": "code", + "source_file": "src/routes/+layout.ts", + "source_location": "L35", + "_origin": "ast", + "id": "routes_layout_ae_api_init", + "community": 32, + "norm_label": "ae_api_init" + }, + { + "label": "ae_api_headers", + "file_type": "code", + "source_file": "src/routes/+layout.ts", + "source_location": "L46", + "_origin": "ast", + "id": "routes_layout_ae_api_headers", + "community": 32, + "norm_label": "ae_api_headers" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/+layout.ts", + "source_location": "L54", + "_origin": "ast", + "id": "routes_layout_load", + "community": 32, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "routes_page", + "community": 17, + "norm_label": "+page.svelte" + }, + { + "label": "$env/static/public", + "file_type": "code", + "source_file": "$env/static/public", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "public", + "community": 33, + "norm_label": "$env/static/public" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/core/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "core_layout", + "community": 6, + "norm_label": "+layout.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_page_svelte_core_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_page_ts_core_page", + "community": 161, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/+page.ts", + "source_location": "L4", + "_origin": "ast", + "id": "core_page_load", + "community": 161, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/accounts/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_accounts_page_svelte_accounts_page", + "community": 33, + "norm_label": "+page.svelte" + }, + { + "label": "load_accounts()", + "file_type": "code", + "source_file": "src/routes/core/accounts/+page.svelte", + "source_location": "L37", + "_origin": "ast", + "id": "accounts_page_load_accounts", + "community": 33, + "norm_label": "load_accounts()" + }, + { + "label": "handle_add_account()", + "file_type": "code", + "source_file": "src/routes/core/accounts/+page.svelte", + "source_location": "L52", + "_origin": "ast", + "id": "accounts_page_handle_add_account", + "community": 33, + "norm_label": "handle_add_account()" + }, + { + "label": "$lib/ae_core/ae_core__account", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_account", + "community": 33, + "norm_label": "$lib/ae_core/ae_core__account" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/accounts/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_accounts_page_ts_accounts_page", + "community": 57, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/accounts/+page.ts", + "source_location": "L6", + "_origin": "ast", + "id": "accounts_page_load", + "community": 57, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/accounts/[account_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "account_id_page", + "community": 16, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_core/ae_core__account.editable_fields", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__account.editable_fields", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_account_editable_fields", + "community": 16, + "norm_label": "$lib/ae_core/ae_core__account.editable_fields" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/activity_logs/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_activity_logs_page_svelte_activity_logs_page", + "community": 16, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/core/activity_logs/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_core_activity_logs_types", + "community": 16, + "norm_label": "./$types" + }, + { + "label": "$lib/ae_core/ae_core__activity_log", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__activity_log", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_activity_log", + "community": 16, + "norm_label": "$lib/ae_core/ae_core__activity_log" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/activity_logs/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_activity_logs_page_ts_activity_logs_page", + "community": 130, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/activity_logs/+page.ts", + "source_location": "L2", + "_origin": "ast", + "id": "activity_logs_page_load", + "community": 130, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/addresses/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "addresses_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "load_addresses()", + "file_type": "code", + "source_file": "src/routes/core/addresses/+page.svelte", + "source_location": "L42", + "_origin": "ast", + "id": "addresses_page_load_addresses", + "community": 6, + "norm_label": "load_addresses()" + }, + { + "label": "$lib/ae_core/ae_core__address", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_address", + "community": 6, + "norm_label": "$lib/ae_core/ae_core__address" + }, + { + "label": "ae_comp__address_form.svelte", + "file_type": "code", + "source_file": "src/routes/core/addresses/ae_comp__address_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "addresses_ae_comp_address_form", + "community": 6, + "norm_label": "ae_comp__address_form.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/addresses/[address_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "address_id_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_core/ae_core__address.editable_fields", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__address.editable_fields", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_address_editable_fields", + "community": 6, + "norm_label": "$lib/ae_core/ae_core__address.editable_fields" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/core/addresses/ae_comp__address_form.svelte", + "source_location": "L73", + "_origin": "ast", + "id": "addresses_ae_comp_address_form_if", + "community": 6, + "norm_label": "if()" + }, + { + "label": "../ae_comp__person_obj_tbl.svelte", + "file_type": "code", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "core_ae_comp_person_obj_tbl", + "community": 6, + "norm_label": "../ae_comp__person_obj_tbl.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/contacts/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "contacts_page", + "community": 78, + "norm_label": "+page.svelte" + }, + { + "label": "loading", + "file_type": "code", + "source_file": "src/routes/core/contacts/+page.svelte", + "source_location": "L37", + "_origin": "ast", + "id": "contacts_page_loading", + "community": 78, + "norm_label": "loading" + }, + { + "label": "show_add_form", + "file_type": "code", + "source_file": "src/routes/core/contacts/+page.svelte", + "source_location": "L38", + "_origin": "ast", + "id": "contacts_page_show_add_form", + "community": 78, + "norm_label": "show_add_form" + }, + { + "label": "load_contacts()", + "file_type": "code", + "source_file": "src/routes/core/contacts/+page.svelte", + "source_location": "L40", + "_origin": "ast", + "id": "contacts_page_load_contacts", + "community": 78, + "norm_label": "load_contacts()" + }, + { + "label": "$lib/ae_core/ae_core__contact", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_contact", + "community": 78, + "norm_label": "$lib/ae_core/ae_core__contact" + }, + { + "label": "ae_comp__contact_form.svelte", + "file_type": "code", + "source_file": "src/routes/core/contacts/ae_comp__contact_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "contacts_ae_comp_contact_form", + "community": 78, + "norm_label": "ae_comp__contact_form.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/contacts/[contact_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "contact_id_page", + "community": 78, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_core/ae_core__contact.editable_fields", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__contact.editable_fields", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_contact_editable_fields", + "community": 78, + "norm_label": "$lib/ae_core/ae_core__contact.editable_fields" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/core/contacts/ae_comp__contact_form.svelte", + "source_location": "L77", + "_origin": "ast", + "id": "contacts_ae_comp_contact_form_if", + "community": 78, + "norm_label": "if()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_data_stores_page_svelte_data_stores_page", + "community": 54, + "norm_label": "+page.svelte" + }, + { + "label": "do_search()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L83", + "_origin": "ast", + "id": "data_stores_page_do_search", + "community": 54, + "norm_label": "do_search()" + }, + { + "label": "clear_filters()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L120", + "_origin": "ast", + "id": "data_stores_page_clear_filters", + "community": 54, + "norm_label": "clear_filters()" + }, + { + "label": "toggle_sort()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L130", + "_origin": "ast", + "id": "data_stores_page_toggle_sort", + "community": 54, + "norm_label": "toggle_sort()" + }, + { + "label": "open_edit()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L141", + "_origin": "ast", + "id": "data_stores_page_open_edit", + "community": 54, + "norm_label": "open_edit()" + }, + { + "label": "open_new()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L146", + "_origin": "ast", + "id": "data_stores_page_open_new", + "community": 54, + "norm_label": "open_new()" + }, + { + "label": "do_rename_preview()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L152", + "_origin": "ast", + "id": "data_stores_page_do_rename_preview", + "community": 54, + "norm_label": "do_rename_preview()" + }, + { + "label": "do_rename_apply()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L184", + "_origin": "ast", + "id": "data_stores_page_do_rename_apply", + "community": 54, + "norm_label": "do_rename_apply()" + }, + { + "label": "type_badge()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L215", + "_origin": "ast", + "id": "data_stores_page_type_badge", + "community": 54, + "norm_label": "type_badge()" + }, + { + "label": "svelte/reactivity", + "file_type": "code", + "source_file": "svelte/reactivity", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "reactivity", + "community": 54, + "norm_label": "svelte/reactivity" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_data_stores_page_ts_data_stores_page", + "community": 162, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/data_stores/+page.ts", + "source_location": "L3", + "_origin": "ast", + "id": "data_stores_page_load", + "community": 162, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/files/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_files_page_svelte_files_page", + "community": 54, + "norm_label": "+page.svelte" + }, + { + "label": "for()", + "file_type": "code", + "source_file": "src/routes/core/files/+page.svelte", + "source_location": "L184", + "_origin": "ast", + "id": "files_page_for", + "community": 54, + "norm_label": "for()" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/core/files/+page.svelte", + "source_location": "L383", + "_origin": "ast", + "id": "files_page_if", + "community": 54, + "norm_label": "if()" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/files/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_files_page_ts_files_page", + "community": 165, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/files/+page.ts", + "source_location": "L3", + "_origin": "ast", + "id": "files_page_load", + "community": 165, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/lookups/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "lookups_page", + "community": 2, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/people/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_people_page_svelte_people_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "ae_comp__person_search.svelte", + "file_type": "code", + "source_file": "src/routes/core/people/ae_comp__person_search.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "people_ae_comp_person_search", + "community": 6, + "norm_label": "ae_comp__person_search.svelte" + }, + { + "label": "ae_comp__person_form.svelte", + "file_type": "code", + "source_file": "src/routes/core/people/ae_comp__person_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "people_ae_comp_person_form", + "community": 6, + "norm_label": "ae_comp__person_form.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/people/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_people_page_ts_people_page", + "community": 173, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/people/+page.ts", + "source_location": "L3", + "_origin": "ast", + "id": "people_page_load", + "community": 173, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_people_person_id_page_svelte_person_id_page", + "community": 16, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/core/people/[person_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_core_people_person_id_types", + "community": 16, + "norm_label": "./$types" + }, + { + "label": "person_view.svelte", + "file_type": "code", + "source_file": "src/routes/core/person_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "core_person_view", + "community": 16, + "norm_label": "person_view.svelte" + }, + { + "label": "$lib/ae_core/ae_core__user", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_user", + "community": 6, + "norm_label": "$lib/ae_core/ae_core__user" + }, + { + "label": "$lib/ae_core/ae_core__person", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__person", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_person", + "community": 6, + "norm_label": "$lib/ae_core/ae_core__person" + }, + { + "label": "$lib/ae_events/ae_events__event", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_event", + "community": 16, + "norm_label": "$lib/ae_events/ae_events__event" + }, + { + "label": "$lib/ae_posts/ae_posts__post", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts__post", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_ae_posts_post", + "community": 16, + "norm_label": "$lib/ae_posts/ae_posts__post" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/people/[person_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_people_person_id_page_ts_person_id_page", + "community": 7, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/people/[person_id]/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "person_id_page_load", + "community": 7, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/sites/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_sites_page_svelte_sites_page", + "community": 33, + "norm_label": "+page.svelte" + }, + { + "label": "load_sites()", + "file_type": "code", + "source_file": "src/routes/core/sites/+page.svelte", + "source_location": "L36", + "_origin": "ast", + "id": "sites_page_load_sites", + "community": 33, + "norm_label": "load_sites()" + }, + { + "label": "handle_add_site()", + "file_type": "code", + "source_file": "src/routes/core/sites/+page.svelte", + "source_location": "L53", + "_origin": "ast", + "id": "sites_page_handle_add_site", + "community": 33, + "norm_label": "handle_add_site()" + }, + { + "label": "$lib/ae_core/ae_core__site", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_site", + "community": 33, + "norm_label": "$lib/ae_core/ae_core__site" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/sites/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_sites_page_ts_sites_page", + "community": 176, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/sites/+page.ts", + "source_location": "L3", + "_origin": "ast", + "id": "sites_page_load", + "community": 176, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/sites/[site_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "site_id_page", + "community": 33, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_core/ae_core__site.editable_fields", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site.editable_fields", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_site_editable_fields", + "community": 33, + "norm_label": "$lib/ae_core/ae_core__site.editable_fields" + }, + { + "label": "$lib/ae_core/ae_core__site_domain.editable_fields", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__site_domain.editable_fields", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_site_domain_editable_fields", + "community": 33, + "norm_label": "$lib/ae_core/ae_core__site_domain.editable_fields" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/users/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "users_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/core/users/[user_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_users_user_id_page_svelte_user_id_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_core/ae_core__user.editable_fields", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core__user.editable_fields", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_user_editable_fields", + "community": 6, + "norm_label": "$lib/ae_core/ae_core__user.editable_fields" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/core/users/[user_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_core_users_user_id_page_ts_user_id_page", + "community": 7, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/core/users/[user_id]/+page.ts", + "source_location": "L7", + "_origin": "ast", + "id": "user_id_page_load", + "community": 7, + "norm_label": "load()" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/events/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_layout_svelte_events_layout", + "community": 6, + "norm_label": "+layout.svelte" + }, + { + "label": "iframe", + "file_type": "code", + "source_file": "src/routes/events/+layout.svelte", + "source_location": "L141", + "_origin": "ast", + "id": "events_layout_iframe", + "community": 6, + "norm_label": "iframe" + }, + { + "label": "gray", + "file_type": "code", + "source_file": "src/routes/events/+layout.svelte", + "source_location": "L142", + "_origin": "ast", + "id": "events_layout_gray", + "community": 6, + "norm_label": "gray" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_types", + "community": 6, + "norm_label": "./$types" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/events/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_layout_ts_events_layout", + "community": 164, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/+layout.ts", + "source_location": "L8", + "_origin": "ast", + "id": "events_layout_load", + "community": 164, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_page_svelte_events_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_page_ts_events_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/+page.ts", + "source_location": "L6", + "_origin": "ast", + "id": "events_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "badges_layout", + "community": 25, + "norm_label": "+layout.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_types", + "community": 25, + "norm_label": "./$types" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "badges_page", + "community": 25, + "norm_label": "+page.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source_location": "L266", + "_origin": "ast", + "id": "badges_page_if", + "community": 25, + "norm_label": "if()" + }, + { + "label": "$lib/stores/ae_events_stores__badges.svelte", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__badges.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_svelte", + "community": 25, + "norm_label": "$lib/stores/ae_events_stores__badges.svelte" + }, + { + "label": "ae_comp__badge_search.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "badges_ae_comp_badge_search", + "community": 25, + "norm_label": "ae_comp__badge_search.svelte" + }, + { + "label": "ae_comp__badge_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "badges_ae_comp_badge_obj_li", + "community": 25, + "norm_label": "ae_comp__badge_obj_li.svelte" + }, + { + "label": "ae_comp__badge_create_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "badges_ae_comp_badge_create_form", + "community": 25, + "norm_label": "ae_comp__badge_create_form.svelte" + }, + { + "label": "ae_comp__badge_upload_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "badges_ae_comp_badge_upload_form", + "community": 25, + "norm_label": "ae_comp__badge_upload_form.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "badge_id_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "badge_id_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "../[badge_id]/ae_comp__badge_obj_view.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "badge_id_ae_comp_badge_obj_view", + "community": 25, + "norm_label": "../[badge_id]/ae_comp__badge_obj_view.svelte" + }, + { + "label": "$lib/elements/styles/badge_layout_epson_4x5_fanfold.css", + "file_type": "code", + "source_file": "src/lib/elements/styles/badge_layout_epson_4x5_fanfold.css", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_styles_badge_layout_epson_4x5_fanfold_css", + "community": 25, + "norm_label": "$lib/elements/styles/badge_layout_epson_4x5_fanfold.css" + }, + { + "label": "$lib/elements/styles/badge_layout_epson_4x6_fanfold.css", + "file_type": "code", + "source_file": "src/lib/elements/styles/badge_layout_epson_4x6_fanfold.css", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_styles_badge_layout_epson_4x6_fanfold_css", + "community": 25, + "norm_label": "$lib/elements/styles/badge_layout_epson_4x6_fanfold.css" + }, + { + "label": "$lib/elements/styles/badge_layout_zebra_zc10l_pvc.css", + "file_type": "code", + "source_file": "src/lib/elements/styles/badge_layout_zebra_zc10l_pvc.css", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_styles_badge_layout_zebra_zc10l_pvc_css", + "community": 25, + "norm_label": "$lib/elements/styles/badge_layout_zebra_zc10l_pvc.css" + }, + { + "label": "$lib/ae_events/ae_events__badge_template_cfg", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__badge_template_cfg", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_badge_template_cfg", + "community": 6, + "norm_label": "$lib/ae_events/ae_events__badge_template_cfg" + }, + { + "label": "../ae_comp__badge_print_controls.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_print_controls.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "badge_id_ae_comp_badge_print_controls", + "community": 25, + "norm_label": "../ae_comp__badge_print_controls.svelte" + }, + { + "label": "../ae_comp__badge_review_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "badge_id_ae_comp_badge_review_form", + "community": 1, + "norm_label": "../ae_comp__badge_review_form.svelte" + }, + { + "label": "xl", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source_location": "L895", + "_origin": "ast", + "id": "badge_id_ae_comp_badge_review_form_xl", + "community": 1, + "norm_label": "xl" + }, + { + "label": "get_option_code()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source_location": "L1438", + "_origin": "ast", + "id": "badge_id_ae_comp_badge_review_form_get_option_code", + "community": 1, + "norm_label": "get_option_code()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "community": 25, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_badge_id_print_types", + "community": 25, + "norm_label": "./$types" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_badges_badges_badge_id_print_page_ts_print_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "print_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "build_review_url()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source_location": "L143", + "_origin": "ast", + "id": "review_page_build_review_url", + "community": 0, + "norm_label": "build_review_url()" + }, + { + "label": "copy_review_link()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source_location": "L148", + "_origin": "ast", + "id": "review_page_copy_review_link", + "community": 0, + "norm_label": "copy_review_link()" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_badge_id_review_types", + "community": 0, + "norm_label": "./$types" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_badges_badges_badge_id_review_page_ts_review_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "review_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "function()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source_location": "L104", + "_origin": "ast", + "id": "badges_ae_comp_badge_search_function", + "community": 25, + "norm_label": "function()" + }, + { + "label": "parse_csv()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source_location": "L33", + "_origin": "ast", + "id": "badges_ae_comp_badge_upload_form_parse_csv", + "community": 25, + "norm_label": "parse_csv()" + }, + { + "label": "handle_file_change()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source_location": "L49", + "_origin": "ast", + "id": "badges_ae_comp_badge_upload_form_handle_file_change", + "community": 25, + "norm_label": "handle_file_change()" + }, + { + "label": "handle_upload()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source_location": "L60", + "_origin": "ast", + "id": "badges_ae_comp_badge_upload_form_handle_upload", + "community": 25, + "norm_label": "handle_upload()" + }, + { + "label": "handle_cancel()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source_location": "L259", + "_origin": "ast", + "id": "badges_ae_comp_badge_upload_form_handle_cancel", + "community": 25, + "norm_label": "handle_cancel()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "print_list_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_reports_types", + "community": 0, + "norm_label": "./$types" + }, + { + "label": "reports_badge_long_names.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/reports_badge_long_names.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "reports_reports_badge_long_names", + "community": 0, + "norm_label": "reports_badge_long_names.svelte" + }, + { + "label": "reports_badge_print_throughput.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/reports_badge_print_throughput.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "reports_reports_badge_print_throughput", + "community": 0, + "norm_label": "reports_badge_print_throughput.svelte" + }, + { + "label": "reports_badge_export.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/reports_badge_export.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "reports_reports_badge_export", + "community": 0, + "norm_label": "reports_badge_export.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_badges_badges_reports_page_ts_reports_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.ts", + "source_location": "L4", + "_origin": "ast", + "id": "reports_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/badges/stats/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "stats_page", + "community": 214, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/templates/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "templates_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "catch()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/templates/+page.svelte", + "source_location": "L68", + "_origin": "ast", + "id": "templates_page_catch", + "community": 6, + "norm_label": "catch()" + }, + { + "label": "ae_comp__badge_template_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "templates_ae_comp_badge_template_form", + "community": 6, + "norm_label": "ae_comp__badge_template_form.svelte" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_launcher_layout_svelte_launcher_layout", + "community": 12, + "norm_label": "+layout.svelte" + }, + { + "label": "$lib/stores/ae_events_stores__launcher.svelte", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__launcher.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "community": 12, + "norm_label": "$lib/stores/ae_events_stores__launcher.svelte" + }, + { + "label": "launcher_background_sync.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "launcher_launcher_background_sync", + "community": 12, + "norm_label": "launcher_background_sync.svelte" + }, + { + "label": "./cfg_components/launcher_cfg_app_modes.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_app_modes.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_app_modes", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_app_modes.svelte" + }, + { + "label": "./launcher_cfg_section.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_section.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "cfg_components_launcher_cfg_section", + "community": 12, + "norm_label": "./launcher_cfg_section.svelte" + }, + { + "label": "./cfg_components/launcher_cfg_controller.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_controller.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_controller", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_controller.svelte" + }, + { + "label": "./cfg_components/launcher_cfg_health.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_health", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_health.svelte" + }, + { + "label": "./cfg_components/launcher_cfg_launch_timing.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_launch_timing", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_launch_timing.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte", + "source_location": "L157", + "_origin": "ast", + "id": "cfg_components_launcher_cfg_launch_timing_if", + "community": 12, + "norm_label": "if()" + }, + { + "label": "$lib/ae_events/ae_launcher__default_launch_profiles", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_launcher_default_launch_profiles", + "community": 12, + "norm_label": "$lib/ae_events/ae_launcher__default_launch_profiles" + }, + { + "label": "./cfg_components/launcher_cfg_local_actions.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_local_actions.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_local_actions", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_local_actions.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_local_actions.svelte", + "source_location": "L38", + "_origin": "ast", + "id": "cfg_components_launcher_cfg_local_actions_if", + "community": 12, + "norm_label": "if()" + }, + { + "label": "$lib/electron/electron_relay", + "file_type": "code", + "source_file": "src/lib/electron/electron_relay", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_electron_electron_relay", + "community": 12, + "norm_label": "$lib/electron/electron_relay" + }, + { + "label": "./cfg_components/launcher_cfg_native_os.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_native_os.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_native_os", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_native_os.svelte" + }, + { + "label": "./cfg_components/launcher_cfg_screen_saver.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_screen_saver.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_screen_saver", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_screen_saver.svelte" + }, + { + "label": "./cfg_components/launcher_cfg_sync_timers.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_sync_timers.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_sync_timers", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_sync_timers.svelte" + }, + { + "label": "launcher_cfg_template.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_template.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "cfg_components_launcher_cfg_template", + "community": 12, + "norm_label": "launcher_cfg_template.svelte" + }, + { + "label": "./cfg_components/launcher_cfg_updates.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_updates.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_updates", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_updates.svelte" + }, + { + "label": "./cfg_components/launcher_cfg_wallpaper.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_wallpaper.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "cfg_components_launcher_cfg_wallpaper", + "community": 12, + "norm_label": "./cfg_components/launcher_cfg_wallpaper.svelte" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "community": 0, + "norm_label": "+layout.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_launcher_launcher_types", + "community": 0, + "norm_label": "./$types" + }, + { + "label": "svelte/easing", + "file_type": "code", + "source_file": "svelte/easing", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "easing", + "community": 0, + "norm_label": "svelte/easing" + }, + { + "label": "svelte-idle", + "file_type": "code", + "source_file": "svelte-idle", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "svelte_idle", + "community": 172, + "norm_label": "svelte-idle" + }, + { + "label": "launcher_cfg.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "launcher_launcher_cfg", + "community": 12, + "norm_label": "launcher_cfg.svelte" + }, + { + "label": "launcher_menu.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "launcher_launcher_menu", + "community": 0, + "norm_label": "launcher_menu.svelte" + }, + { + "label": "launcher_session_view.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "launcher_launcher_session_view", + "community": 0, + "norm_label": "launcher_session_view.svelte" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_launcher_launcher_layout_ts_launcher_layout", + "community": 4, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.ts", + "source_location": "L8", + "_origin": "ast", + "id": "launcher_layout_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "launcher_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_launcher_launcher_event_location_id_page_svelte_event_location_id_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_launcher_launcher_event_location_id_types", + "community": 6, + "norm_label": "./$types" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_launcher_launcher_event_location_id_page_ts_event_location_id_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "src_routes_events_event_id_launcher_launcher_event_location_id_page_ts_event_location_id_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "{ log_lvl = 1 }", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L87", + "_origin": "ast", + "id": "launcher_launcher_background_sync_log_lvl_1", + "community": 12, + "norm_label": "{ log_lvl = 1 }" + }, + { + "label": "sync_stats", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L91", + "_origin": "ast", + "id": "launcher_launcher_background_sync_sync_stats", + "community": 12, + "norm_label": "sync_stats" + }, + { + "label": "is_url_file()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L94", + "_origin": "ast", + "id": "launcher_launcher_background_sync_is_url_file", + "community": 12, + "norm_label": "is_url_file()" + }, + { + "label": "loop_info", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L109", + "_origin": "ast", + "id": "launcher_launcher_background_sync_loop_info", + "community": 12, + "norm_label": "loop_info" + }, + { + "label": "show_monitor", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L130", + "_origin": "ast", + "id": "launcher_launcher_background_sync_show_monitor", + "community": 12, + "norm_label": "show_monitor" + }, + { + "label": "refresh_event_data()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L287", + "_origin": "ast", + "id": "launcher_launcher_background_sync_refresh_event_data", + "community": 12, + "norm_label": "refresh_event_data()" + }, + { + "label": "refresh_session_data()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L306", + "_origin": "ast", + "id": "launcher_launcher_background_sync_refresh_session_data", + "community": 12, + "norm_label": "refresh_session_data()" + }, + { + "label": "refresh_presentation_data()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L330", + "_origin": "ast", + "id": "launcher_launcher_background_sync_refresh_presentation_data", + "community": 12, + "norm_label": "refresh_presentation_data()" + }, + { + "label": "refresh_presenter_data()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L352", + "_origin": "ast", + "id": "launcher_launcher_background_sync_refresh_presenter_data", + "community": 12, + "norm_label": "refresh_presenter_data()" + }, + { + "label": "run_sync_cycle()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L372", + "_origin": "ast", + "id": "launcher_launcher_background_sync_run_sync_cycle", + "community": 12, + "norm_label": "run_sync_cycle()" + }, + { + "label": "run_device_heartbeat()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L520", + "_origin": "ast", + "id": "launcher_launcher_background_sync_run_device_heartbeat", + "community": 12, + "norm_label": "run_device_heartbeat()" + }, + { + "label": "refresh_location_config()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L604", + "_origin": "ast", + "id": "launcher_launcher_background_sync_refresh_location_config", + "community": 12, + "norm_label": "refresh_location_config()" + }, + { + "label": "refresh_current_session_files()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L633", + "_origin": "ast", + "id": "launcher_launcher_background_sync_refresh_current_session_files", + "community": 12, + "norm_label": "refresh_current_session_files()" + }, + { + "label": "force_location_sync()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L653", + "_origin": "ast", + "id": "launcher_launcher_background_sync_force_location_sync", + "community": 12, + "norm_label": "force_location_sync()" + }, + { + "label": "opacity", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source_location": "L167", + "_origin": "ast", + "id": "launcher_launcher_cfg_opacity", + "community": 12, + "norm_label": "opacity" + }, + { + "label": "./launcher_file_cont.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "launcher_launcher_file_cont", + "community": 14, + "norm_label": "./launcher_file_cont.svelte" + }, + { + "label": "get_launch_profile()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L135", + "_origin": "ast", + "id": "launcher_launcher_file_cont_get_launch_profile", + "community": 14, + "norm_label": "get_launch_profile()" + }, + { + "label": "handle_open_file()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L191", + "_origin": "ast", + "id": "launcher_launcher_file_cont_handle_open_file", + "community": 14, + "norm_label": "handle_open_file()" + }, + { + "label": "prevent_default()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L535", + "_origin": "ast", + "id": "launcher_launcher_file_cont_prevent_default", + "community": 14, + "norm_label": "prevent_default()" + }, + { + "label": "menu_location_list.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "launcher_menu_location_list", + "community": 0, + "norm_label": "menu_location_list.svelte" + }, + { + "label": "menu_session_list.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "launcher_menu_session_list", + "community": 0, + "norm_label": "menu_session_list.svelte" + }, + { + "label": "menu_launcher_controls.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_launcher_controls.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "launcher_menu_launcher_controls", + "community": 12, + "norm_label": "menu_launcher_controls.svelte" + }, + { + "label": "./launcher_presentation_view.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "launcher_launcher_presentation_view", + "community": 0, + "norm_label": "./launcher_presentation_view.svelte" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source_location": "L64", + "_origin": "ast", + "id": "launcher_launcher_presentation_view_hidden", + "community": 0, + "norm_label": "hidden" + }, + { + "label": "./launcher_presenter_view.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "launcher_launcher_presenter_view", + "community": 0, + "norm_label": "./launcher_presenter_view.svelte" + }, + { + "label": "./launcher_presenter_view_posters.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "launcher_launcher_presenter_view_posters", + "community": 0, + "norm_label": "./launcher_presenter_view_posters.svelte" + }, + { + "label": "launcher_session_view_posters.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "launcher_launcher_session_view_posters", + "community": 0, + "norm_label": "launcher_session_view_posters.svelte" + }, + { + "label": "$lib/db_core", + "file_type": "code", + "source_file": "src/lib/db_core", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_core", + "community": 0, + "norm_label": "$lib/db_core" + }, + { + "label": "async()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source_location": "L178", + "_origin": "ast", + "id": "launcher_menu_location_list_async", + "community": 0, + "norm_label": "async()" + }, + { + "label": "center", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source_location": "L174", + "_origin": "ast", + "id": "launcher_menu_session_list_center", + "community": 0, + "norm_label": "center" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_layout_svelte_leads_layout", + "community": 203, + "norm_label": "+layout.svelte" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_layout_ts_leads_layout", + "community": 4, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+layout.ts", + "source_location": "L8", + "_origin": "ast", + "id": "leads_layout_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/stores/ae_events_stores__leads.svelte", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__leads.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "community": 0, + "norm_label": "$lib/stores/ae_events_stores__leads.svelte" + }, + { + "label": "ae_comp__exhibit_search.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/ae_comp__exhibit_search.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "leads_ae_comp_exhibit_search", + "community": 0, + "norm_label": "ae_comp__exhibit_search.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_page_ts_leads_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "leads_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "function()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/ae_comp__exhibit_search.svelte", + "source_location": "L25", + "_origin": "ast", + "id": "leads_ae_comp_exhibit_search_function", + "community": 0, + "norm_label": "function()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/config/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_config_page_svelte_config_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_svelte_exhibit_id_layout", + "community": 0, + "norm_label": "+layout.svelte" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_ts_exhibit_id_layout", + "community": 10, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts", + "source_location": "L9", + "_origin": "ast", + "id": "exhibit_id_layout_load", + "community": 10, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "exhibit_id_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "set_active_tab()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source_location": "L415", + "_origin": "ast", + "id": "exhibit_id_page_set_active_tab", + "community": 0, + "norm_label": "set_active_tab()" + }, + { + "label": "ae_comp__exhibit_tracking_search.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_search.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "exhibit_id_ae_comp_exhibit_tracking_search", + "community": 0, + "norm_label": "ae_comp__exhibit_tracking_search.svelte" + }, + { + "label": "ae_comp__exhibit_tracking_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "exhibit_id_ae_comp_exhibit_tracking_obj_li", + "community": 0, + "norm_label": "ae_comp__exhibit_tracking_obj_li.svelte" + }, + { + "label": "ae_comp__tab_add.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "exhibit_id_ae_comp_tab_add", + "community": 0, + "norm_label": "ae_comp__tab_add.svelte" + }, + { + "label": "ae_comp__tab_start.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_start.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "exhibit_id_ae_comp_tab_start", + "community": 0, + "norm_label": "ae_comp__tab_start.svelte" + }, + { + "label": "ae_comp__tab_manage.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "exhibit_id_ae_comp_tab_manage", + "community": 0, + "norm_label": "ae_comp__tab_manage.svelte" + }, + { + "label": "./ae_comp__exhibit_payment.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_payment.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "exhibit_id_ae_comp_exhibit_payment", + "community": 0, + "norm_label": "./ae_comp__exhibit_payment.svelte" + }, + { + "label": "./ae_comp__exhibit_custom_questions.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_custom_questions.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "exhibit_id_ae_comp_exhibit_custom_questions", + "community": 0, + "norm_label": "./ae_comp__exhibit_custom_questions.svelte" + }, + { + "label": "./ae_comp__exhibit_license_list.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_license_list.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "exhibit_id_ae_comp_exhibit_license_list", + "community": 0, + "norm_label": "./ae_comp__exhibit_license_list.svelte" + }, + { + "label": "./ae_comp__exhibit_signin.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "exhibit_id_ae_comp_exhibit_signin", + "community": 0, + "norm_label": "./ae_comp__exhibit_signin.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source_location": "L60", + "_origin": "ast", + "id": "exhibit_id_ae_comp_exhibit_signin_if", + "community": 0, + "norm_label": "if()" + }, + { + "label": "months", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_obj_li.svelte", + "source_location": "L66", + "_origin": "ast", + "id": "exhibit_id_ae_comp_exhibit_tracking_obj_li_months", + "community": 0, + "norm_label": "months" + }, + { + "label": "years", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_obj_li.svelte", + "source_location": "L70", + "_origin": "ast", + "id": "exhibit_id_ae_comp_exhibit_tracking_obj_li_years", + "community": 0, + "norm_label": "years" + }, + { + "label": "./ae_comp__lead_manual_search.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "exhibit_id_ae_comp_lead_manual_search", + "community": 0, + "norm_label": "./ae_comp__lead_manual_search.svelte" + }, + { + "label": "./ae_comp__lead_qr_scanner.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "exhibit_id_ae_comp_lead_qr_scanner", + "community": 0, + "norm_label": "./ae_comp__lead_qr_scanner.svelte" + }, + { + "label": "reset_scanner()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source_location": "L244", + "_origin": "ast", + "id": "exhibit_id_ae_comp_lead_qr_scanner_reset_scanner", + "community": 0, + "norm_label": "reset_scanner()" + }, + { + "label": "./ae_comp__lead_qr_scanner_multi.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "community": 0, + "norm_label": "./ae_comp__lead_qr_scanner_multi.svelte" + }, + { + "label": "shadow", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "source_location": "L145", + "_origin": "ast", + "id": "exhibit_id_ae_comp_tab_add_shadow", + "community": 0, + "norm_label": "shadow" + }, + { + "label": "ring", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "source_location": "L146", + "_origin": "ast", + "id": "exhibit_id_ae_comp_tab_add_ring", + "community": 0, + "norm_label": "ring" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "ae_comp__lead_detail_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/ae_comp__lead_detail_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "exhibit_tracking_id_ae_comp_lead_detail_form", + "community": 0, + "norm_label": "ae_comp__lead_detail_form.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_ts_exhibit_tracking_id_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.ts", + "source_location": "L9", + "_origin": "ast", + "id": "exhibit_tracking_id_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "q_key()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/ae_comp__lead_detail_form.svelte", + "source_location": "L128", + "_origin": "ast", + "id": "exhibit_tracking_id_ae_comp_lead_detail_form_q_key", + "community": 0, + "norm_label": "q_key()" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_layout_svelte_pres_mgmt_layout", + "community": 204, + "norm_label": "+layout.svelte" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_layout_ts_pres_mgmt_layout", + "community": 4, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/+layout.ts", + "source_location": "L6", + "_origin": "ast", + "id": "pres_mgmt_layout_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "../ae_comp__event_page_menu.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "pres_mgmt_ae_comp_event_page_menu", + "community": 2, + "norm_label": "../ae_comp__event_page_menu.svelte" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source_location": "L90", + "_origin": "ast", + "id": "pres_mgmt_ae_comp_event_page_menu_hidden", + "community": 2, + "norm_label": "hidden" + }, + { + "label": "ae_comp__events_menu_nav.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__events_menu_nav.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "events_ae_comp_events_menu_nav", + "community": 2, + "norm_label": "ae_comp__events_menu_nav.svelte" + }, + { + "label": "ae_comp__events_menu_opts.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__events_menu_opts.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "events_ae_comp_events_menu_opts", + "community": 2, + "norm_label": "ae_comp__events_menu_opts.svelte" + }, + { + "label": "././ae_comp__event_device_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "device_ae_comp_event_device_obj_li", + "community": 10, + "norm_label": "././ae_comp__event_device_obj_li.svelte" + }, + { + "label": "../device/device/ae_comp__event_device_obj_li_wrapper.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "device_ae_comp_event_device_obj_li_wrapper", + "community": 0, + "norm_label": "../device/device/ae_comp__event_device_obj_li_wrapper.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "community": 2, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_location_event_location_id_types", + "community": 2, + "norm_label": "./$types" + }, + { + "label": "ae_comp__event_files_upload.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_files_upload.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "events_ae_comp_event_files_upload", + "community": 2, + "norm_label": "ae_comp__event_files_upload.svelte" + }, + { + "label": "./ae_comp__event_session_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "events_ae_comp_event_session_obj_li", + "community": 2, + "norm_label": "./ae_comp__event_session_obj_li.svelte" + }, + { + "label": "ae_comp__location_view.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "event_location_id_ae_comp_location_view", + "community": 2, + "norm_label": "ae_comp__location_view.svelte" + }, + { + "label": "ae_comp__location_page_menu.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "event_location_id_ae_comp_location_page_menu", + "community": 2, + "norm_label": "ae_comp__location_page_menu.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_ts_event_location_id_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_ts_event_location_id_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "ae_btn_surface", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source_location": "L183", + "_origin": "ast", + "id": "event_location_id_ae_comp_location_page_menu_ae_btn_surface", + "community": 2, + "norm_label": "ae_btn_surface" + }, + { + "label": "ae_btn_surface_outlined", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source_location": "L184", + "_origin": "ast", + "id": "event_location_id_ae_comp_location_page_menu_ae_btn_surface_outlined", + "community": 2, + "norm_label": "ae_btn_surface_outlined" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source_location": "L68", + "_origin": "ast", + "id": "event_location_id_ae_comp_location_view_if", + "community": 2, + "norm_label": "if()" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source_location": "L157", + "_origin": "ast", + "id": "event_location_id_ae_comp_location_view_hidden", + "community": 2, + "norm_label": "hidden" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "community": 2, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_locations_types", + "community": 2, + "norm_label": "./$types" + }, + { + "label": "ae_comp__event_location_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "locations_ae_comp_event_location_obj_li", + "community": 2, + "norm_label": "ae_comp__event_location_obj_li.svelte" + }, + { + "label": "ae_comp__locations_page_menu.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__locations_page_menu.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "locations_ae_comp_locations_page_menu", + "community": 2, + "norm_label": "ae_comp__locations_page_menu.svelte" + }, + { + "label": "sign_in_out.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/sign_in_out.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "event_id_sign_in_out", + "community": 2, + "norm_label": "sign_in_out.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_locations_page_ts_locations_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.ts", + "source_location": "L6", + "_origin": "ast", + "id": "locations_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "gray", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source_location": "L70", + "_origin": "ast", + "id": "locations_ae_comp_event_location_obj_li_gray", + "community": 2, + "norm_label": "gray" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source_location": "L117", + "_origin": "ast", + "id": "locations_ae_comp_event_location_obj_li_hidden", + "community": 2, + "norm_label": "hidden" + }, + { + "label": "dim", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source_location": "L140", + "_origin": "ast", + "id": "locations_ae_comp_event_location_obj_li_dim", + "community": 2, + "norm_label": "dim" + }, + { + "label": "ae_comp__event_session_obj_li_wrapper.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "events_ae_comp_event_session_obj_li_wrapper", + "community": 2, + "norm_label": "ae_comp__event_session_obj_li_wrapper.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "community": 2, + "norm_label": "+page.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source_location": "L242", + "_origin": "ast", + "id": "pres_mgmt_page_if", + "community": 2, + "norm_label": "if()" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_pres_mgmt_types", + "community": 2, + "norm_label": "./$types" + }, + { + "label": "$lib/stores/ae_events_stores__auth.svelte", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__auth.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "community": 2, + "norm_label": "$lib/stores/ae_events_stores__auth.svelte" + }, + { + "label": "ae_comp__pres_mgmt_session_search.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/ae_comp__pres_mgmt_session_search.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "pres_mgmt_ae_comp_pres_mgmt_session_search", + "community": 2, + "norm_label": "ae_comp__pres_mgmt_session_search.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_ts_pres_mgmt_page", + "community": 205, + "norm_label": "+page.ts" + }, + { + "label": "function()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/ae_comp__pres_mgmt_session_search.svelte", + "source_location": "L24", + "_origin": "ast", + "id": "pres_mgmt_ae_comp_pres_mgmt_session_search_function", + "community": 2, + "norm_label": "function()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_pres_mgmt_config_page_svelte_config_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/stores/ae_events_stores__pres_mgmt_defaults", + "file_type": "code", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_defaults", + "community": 0, + "norm_label": "$lib/stores/ae_events_stores__pres_mgmt_defaults" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "community": 2, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_presenter_presenter_id_types", + "community": 2, + "norm_label": "./$types" + }, + { + "label": "../../presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "presenter_id_ae_comp_event_presenter_form_agree", + "community": 2, + "norm_label": "../../presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte" + }, + { + "label": "ae_comp__presenter_view.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "presenter_id_ae_comp_presenter_view", + "community": 10, + "norm_label": "ae_comp__presenter_view.svelte" + }, + { + "label": "ae_comp__presenter_page_menu.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "presenter_id_ae_comp_presenter_page_menu", + "community": 2, + "norm_label": "ae_comp__presenter_page_menu.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_ts_presenter_id_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.ts", + "source_location": "L7", + "_origin": "ast", + "id": "presenter_id_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "load_person_options_for_presenter_link()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L156", + "_origin": "ast", + "id": "presenter_id_ae_comp_presenter_view_load_person_options_for_presenter_link", + "community": 10, + "norm_label": "load_person_options_for_presenter_link()" + }, + { + "label": "./ae_comp__event_presenter_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "presenter_ae_comp_event_presenter_obj_li", + "community": 10, + "norm_label": "./ae_comp__event_presenter_obj_li.svelte" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L90", + "_origin": "ast", + "id": "presenter_ae_comp_event_presenter_obj_li_hidden", + "community": 10, + "norm_label": "hidden" + }, + { + "label": "./[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "presenter_ae_comp_event_presenter_obj_li_wrapper", + "community": 0, + "norm_label": "./[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte" + }, + { + "label": "./ae_comp__event_presenter_obj_tbl.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "presenter_ae_comp_event_presenter_obj_tbl", + "community": 6, + "norm_label": "./ae_comp__event_presenter_obj_tbl.svelte" + }, + { + "label": "./../presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "presenter_ae_comp_event_presenter_obj_tbl_wrapper", + "community": 0, + "norm_label": "./../presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte", + "source_location": "L69", + "_origin": "ast", + "id": "presenter_ae_comp_event_presenter_obj_tbl_wrapper_if", + "community": 0, + "norm_label": "if()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_reports_types", + "community": 0, + "norm_label": "./$types" + }, + { + "label": "event_reports_page_menu.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/event_reports_page_menu.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "reports_event_reports_page_menu", + "community": 2, + "norm_label": "event_reports_page_menu.svelte" + }, + { + "label": "reports_sessions.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "reports_reports_sessions", + "community": 0, + "norm_label": "reports_sessions.svelte" + }, + { + "label": "reports_presenters.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "reports_reports_presenters", + "community": 0, + "norm_label": "reports_presenters.svelte" + }, + { + "label": "reports_files.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "reports_reports_files", + "community": 0, + "norm_label": "reports_files.svelte" + }, + { + "label": "reports_file_downloads.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "reports_reports_file_downloads", + "community": 29, + "norm_label": "reports_file_downloads.svelte" + }, + { + "label": "../../ae_comp__event_file_obj_tbl.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/ae_comp__event_file_obj_tbl.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_ae_comp_event_file_obj_tbl_svelte", + "community": 0, + "norm_label": "../../ae_comp__event_file_obj_tbl.svelte" + }, + { + "label": "pg()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source_location": "L525", + "_origin": "ast", + "id": "reports_reports_file_downloads_pg", + "community": 29, + "norm_label": "pg()" + }, + { + "label": "#each()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source_location": "L549", + "_origin": "ast", + "id": "reports_reports_file_downloads_each", + "community": 29, + "norm_label": "#each()" + }, + { + "label": "ae_comp__event_file_obj_tbl_wrapper.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "events_ae_comp_event_file_obj_tbl_wrapper", + "community": 0, + "norm_label": "ae_comp__event_file_obj_tbl_wrapper.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source_location": "L278", + "_origin": "ast", + "id": "reports_reports_sessions_if", + "community": 0, + "norm_label": "if()" + }, + { + "label": "ae_comp__event_session_obj_tbl_wrapper.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "events_ae_comp_event_session_obj_tbl_wrapper", + "community": 0, + "norm_label": "ae_comp__event_session_obj_tbl_wrapper.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "community": 2, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_session_session_id_types", + "community": 2, + "norm_label": "./$types" + }, + { + "label": "ae_comp__session_view.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "session_id_ae_comp_session_view", + "community": 10, + "norm_label": "ae_comp__session_view.svelte" + }, + { + "label": "ae_comp__session_page_menu.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "session_id_ae_comp_session_page_menu", + "community": 2, + "norm_label": "ae_comp__session_page_menu.svelte" + }, + { + "label": "ae_comp__event_presentation_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "events_ae_comp_event_presentation_obj_li", + "community": 2, + "norm_label": "ae_comp__event_presentation_obj_li.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_pres_mgmt_session_session_id_page_ts_session_id_page", + "community": 4, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "session_id_page_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "./ae_comp__event_session_poc_form_agree.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "session_id_ae_comp_event_session_poc_form_agree", + "community": 2, + "norm_label": "./ae_comp__event_session_poc_form_agree.svelte" + }, + { + "label": "./ae_comp__event_session_poc_profile.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "session_id_ae_comp_event_session_poc_profile", + "community": 16, + "norm_label": "./ae_comp__event_session_poc_profile.svelte" + }, + { + "label": "load_person_options_for_session_poc()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L101", + "_origin": "ast", + "id": "session_id_ae_comp_session_view_load_person_options_for_session_poc", + "community": 10, + "norm_label": "load_person_options_for_session_poc()" + }, + { + "label": "send_poc_email_link()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L194", + "_origin": "ast", + "id": "session_id_ae_comp_session_view_send_poc_email_link", + "community": 10, + "norm_label": "send_poc_email_link()" + }, + { + "label": "./[event_id]/(pres_mgmt)/session/ae_comp__event_session_alert.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/ae_comp__event_session_alert.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "session_ae_comp_event_session_alert", + "community": 2, + "norm_label": "./[event_id]/(pres_mgmt)/session/ae_comp__event_session_alert.svelte" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_layout_svelte_event_id_layout", + "community": 6, + "norm_label": "+layout.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_types", + "community": 6, + "norm_label": "./$types" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_layout_ts_event_id_layout", + "community": 4, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/+layout.ts", + "source_location": "L8", + "_origin": "ast", + "id": "event_id_layout_load", + "community": 4, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_events_event_id_page_svelte_event_id_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "settings_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "ae_comp__event_settings_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "settings_ae_comp_event_settings_form", + "community": 6, + "norm_label": "ae_comp__event_settings_form.svelte" + }, + { + "label": "ae_comp__event_settings_basic_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_basic_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "settings_ae_comp_event_settings_basic_form", + "community": 6, + "norm_label": "ae_comp__event_settings_basic_form.svelte" + }, + { + "label": "ae_comp__event_settings_abstracts_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_abstracts_form.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "settings_ae_comp_event_settings_abstracts_form", + "community": 6, + "norm_label": "ae_comp__event_settings_abstracts_form.svelte" + }, + { + "label": "ae_comp__event_settings_badges_form.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "settings_ae_comp_event_settings_badges_form", + "community": 94, + "norm_label": "ae_comp__event_settings_badges_form.svelte" + }, + { + "label": "all_attendee_fields", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L25", + "_origin": "ast", + "id": "settings_ae_comp_event_settings_badges_form_all_attendee_fields", + "community": 94, + "norm_label": "all_attendee_fields" + }, + { + "label": "all_staff_fields", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L35", + "_origin": "ast", + "id": "settings_ae_comp_event_settings_badges_form_all_staff_fields", + "community": 94, + "norm_label": "all_staff_fields" + }, + { + "label": "ensure_permissions()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L42", + "_origin": "ast", + "id": "settings_ae_comp_event_settings_badges_form_ensure_permissions", + "community": 94, + "norm_label": "ensure_permissions()" + }, + { + "label": "is_field_enabled()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L74", + "_origin": "ast", + "id": "settings_ae_comp_event_settings_badges_form_is_field_enabled", + "community": 94, + "norm_label": "is_field_enabled()" + }, + { + "label": "toggle_field()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L84", + "_origin": "ast", + "id": "settings_ae_comp_event_settings_badges_form_toggle_field", + "community": 94, + "norm_label": "toggle_field()" + }, + { + "label": "save()", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L101", + "_origin": "ast", + "id": "settings_ae_comp_event_settings_badges_form_save", + "community": 94, + "norm_label": "save()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/events/[event_id]/settings/modules/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "modules_page", + "community": 0, + "norm_label": "+page.svelte" + }, + { + "label": "./ae_comp__event_file_obj_tbl.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "events_ae_comp_event_file_obj_tbl", + "community": 29, + "norm_label": "./ae_comp__event_file_obj_tbl.svelte" + }, + { + "label": "blob", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L277", + "_origin": "ast", + "id": "events_ae_comp_event_file_obj_tbl_blob", + "community": 29, + "norm_label": "blob" + }, + { + "label": "obj_url", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L280", + "_origin": "ast", + "id": "events_ae_comp_event_file_obj_tbl_obj_url", + "community": 29, + "norm_label": "obj_url" + }, + { + "label": "download_link", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L282", + "_origin": "ast", + "id": "events_ae_comp_event_file_obj_tbl_download_link", + "community": 29, + "norm_label": "download_link" + }, + { + "label": "container", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L291", + "_origin": "ast", + "id": "events_ae_comp_event_file_obj_tbl_container", + "community": 29, + "norm_label": "container" + }, + { + "label": "dq__where_type_id_val", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source_location": "L59", + "_origin": "ast", + "id": "events_ae_comp_event_file_obj_tbl_wrapper_dq_where_type_id_val", + "community": 0, + "norm_label": "dq__where_type_id_val" + }, + { + "label": "dq__where_eq_id_val", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source_location": "L60", + "_origin": "ast", + "id": "events_ae_comp_event_file_obj_tbl_wrapper_dq_where_eq_id_val", + "community": 0, + "norm_label": "dq__where_eq_id_val" + }, + { + "label": "lq__event_file_obj_li", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source_location": "L68", + "_origin": "ast", + "id": "events_ae_comp_event_file_obj_tbl_wrapper_lq_event_file_obj_li", + "community": 0, + "norm_label": "lq__event_file_obj_li" + }, + { + "label": "function()", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_files_upload.svelte", + "source_location": "L76", + "_origin": "ast", + "id": "events_ae_comp_event_files_upload_function", + "community": 2, + "norm_label": "function()" + }, + { + "label": "./ae_comp__event_session_obj_tbl.svelte", + "file_type": "code", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "events_ae_comp_event_session_obj_tbl", + "community": 0, + "norm_label": "./ae_comp__event_session_obj_tbl.svelte" + }, + { + "label": "+server.ts", + "file_type": "code", + "source_file": "src/routes/health/+server.ts", + "source_location": "L1", + "_origin": "ast", + "id": "health_server", + "community": 166, + "norm_label": "+server.ts" + }, + { + "label": "GET()", + "file_type": "code", + "source_file": "src/routes/health/+server.ts", + "source_location": "L4", + "_origin": "ast", + "id": "health_server_get", + "community": 166, + "norm_label": "get()" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_hosted_files_layout_svelte_hosted_files_layout", + "community": 1, + "norm_label": "+layout.svelte" + }, + { + "label": "iframe", + "file_type": "code", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source_location": "L40", + "_origin": "ast", + "id": "hosted_files_layout_iframe", + "community": 1, + "norm_label": "iframe" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/hosted_files/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_hosted_files_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/hosted_files/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_hosted_files_layout_ts_hosted_files_layout", + "community": 7, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/hosted_files/+layout.ts", + "source_location": "L8", + "_origin": "ast", + "id": "hosted_files_layout_load", + "community": 7, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/hosted_files/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_hosted_files_page_svelte_hosted_files_page", + "community": 17, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/api.js", + "file_type": "code", + "source_file": "src/lib/api.js", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api_js", + "community": 17, + "norm_label": "$lib/api.js" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "video_util_page", + "community": 17, + "norm_label": "+page.svelte" + }, + { + "label": "hold_video_util.svelte", + "file_type": "code", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "video_util_hold_video_util", + "community": 17, + "norm_label": "hold_video_util.svelte" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source_location": "L108", + "_origin": "ast", + "id": "video_util_hold_video_util_hidden", + "community": 17, + "norm_label": "hidden" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "community": 1, + "norm_label": "+layout.svelte" + }, + { + "label": "clearTimeout()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source_location": "L346", + "_origin": "ast", + "id": "idaa_layout_cleartimeout", + "community": 1, + "norm_label": "cleartimeout()" + }, + { + "label": "children()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source_location": "L622", + "_origin": "ast", + "id": "idaa_layout_children", + "community": 1, + "norm_label": "children()" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "$lib/stores/ae_idaa_stores", + "file_type": "code", + "source_file": "src/lib/stores/ae_idaa_stores", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "community": 1, + "norm_label": "$lib/stores/ae_idaa_stores" + }, + { + "label": "$lib/ae_posts/db_posts", + "file_type": "code", + "source_file": "src/lib/ae_posts/db_posts", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_db_posts", + "community": 1, + "norm_label": "$lib/ae_posts/db_posts" + }, + { + "label": "$lib/ae_archives/db_archives", + "file_type": "code", + "source_file": "src/lib/ae_archives/db_archives", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_db_archives", + "community": 1, + "norm_label": "$lib/ae_archives/db_archives" + }, + { + "label": "$lib/stores/store_versions", + "file_type": "code", + "source_file": "src/lib/stores/store_versions", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_store_versions", + "community": 1, + "norm_label": "$lib/stores/store_versions" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "idaa_page", + "community": 6, + "norm_label": "+page.svelte" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_archives_layout_svelte_archives_layout", + "community": 1, + "norm_label": "+layout.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_archives_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_archives_layout_ts_archives_layout", + "community": 160, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/+layout.ts", + "source_location": "L7", + "_origin": "ast", + "id": "archives_layout_load", + "community": 160, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "archives_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_archives/ae_archives_functions", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives_functions", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_ae_archives_functions", + "community": 1, + "norm_label": "$lib/ae_archives/ae_archives_functions" + }, + { + "label": "ae_idaa_comp__archive_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "archives_ae_idaa_comp_archive_obj_li", + "community": 1, + "norm_label": "ae_idaa_comp__archive_obj_li.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source_location": "L236", + "_origin": "ast", + "id": "archive_id_page_if", + "community": 1, + "norm_label": "if()" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_archives_archive_id_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "ae_idaa_comp__archive_obj_id_edit.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "community": 1, + "norm_label": "ae_idaa_comp__archive_obj_id_edit.svelte" + }, + { + "label": "ae_idaa_comp__archive_obj_id_view.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "archive_id_ae_idaa_comp_archive_obj_id_view", + "community": 1, + "norm_label": "ae_idaa_comp__archive_obj_id_view.svelte" + }, + { + "label": "ae_idaa_comp__archive_content_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "archive_id_ae_idaa_comp_archive_content_obj_li", + "community": 1, + "norm_label": "ae_idaa_comp__archive_content_obj_li.svelte" + }, + { + "label": "ae_idaa_comp__archive_content_obj_id_edit.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "community": 1, + "norm_label": "ae_idaa_comp__archive_content_obj_id_edit.svelte" + }, + { + "label": "ae_idaa_comp__modal_media_player.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "archive_id_ae_idaa_comp_modal_media_player", + "community": 1, + "norm_label": "ae_idaa_comp__modal_media_player.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_archives_archive_id_page_ts_archive_id_page", + "community": 1, + "norm_label": "+page.ts" + }, + { + "label": "$lib/ae_core/db_lookups", + "file_type": "code", + "source_file": "src/lib/ae_core/db_lookups", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_lookups", + "community": 1, + "norm_label": "$lib/ae_core/db_lookups" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source_location": "L236", + "_origin": "ast", + "id": "archive_id_ae_idaa_comp_archive_obj_id_edit_if", + "community": 1, + "norm_label": "if()" + }, + { + "label": "ae_idaa_comp__media_player.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__media_player.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "archives_ae_idaa_comp_media_player", + "community": 1, + "norm_label": "ae_idaa_comp__media_player.svelte" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte", + "source_location": "L193", + "_origin": "ast", + "id": "archives_ae_idaa_comp_archive_obj_li_hidden", + "community": 1, + "norm_label": "hidden" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_bb_layout_svelte_bb_layout", + "community": 1, + "norm_label": "+layout.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_bb_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "$lib/ae_posts/ae_posts_functions", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts_functions", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_ae_posts_functions", + "community": 1, + "norm_label": "$lib/ae_posts/ae_posts_functions" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_bb_layout_ts_bb_layout", + "community": 15, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.ts", + "source_location": "L9", + "_origin": "ast", + "id": "bb_layout_load", + "community": 15, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "./ae_idaa_comp__post_obj_id_edit.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "bb_ae_idaa_comp_post_obj_id_edit", + "community": 1, + "norm_label": "./ae_idaa_comp__post_obj_id_edit.svelte" + }, + { + "label": "ae_idaa_comp__post_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "bb_ae_idaa_comp_post_obj_li", + "community": 1, + "norm_label": "ae_idaa_comp__post_obj_li.svelte" + }, + { + "label": "ae_idaa_comp__post_obj_id_view.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "bb_ae_idaa_comp_post_obj_id_view", + "community": 53, + "norm_label": "ae_idaa_comp__post_obj_id_view.svelte" + }, + { + "label": "ae_idaa_comp__post_options.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_options.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "bb_ae_idaa_comp_post_options", + "community": 1, + "norm_label": "ae_idaa_comp__post_options.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_bb_page_ts_bb_page", + "community": 1, + "norm_label": "+page.ts" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source_location": "L108", + "_origin": "ast", + "id": "post_id_page_if", + "community": 1, + "norm_label": "if()" + }, + { + "label": "onclick", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source_location": "L263", + "_origin": "ast", + "id": "post_id_page_onclick", + "community": 1, + "norm_label": "onclick" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_bb_post_id_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_bb_post_id_page_ts_post_id_page", + "community": 1, + "norm_label": "+page.ts" + }, + { + "label": "./ae_idaa_comp__post_comment_obj_id_edit.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "community": 1, + "norm_label": "./ae_idaa_comp__post_comment_obj_id_edit.svelte" + }, + { + "label": "function()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source_location": "L61", + "_origin": "ast", + "id": "bb_ae_idaa_comp_post_comment_obj_id_edit_function", + "community": 1, + "norm_label": "function()" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source_location": "L261", + "_origin": "ast", + "id": "bb_ae_idaa_comp_post_obj_id_edit_if", + "community": 1, + "norm_label": "if()" + }, + { + "label": "$lib/ae_idaa/ae_idaa__bb_post_helpers", + "file_type": "code", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_idaa_ae_idaa_bb_post_helpers", + "community": 1, + "norm_label": "$lib/ae_idaa/ae_idaa__bb_post_helpers" + }, + { + "label": "{\n lq__post_obj,\n lq__post_comment_obj_li,\n lq__post_comment_obj,\n log_lvl = 0\n}", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L9", + "_origin": "ast", + "id": "bb_ae_idaa_comp_post_obj_id_view_lq_post_obj_lq_post_comment_obj_li_lq_post_comment_obj_log_lvl_0", + "community": 53, + "norm_label": "{\n lq__post_obj,\n lq__post_comment_obj_li,\n lq__post_comment_obj,\n log_lvl = 0\n}" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_jitsi_reports_page_svelte_jitsi_reports_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_reports/reports_functions", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_reports_reports_functions", + "community": 1, + "norm_label": "$lib/ae_reports/reports_functions" + }, + { + "label": "ae_idaa_comp__jitsi_url_builder.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/ae_idaa_comp__jitsi_url_builder.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "jitsi_reports_ae_idaa_comp_jitsi_url_builder", + "community": 1, + "norm_label": "ae_idaa_comp__jitsi_url_builder.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_jitsi_reports_page_ts_jitsi_reports_page", + "community": 168, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.ts", + "source_location": "L5", + "_origin": "ast", + "id": "jitsi_reports_page_load", + "community": 168, + "norm_label": "load()" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_recovery_meetings_layout_svelte_recovery_meetings_layout", + "community": 1, + "norm_label": "+layout.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_recovery_meetings_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_recovery_meetings_layout_ts_recovery_meetings_layout", + "community": 175, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.ts", + "source_location": "L7", + "_origin": "ast", + "id": "recovery_meetings_layout_load", + "community": 175, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "recovery_meetings_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "ae_idaa_comp__event_obj_qry.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "community": 1, + "norm_label": "ae_idaa_comp__event_obj_qry.svelte" + }, + { + "label": "ae_idaa_comp__event_obj_li_wrapper.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "community": 34, + "norm_label": "ae_idaa_comp__event_obj_li_wrapper.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_recovery_meetings_event_id_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "ae_idaa_comp__event_obj_id_edit.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "community": 1, + "norm_label": "ae_idaa_comp__event_obj_id_edit.svelte" + }, + { + "label": "ae_idaa_comp__event_obj_id_view.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "recovery_meetings_ae_idaa_comp_event_obj_id_view", + "community": 1, + "norm_label": "ae_idaa_comp__event_obj_id_view.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_recovery_meetings_event_id_page_ts_event_id_page", + "community": 1, + "norm_label": "+page.ts" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source_location": "L250", + "_origin": "ast", + "id": "recovery_meetings_ae_idaa_comp_event_obj_id_edit_if", + "community": 1, + "norm_label": "if()" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "source_location": "L43", + "_origin": "ast", + "id": "recovery_meetings_ae_idaa_comp_event_obj_id_view_hidden", + "community": 1, + "norm_label": "hidden" + }, + { + "label": "ae_d_none", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "source_location": "L129", + "_origin": "ast", + "id": "recovery_meetings_ae_idaa_comp_event_obj_id_view_ae_d_none", + "community": 1, + "norm_label": "ae_d_none" + }, + { + "label": "./ae_idaa_comp__event_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "recovery_meetings_ae_idaa_comp_event_obj_li", + "community": 1, + "norm_label": "./ae_idaa_comp__event_obj_li.svelte" + }, + { + "label": "{\n container_class_li = '',\n event_id_li = [],\n link_to_type = 'account',\n link_to_id,\n order_by = 'updated_on',\n hide = 'not_hidden', // all, hidden, not_hidden\n enable = 'enabled', // all, disabled, enabled\n limit = 0,\n offset = 0,\n log_lvl = $bindable(0)\n}", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L15", + "_origin": "ast", + "id": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper_container_class_li_event_id_li_link_to_type_account_link_to_id_order_by_updated_on_hide_not_hidden_all_hidden_not_hidden_enable_enabled_all_disabled_enabled_limit_0_offset_0_log_lvl_bindable_0", + "community": 34, + "norm_label": "{\n container_class_li = '',\n event_id_li = [],\n link_to_type = 'account',\n link_to_id,\n order_by = 'updated_on',\n hide = 'not_hidden', // all, hidden, not_hidden\n enable = 'enabled', // all, disabled, enabled\n limit = 0,\n offset = 0,\n log_lvl = $bindable(0)\n}" + }, + { + "label": "dq__where_type_id_val", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L43", + "_origin": "ast", + "id": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper_dq_where_type_id_val", + "community": 34, + "norm_label": "dq__where_type_id_val" + }, + { + "label": "dq__where_eq_id_val", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L44", + "_origin": "ast", + "id": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper_dq_where_eq_id_val", + "community": 34, + "norm_label": "dq__where_eq_id_val" + }, + { + "label": "lq__event_obj_li", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L53", + "_origin": "ast", + "id": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper_lq_event_obj_li", + "community": 34, + "norm_label": "lq__event_obj_li" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "video_conferences_layout", + "community": 216, + "norm_label": "+layout.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_video_conferences_page_svelte_video_conferences_page", + "community": 16, + "norm_label": "+page.svelte" + }, + { + "label": "init_jitsi()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source_location": "L844", + "_origin": "ast", + "id": "video_conferences_page_init_jitsi", + "community": 16, + "norm_label": "init_jitsi()" + }, + { + "label": "MyClipboard", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source_location": "L1211", + "_origin": "ast", + "id": "video_conferences_page_myclipboard", + "community": 16, + "norm_label": "myclipboard" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_idaa_video_conferences_page_ts_video_conferences_page", + "community": 178, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.ts", + "source_location": "L3", + "_origin": "ast", + "id": "video_conferences_page_load", + "community": 178, + "norm_label": "load()" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_idaa_layout_svelte_idaa_layout", + "community": 1, + "norm_label": "+layout.svelte" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L401", + "_origin": "ast", + "id": "idaa_layout_hidden", + "community": 1, + "norm_label": "hidden" + }, + { + "label": "ae_btn_warning_outlined", + "file_type": "code", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L402", + "_origin": "ast", + "id": "idaa_layout_ae_btn_warning_outlined", + "community": 1, + "norm_label": "ae_btn_warning_outlined" + }, + { + "label": "ae_btn_success_outlined", + "file_type": "code", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L403", + "_origin": "ast", + "id": "idaa_layout_ae_btn_success_outlined", + "community": 1, + "norm_label": "ae_btn_success_outlined" + }, + { + "label": "ae_btn_warning_filled", + "file_type": "code", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L404", + "_origin": "ast", + "id": "idaa_layout_ae_btn_warning_filled", + "community": 1, + "norm_label": "ae_btn_warning_filled" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/idaa/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/idaa/clear-caches/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "clear_caches_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/idaa/clear-caches/+page.svelte", + "source_location": "L28", + "_origin": "ast", + "id": "clear_caches_page_if", + "community": 1, + "norm_label": "if()" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/journals/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_journals_layout_svelte_journals_layout", + "community": 2, + "norm_label": "+layout.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/journals/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_journals_types", + "community": 2, + "norm_label": "./$types" + }, + { + "label": "$lib/ae_journals/ae_journals_stores", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_stores", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "community": 40, + "norm_label": "$lib/ae_journals/ae_journals_stores" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/journals/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_journals_layout_ts_journals_layout", + "community": 170, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/journals/+layout.ts", + "source_location": "L8", + "_origin": "ast", + "id": "journals_layout_load", + "community": 170, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/journals/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_journals_page_svelte_journals_page", + "community": 40, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_journals/db_journals", + "file_type": "code", + "source_file": "src/lib/ae_journals/db_journals", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_db_journals", + "community": 113, + "norm_label": "$lib/ae_journals/db_journals" + }, + { + "label": "$lib/ae_journals/ae_journals_functions", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_functions", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "community": 40, + "norm_label": "$lib/ae_journals/ae_journals_functions" + }, + { + "label": "ae_comp__modal_journal_config.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__modal_journal_config.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_modal_journal_config", + "community": 40, + "norm_label": "ae_comp__modal_journal_config.svelte" + }, + { + "label": "ae_comp__journal_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_obj_li.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_journal_obj_li", + "community": 6, + "norm_label": "ae_comp__journal_obj_li.svelte" + }, + { + "label": "ae_comp__journal_entry_quick_add.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_quick_add.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_journal_entry_quick_add", + "community": 40, + "norm_label": "ae_comp__journal_entry_quick_add.svelte" + }, + { + "label": "ae_comp__modal_journal_import.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__modal_journal_import.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_modal_journal_import", + "community": 40, + "norm_label": "ae_comp__modal_journal_import.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/journals/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_journals_page_ts_journals_page", + "community": 73, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/journals/+page.ts", + "source_location": "L7", + "_origin": "ast", + "id": "journals_page_load", + "community": 73, + "norm_label": "load()" + }, + { + "label": "+layout.svelte", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "community": 40, + "norm_label": "+layout.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source_location": "L44", + "_origin": "ast", + "id": "journal_id_layout_if", + "community": 40, + "norm_label": "if()" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_journals_journal_id_types", + "community": 40, + "norm_label": "./$types" + }, + { + "label": "ae_comp__journal_entry_obj_qry.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_qry.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_journal_entry_obj_qry", + "community": 40, + "norm_label": "ae_comp__journal_entry_obj_qry.svelte" + }, + { + "label": "+layout.ts", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/+layout.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_journals_journal_id_layout_ts_journal_id_layout", + "community": 73, + "norm_label": "+layout.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/+layout.ts", + "source_location": "L8", + "_origin": "ast", + "id": "journal_id_layout_load", + "community": 73, + "norm_label": "load()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "journal_id_page", + "community": 40, + "norm_label": "+page.svelte" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source_location": "L211", + "_origin": "ast", + "id": "journal_id_page_if", + "community": 40, + "norm_label": "if()" + }, + { + "label": "$lib/ae_journals/ae_journals_search_helpers", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_search_helpers", + "community": 40, + "norm_label": "$lib/ae_journals/ae_journals_search_helpers" + }, + { + "label": "ae_comp__journal_obj_id_view.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_journal_obj_id_view", + "community": 40, + "norm_label": "ae_comp__journal_obj_id_view.svelte" + }, + { + "label": "ae_comp__journal_entry_obj_li_wrapper.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li_wrapper.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_journal_entry_obj_li_wrapper", + "community": 169, + "norm_label": "ae_comp__journal_entry_obj_li_wrapper.svelte" + }, + { + "label": "ae_comp__modal_journal_export.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__modal_journal_export.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_modal_journal_export", + "community": 1, + "norm_label": "ae_comp__modal_journal_export.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "community": 1, + "norm_label": "+page.svelte" + }, + { + "label": "./$types", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/$types", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_routes_journals_journal_id_entry_journal_entry_id_types", + "community": 1, + "norm_label": "./$types" + }, + { + "label": "ae_comp__journal_entry_obj_id_view.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_journal_entry_obj_id_view", + "community": 43, + "norm_label": "ae_comp__journal_entry_obj_id_view.svelte" + }, + { + "label": "+page.ts", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.ts", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_journals_journal_id_entry_journal_entry_id_page_ts_journal_entry_id_page", + "community": 73, + "norm_label": "+page.ts" + }, + { + "label": "load()", + "file_type": "code", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.ts", + "source_location": "L8", + "_origin": "ast", + "id": "journal_entry_id_page_load", + "community": 73, + "norm_label": "load()" + }, + { + "label": "./ae_comp__journal_entry_ai_tools.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_ai_tools.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "journals_ae_comp_journal_entry_ai_tools", + "community": 93, + "norm_label": "./ae_comp__journal_entry_ai_tools.svelte" + }, + { + "label": "./ae_comp__journal_entry_editor.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_editor.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "journals_ae_comp_journal_entry_editor", + "community": 103, + "norm_label": "./ae_comp__journal_entry_editor.svelte" + }, + { + "label": "./ae_comp__journal_entry_header.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_header.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "journals_ae_comp_journal_entry_header", + "community": 6, + "norm_label": "./ae_comp__journal_entry_header.svelte" + }, + { + "label": "./ae_comp__journal_entry_metadata.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_metadata.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "journals_ae_comp_journal_entry_metadata", + "community": 6, + "norm_label": "./ae_comp__journal_entry_metadata.svelte" + }, + { + "label": "./ae_comp__journal_entry_obj_file_li.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "journals_ae_comp_journal_entry_obj_file_li", + "community": 17, + "norm_label": "./ae_comp__journal_entry_obj_file_li.svelte" + }, + { + "label": "update_journal_entry()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source_location": "L104", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_file_li_update_journal_entry", + "community": 17, + "norm_label": "update_journal_entry()" + }, + { + "label": "handle_remove_file()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source_location": "L169", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_file_li_handle_remove_file", + "community": 17, + "norm_label": "handle_remove_file()" + }, + { + "label": "{\n log_lvl = 0,\n lq__journal_obj,\n lq__journal_obj_li,\n lq__journal_entry_obj,\n on_show_export\n}", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L47", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_log_lvl_0_lq_journal_obj_lq_journal_obj_li_lq_journal_entry_obj_on_show_export", + "community": 43, + "norm_label": "{\n log_lvl = 0,\n lq__journal_obj,\n lq__journal_obj_li,\n lq__journal_entry_obj,\n on_show_export\n}" + }, + { + "label": "is_processing", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L62", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_is_processing", + "community": 43, + "norm_label": "is_processing" + }, + { + "label": "show_config_modal", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L63", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_show_config_modal", + "community": 43, + "norm_label": "show_config_modal" + }, + { + "label": "deep_copy()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L66", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_deep_copy", + "community": 43, + "norm_label": "deep_copy()" + }, + { + "label": "has_unsaved_changes", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L90", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_has_unsaved_changes", + "community": 43, + "norm_label": "has_unsaved_changes" + }, + { + "label": "run_decryption_workflow()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L215", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_run_decryption_workflow", + "community": 43, + "norm_label": "run_decryption_workflow()" + }, + { + "label": "update_journal_entry()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L276", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_update_journal_entry", + "community": 43, + "norm_label": "update_journal_entry()" + }, + { + "label": "handle_content_decryption()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L358", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_handle_content_decryption", + "community": 43, + "norm_label": "handle_content_decryption()" + }, + { + "label": "handle_marked()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L381", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_handle_marked", + "community": 43, + "norm_label": "handle_marked()" + }, + { + "label": "handle_force_reset()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L404", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_handle_force_reset", + "community": 43, + "norm_label": "handle_force_reset()" + }, + { + "label": "show_append_modal", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L433", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_show_append_modal", + "community": 43, + "norm_label": "show_append_modal" + }, + { + "label": "handle_show_ai_tools()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L436", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_id_view_handle_show_ai_tools", + "community": 43, + "norm_label": "handle_show_ai_tools()" + }, + { + "label": "marked", + "file_type": "code", + "source_file": "marked", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "marked", + "community": 11, + "norm_label": "marked" + }, + { + "label": "$lib/ae_journals/ae_journals_decryption", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_decryption", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_decryption", + "community": 43, + "norm_label": "$lib/ae_journals/ae_journals_decryption" + }, + { + "label": "ae_comp__modal_journal_entry_append.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_append.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_modal_journal_entry_append", + "community": 6, + "norm_label": "ae_comp__modal_journal_entry_append.svelte" + }, + { + "label": "ae_comp__modal_journal_entry_config.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_config.svelte", + "confidence": "EXTRACTED", + "_origin": "ast", + "source_location": "L1", + "id": "journals_ae_comp_modal_journal_entry_config", + "community": 2, + "norm_label": "ae_comp__modal_journal_entry_config.svelte" + }, + { + "label": "./ae_comp__journal_entry_obj_li.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "journals_ae_comp_journal_entry_obj_li", + "community": 35, + "norm_label": "./ae_comp__journal_entry_obj_li.svelte" + }, + { + "label": "{\n log_lvl = $bindable(0),\n lq__journal_obj,\n lq__journal_entry_obj_li,\n show_found_header = true\n}", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L9", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_li_log_lvl_bindable_0_lq_journal_obj_lq_journal_entry_obj_li_show_found_header_true", + "community": 35, + "norm_label": "{\n log_lvl = $bindable(0),\n lq__journal_obj,\n lq__journal_entry_obj_li,\n show_found_header = true\n}" + }, + { + "label": "show_append_modal", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L61", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_li_show_append_modal", + "community": 35, + "norm_label": "show_append_modal" + }, + { + "label": "handle_modal_close()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L68", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_li_handle_modal_close", + "community": 35, + "norm_label": "handle_modal_close()" + }, + { + "label": "handle_modal_update()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L73", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_li_handle_modal_update", + "community": 35, + "norm_label": "handle_modal_update()" + }, + { + "label": "visible_journal_entry_obj_li", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L79", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_li_visible_journal_entry_obj_li", + "community": 35, + "norm_label": "visible_journal_entry_obj_li" + }, + { + "label": "hidden", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L429", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_li_hidden", + "community": 35, + "norm_label": "hidden" + }, + { + "label": "{\n container_class_li = '',\n lq__journal_obj,\n lq__journal_entry_obj_li,\n show_found_header = true,\n log_lvl = 0\n}", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li_wrapper.svelte", + "source_location": "L10", + "_origin": "ast", + "id": "journals_ae_comp_journal_entry_obj_li_wrapper_container_class_li_lq_journal_obj_lq_journal_entry_obj_li_show_found_header_true_log_lvl_0", + "community": 169, + "norm_label": "{\n container_class_li = '',\n lq__journal_obj,\n lq__journal_entry_obj_li,\n show_found_header = true,\n log_lvl = 0\n}" + }, + { + "label": "./ae_comp__journal_obj_id_edit.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source_location": "L1", + "_origin": "ast", + "confidence": "EXTRACTED", + "id": "journals_ae_comp_journal_obj_id_edit", + "community": 40, + "norm_label": "./ae_comp__journal_obj_id_edit.svelte" + }, + { + "label": "catch()", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source_location": "L161", + "_origin": "ast", + "id": "journals_ae_comp_journal_obj_id_edit_catch", + "community": 40, + "norm_label": "catch()" + }, + { + "label": "$lib/ae_journals/ae_journals_export_templates", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_export_templates", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_export_templates", + "community": 1, + "norm_label": "$lib/ae_journals/ae_journals_export_templates" + }, + { + "label": "$lib/ae_journals/ae_journals_parsers", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_parsers", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_parsers", + "community": 40, + "norm_label": "$lib/ae_journals/ae_journals_parsers" + }, + { + "label": "ae_comp__obj_core_props.svelte", + "file_type": "code", + "source_file": "src/routes/journals/ae_comp__obj_core_props.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "journals_ae_comp_obj_core_props", + "community": 40, + "norm_label": "ae_comp__obj_core_props.svelte" + }, + { + "label": "journal_entry_visibility.test.ts", + "file_type": "code", + "source_file": "src/routes/journals/journal_entry_visibility.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "journals_journal_entry_visibility_test", + "community": 83, + "norm_label": "journal_entry_visibility.test.ts" + }, + { + "label": "+server.ts", + "file_type": "code", + "source_file": "src/routes/manifest.webmanifest/+server.ts", + "source_location": "L1", + "_origin": "ast", + "id": "manifest_webmanifest_server", + "community": 33, + "norm_label": "+server.ts" + }, + { + "label": "GET()", + "file_type": "code", + "source_file": "src/routes/manifest.webmanifest/+server.ts", + "source_location": "L10", + "_origin": "ast", + "id": "manifest_webmanifest_server_get", + "community": 33, + "norm_label": "get()" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/testing/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "testing_page", + "community": 33, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_api/api_get_object", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get_object", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api_get_object", + "community": 33, + "norm_label": "$lib/ae_api/api_get_object" + }, + { + "label": "$lib/ae_api/api_patch_object", + "file_type": "code", + "source_file": "src/lib/ae_api/api_patch_object", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api_patch_object", + "community": 33, + "norm_label": "$lib/ae_api/api_patch_object" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/testing/ae_obj_field_editor/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "ae_obj_field_editor_page", + "community": 113, + "norm_label": "+page.svelte" + }, + { + "label": "$lib/ae_journals/ae_journals__journal", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_journal", + "community": 113, + "norm_label": "$lib/ae_journals/ae_journals__journal" + }, + { + "label": "$lib/ae_journals/ae_journals__journal_entry", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_journal_entry", + "community": 113, + "norm_label": "$lib/ae_journals/ae_journals__journal_entry" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/testing/data_store/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "data_store_page", + "community": 17, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/testing/editor_test/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "editor_test_page", + "community": 103, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/testing/fix-sw/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "fix_sw_page", + "community": 201, + "norm_label": "+page.svelte" + }, + { + "label": "+page.svelte", + "file_type": "code", + "source_file": "src/routes/testing/hosted_files/+page.svelte", + "source_location": "L1", + "_origin": "ast", + "id": "src_routes_testing_hosted_files_page_svelte_hosted_files_page", + "community": 17, + "norm_label": "+page.svelte" + }, + { + "label": "service-worker.js", + "file_type": "code", + "source_file": "src/service-worker.js", + "source_location": "L1", + "_origin": "ast", + "id": "src_service_worker", + "community": 111, + "norm_label": "service-worker.js" + }, + { + "label": "ASSETS", + "file_type": "code", + "source_file": "src/service-worker.js", + "source_location": "L7", + "_origin": "ast", + "id": "src_service_worker_assets", + "community": 111, + "norm_label": "assets" + }, + { + "label": "addFilesToCache()", + "file_type": "code", + "source_file": "src/service-worker.js", + "source_location": "L19", + "_origin": "ast", + "id": "src_service_worker_addfilestocache", + "community": 111, + "norm_label": "addfilestocache()" + }, + { + "label": "deleteOldCaches()", + "file_type": "code", + "source_file": "src/service-worker.js", + "source_location": "L37", + "_origin": "ast", + "id": "src_service_worker_deleteoldcaches", + "community": 111, + "norm_label": "deleteoldcaches()" + }, + { + "label": "respond()", + "file_type": "code", + "source_file": "src/service-worker.js", + "source_location": "L61", + "_origin": "ast", + "id": "src_service_worker_respond", + "community": 111, + "norm_label": "respond()" + }, + { + "label": "manifest.json", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L1", + "_origin": "ast", + "id": "static_manifest", + "community": 82, + "norm_label": "manifest.json" + }, + { + "label": "background_color", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L2", + "_origin": "ast", + "id": "static_manifest_background_color", + "community": 82, + "norm_label": "background_color" + }, + { + "label": "description", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L3", + "_origin": "ast", + "id": "static_manifest_description", + "community": 82, + "norm_label": "description" + }, + { + "label": "display", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L4", + "_origin": "ast", + "id": "static_manifest_display", + "community": 82, + "norm_label": "display" + }, + { + "label": "icons", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L5", + "_origin": "ast", + "id": "static_manifest_icons", + "community": 82, + "norm_label": "icons" + }, + { + "label": "name", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L87", + "_origin": "ast", + "id": "static_manifest_name", + "community": 82, + "norm_label": "name" + }, + { + "label": "short_name", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L88", + "_origin": "ast", + "id": "static_manifest_short_name", + "community": 82, + "norm_label": "short_name" + }, + { + "label": "start_url", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L89", + "_origin": "ast", + "id": "static_manifest_start_url", + "community": 82, + "norm_label": "start_url" + }, + { + "label": "testing", + "file_type": "code", + "source_file": "static/manifest.json", + "source_location": "L90", + "_origin": "ast", + "id": "static_manifest_testing", + "community": 82, + "norm_label": "testing" + }, + { + "label": "svelte.config.js", + "file_type": "code", + "source_file": "svelte.config.js", + "source_location": "L1", + "_origin": "ast", + "id": "svelte_config", + "community": 179, + "norm_label": "svelte.config.js" + }, + { + "label": "config", + "file_type": "code", + "source_file": "svelte.config.js", + "source_location": "L7", + "_origin": "ast", + "id": "svelte_config_config", + "community": 179, + "norm_label": "config" + }, + { + "label": "tailwind.config.ts", + "file_type": "code", + "source_file": "tailwind.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tailwind_config", + "community": 180, + "norm_label": "tailwind.config.ts" + }, + { + "label": "ConfigWithSafelist", + "file_type": "code", + "source_file": "tailwind.config.ts", + "source_location": "L6", + "_origin": "ast", + "id": "tailwind_config_configwithsafelist", + "community": 180, + "norm_label": "configwithsafelist" + }, + { + "label": "ae_defaults.ts", + "file_type": "code", + "source_file": "tests/_helpers/ae_defaults.ts", + "source_location": "L1", + "_origin": "ast", + "id": "helpers_ae_defaults", + "community": 48, + "norm_label": "ae_defaults.ts" + }, + { + "label": "ae_app_local_data_defaults", + "file_type": "code", + "source_file": "tests/_helpers/ae_defaults.ts", + "source_location": "L1", + "_origin": "ast", + "id": "helpers_ae_defaults_ae_app_local_data_defaults", + "community": 48, + "norm_label": "ae_app_local_data_defaults" + }, + { + "label": "env.ts", + "file_type": "code", + "source_file": "tests/_helpers/env.ts", + "source_location": "L1", + "_origin": "ast", + "id": "helpers_env", + "community": 48, + "norm_label": "env.ts" + }, + { + "label": "mock_site_domain", + "file_type": "code", + "source_file": "tests/_helpers/env.ts", + "source_location": "L22", + "_origin": "ast", + "id": "helpers_env_mock_site_domain", + "community": 65, + "norm_label": "mock_site_domain" + }, + { + "label": "TEST_ENV", + "file_type": "code", + "source_file": "tests/_helpers/env.ts", + "source_location": "L37", + "_origin": "ast", + "id": "helpers_env_test_env", + "community": 48, + "norm_label": "test_env" + }, + { + "label": "idb_helpers.ts", + "file_type": "code", + "source_file": "tests/_helpers/idb_helpers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "helpers_idb_helpers", + "community": 39, + "norm_label": "idb_helpers.ts" + }, + { + "label": "inject_badge_and_template()", + "file_type": "code", + "source_file": "tests/_helpers/idb_helpers.ts", + "source_location": "L22", + "_origin": "ast", + "id": "helpers_idb_helpers_inject_badge_and_template", + "community": 39, + "norm_label": "inject_badge_and_template()" + }, + { + "label": "leads_helpers.ts", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L1", + "_origin": "ast", + "id": "helpers_leads_helpers", + "community": 36, + "norm_label": "leads_helpers.ts" + }, + { + "label": "minimal_event_for_leads()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L49", + "_origin": "ast", + "id": "helpers_leads_helpers_minimal_event_for_leads", + "community": 65, + "norm_label": "minimal_event_for_leads()" + }, + { + "label": "minimal_exhibit()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L80", + "_origin": "ast", + "id": "helpers_leads_helpers_minimal_exhibit", + "community": 36, + "norm_label": "minimal_exhibit()" + }, + { + "label": "minimal_badge()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L117", + "_origin": "ast", + "id": "helpers_leads_helpers_minimal_badge", + "community": 36, + "norm_label": "minimal_badge()" + }, + { + "label": "minimal_tracking()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L129", + "_origin": "ast", + "id": "helpers_leads_helpers_minimal_tracking", + "community": 36, + "norm_label": "minimal_tracking()" + }, + { + "label": "seed_ae_loc()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L165", + "_origin": "ast", + "id": "helpers_leads_helpers_seed_ae_loc", + "community": 36, + "norm_label": "seed_ae_loc()" + }, + { + "label": "seed_leads_loc()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L185", + "_origin": "ast", + "id": "helpers_leads_helpers_seed_leads_loc", + "community": 36, + "norm_label": "seed_leads_loc()" + }, + { + "label": "seed_events_loc()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L242", + "_origin": "ast", + "id": "helpers_leads_helpers_seed_events_loc", + "community": 36, + "norm_label": "seed_events_loc()" + }, + { + "label": "attach_leads_routes()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L346", + "_origin": "ast", + "id": "helpers_leads_helpers_attach_leads_routes", + "community": 36, + "norm_label": "attach_leads_routes()" + }, + { + "label": "setup_leads_test_page()", + "file_type": "code", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L487", + "_origin": "ast", + "id": "helpers_leads_helpers_setup_leads_test_page", + "community": 36, + "norm_label": "setup_leads_test_page()" + }, + { + "label": "minimal_ae_api_mocks.ts", + "file_type": "code", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L1", + "_origin": "ast", + "id": "helpers_minimal_ae_api_mocks", + "community": 39, + "norm_label": "minimal_ae_api_mocks.ts" + }, + { + "label": "minimal_event()", + "file_type": "code", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L5", + "_origin": "ast", + "id": "helpers_minimal_ae_api_mocks_minimal_event", + "community": 39, + "norm_label": "minimal_event()" + }, + { + "label": "minimal_badge()", + "file_type": "code", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L19", + "_origin": "ast", + "id": "helpers_minimal_ae_api_mocks_minimal_badge", + "community": 39, + "norm_label": "minimal_badge()" + }, + { + "label": "attach_minimal_routes()", + "file_type": "code", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L32", + "_origin": "ast", + "id": "helpers_minimal_ae_api_mocks_attach_minimal_routes", + "community": 39, + "norm_label": "attach_minimal_routes()" + }, + { + "label": "seed_trusted_session()", + "file_type": "code", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L87", + "_origin": "ast", + "id": "helpers_minimal_ae_api_mocks_seed_trusted_session", + "community": 39, + "norm_label": "seed_trusted_session()" + }, + { + "label": "setup_badge_test_page()", + "file_type": "code", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L118", + "_origin": "ast", + "id": "helpers_minimal_ae_api_mocks_setup_badge_test_page", + "community": 39, + "norm_label": "setup_badge_test_page()" + }, + { + "label": "archive_content.test.ts", + "file_type": "code", + "source_file": "tests/archive_content.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_archive_content_test", + "community": 48, + "norm_label": "archive_content.test.ts" + }, + { + "label": "coldstart_event_badges_list.test.ts", + "file_type": "code", + "source_file": "tests/coldstart_event_badges_list.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_coldstart_event_badges_list_test", + "community": 48, + "norm_label": "coldstart_event_badges_list.test.ts" + }, + { + "label": "coldstart_event_session.test.ts", + "file_type": "code", + "source_file": "tests/coldstart_event_session.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_coldstart_event_session_test", + "community": 48, + "norm_label": "coldstart_event_session.test.ts" + }, + { + "label": "coldstart_event_settings.test.ts", + "file_type": "code", + "source_file": "tests/coldstart_event_settings.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_coldstart_event_settings_test", + "community": 48, + "norm_label": "coldstart_event_settings.test.ts" + }, + { + "label": "coldstart_journal.test.ts", + "file_type": "code", + "source_file": "tests/coldstart_journal.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_coldstart_journal_test", + "community": 48, + "norm_label": "coldstart_journal.test.ts" + }, + { + "label": "event_badge_attendee_workflow.test.ts", + "file_type": "code", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_event_badge_attendee_workflow_test", + "community": 39, + "norm_label": "event_badge_attendee_workflow.test.ts" + }, + { + "label": "mock_badge", + "file_type": "code", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "tests_event_badge_attendee_workflow_test_mock_badge", + "community": 39, + "norm_label": "mock_badge" + }, + { + "label": "mock_template", + "file_type": "code", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L42", + "_origin": "ast", + "id": "tests_event_badge_attendee_workflow_test_mock_template", + "community": 39, + "norm_label": "mock_template" + }, + { + "label": "event_badge_crud.test.ts", + "file_type": "code", + "source_file": "tests/event_badge_crud.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_event_badge_crud_test", + "community": 48, + "norm_label": "event_badge_crud.test.ts" + }, + { + "label": "event_badge_data_integrity.test.ts", + "file_type": "code", + "source_file": "tests/event_badge_data_integrity.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_event_badge_data_integrity_test", + "community": 48, + "norm_label": "event_badge_data_integrity.test.ts" + }, + { + "label": "event_badge_interaction.test.ts", + "file_type": "code", + "source_file": "tests/event_badge_interaction.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_event_badge_interaction_test", + "community": 48, + "norm_label": "event_badge_interaction.test.ts" + }, + { + "label": "event_badge_print_layout.test.ts", + "file_type": "code", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_event_badge_print_layout_test", + "community": 39, + "norm_label": "event_badge_print_layout.test.ts" + }, + { + "label": "mock_badge", + "file_type": "code", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L26", + "_origin": "ast", + "id": "tests_event_badge_print_layout_test_mock_badge", + "community": 39, + "norm_label": "mock_badge" + }, + { + "label": "mock_template", + "file_type": "code", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L47", + "_origin": "ast", + "id": "tests_event_badge_print_layout_test_mock_template", + "community": 39, + "norm_label": "mock_template" + }, + { + "label": "event_badge_render.test.ts", + "file_type": "code", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_event_badge_render_test", + "community": 39, + "norm_label": "event_badge_render.test.ts" + }, + { + "label": "make_badge()", + "file_type": "code", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L41", + "_origin": "ast", + "id": "tests_event_badge_render_test_make_badge", + "community": 39, + "norm_label": "make_badge()" + }, + { + "label": "make_template()", + "file_type": "code", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L65", + "_origin": "ast", + "id": "tests_event_badge_render_test_make_template", + "community": 39, + "norm_label": "make_template()" + }, + { + "label": "event_badge_smoke.test.ts", + "file_type": "code", + "source_file": "tests/event_badge_smoke.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_event_badge_smoke_test", + "community": 39, + "norm_label": "event_badge_smoke.test.ts" + }, + { + "label": "event_presenter.test.ts", + "file_type": "code", + "source_file": "tests/event_presenter.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_event_presenter_test", + "community": 48, + "norm_label": "event_presenter.test.ts" + }, + { + "label": "idaa_novi_auth.test.ts", + "file_type": "code", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_idaa_novi_auth_test", + "community": 65, + "norm_label": "idaa_novi_auth.test.ts" + }, + { + "label": "mock_novi_member", + "file_type": "code", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L80", + "_origin": "ast", + "id": "tests_idaa_novi_auth_test_mock_novi_member", + "community": 65, + "norm_label": "mock_novi_member" + }, + { + "label": "fresh_site_cfg_json()", + "file_type": "code", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L100", + "_origin": "ast", + "id": "tests_idaa_novi_auth_test_fresh_site_cfg_json", + "community": 65, + "norm_label": "fresh_site_cfg_json()" + }, + { + "label": "stale_site_cfg_json()", + "file_type": "code", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L117", + "_origin": "ast", + "id": "tests_idaa_novi_auth_test_stale_site_cfg_json", + "community": 65, + "norm_label": "stale_site_cfg_json()" + }, + { + "label": "mock_v3_routes()", + "file_type": "code", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L137", + "_origin": "ast", + "id": "tests_idaa_novi_auth_test_mock_v3_routes", + "community": 65, + "norm_label": "mock_v3_routes()" + }, + { + "label": "mock_novi_api()", + "file_type": "code", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L174", + "_origin": "ast", + "id": "tests_idaa_novi_auth_test_mock_novi_api", + "community": 65, + "norm_label": "mock_novi_api()" + }, + { + "label": "seed_anonymous_session()", + "file_type": "code", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L201", + "_origin": "ast", + "id": "tests_idaa_novi_auth_test_seed_anonymous_session", + "community": 65, + "norm_label": "seed_anonymous_session()" + }, + { + "label": "idaa_recovery_meeting_edit.test.ts", + "file_type": "code", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_idaa_recovery_meeting_edit_test", + "community": 89, + "norm_label": "idaa_recovery_meeting_edit.test.ts" + }, + { + "label": "mock_event", + "file_type": "code", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L27", + "_origin": "ast", + "id": "tests_idaa_recovery_meeting_edit_test_mock_event", + "community": 89, + "norm_label": "mock_event" + }, + { + "label": "build_idaa_loc_defaults()", + "file_type": "code", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L68", + "_origin": "ast", + "id": "tests_idaa_recovery_meeting_edit_test_build_idaa_loc_defaults", + "community": 89, + "norm_label": "build_idaa_loc_defaults()" + }, + { + "label": "setup_idaa_auth()", + "file_type": "code", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L105", + "_origin": "ast", + "id": "tests_idaa_recovery_meeting_edit_test_setup_idaa_auth", + "community": 89, + "norm_label": "setup_idaa_auth()" + }, + { + "label": "setup_api_mocks()", + "file_type": "code", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L176", + "_origin": "ast", + "id": "tests_idaa_recovery_meeting_edit_test_setup_api_mocks", + "community": 89, + "norm_label": "setup_api_mocks()" + }, + { + "label": "seed_event_idb()", + "file_type": "code", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L314", + "_origin": "ast", + "id": "tests_idaa_recovery_meeting_edit_test_seed_event_idb", + "community": 89, + "norm_label": "seed_event_idb()" + }, + { + "label": "open_edit_form()", + "file_type": "code", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L709", + "_origin": "ast", + "id": "tests_idaa_recovery_meeting_edit_test_open_edit_form", + "community": 89, + "norm_label": "open_edit_form()" + }, + { + "label": "capture_patch_body()", + "file_type": "code", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L800", + "_origin": "ast", + "id": "tests_idaa_recovery_meeting_edit_test_capture_patch_body", + "community": 89, + "norm_label": "capture_patch_body()" + }, + { + "label": "leads_add_lead.test.ts", + "file_type": "code", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_leads_add_lead_test", + "community": 36, + "norm_label": "leads_add_lead.test.ts" + }, + { + "label": "signed_in_kv", + "file_type": "code", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L15", + "_origin": "ast", + "id": "tests_leads_add_lead_test_signed_in_kv", + "community": 36, + "norm_label": "signed_in_kv" + }, + { + "label": "search_mode_seed", + "file_type": "code", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L19", + "_origin": "ast", + "id": "tests_leads_add_lead_test_search_mode_seed", + "community": 36, + "norm_label": "search_mode_seed" + }, + { + "label": "leads_auth.test.ts", + "file_type": "code", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_leads_auth_test", + "community": 36, + "norm_label": "leads_auth.test.ts" + }, + { + "label": "signin_form()", + "file_type": "code", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L24", + "_origin": "ast", + "id": "tests_leads_auth_test_signin_form", + "community": 36, + "norm_label": "signin_form()" + }, + { + "label": "passcode_input()", + "file_type": "code", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "tests_leads_auth_test_passcode_input", + "community": 36, + "norm_label": "passcode_input()" + }, + { + "label": "header_action_btn()", + "file_type": "code", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L34", + "_origin": "ast", + "id": "tests_leads_auth_test_header_action_btn", + "community": 36, + "norm_label": "header_action_btn()" + }, + { + "label": "leads_config.test.ts", + "file_type": "code", + "source_file": "tests/leads_config.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_leads_config_test", + "community": 65, + "norm_label": "leads_config.test.ts" + }, + { + "label": "setup_config_routes()", + "file_type": "code", + "source_file": "tests/leads_config.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "tests_leads_config_test_setup_config_routes", + "community": 65, + "norm_label": "setup_config_routes()" + }, + { + "label": "leads_licensed_signin.test.ts", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test", + "community": 72, + "norm_label": "leads_licensed_signin.test.ts" + }, + { + "label": "licensed_user", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L18", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_licensed_user", + "community": 72, + "norm_label": "licensed_user" + }, + { + "label": "licensed_user_b", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L25", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_licensed_user_b", + "community": 72, + "norm_label": "licensed_user_b" + }, + { + "label": "license_li_json", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L35", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_license_li_json", + "community": 72, + "norm_label": "license_li_json" + }, + { + "label": "exhibit_with_licenses", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L38", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_exhibit_with_licenses", + "community": 72, + "norm_label": "exhibit_with_licenses" + }, + { + "label": "signin_form()", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L44", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_signin_form", + "community": 72, + "norm_label": "signin_form()" + }, + { + "label": "header_action_btn()", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L47", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_header_action_btn", + "community": 72, + "norm_label": "header_action_btn()" + }, + { + "label": "passcode_input()", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L52", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_passcode_input", + "community": 72, + "norm_label": "passcode_input()" + }, + { + "label": "search_mode_seed", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L57", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_search_mode_seed", + "community": 72, + "norm_label": "search_mode_seed" + }, + { + "label": "goto_and_wait_for_exhibit_ready()", + "file_type": "code", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L71", + "_origin": "ast", + "id": "tests_leads_licensed_signin_test_goto_and_wait_for_exhibit_ready", + "community": 72, + "norm_label": "goto_and_wait_for_exhibit_ready()" + }, + { + "label": "leads_payment.test.ts", + "file_type": "code", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_leads_payment_test", + "community": 36, + "norm_label": "leads_payment.test.ts" + }, + { + "label": "signed_in_kv", + "file_type": "code", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L13", + "_origin": "ast", + "id": "tests_leads_payment_test_signed_in_kv", + "community": 36, + "norm_label": "signed_in_kv" + }, + { + "label": "payment_btn()", + "file_type": "code", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L16", + "_origin": "ast", + "id": "tests_leads_payment_test_payment_btn", + "community": 36, + "norm_label": "payment_btn()" + }, + { + "label": "manage_btn()", + "file_type": "code", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L22", + "_origin": "ast", + "id": "tests_leads_payment_test_manage_btn", + "community": 36, + "norm_label": "manage_btn()" + }, + { + "label": "private_network.test.ts", + "file_type": "code", + "source_file": "tests/private_network.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_private_network_test", + "community": 181, + "norm_label": "private_network.test.ts" + }, + { + "label": "isPrivateHostname()", + "file_type": "code", + "source_file": "tests/private_network.test.ts", + "source_location": "L8", + "_origin": "ast", + "id": "tests_private_network_test_isprivatehostname", + "community": 181, + "norm_label": "isprivatehostname()" + }, + { + "label": "create_event_badge.spec.ts", + "file_type": "code", + "source_file": "tests/unit/create_event_badge.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "unit_create_event_badge_spec", + "community": 23, + "norm_label": "create_event_badge.spec.ts" + }, + { + "label": "mockCreateNested", + "file_type": "code", + "source_file": "tests/unit/create_event_badge.spec.ts", + "source_location": "L9", + "_origin": "ast", + "id": "unit_create_event_badge_spec_mockcreatenested", + "community": 23, + "norm_label": "mockcreatenested" + }, + { + "label": "v3_api_latency_probe.test.ts", + "file_type": "code", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_v3_api_latency_probe_test", + "community": 96, + "norm_label": "v3_api_latency_probe.test.ts" + }, + { + "label": "ProbeSample", + "file_type": "code", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L12", + "_origin": "ast", + "id": "tests_v3_api_latency_probe_test_probesample", + "community": 96, + "norm_label": "probesample" + }, + { + "label": "EndpointProbe", + "file_type": "code", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L21", + "_origin": "ast", + "id": "tests_v3_api_latency_probe_test_endpointprobe", + "community": 96, + "norm_label": "endpointprobe" + }, + { + "label": "percentile()", + "file_type": "code", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L28", + "_origin": "ast", + "id": "tests_v3_api_latency_probe_test_percentile", + "community": 96, + "norm_label": "percentile()" + }, + { + "label": "summarize()", + "file_type": "code", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L35", + "_origin": "ast", + "id": "tests_v3_api_latency_probe_test_summarize", + "community": 96, + "norm_label": "summarize()" + }, + { + "label": "timedJsonFetch()", + "file_type": "code", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L59", + "_origin": "ast", + "id": "tests_v3_api_latency_probe_test_timedjsonfetch", + "community": 96, + "norm_label": "timedjsonfetch()" + }, + { + "label": "reportMarkdown()", + "file_type": "code", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L106", + "_origin": "ast", + "id": "tests_v3_api_latency_probe_test_reportmarkdown", + "community": 96, + "norm_label": "reportmarkdown()" + }, + { + "label": "v3_api_nested_crud.test.ts", + "file_type": "code", + "source_file": "tests/v3_api_nested_crud.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_v3_api_nested_crud_test", + "community": 48, + "norm_label": "v3_api_nested_crud.test.ts" + }, + { + "label": "v3_api_security.modern.test.ts", + "file_type": "code", + "source_file": "tests/v3_api_security.modern.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "tests_v3_api_security_modern_test", + "community": 48, + "norm_label": "v3_api_security.modern.test.ts" + }, + { + "label": "tsconfig.json", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "tsconfig", + "community": 56, + "norm_label": "tsconfig.json" + }, + { + "label": "extends", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "tsconfig_extends", + "community": 56, + "norm_label": "extends" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "tsconfig_compileroptions", + "community": 56, + "norm_label": "compileroptions" + }, + { + "label": "allowJs", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "tsconfig_compileroptions_allowjs", + "community": 56, + "norm_label": "allowjs" + }, + { + "label": "checkJs", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "id": "tsconfig_compileroptions_checkjs", + "community": 56, + "norm_label": "checkjs" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "id": "tsconfig_compileroptions_esmoduleinterop", + "community": 56, + "norm_label": "esmoduleinterop" + }, + { + "label": "forceConsistentCasingInFileNames", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "id": "tsconfig_compileroptions_forceconsistentcasinginfilenames", + "community": 56, + "norm_label": "forceconsistentcasinginfilenames" + }, + { + "label": "resolveJsonModule", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "id": "tsconfig_compileroptions_resolvejsonmodule", + "community": 56, + "norm_label": "resolvejsonmodule" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "id": "tsconfig_compileroptions_skiplibcheck", + "community": 56, + "norm_label": "skiplibcheck" + }, + { + "label": "sourceMap", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "id": "tsconfig_compileroptions_sourcemap", + "community": 56, + "norm_label": "sourcemap" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "id": "tsconfig_compileroptions_strict", + "community": 56, + "norm_label": "strict" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "id": "tsconfig_compileroptions_moduleresolution", + "community": 56, + "norm_label": "moduleresolution" + }, + { + "label": "plugins", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "id": "tsconfig_compileroptions_plugins", + "community": 56, + "norm_label": "plugins" + }, + { + "label": "vite.config.ts", + "file_type": "code", + "source_file": "vite.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "vite_config", + "community": 118, + "norm_label": "vite.config.ts" + }, + { + "label": "pkg", + "file_type": "code", + "source_file": "vite.config.ts", + "source_location": "L6", + "_origin": "ast", + "id": "vite_config_pkg", + "community": 118, + "norm_label": "pkg" + }, + { + "label": "manualChunks()", + "file_type": "code", + "source_file": "vite.config.ts", + "source_location": "L45", + "_origin": "ast", + "id": "vite_config_manualchunks", + "community": 118, + "norm_label": "manualchunks()" + }, + { + "label": "vitest.config.ts", + "file_type": "code", + "source_file": "vitest.config.ts", + "source_location": "L1", + "_origin": "ast", + "id": "vitest_config", + "community": 118, + "norm_label": "vitest.config.ts" + }, + { + "label": "api", + "file_type": "code", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L337", + "_origin": "ast", + "id": "ae_api_api_api", + "community": 30, + "norm_label": "api" + }, + { + "label": "get_blob_percent_completed", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L6", + "_origin": "ast", + "id": "ae_api_api_get_object_get_blob_percent_completed", + "community": 182, + "norm_label": "get_blob_percent_completed" + }, + { + "label": "get_object_percent_completed", + "file_type": "code", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L9", + "_origin": "ast", + "id": "ae_api_api_get_object_get_object_percent_completed", + "community": 183, + "norm_label": "get_object_percent_completed" + }, + { + "label": "post_blob_percent_completed", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L6", + "_origin": "ast", + "id": "ae_api_api_post_object_post_blob_percent_completed", + "community": 184, + "norm_label": "post_blob_percent_completed" + }, + { + "label": "post_object_percent_completed", + "file_type": "code", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L8", + "_origin": "ast", + "id": "ae_api_api_post_object_post_object_percent_completed", + "community": 185, + "norm_label": "post_object_percent_completed" + }, + { + "label": "archives_func", + "file_type": "code", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L32", + "_origin": "ast", + "id": "ae_archives_ae_archives_functions_archives_func", + "community": 186, + "norm_label": "archives_func" + }, + { + "label": "core_func", + "file_type": "code", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L89", + "_origin": "ast", + "id": "ae_core_ae_core_functions_core_func", + "community": 10, + "norm_label": "core_func" + }, + { + "label": "qry_ae_obj_li__event", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L782", + "_origin": "ast", + "id": "ae_events_ae_events_event_qry_ae_obj_li_event", + "community": 191, + "norm_label": "qry_ae_obj_li__event" + }, + { + "label": "qry__event_badge", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L570", + "_origin": "ast", + "id": "ae_events_ae_events_event_badge_qry_event_badge", + "community": 187, + "norm_label": "qry__event_badge" + }, + { + "label": "qry__event_file", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L527", + "_origin": "ast", + "id": "ae_events_ae_events_event_file_qry_event_file", + "community": 188, + "norm_label": "qry__event_file" + }, + { + "label": "qry__event_presentation", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L590", + "_origin": "ast", + "id": "ae_events_ae_events_event_presentation_qry_event_presentation", + "community": 189, + "norm_label": "qry__event_presentation" + }, + { + "label": "qry__event_presenter", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L567", + "_origin": "ast", + "id": "ae_events_ae_events_event_presenter_qry_event_presenter", + "community": 190, + "norm_label": "qry__event_presenter" + }, + { + "label": "qry__event_session", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L807", + "_origin": "ast", + "id": "ae_events_ae_events_event_session_qry_event_session", + "community": 192, + "norm_label": "qry__event_session" + }, + { + "label": "events_func", + "file_type": "code", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L159", + "_origin": "ast", + "id": "ae_events_ae_events_functions_events_func", + "community": 4, + "norm_label": "events_func" + }, + { + "label": "journals_func", + "file_type": "code", + "source_file": "src/lib/ae_journals/ae_journals_functions.ts", + "source_location": "L22", + "_origin": "ast", + "id": "ae_journals_ae_journals_functions_journals_func", + "community": 73, + "norm_label": "journals_func" + }, + { + "label": "posts_func", + "file_type": "code", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L34", + "_origin": "ast", + "id": "ae_posts_ae_posts_functions_posts_func", + "community": 15, + "norm_label": "posts_func" + }, + { + "label": "load_jitsi_report", + "file_type": "code", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L429", + "_origin": "ast", + "id": "ae_reports_reports_functions_load_jitsi_report", + "community": 193, + "norm_label": "load_jitsi_report" + }, + { + "label": "ae_snip", + "file_type": "code", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L48", + "_origin": "ast", + "id": "stores_ae_stores_ae_snip", + "community": 10, + "norm_label": "ae_snip" + }, + { + "label": "IDAA Privacy Rules", + "file_type": "rationale", + "source_file": "CLAUDE.md", + "source_location": "CRITICAL: Privacy & Business Rules", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_claude_idaa_privacy", + "community": 85, + "norm_label": "idaa privacy rules" + }, + { + "label": "Mandatory Agent Workflow", + "file_type": "rationale", + "source_file": "CLAUDE.md", + "source_location": "Mandatory Workflow", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_claude_mandatory_workflow", + "community": 69, + "norm_label": "mandatory agent workflow" + }, + { + "label": "Aether Frontend Tech Stack", + "file_type": "concept", + "source_file": "CLAUDE.md", + "source_location": "Tech Stack", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_claude_tech_stack", + "community": 99, + "norm_label": "aether frontend tech stack" + }, + { + "label": "Aether V3 API (CRUD Pattern)", + "file_type": "concept", + "source_file": "CLAUDE.md", + "source_location": "API (V3)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_claude_v3_api", + "community": 75, + "norm_label": "aether v3 api (crud pattern)" + }, + { + "label": "SWR Load Pattern (Stale-While-Revalidate)", + "file_type": "rationale", + "source_file": "CLAUDE.md", + "source_location": "Key Patterns", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_claude_swr_pattern", + "community": 74, + "norm_label": "swr load pattern (stale-while-revalidate)" + }, + { + "label": "Journals Module as Canonical Pattern Reference", + "file_type": "rationale", + "source_file": "CLAUDE.md", + "source_location": "Key Patterns", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_claude_journals_canonical", + "community": 69, + "norm_label": "journals module as canonical pattern reference" + }, + { + "label": "Frontend Source Layout", + "file_type": "concept", + "source_file": "CLAUDE.md", + "source_location": "Source Layout", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_claude_source_layout", + "community": 194, + "norm_label": "frontend source layout" + }, + { + "label": "Aether SvelteKit Application", + "file_type": "document", + "source_file": "README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_readme_sveltekit", + "community": 64, + "norm_label": "aether sveltekit application" + }, + { + "label": "IDB Content Version Management", + "file_type": "rationale", + "source_file": "README.md", + "source_location": "Client-Side Cache & IDB Version Management", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_readme_idb_version_mgmt", + "community": 64, + "norm_label": "idb content version management" + }, + { + "label": "Docker Multi-Stage Build and Deploy", + "file_type": "concept", + "source_file": "README.md", + "source_location": "How to build and deploy SvelteKit", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_readme_docker_deploy", + "community": 64, + "norm_label": "docker multi-stage build and deploy" + }, + { + "label": "Events Module Routes", + "file_type": "concept", + "source_file": "README.md", + "source_location": "Events", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_readme_events_module", + "community": 61, + "norm_label": "events module routes" + }, + { + "label": "IDAA Module Routes", + "file_type": "concept", + "source_file": "README.md", + "source_location": "IDAA", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_readme_idaa_module", + "community": 195, + "norm_label": "idaa module routes" + }, + { + "label": "Journals Module Routes", + "file_type": "concept", + "source_file": "README.md", + "source_location": "Journals", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_readme_journals_module", + "community": 196, + "norm_label": "journals module routes" + }, + { + "label": "IDAA Jitsi Breakout Link Fix Plan", + "file_type": "document", + "source_file": "conductor/fix-idaa-breakout-links.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "conductor_fix_idaa_breakout_links_breakout_url", + "community": 61, + "norm_label": "idaa jitsi breakout link fix plan" + }, + { + "label": "Launcher Config UX Refinement Plan", + "file_type": "document", + "source_file": "conductor/launcher-ux-refinement.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "conductor_launcher_ux_refinement_plan", + "community": 91, + "norm_label": "launcher config ux refinement plan" + }, + { + "label": "Aether Project Architecture", + "file_type": "document", + "source_file": "documentation/AE__Architecture.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__architecture_architecture", + "community": 69, + "norm_label": "aether project architecture" + }, + { + "label": "Journals as Canonical Frontend Pattern", + "file_type": "rationale", + "source_file": "documentation/AE__Architecture.md", + "source_location": "2.1. Journals as the Canonical Frontend Pattern", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__architecture_journals_canonical", + "community": 69, + "norm_label": "journals as canonical frontend pattern" + }, + { + "label": "Electron Native App Runtime (Launcher Only)", + "file_type": "rationale", + "source_file": "documentation/AE__Architecture.md", + "source_location": "7.2. Electron Native App", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__architecture_electron_runtime", + "community": 91, + "norm_label": "electron native app runtime (launcher only)" + }, + { + "label": "IndexedDB LiveQuery Naming Convention (lq/lqw)", + "file_type": "rationale", + "source_file": "documentation/AE__Architecture.md", + "source_location": "8. IndexedDB LiveQuery Usage", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__architecture_livequery_naming", + "community": 69, + "norm_label": "indexeddb livequery naming convention (lq/lqw)" + }, + { + "label": "Aether Standard Object Fields", + "file_type": "concept", + "source_file": "documentation/AE__Architecture.md", + "source_location": "6.1. Core Standard Fields", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__architecture_standard_fields", + "community": 101, + "norm_label": "aether standard object fields" + }, + { + "label": "Aether Project Naming Conventions", + "file_type": "document", + "source_file": "documentation/AE__Naming_Conventions.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__naming_conventions_naming", + "community": 101, + "norm_label": "aether project naming conventions" + }, + { + "label": "File Naming Rules (ae_module__concept.ts)", + "file_type": "rationale", + "source_file": "documentation/AE__Naming_Conventions.md", + "source_location": "2. File Naming", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__naming_conventions_file_naming", + "community": 101, + "norm_label": "file naming rules (ae_module__concept.ts)" + }, + { + "label": "Function Naming Prefixes (load/create/update/delete)", + "file_type": "rationale", + "source_file": "documentation/AE__Naming_Conventions.md", + "source_location": "3. Function and Variable Naming", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__naming_conventions_function_naming", + "community": 101, + "norm_label": "function naming prefixes (load/create/update/delete)" + }, + { + "label": "ID Naming Convention (object_type_id, not _id_random)", + "file_type": "rationale", + "source_file": "documentation/AE__Naming_Conventions.md", + "source_location": "4. Object and Property Naming - IDs", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__naming_conventions_id_convention", + "community": 101, + "norm_label": "id naming convention (object_type_id, not _id_random)" + }, + { + "label": "Aether Permissions and Security", + "file_type": "document", + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__permissions_and_security_permissions", + "community": 85, + "norm_label": "aether permissions and security" + }, + { + "label": "Access Level Hierarchy (super\u2192anonymous)", + "file_type": "concept", + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "Access Level Hierarchy", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__permissions_access_level_hierarchy", + "community": 85, + "norm_label": "access level hierarchy (super\u2192anonymous)" + }, + { + "label": "$ae_loc Permission Store", + "file_type": "concept", + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "$ae_loc Store \u2014 Permission Flags", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__permissions_ae_loc_store", + "community": 85, + "norm_label": "$ae_loc permission store" + }, + { + "label": "Edit Mode Rules (user preference, not permission)", + "file_type": "rationale", + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "Edit Mode \u2014 Critical Rules", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__permissions_edit_mode_rules", + "community": 85, + "norm_label": "edit mode rules (user preference, not permission)" + }, + { + "label": "IDAA Auth-Before-Cache Rule (IDB Caching)", + "file_type": "rationale", + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "IDAA IndexedDB (IDB) Caching \u2014 Auth-Before-Cache Rule", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__permissions_idaa_auth_before_cache", + "community": 85, + "norm_label": "idaa auth-before-cache rule (idb caching)" + }, + { + "label": "Site Passcode Security Warning", + "file_type": "rationale", + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "Site Passcode Security Warning", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_ae__permissions_site_passcode_security", + "community": 85, + "norm_label": "site passcode security warning" + }, + { + "label": "AI Agent Quickstart Guide", + "file_type": "document", + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_bootstrap__ai_agent_quickstart_quickstart", + "community": 74, + "norm_label": "ai agent quickstart guide" + }, + { + "label": "Common Agent Mistakes (10 categories)", + "file_type": "rationale", + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "7. Common Mistakes", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_bootstrap__ai_agent_quickstart_common_mistakes", + "community": 74, + "norm_label": "common agent mistakes (10 categories)" + }, + { + "label": "Svelte 5 Runes Mode Key Patterns", + "file_type": "rationale", + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "4. Svelte 5 Runes Mode \u2014 Key Patterns & Gotchas", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_bootstrap__ai_agent_quickstart_svelte5_patterns", + "community": 74, + "norm_label": "svelte 5 runes mode key patterns" + }, + { + "label": "V3 PATCH \u2014 Object ID in URL not Body", + "file_type": "rationale", + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "2. Critical Rules \u2014 V3 API", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_bootstrap__ai_agent_quickstart_patch_id_rule", + "community": 101, + "norm_label": "v3 patch \u2014 object id in url not body" + }, + { + "label": "Dexie Query Rule (.where not .get for string IDs)", + "file_type": "rationale", + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "5. V3 API Patterns \u2014 Dexie queries", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_bootstrap__ai_agent_quickstart_dexie_where", + "community": 74, + "norm_label": "dexie query rule (.where not .get for string ids)" + }, + { + "label": "IDAA Composite Module Architecture", + "file_type": "document", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Architecture: Composite Module", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_idaa_architecture", + "community": 61, + "norm_label": "idaa composite module architecture" + }, + { + "label": "IDAA Novi UUID Verification Flow", + "file_type": "concept", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Authentication: Novi UUID System", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_novi_verification", + "community": 61, + "norm_label": "idaa novi uuid verification flow" + }, + { + "label": "IDAA Triple Linkage (Novi UUID external_person_id)", + "file_type": "rationale", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Identity Linkage: The Novi UUID Rule", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_triple_linkage", + "community": 61, + "norm_label": "idaa triple linkage (novi uuid external_person_id)" + }, + { + "label": "IDAA Jitsi Breakout Links (iframe persistence)", + "file_type": "concept", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Breakout Links and Iframe Persistence", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_breakout_links", + "community": 61, + "norm_label": "idaa jitsi breakout links (iframe persistence)" + }, + { + "label": "IDAA Iframe Integration (Novi CMS embed)", + "file_type": "concept", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Iframe Integration", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_iframe_integration", + "community": 61, + "norm_label": "idaa iframe integration (novi cms embed)" + }, + { + "label": "IDAA Bulletin Board Module (Posts)", + "file_type": "concept", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Module 2: Bulletin Board (BB)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_bb_module", + "community": 61, + "norm_label": "idaa bulletin board module (posts)" + }, + { + "label": "IDAA Recovery Meetings Module (Events reuse)", + "file_type": "concept", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Module 3: Recovery Meetings", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_recovery_meetings", + "community": 61, + "norm_label": "idaa recovery meetings module (events reuse)" + }, + { + "label": "IDAA Jitsi Reports Module", + "file_type": "concept", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Module 5: Jitsi Reports", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_jitsi_reports", + "community": 61, + "norm_label": "idaa jitsi reports module" + }, + { + "label": "IDAA State Stores (idaa_loc/sess/slct/trig)", + "file_type": "concept", + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "State Management (ae_idaa_stores.ts)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_client__idaa_idaa_stores", + "community": 61, + "norm_label": "idaa state stores (idaa_loc/sess/slct/trig)" + }, + { + "label": "Svelte 5 Learnings and Best Practices (Gemini)", + "file_type": "document", + "source_file": "documentation/GEMINI__Svelte_and_Me.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_gemini__svelte_and_me_svelte5_learnings", + "community": 74, + "norm_label": "svelte 5 learnings and best practices (gemini)" + }, + { + "label": "Svelte Async/Await in Runes Mode Rule", + "file_type": "rationale", + "source_file": "documentation/GEMINI__Svelte_and_Me.md", + "source_location": "1. Async/Await in Svelte (Runes Mode)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_gemini__svelte_async_await_rule", + "community": 74, + "norm_label": "svelte async/await in runes mode rule" + }, + { + "label": "Svelte 5 Bindable Initialization Rule", + "file_type": "rationale", + "source_file": "documentation/GEMINI__Svelte_and_Me.md", + "source_location": "5. Safe Property Binding", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_gemini__svelte_bindable_init_rule", + "community": 74, + "norm_label": "svelte 5 bindable initialization rule" + }, + { + "label": "Aether API V3 Frontend Integration Guide", + "file_type": "document", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_api_guide", + "community": 75, + "norm_label": "aether api v3 frontend integration guide" + }, + { + "label": "V3 API Auth Headers (x-aether-api-key + x-account-id)", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "1. Authentication and Security", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_auth_headers", + "community": 75, + "norm_label": "v3 api auth headers (x-aether-api-key + x-account-id)" + }, + { + "label": "V3 Bootstrap FQDN Handshake", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "2. Bootstrapping (The FQDN Handshake)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_bootstrap_handshake", + "community": 64, + "norm_label": "v3 bootstrap fqdn handshake" + }, + { + "label": "V3 JSON Field Auto-Serialization Rule", + "file_type": "rationale", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "3.C. POST Create / PATCH Update \u2014 *_json field serialization", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_json_serialization", + "community": 75, + "norm_label": "v3 json field auto-serialization rule" + }, + { + "label": "V3 Uniform Lookup System", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "4. V3 Uniform Lookup System", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_lookup_system", + "community": 75, + "norm_label": "v3 uniform lookup system" + }, + { + "label": "IDAA Server-Side Novi Verification Endpoint", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "12. IDAA: Server-Side Novi Member Verification", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_novi_verify_endpoint", + "community": 61, + "norm_label": "idaa server-side novi verification endpoint" + }, + { + "label": "Event Exhibit Tracking Export (Leads Export)", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "10. Event Exhibit Tracking Export", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_leads_export", + "community": 75, + "norm_label": "event exhibit tracking export (leads export)" + }, + { + "label": "Aether API V3 WebSocket Integration Guide", + "file_type": "document", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend_websockets.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_websockets_ws_guide", + "community": 75, + "norm_label": "aether api v3 websocket integration guide" + }, + { + "label": "V3 WebSocket Message Schema (WS_Message_V3)", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend_websockets.md", + "source_location": "3. The V3 Message Schema", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_websockets_ws_message_schema", + "community": 75, + "norm_label": "v3 websocket message schema (ws_message_v3)" + }, + { + "label": "WebSocket Granular Routing via Redis (V3)", + "file_type": "rationale", + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend_websockets.md", + "source_location": "1. Key Improvements (V2 vs V3)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_api_v3_websockets_ws_granular_routing", + "community": 75, + "norm_label": "websocket granular routing via redis (v3)" + }, + { + "label": "Onsite Badge Printing Guide", + "file_type": "document", + "source_file": "documentation/GUIDE__AE_Events_Badges_Onsite.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_events_badges_onsite_badge_printing", + "community": 91, + "norm_label": "onsite badge printing guide" + }, + { + "label": "Zebra ZC10L PVC Card Printer Setup", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_Events_Badges_Onsite.md", + "source_location": "Zebra ZC10L \u2014 PVC Card Printer", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_events_badges_onsite_zebra_zc10l", + "community": 91, + "norm_label": "zebra zc10l pvc card printer setup" + }, + { + "label": "Epson ColorWorks C3500 Fan-Fold Label Printer", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_Events_Badges_Onsite.md", + "source_location": "Epson ColorWorks C3500 \u2014 Fan-Fold Label Printer", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_events_badges_onsite_epson_c3500", + "community": 91, + "norm_label": "epson colorworks c3500 fan-fold label printer" + }, + { + "label": "Events Onsite Operations Runbook", + "file_type": "document", + "source_file": "documentation/GUIDE__AE_Events_Onsite_Runbook.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_events_onsite_runbook_onsite_ops", + "community": 91, + "norm_label": "events onsite operations runbook" + }, + { + "label": "Speaker Ready Room (SRR) Workflow", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_Events_Onsite_Runbook.md", + "source_location": "Speaker Ready Room (SRR)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_events_onsite_runbook_srr_workflow", + "community": 91, + "norm_label": "speaker ready room (srr) workflow" + }, + { + "label": "Aether UI Design System Style Guidelines", + "file_type": "document", + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_ui_style_guidelines_style_guide", + "community": 99, + "norm_label": "aether ui design system style guidelines" + }, + { + "label": "AE Firefly Theme (Default Palette)", + "file_type": "concept", + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": "3. The AE_Firefly Theme", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_ui_style_ae_firefly_theme", + "community": 99, + "norm_label": "ae firefly theme (default palette)" + }, + { + "label": "Color Token Rules (use theme tokens, not hardcoded colors)", + "file_type": "rationale", + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": "4. Color Token Rules", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_ui_style_token_rules", + "community": 99, + "norm_label": "color token rules (use theme tokens, not hardcoded colors)" + }, + { + "label": "WCAG 2.1 AA Accessibility Requirements", + "file_type": "rationale", + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": "9. Accessibility (Section 508 / WCAG 2.1 AA)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_ui_style_wcag_accessibility", + "community": 99, + "norm_label": "wcag 2.1 aa accessibility requirements" + }, + { + "label": "Skeleton v4 Mandate (preset-* not variant-*)", + "file_type": "rationale", + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": "2. Technical Stack Mandates", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__ae_ui_style_skeleton_v4_mandate", + "community": 99, + "norm_label": "skeleton v4 mandate (preset-* not variant-*)" + }, + { + "label": "Frontend Development SOP", + "file_type": "document", + "source_file": "documentation/GUIDE__Development.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__development_dev_sop", + "community": 69, + "norm_label": "frontend development sop" + }, + { + "label": "svelte-check Zero-Tolerance Mandate", + "file_type": "rationale", + "source_file": "documentation/GUIDE__Development.md", + "source_location": "1. Verification", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__development_svelte_check_mandate", + "community": 69, + "norm_label": "svelte-check zero-tolerance mandate" + }, + { + "label": "element_ae_obj_field_editor (Inline Field Edit Component)", + "file_type": "concept", + "source_file": "documentation/GUIDE__Development.md", + "source_location": "6. Inline Field Editing", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__development_inline_field_editor", + "community": 69, + "norm_label": "element_ae_obj_field_editor (inline field edit component)" + }, + { + "label": "URL Parameters (iframe, uuid, session_id, etc.)", + "file_type": "concept", + "source_file": "documentation/GUIDE__Development.md", + "source_location": "7. URL Parameters", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__development_url_params", + "community": 69, + "norm_label": "url parameters (iframe, uuid, session_id, etc.)" + }, + { + "label": "Docker CI Cache Policy", + "file_type": "document", + "source_file": "documentation/GUIDE__Docker_CI_Cache_Policy.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__docker_ci_cache_policy_docker_ci", + "community": 198, + "norm_label": "docker ci cache policy" + }, + { + "label": "LiveQuery + Svelte 5 Stability Patterns", + "file_type": "document", + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "community": 64, + "norm_label": "livequery + svelte 5 stability patterns" + }, + { + "label": "try_cache:false Bug (Cold-Start Nested Load Race)", + "file_type": "rationale", + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "Critical Discovery (2026-02-26): The try_cache: false Bug", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__sveltekit2_svelte5_dexiejs_try_cache_bug", + "community": 64, + "norm_label": "try_cache:false bug (cold-start nested load race)" + }, + { + "label": "build_tmp_sort Pattern (Pre-computed IDB Sort Keys)", + "file_type": "rationale", + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "IDB Sort: build_tmp_sort Pattern", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__sveltekit2_svelte5_dexiejs_build_tmp_sort", + "community": 64, + "norm_label": "build_tmp_sort pattern (pre-computed idb sort keys)" + }, + { + "label": "untrack() Reactive-Tracking Trap", + "file_type": "rationale", + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "The untrack() Reactive-Tracking Trap", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__sveltekit2_svelte5_dexiejs_untrack_trap", + "community": 64, + "norm_label": "untrack() reactive-tracking trap" + }, + { + "label": "Async $effect Guard-Reset Infinite Loop Pattern", + "file_type": "rationale", + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "Async Functions Called from $effect: Guard-Reset Infinite Loop", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__sveltekit2_svelte5_dexiejs_effect_guard_loop", + "community": 64, + "norm_label": "async $effect guard-reset infinite loop pattern" + }, + { + "label": "SvelteKit Layout Auth Gate Execution Order", + "file_type": "rationale", + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "SvelteKit Layout Hierarchy: Security and Execution Order", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__sveltekit2_svelte5_dexiejs_auth_gate_layout", + "community": 85, + "norm_label": "sveltekit layout auth gate execution order" + }, + { + "label": "Bootstrap Race: Gate on $slct.account_id not $ae_loc", + "file_type": "rationale", + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "Bootstrap Race: Account-scoped Loads Before account_id Is Set", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_guide__sveltekit2_svelte5_dexiejs_account_id_gate", + "community": 64, + "norm_label": "bootstrap race: gate on $slct.account_id not $ae_loc" + }, + { + "label": "Documentation Index", + "file_type": "document", + "source_file": "documentation/README__Docs_Index.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_readme__docs_index_docs_index", + "community": 69, + "norm_label": "documentation index" + }, + { + "label": "Aether Way Reactivity Patterns (GEMINI)", + "file_type": "rationale", + "source_file": "GEMINI.md", + "source_location": "Reactivity Patterns (The Aether Way)", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_gemini_reactivity_patterns", + "community": 74, + "norm_label": "aether way reactivity patterns (gemini)" + }, + { + "label": "Bootstrap Paradox (x-no-account-id for initial lookup)", + "file_type": "rationale", + "source_file": "GEMINI.md", + "source_location": "Recent Strategy & Patterns", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "aether_app_sveltekit_gemini_bootstrap_paradox", + "community": 64, + "norm_label": "bootstrap paradox (x-no-account-id for initial lookup)" + }, + { + "label": "Badge Templates Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badge_templates_badge_template_module", + "community": 42, + "norm_label": "badge templates module" + }, + { + "label": "Event Badge Template (DB Object)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 5", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badge_templates_event_badge_template", + "community": 42, + "norm_label": "event badge template (db object)" + }, + { + "label": "Badge Type List (template field)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 65", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badge_templates_badge_type_list", + "community": 42, + "norm_label": "badge type list (template field)" + }, + { + "label": "External Badge CSS (style_href)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 134", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "rationale": "External CSS allows mid-event visual fixes without a SvelteKit deployment \u2014 style_href is fetched at print time.", + "id": "documentation_module__ae_events_badge_templates_external_css", + "community": 42, + "norm_label": "external badge css (style_href)" + }, + { + "label": "Duplex Field (single/double-sided printing)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 118", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badge_templates_duplex_field", + "community": 42, + "norm_label": "duplex field (single/double-sided printing)" + }, + { + "label": "Badge Layout Codes", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 178", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badge_templates_layout_codes", + "community": 42, + "norm_label": "badge layout codes" + }, + { + "label": "Badge Template cfg_json Reference", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 197", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badge_templates_cfg_json", + "community": 42, + "norm_label": "badge template cfg_json reference" + }, + { + "label": "controls_cfg (print controls access)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 296", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badge_templates_controls_cfg", + "community": 42, + "norm_label": "controls_cfg (print controls access)" + }, + { + "label": "Print Layout Architecture", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 384", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badge_templates_print_layout_arch", + "community": 42, + "norm_label": "print layout architecture" + }, + { + "label": "Cross-Browser Print Behavior (Firefox vs Chrome)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 428", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "rationale": "Chrome does not honor @page { size } for Save as PDF \u2014 a Chrome design decision. Firefox is recommended for print-to-PDF proofing.", + "id": "documentation_module__ae_events_badge_templates_cross_browser_print", + "community": 42, + "norm_label": "cross-browser print behavior (firefox vs chrome)" + }, + { + "label": "Badges Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badges_badges_module", + "community": 42, + "norm_label": "badges module" + }, + { + "label": "Event Badge (DB Object)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 11", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badges_event_badge", + "community": 70, + "norm_label": "event badge (db object)" + }, + { + "label": "Override Fields Pattern", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 24", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "rationale": "Established in 2018 to protect staff/attendee corrections from being overwritten during scheduled cron syncs from external systems (iMIS, Novi, etc.).", + "id": "documentation_module__ae_events_badges_override_fields_pattern", + "community": 42, + "norm_label": "override fields pattern" + }, + { + "label": "External System Integration (Pull-Only)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 48", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badges_external_system_integration", + "community": 42, + "norm_label": "external system integration (pull-only)" + }, + { + "label": "Badge Access Control Levels", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 57", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badges_access_control", + "community": 42, + "norm_label": "badge access control levels" + }, + { + "label": "Attendee Self-Service Review", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 67", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badges_attendee_self_service", + "community": 42, + "norm_label": "attendee self-service review" + }, + { + "label": "Badge Print Tracking (print_count, print_first_datetime)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 122", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_badges_print_tracking", + "community": 42, + "norm_label": "badge print tracking (print_count, print_first_datetime)" + }, + { + "label": "Launcher Module (Podium Display)", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_launcher_module", + "community": 86, + "norm_label": "launcher module (podium display)" + }, + { + "label": "Launcher Operational Modes (Default/Onsite/Native)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 10", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_operational_modes", + "community": 86, + "norm_label": "launcher operational modes (default/onsite/native)" + }, + { + "label": "Launcher Display Views", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 23", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_display_views", + "community": 86, + "norm_label": "launcher display views" + }, + { + "label": "Launcher Sync Engine and File Warming", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 35", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_sync_engine", + "community": 86, + "norm_label": "launcher sync engine and file warming" + }, + { + "label": "Launcher Download Priority (4-tier chronological)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 43", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_download_priority", + "community": 86, + "norm_label": "launcher download priority (4-tier chronological)" + }, + { + "label": "Launcher Configuration Menu", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Events_Launcher_Config_Menu.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_config_menu_config_menu", + "community": 86, + "norm_label": "launcher configuration menu" + }, + { + "label": "Config Menu Visibility Modes (Standard/Technical/Native)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Config_Menu.md", + "source_location": "line 13", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_config_menu_visibility_modes", + "community": 86, + "norm_label": "config menu visibility modes (standard/technical/native)" + }, + { + "label": "Config Menu Section Expansion Logic (collapsed/auto/pinned)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Config_Menu.md", + "source_location": "line 21", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_config_menu_section_expansion", + "community": 86, + "norm_label": "config menu section expansion logic (collapsed/auto/pinned)" + }, + { + "label": "Launcher Native Integration (Electron)", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_native_native_integration", + "community": 79, + "norm_label": "launcher native integration (electron)" + }, + { + "label": "Three-Layer Electron Bridge (Engine/Gatekeeper/Messenger)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 22", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "rationale": "Decoupled three-layer model ensures security and cross-platform flexibility \u2014 preload only exposes whitelisted IPC channels.", + "id": "documentation_module__ae_events_launcher_native_three_layer_bridge", + "community": 79, + "norm_label": "three-layer electron bridge (engine/gatekeeper/messenger)" + }, + { + "label": "electron_relay.ts (SvelteKit Relay Layer)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 39", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_native_electron_relay", + "community": 79, + "norm_label": "electron_relay.ts (sveltekit relay layer)" + }, + { + "label": "Zero-Config Lifecycle (seed.json bootstrap)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 53", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_native_zero_config_lifecycle", + "community": 79, + "norm_label": "zero-config lifecycle (seed.json bootstrap)" + }, + { + "label": "Hashed Cache Pattern (SHA-256)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 68", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_native_hashed_cache", + "community": 79, + "norm_label": "hashed cache pattern (sha-256)" + }, + { + "label": "Safe Handover Launch Sequence", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 85", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_native_safe_handover", + "community": 79, + "norm_label": "safe handover launch sequence" + }, + { + "label": "Launch Profiles and Native Templates", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 197", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "rationale": "Launch Profiles are policy (Svelte-side); Native Templates are executable strings (Electron-side). Keeping them separate prevents the bridge from mixing config objects with runtime commands and allows profile evolution without rebuilding Electron.", + "id": "documentation_module__ae_events_launcher_native_launch_profiles", + "community": 79, + "norm_label": "launch profiles and native templates" + }, + { + "label": "AppleScript Hardening (temp .scpt file approach)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 261", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "rationale": "The -e approach breaks on multi-line scripts and file paths containing spaces, quotes, or parentheses \u2014 common in conference presentation filenames. Writing to a temp .scpt file and running osascript is robust.", + "id": "documentation_module__ae_events_launcher_native_applescript_hardened", + "community": 79, + "norm_label": "applescript hardening (temp .scpt file approach)" + }, + { + "label": "IPC Whitelist / electron_relay.ts API", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 147", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_launcher_native_ipc_whitelist", + "community": 79, + "norm_label": "ipc whitelist / electron_relay.ts api" + }, + { + "label": "Exhibitor Leads Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_leads_module", + "community": 70, + "norm_label": "exhibitor leads module" + }, + { + "label": "Event Exhibit (DB Object)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 139", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_event_exhibit", + "community": 70, + "norm_label": "event exhibit (db object)" + }, + { + "label": "Event Exhibit Tracking (DB Object / Lead Record)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 155", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_event_exhibit_tracking", + "community": 70, + "norm_label": "event exhibit tracking (db object / lead record)" + }, + { + "label": "QR Scan Modes (Confirm/Auto/Multi)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 91", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_qr_scan_modes", + "community": 70, + "norm_label": "qr scan modes (confirm/auto/multi)" + }, + { + "label": "Capture Identity (external_person_id + group resolution)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 222", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_capture_identity", + "community": 70, + "norm_label": "capture identity (external_person_id + group resolution)" + }, + { + "label": "Lead Soft-Delete and Re-enable Pattern", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 236", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_soft_delete_reenable", + "community": 70, + "norm_label": "lead soft-delete and re-enable pattern" + }, + { + "label": "allow_tracking Opt-In (lead capture gate)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 51", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_allow_tracking", + "community": 70, + "norm_label": "allow_tracking opt-in (lead capture gate)" + }, + { + "label": "Stripe Payment Component (Leads Licensing)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 252", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_stripe_payment", + "community": 70, + "norm_label": "stripe payment component (leads licensing)" + }, + { + "label": "PWA / Offline-First (Leads module)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 211", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_leads_pwa_offline", + "community": 70, + "norm_label": "pwa / offline-first (leads module)" + }, + { + "label": "Presentation Management Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_presentation_management_pres_mgmt_module", + "community": 44, + "norm_label": "presentation management module" + }, + { + "label": "Pres Mgmt Object Hierarchy (Event/Location/Session/Presentation/Presenter/File)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 11", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_presentation_management_object_hierarchy", + "community": 44, + "norm_label": "pres mgmt object hierarchy (event/location/session/presentation/presenter/file)" + }, + { + "label": "File Attachment Levels (Presenter/Session/Location/Event/Presentation)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 45", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_presentation_management_file_attachment_levels", + "community": 44, + "norm_label": "file attachment levels (presenter/session/location/event/presentation)" + }, + { + "label": "mod_pres_mgmt_json Configuration", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 87", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_presentation_management_mod_pres_mgmt_json", + "community": 44, + "norm_label": "mod_pres_mgmt_json configuration" + }, + { + "label": "Client Setup Variation (Minimal/Mid-range/Full)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 67", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_events_presentation_management_client_setup_variation", + "community": 44, + "norm_label": "client setup variation (minimal/mid-range/full)" + }, + { + "label": "IDAA Archives Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_IDAA_Archives.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_archives_idaa_archives_module", + "community": 92, + "norm_label": "idaa archives module" + }, + { + "label": "IDAA Archives Security (All Private)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_IDAA_Archives.md", + "source_location": "line 22", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_archives_security_requirement", + "community": 92, + "norm_label": "idaa archives security (all private)" + }, + { + "label": "IDAA Bulletin Board Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_IDAA_Bulletin_Board.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_bulletin_board_idaa_bb_module", + "community": 92, + "norm_label": "idaa bulletin board module" + }, + { + "label": "IDAA BB Sev-1 Privacy Requirement", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_IDAA_Bulletin_Board.md", + "source_location": "line 25", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_bulletin_board_sev1_privacy", + "community": 92, + "norm_label": "idaa bb sev-1 privacy requirement" + }, + { + "label": "IDAA Recovery Meetings Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_IDAA_Recovery_Meetings.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_recovery_meetings_recovery_meetings_module", + "community": 92, + "norm_label": "idaa recovery meetings module" + }, + { + "label": "Recovery Meetings reuses ae_events lib", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_IDAA_Recovery_Meetings.md", + "source_location": "line 6", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_recovery_meetings_events_lib_reuse", + "community": 92, + "norm_label": "recovery meetings reuses ae_events lib" + }, + { + "label": "IDAA Video Conferences Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_IDAA_Video_Conferences.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_video_conferences_video_conf_module", + "community": 124, + "norm_label": "idaa video conferences module" + }, + { + "label": "Jitsi Meeting Integration", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_IDAA_Video_Conferences.md", + "source_location": "line 7", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_video_conferences_jitsi", + "community": 124, + "norm_label": "jitsi meeting integration" + }, + { + "label": "Breakout Link URL Bootstrap Parameters", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_IDAA_Video_Conferences.md", + "source_location": "line 19", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_idaa_video_conferences_breakout_link", + "community": 124, + "norm_label": "breakout link url bootstrap parameters" + }, + { + "label": "Journals Module", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_journals_module", + "community": 71, + "norm_label": "journals module" + }, + { + "label": "Journal Entry E2EE Encryption", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 46", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_e2ee_encryption", + "community": 71, + "norm_label": "journal entry e2ee encryption" + }, + { + "label": "Journal Security Limitations (passcode_hash unimplemented)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 54", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_security_limitations", + "community": 71, + "norm_label": "journal security limitations (passcode_hash unimplemented)" + }, + { + "label": "Journal Access and Privacy Requirements", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 68", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_access_privacy", + "community": 71, + "norm_label": "journal access and privacy requirements" + }, + { + "label": "Journals Config Map", + "file_type": "document", + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_config_map_config_map", + "community": 71, + "norm_label": "journals config map" + }, + { + "label": "Journals Module-Level Settings (journals_loc)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 8", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_config_map_module_level_settings", + "community": 71, + "norm_label": "journals module-level settings (journals_loc)" + }, + { + "label": "Journal-Level Settings (Remote DB)", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 21", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_config_map_journal_level_settings", + "community": 71, + "norm_label": "journal-level settings (remote db)" + }, + { + "label": "Journal Entry-Level Settings", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 40", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_config_map_entry_level_settings", + "community": 71, + "norm_label": "journal entry-level settings" + }, + { + "label": "Journal Encryption Behavior and Gaps", + "file_type": "concept", + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 62", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_module__ae_journals_config_map_encryption_behavior", + "community": 71, + "norm_label": "journal encryption behavior and gaps" + }, + { + "label": "TODO: Active Agent Tasks", + "file_type": "document", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_active_tasks", + "community": 87, + "norm_label": "todo: active agent tasks" + }, + { + "label": "LCI Pres Mgmt Restoration (complete 2026-06-16)", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 8", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_lci_pres_mgmt_restoration", + "community": 44, + "norm_label": "lci pres mgmt restoration (complete 2026-06-16)" + }, + { + "label": "Launcher Wallpaper Reliability (open)", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 36", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_launcher_wallpaper_reliability", + "community": 87, + "norm_label": "launcher wallpaper reliability (open)" + }, + { + "label": "Badges Follow-Ups (post-Axonius DC)", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 42", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_badges_followups", + "community": 42, + "norm_label": "badges follow-ups (post-axonius dc)" + }, + { + "label": "V3 CRUD Migration (complete 2026-06-23)", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 58", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_v3_crud_migration_complete", + "community": 87, + "norm_label": "v3 crud migration (complete 2026-06-23)" + }, + { + "label": "Site Passcode JWT Migration (mostly complete 2026-06-18)", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 67", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_site_passcode_jwt_migration", + "community": 87, + "norm_label": "site passcode jwt migration (mostly complete 2026-06-18)" + }, + { + "label": "Svelte 4 to 5 Store Migration (PersistedState)", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 80", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_svelte5_store_migration", + "community": 87, + "norm_label": "svelte 4 to 5 store migration (persistedstate)" + }, + { + "label": "IDB Sort + Content Version Rollout", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 88", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_idb_sort_migration", + "community": 87, + "norm_label": "idb sort + content version rollout" + }, + { + "label": "Journal Entry Config Follow-ups (passcode auth, encryption)", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 101", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_journal_entry_followups", + "community": 71, + "norm_label": "journal entry config follow-ups (passcode auth, encryption)" + }, + { + "label": "Service Worker skipWaiting + clients.claim Fix (complete 2026-06-03)", + "file_type": "concept", + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 127", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_todo__agents_service_worker_fix", + "community": 87, + "norm_label": "service worker skipwaiting + clients.claim fix (complete 2026-06-03)" + }, + { + "label": "Common Agent Mistakes Catalog", + "file_type": "document", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_mistake_catalog", + "community": 44, + "norm_label": "common agent mistakes catalog" + }, + { + "label": "Mistake #1: IDAA Content Exposed Publicly (Sev-1)", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 14", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_idaa_public_exposure", + "community": 92, + "norm_label": "mistake #1: idaa content exposed publicly (sev-1)" + }, + { + "label": "Mistake #2: Object ID in PATCH body (400 errors)", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 23", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_object_id_in_patch", + "community": 44, + "norm_label": "mistake #2: object id in patch body (400 errors)" + }, + { + "label": "Mistake #3: Coarse-Store $effect Reactivity Loops", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 32", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_coarse_store_effect_loops", + "community": 44, + "norm_label": "mistake #3: coarse-store $effect reactivity loops" + }, + { + "label": "Mistake #4: Dexie .get() with String Object ID (false miss)", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 41", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_dexie_get_string_id", + "community": 44, + "norm_label": "mistake #4: dexie .get() with string object id (false miss)" + }, + { + "label": "Mistake #7: Pre-Stringifying *_json Before API Wrappers (double encode)", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 66", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_pre_stringify_json", + "community": 44, + "norm_label": "mistake #7: pre-stringifying *_json before api wrappers (double encode)" + }, + { + "label": "Mistake #9: Missing IDB_CONTENT_VERSIONS Bump After properties_to_save Change", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 85", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_idb_version_bump", + "community": 44, + "norm_label": "mistake #9: missing idb_content_versions bump after properties_to_save change" + }, + { + "label": "Mistake #15: Incomplete Cache Clearing (SW + Cache Storage omitted)", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 142", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "rationale": "Sev-1 class impact. Clearing IDB/localStorage without clearing SW and Cache Storage is a placebo \u2014 the old JS bundle is served again on next reload.", + "id": "documentation_reference__common_agent_mistakes_incomplete_cache_clearing", + "community": 87, + "norm_label": "mistake #15: incomplete cache clearing (sw + cache storage omitted)" + }, + { + "label": "Mistake #16: Local Shadow Field Silently Bypasses Admin-Synced Field", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 195", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_shadow_field_bypass", + "community": 44, + "norm_label": "mistake #16: local shadow field silently bypasses admin-synced field" + }, + { + "label": "Mistake #17: SWR await After Write Does Not Mean Cache is Fresh", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 213", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_swr_await_stale", + "community": 44, + "norm_label": "mistake #17: swr await after write does not mean cache is fresh" + }, + { + "label": "Mistake #18: Conditional Sync Gates Are Effectively Undebuggable", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 231", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_conditional_sync_gate", + "community": 44, + "norm_label": "mistake #18: conditional sync gates are effectively undebuggable" + }, + { + "label": "Mistake #19: Optional Param Syntax in .svelte Files Breaks Vite Build", + "file_type": "concept", + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 250", + "source_url": null, + "captured_at": "2026-06-23", + "author": null, + "contributor": null, + "id": "documentation_reference__common_agent_mistakes_optional_param_svelte", + "community": 44, + "norm_label": "mistake #19: optional param syntax in .svelte files breaks vite build" + }, + { + "label": "Pres Mgmt Config Cleanup Project", + "file_type": "document", + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "community": 19, + "norm_label": "pres mgmt config cleanup project" + }, + { + "label": "PressMgmtRemoteCfg TypeScript Interface", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 62", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_events_pressmgmt_config_cleanup_pressmgmt_remote_cfg", + "community": 19, + "norm_label": "pressmgmtremotecfg typescript interface" + }, + { + "label": "Pres Mgmt Config Naming Convention (hide__/show__ prefix rule)", + "file_type": "rationale", + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 44", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_events_pressmgmt_config_cleanup_naming_convention", + "community": 19, + "norm_label": "pres mgmt config naming convention (hide__/show__ prefix rule)" + }, + { + "label": "pres_mgmt_loc PersistedState Store", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 143", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store", + "community": 19, + "norm_label": "pres_mgmt_loc persistedstate store" + }, + { + "label": "Pres Mgmt Config UI Page (/pres_mgmt/config/)", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 165", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_events_pressmgmt_config_cleanup_config_ui_page", + "community": 19, + "norm_label": "pres mgmt config ui page (/pres_mgmt/config/)" + }, + { + "label": "lock_config Removal Rationale", + "file_type": "rationale", + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 320", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_events_pressmgmt_config_cleanup_lock_config_removal", + "community": 19, + "norm_label": "lock_config removal rationale" + }, + { + "label": "sync_config__event_pres_mgmt() Rewrite", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 155", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_events_pressmgmt_config_cleanup_sync_config_function", + "community": 19, + "norm_label": "sync_config__event_pres_mgmt() rewrite" + }, + { + "label": "POC Settings Master Switch UI", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 185", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_events_pressmgmt_config_cleanup_poc_settings", + "community": 19, + "norm_label": "poc settings master switch ui" + }, + { + "label": "AE Obj Field Editor Rewrite Project", + "file_type": "document", + "source_file": "documentation/PROJECT__AE_Obj_Field_Editor_New.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "documentation_project__ae_obj_field_editor_new_document", + "community": 163, + "norm_label": "ae obj field editor rewrite project" + }, + { + "label": "element_ae_obj_field_editor.svelte (canonical)", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Obj_Field_Editor_New.md", + "source_location": "line 38", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_obj_field_editor_new_element_ae_obj_field_editor", + "community": 163, + "norm_label": "element_ae_obj_field_editor.svelte (canonical)" + }, + { + "label": "Site Passcode Security Project", + "file_type": "document", + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "documentation_project__ae_site_passcode_security_document", + "community": 102, + "norm_label": "site passcode security project" + }, + { + "label": "Passcode Security Threat Model", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 30", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_site_passcode_security_threat_model", + "community": 102, + "norm_label": "passcode security threat model" + }, + { + "label": "API-Verified Passcode + JWT Session", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 48", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_site_passcode_security_api_verified_auth", + "community": 102, + "norm_label": "api-verified passcode + jwt session" + }, + { + "label": "/authenticate_passcode Backend Endpoint", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 122", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_site_passcode_security_authenticate_passcode_endpoint", + "community": 102, + "norm_label": "/authenticate_passcode backend endpoint" + }, + { + "label": "JWT Per-Role TTL Decisions", + "file_type": "concept", + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 70", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_site_passcode_security_role_ttl", + "community": 102, + "norm_label": "jwt per-role ttl decisions" + }, + { + "label": "access_code_kv_json localStorage Exposure Bug", + "file_type": "rationale", + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 16", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__ae_site_passcode_security_access_code_kv_json_exposure", + "community": 102, + "norm_label": "access_code_kv_json localstorage exposure bug" + }, + { + "label": "Documentation Refresh and Archive Plan 2026", + "file_type": "document", + "source_file": "documentation/PROJECT__Documentation_Refresh_and_Archive_Plan_2026.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "documentation_project__documentation_refresh_document", + "community": 76, + "norm_label": "documentation refresh and archive plan 2026" + }, + { + "label": "Doc Naming Standard (BOOTSTRAP/GUIDE/MODULE/PROJECT/PROPOSAL/REFERENCE)", + "file_type": "concept", + "source_file": "documentation/PROJECT__Documentation_Refresh_and_Archive_Plan_2026.md", + "source_location": "line 8", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__documentation_refresh_naming_standard", + "community": 76, + "norm_label": "doc naming standard (bootstrap/guide/module/project/proposal/reference)" + }, + { + "label": "Doc Archive Strategy (documentation/archive/)", + "file_type": "concept", + "source_file": "documentation/PROJECT__Documentation_Refresh_and_Archive_Plan_2026.md", + "source_location": "line 32", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__documentation_refresh_archive_strategy", + "community": 76, + "norm_label": "doc archive strategy (documentation/archive/)" + }, + { + "label": "Module Coverage Baseline (active module docs)", + "file_type": "concept", + "source_file": "documentation/PROJECT__Documentation_Refresh_and_Archive_Plan_2026.md", + "source_location": "line 19", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__documentation_refresh_module_coverage", + "community": 76, + "norm_label": "module coverage baseline (active module docs)" + }, + { + "label": "IDAA idaa_loc Svelte 5 PersistedState Migration Project", + "file_type": "document", + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "documentation_project__idaa_stores_svelte5_migration_document", + "community": 19, + "norm_label": "idaa idaa_loc svelte 5 persistedstate migration project" + }, + { + "label": "idaa_loc Legacy persisted() Store", + "file_type": "concept", + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 9", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__idaa_stores_svelte5_migration_idaa_loc_store", + "community": 19, + "norm_label": "idaa_loc legacy persisted() store" + }, + { + "label": "idaa_loc Consumer File Inventory (29 files)", + "file_type": "concept", + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 38", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__idaa_stores_svelte5_migration_consumer_inventory", + "community": 19, + "norm_label": "idaa_loc consumer file inventory (29 files)" + }, + { + "label": "IDAA Migration Safety Rules (auth-critical)", + "file_type": "rationale", + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 99", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__idaa_stores_svelte5_migration_safety_rules", + "community": 19, + "norm_label": "idaa migration safety rules (auth-critical)" + }, + { + "label": "IDAA Migration Risk Register", + "file_type": "concept", + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 228", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__idaa_stores_svelte5_migration_risk_register", + "community": 19, + "norm_label": "idaa migration risk register" + }, + { + "label": "Svelte 4 Store to Svelte 5 State Migration Project", + "file_type": "document", + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "documentation_project__stores_svelte5_migration_document", + "community": 19, + "norm_label": "svelte 4 store to svelte 5 state migration project" + }, + { + "label": "Events Module Store Migration (Complete)", + "file_type": "concept", + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 24", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__stores_svelte5_migration_events_module_complete", + "community": 19, + "norm_label": "events module store migration (complete)" + }, + { + "label": "PersistedState Migration Pattern (with __version stamping)", + "file_type": "concept", + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 66", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__stores_svelte5_migration_persisted_state_pattern", + "community": 19, + "norm_label": "persistedstate migration pattern (with __version stamping)" + }, + { + "label": "ae_loc Remaining Migration (highest-impact)", + "file_type": "concept", + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 52", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__stores_svelte5_migration_ae_loc_remaining", + "community": 19, + "norm_label": "ae_loc remaining migration (highest-impact)" + }, + { + "label": "IDAA Access Denied Corruption Bug (coarse reactivity root cause)", + "file_type": "rationale", + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 17", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__stores_svelte5_migration_idaa_access_denied_bug", + "community": 19, + "norm_label": "idaa access denied corruption bug (coarse reactivity root cause)" + }, + { + "label": "__version Stamping Bug (leads_loc wiped on every load)", + "file_type": "rationale", + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 79", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_project__stores_svelte5_migration_version_stamping_bug", + "community": 19, + "norm_label": "__version stamping bug (leads_loc wiped on every load)" + }, + { + "label": "AE UI/UX Future Ideas Proposal", + "file_type": "document", + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "documentation_proposal__ae_ui_ux_future_ideas_document", + "community": 108, + "norm_label": "ae ui/ux future ideas proposal" + }, + { + "label": "IDAA Recovery Meetings UX Improvements", + "file_type": "concept", + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": "line 10", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_proposal__ae_ui_ux_future_ideas_recovery_meetings_ux", + "community": 108, + "norm_label": "idaa recovery meetings ux improvements" + }, + { + "label": "Favorites Stored Server-Side (data_store record)", + "file_type": "rationale", + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": "line 283", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_proposal__ae_ui_ux_future_ideas_favorites_server_side", + "community": 108, + "norm_label": "favorites stored server-side (data_store record)" + }, + { + "label": "Confirmed Meetings Only Default Filter (item 15)", + "file_type": "concept", + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": "line 436", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_proposal__ae_ui_ux_future_ideas_confirmed_meetings_filter", + "community": 108, + "norm_label": "confirmed meetings only default filter (item 15)" + }, + { + "label": "Live Now / Starting Soon Indicators (item 7)", + "file_type": "concept", + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": "line 228", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "documentation_proposal__ae_ui_ux_future_ideas_live_now_indicator", + "community": 108, + "norm_label": "live now / starting soon indicators (item 7)" + }, + { + "label": "Access Control UX Project (Archived)", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "archive_project__ae_access_control_ux_document", + "community": 76, + "norm_label": "access control ux project (archived)" + }, + { + "label": "ae_auth_error Store (session expired signal)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 138", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_access_control_ux_ae_auth_error_store", + "community": 76, + "norm_label": "ae_auth_error store (session expired signal)" + }, + { + "label": "Session Expired Banner (root layout)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 33", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_access_control_ux_session_expired_banner", + "community": 76, + "norm_label": "session expired banner (root layout)" + }, + { + "label": "element_access_denied.svelte Component", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 148", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_access_control_ux_element_access_denied", + "community": 76, + "norm_label": "element_access_denied.svelte component" + }, + { + "label": "IDAA Novi UUID Gate (intentionally custom, do not touch)", + "file_type": "rationale", + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 52", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_access_control_ux_idaa_novi_uuid_gate", + "community": 76, + "norm_label": "idaa novi uuid gate (intentionally custom, do not touch)" + }, + { + "label": "Docker CI BuildKit Implementation Project (Archived)", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Docker_CI_BuildKit_implement.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_docker_ci_buildkit_document", + "community": 158, + "norm_label": "docker ci buildkit implementation project (archived)" + }, + { + "label": "Multi-Stage BuildKit Dockerfile Pattern", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Docker_CI_BuildKit_implement.md", + "source_location": "line 14", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_docker_ci_buildkit_multistage_dockerfile", + "community": 158, + "norm_label": "multi-stage buildkit dockerfile pattern" + }, + { + "label": "Badges Config Cleanup Project (Archived)", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "archive_project__ae_events_badges_config_cleanup_document", + "community": 19, + "norm_label": "badges config cleanup project (archived)" + }, + { + "label": "BadgesRemoteCfg TypeScript Interface", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 36", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_badges_config_cleanup_badges_remote_cfg", + "community": 19, + "norm_label": "badgesremotecfg typescript interface" + }, + { + "label": "badges_loc PersistedState Store", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 106", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_badges_config_cleanup_badges_loc_store", + "community": 19, + "norm_label": "badges_loc persistedstate store" + }, + { + "label": "Badges edit_permissions Config (per-access-tier field edits)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 57", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_badges_config_cleanup_edit_permissions", + "community": 19, + "norm_label": "badges edit_permissions config (per-access-tier field edits)" + }, + { + "label": "Badges Passcode Security (admin-only config gate)", + "file_type": "rationale", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 206", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_badges_config_cleanup_passcode_security", + "community": 19, + "norm_label": "badges passcode security (admin-only config gate)" + }, + { + "label": "Badges Review Form and Print Project (Archived)", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "archive_project__ae_events_badges_review_print_document", + "community": 19, + "norm_label": "badges review form and print project (archived)" + }, + { + "label": "Two Badge Flows: Remote Review vs Kiosk Print", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 18", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_badges_review_print_two_flows", + "community": 19, + "norm_label": "two badge flows: remote review vs kiosk print" + }, + { + "label": "Badge Auto-Scaling Text (element_fit_text.svelte)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 70", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_badges_review_print_auto_scaling", + "community": 19, + "norm_label": "badge auto-scaling text (element_fit_text.svelte)" + }, + { + "label": "Chrome @page PDF Centering Issue", + "file_type": "rationale", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 140", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_badges_review_print_chrome_pdf_issue", + "community": 19, + "norm_label": "chrome @page pdf centering issue" + }, + { + "label": "Badge Email Delivery Rule (email not email_override)", + "file_type": "rationale", + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 25", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_badges_review_print_email_rule", + "community": 19, + "norm_label": "badge email delivery rule (email not email_override)" + }, + { + "label": "Exhibitor Leads v3 Design Overview (Archived)", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "archive_project__ae_events_exhibitor_leads_v3_document", + "community": 106, + "norm_label": "exhibitor leads v3 design overview (archived)" + }, + { + "label": "Leads Module Four Primary Tabs", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3.md", + "source_location": "line 19", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_exhibitor_leads_v3_four_tabs", + "community": 106, + "norm_label": "leads module four primary tabs" + }, + { + "label": "Leads License Model (shared passcode + licensed users)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3.md", + "source_location": "line 36", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_exhibitor_leads_v3_license_model", + "community": 106, + "norm_label": "leads license model (shared passcode + licensed users)" + }, + { + "label": "Exhibitor Leads v3 Detailed Spec (Archived)", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3_detail.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "Scott Idem", + "contributor": null, + "id": "archive_project__ae_events_exhibitor_leads_v3_detail_document", + "community": 106, + "norm_label": "exhibitor leads v3 detailed spec (archived)" + }, + { + "label": "Leads Manage/Config Tab (Exhibit + App Specific)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3_detail.md", + "source_location": "line 107", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_exhibitor_leads_v3_detail_exhibit_manage_tab", + "community": 106, + "norm_label": "leads manage/config tab (exhibit + app specific)" + }, + { + "label": "Zebra ZC10L Badge Printing Test Day", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Events_Zebra_Hardware_Test_Day.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-03-12", + "author": "Scott Idem / One Sky IT", + "contributor": null, + "id": "archive_project__ae_events_zebra_hardware_test_day_zebra_zc10l_badge_printing", + "community": 5, + "norm_label": "zebra zc10l badge printing test day" + }, + { + "label": "ae_comp__badge_print_controls.svelte", + "file_type": "code", + "source_file": "documentation/archive/PROJECT__AE_Events_Zebra_Hardware_Test_Day.md", + "source_location": "line 197", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_zebra_hardware_test_day_badge_print_controls", + "community": 5, + "norm_label": "ae_comp__badge_print_controls.svelte" + }, + { + "label": "PVC Badge Layout (badge_layout_zebra_zc10l_pvc.css)", + "file_type": "code", + "source_file": "documentation/archive/PROJECT__AE_Events_Zebra_Hardware_Test_Day.md", + "source_location": "line 34", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_zebra_hardware_test_day_pvc_badge_layout", + "community": 5, + "norm_label": "pvc badge layout (badge_layout_zebra_zc10l_pvc.css)" + }, + { + "label": "Badge Print Count Tracking", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Events_Zebra_Hardware_Test_Day.md", + "source_location": "line 102", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_events_zebra_hardware_test_day_print_tracking", + "community": 5, + "norm_label": "badge print count tracking" + }, + { + "label": "AE Firefly Theme Repair", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Firefly_Theme_Repair_SUMMARY.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-03-17", + "author": "Gemini CLI", + "contributor": null, + "id": "archive_project__ae_firefly_theme_repair_summary_firefly_theme_repair", + "community": 115, + "norm_label": "ae firefly theme repair" + }, + { + "label": "ae_app_3x_llm Branch (stable baseline)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Firefly_Theme_Repair_SUMMARY.md", + "source_location": "line 25", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_firefly_theme_repair_summary_ae_app_3x_llm_branch", + "community": 115, + "norm_label": "ae_app_3x_llm branch (stable baseline)" + }, + { + "label": "element_modal_v1.svelte (Svelte 5 Snippets)", + "file_type": "code", + "source_file": "documentation/archive/PROJECT__AE_Firefly_Theme_Repair_SUMMARY.md", + "source_location": "line 16", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_firefly_theme_repair_summary_element_modal_v1", + "community": 115, + "norm_label": "element_modal_v1.svelte (svelte 5 snippets)" + }, + { + "label": "AE Firefly CSS Theme Files", + "file_type": "code", + "source_file": "documentation/archive/PROJECT__AE_Firefly_Theme_Repair_SUMMARY.md", + "source_location": "line 8", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_firefly_theme_repair_summary_firefly_css_files", + "community": 115, + "norm_label": "ae firefly css theme files" + }, + { + "label": "AE Object Field Editor V3 (element_ae_obj_field_editor.svelte)", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Object_Field_Editor_V3_upgrade.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-12", + "author": null, + "contributor": null, + "id": "archive_project__ae_object_field_editor_v3_upgrade_field_editor_v3", + "community": 77, + "norm_label": "ae object field editor v3 (element_ae_obj_field_editor.svelte)" + }, + { + "label": "Legacy CRUD V1/V2 Retirement (element_ae_crud.svelte)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Object_Field_Editor_V3_upgrade.md", + "source_location": "line 43", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_object_field_editor_v3_upgrade_crud_v1_v2_retirement", + "community": 77, + "norm_label": "legacy crud v1/v2 retirement (element_ae_crud.svelte)" + }, + { + "label": "Svelte 5 Runes Pattern (props/state/derived)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Object_Field_Editor_V3_upgrade.md", + "source_location": "line 17", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_object_field_editor_v3_upgrade_svelte5_runes_pattern", + "community": 77, + "norm_label": "svelte 5 runes pattern (props/state/derived)" + }, + { + "label": "Pres Mgmt Session Cold-Start Bug Fix", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Pres_Mgmt_Session_view_refactor_2026-02.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-02-26", + "author": null, + "contributor": null, + "id": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_session_cold_start_bug", + "community": 5, + "norm_label": "pres mgmt session cold-start bug fix" + }, + { + "label": "try_cache Caching Fix in Nested Loaders", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Pres_Mgmt_Session_view_refactor_2026-02.md", + "source_location": "line 8", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_try_cache_fix", + "community": 5, + "norm_label": "try_cache caching fix in nested loaders" + }, + { + "label": "Microtask Yield Pattern (await Promise.resolve())", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Pres_Mgmt_Session_view_refactor_2026-02.md", + "source_location": "line 12", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_microtask_yield", + "community": 5, + "norm_label": "microtask yield pattern (await promise.resolve())" + }, + { + "label": "Blocking Hydration Option (Option A)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Pres_Mgmt_Session_view_refactor_2026-02.md", + "source_location": "line 57", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_blocking_hydration", + "community": 5, + "norm_label": "blocking hydration option (option a)" + }, + { + "label": "Aether App Comprehensive Style Review 2026-03", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-03-16", + "author": null, + "contributor": null, + "id": "archive_project__ae_style_review_2026_03_style_review_project", + "community": 5, + "norm_label": "aether app comprehensive style review 2026-03" + }, + { + "label": "FontAwesome to Lucide Icon Migration", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 119", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_style_review_2026_03_fontawesome_to_lucide_migration", + "community": 5, + "norm_label": "fontawesome to lucide icon migration" + }, + { + "label": "variant-* to preset-* Class Migration", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 104", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_style_review_2026_03_variant_to_preset_migration", + "community": 5, + "norm_label": "variant-* to preset-* class migration" + }, + { + "label": "Dual-Generation Style Problem (Modern vs Legacy)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 39", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_style_review_2026_03_dual_generation_problem", + "community": 5, + "norm_label": "dual-generation style problem (modern vs legacy)" + }, + { + "label": "Dark Mode Architecture (Tailwind v4 class-based)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 87", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_style_review_2026_03_dark_mode_architecture", + "community": 5, + "norm_label": "dark mode architecture (tailwind v4 class-based)" + }, + { + "label": "Journals Module UI Modernization 2026", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-12", + "author": null, + "contributor": null, + "id": "archive_project__ae_ui_journals_module_update_2026_journals_ui_modernization", + "community": 5, + "norm_label": "journals module ui modernization 2026" + }, + { + "label": "Journal Entry Quick Add Feature", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 48", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_ui_journals_module_update_2026_quick_add_feature", + "community": 5, + "norm_label": "journal entry quick add feature" + }, + { + "label": "Journal Entry Append/Prepend Feature", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 53", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_ui_journals_module_update_2026_append_prepend_feature", + "community": 5, + "norm_label": "journal entry append/prepend feature" + }, + { + "label": "Decryption-Sync Reactivity Loop Bug (Resolved)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 176", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_ui_journals_module_update_2026_decryption_reactivity_loop", + "community": 5, + "norm_label": "decryption-sync reactivity loop bug (resolved)" + }, + { + "label": "untrack() Dependency Isolation Pattern", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 102", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_ui_journals_module_update_2026_untrack_pattern", + "community": 5, + "norm_label": "untrack() dependency isolation pattern" + }, + { + "label": "Skeleton v4 Style Token Reference (Journals canonical)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 116", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_ui_journals_module_update_2026_skeleton_v4_token_reference", + "community": 5, + "norm_label": "skeleton v4 style token reference (journals canonical)" + }, + { + "label": "Unified Aether Platform Docker Orchestration V3", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__AE_combined_front_back_Docker.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-03-10", + "author": null, + "contributor": null, + "id": "archive_project__ae_combined_front_back_docker_unified_docker_orchestration", + "community": 47, + "norm_label": "unified aether platform docker orchestration v3" + }, + { + "label": "ae_app Docker Service (SvelteKit in container)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_combined_front_back_Docker.md", + "source_location": "line 44", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_combined_front_back_docker_ae_app_service", + "community": 47, + "norm_label": "ae_app docker service (sveltekit in container)" + }, + { + "label": "Internal Docker Networking (ae_api internal DNS)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__AE_combined_front_back_Docker.md", + "source_location": "line 14", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__ae_combined_front_back_docker_internal_networking", + "community": 47, + "norm_label": "internal docker networking (ae_api internal dns)" + }, + { + "label": "CRUD V3 Final Migration Project", + "file_type": "document", + "source_file": "documentation/archive/PROJECT__Use_AE_API_V3_CRUD_upgrade.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-06-12", + "author": null, + "contributor": null, + "id": "archive_project__use_ae_api_v3_crud_upgrade_crud_v3_migration", + "community": 77, + "norm_label": "crud v3 final migration project" + }, + { + "label": "Integer Trap Bug (V3 Search Mapping)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__Use_AE_API_V3_CRUD_upgrade.md", + "source_location": "line 104", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__use_ae_api_v3_crud_upgrade_integer_trap_bug", + "community": 77, + "norm_label": "integer trap bug (v3 search mapping)" + }, + { + "label": "Permissive Update Mode (x-ae-ignore-extra-fields)", + "file_type": "concept", + "source_file": "documentation/archive/PROJECT__Use_AE_API_V3_CRUD_upgrade.md", + "source_location": "line 92", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_project__use_ae_api_v3_crud_upgrade_permissive_update_mode", + "community": 77, + "norm_label": "permissive update mode (x-ae-ignore-extra-fields)" + }, + { + "label": "Events Launcher Unified Config Menu Vision v3.1", + "file_type": "document", + "source_file": "documentation/archive/PROPOSAL__AE_Events_Launcher_Config_Menu_Unified_Vision_v3_1.md", + "source_location": "line 1", + "source_url": null, + "captured_at": null, + "author": "Gemini CLI", + "contributor": null, + "id": "archive_proposal__ae_events_launcher_config_menu_unified_vision_v3_1_launcher_config_vision", + "community": 47, + "norm_label": "events launcher unified config menu vision v3.1" + }, + { + "label": "Launcher Vertical Sidebar Modal Layout", + "file_type": "concept", + "source_file": "documentation/archive/PROPOSAL__AE_Events_Launcher_Config_Menu_Unified_Vision_v3_1.md", + "source_location": "line 32", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_proposal__ae_events_launcher_config_menu_unified_vision_v3_1_vertical_sidebar_modal", + "community": 47, + "norm_label": "launcher vertical sidebar modal layout" + }, + { + "label": "IDAA Recovery Meetings UI/UX Improvement Roadmap 2026", + "file_type": "document", + "source_file": "documentation/archive/PROPOSAL__IDAA_Recovery_Meetings_UI_UX_Roadmap_2026.md", + "source_location": "line 1", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_proposal__idaa_recovery_meetings_ui_ux_roadmap_2026_recovery_meetings_roadmap", + "community": 123, + "norm_label": "idaa recovery meetings ui/ux improvement roadmap 2026" + }, + { + "label": "Automatic Timezone Conversion for IDAA Meetings", + "file_type": "concept", + "source_file": "documentation/archive/PROPOSAL__IDAA_Recovery_Meetings_UI_UX_Roadmap_2026.md", + "source_location": "line 7", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_proposal__idaa_recovery_meetings_ui_ux_roadmap_2026_timezone_conversion", + "community": 123, + "norm_label": "automatic timezone conversion for idaa meetings" + }, + { + "label": "Live Now Badge for IDAA Meetings", + "file_type": "concept", + "source_file": "documentation/archive/PROPOSAL__IDAA_Recovery_Meetings_UI_UX_Roadmap_2026.md", + "source_location": "line 14", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_proposal__idaa_recovery_meetings_ui_ux_roadmap_2026_live_now_badge", + "community": 123, + "norm_label": "live now badge for idaa meetings" + }, + { + "label": "Documentation Archive Index", + "file_type": "document", + "source_file": "documentation/archive/README.md", + "source_location": "line 1", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_readme_archive_index", + "community": 159, + "norm_label": "documentation archive index" + }, + { + "label": "Archive Restore Policy", + "file_type": "concept", + "source_file": "documentation/archive/README.md", + "source_location": "line 29", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_readme_restore_policy", + "community": 159, + "norm_label": "archive restore policy" + }, + { + "label": "Legacy Aether API Pydantic Object Reference", + "file_type": "document", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 1", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_api_pydantic_objects_legacy_pydantic_models", + "community": 5, + "norm_label": "legacy aether api pydantic object reference" + }, + { + "label": "Account_Base Pydantic Model", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 7", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_api_pydantic_objects_account_base_model", + "community": 5, + "norm_label": "account_base pydantic model" + }, + { + "label": "Event_Base Pydantic Model", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 282", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_api_pydantic_objects_event_base_model", + "community": 5, + "norm_label": "event_base pydantic model" + }, + { + "label": "Event_Badge_Base Pydantic Model", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 396", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_api_pydantic_objects_event_badge_base_model", + "community": 5, + "norm_label": "event_badge_base pydantic model" + }, + { + "label": "Journal_Base Pydantic Model", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 1128", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_api_pydantic_objects_journal_base_model", + "community": 5, + "norm_label": "journal_base pydantic model" + }, + { + "label": "Journal_Entry_Base Pydantic Model", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 1210", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_api_pydantic_objects_journal_entry_base_model", + "community": 5, + "norm_label": "journal_entry_base pydantic model" + }, + { + "label": "Person_Base Pydantic Model", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 495", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_api_pydantic_objects_person_base_model", + "community": 5, + "norm_label": "person_base pydantic model" + }, + { + "label": "Legacy Aether UI Component Reference", + "file_type": "document", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Components.md", + "source_location": "line 1", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_components_legacy_component_reference", + "community": 77, + "norm_label": "legacy aether ui component reference" + }, + { + "label": "element_ae_obj_field_editor (V3 replacement for ae_crud)", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Components.md", + "source_location": "line 65", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_components_element_ae_obj_field_editor", + "community": 77, + "norm_label": "element_ae_obj_field_editor (v3 replacement for ae_crud)" + }, + { + "label": "Object Menu Sort Options", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Components.md", + "source_location": "line 86", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_components_object_menu_sort_options", + "community": 77, + "norm_label": "object menu sort options" + }, + { + "label": "Legacy Aether Data Structures Reference", + "file_type": "document", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": "line 1", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_data_structures_legacy_data_structures", + "community": 5, + "norm_label": "legacy aether data structures reference" + }, + { + "label": "Core Standard Object Fields (id, enable, hide, priority, sort, group)", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": "line 7", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_data_structures_core_standard_fields", + "community": 5, + "norm_label": "core standard object fields (id, enable, hide, priority, sort, group)" + }, + { + "label": "Dexie LiveQuery Naming Convention (lq__/lqw__)", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": "line 97", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_data_structures_dexie_livequery_naming", + "community": 5, + "norm_label": "dexie livequery naming convention (lq__/lqw__)" + }, + { + "label": "Client-Side tmp_sort Fields", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": "line 54", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_aether_data_structures_tmp_sort_fields", + "community": 5, + "norm_label": "client-side tmp_sort fields" + }, + { + "label": "Non-Blocking SWR Load Pattern (Performance Guidelines)", + "file_type": "document", + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 1", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_performance_guidelines_swr_non_blocking_load_pattern", + "community": 5, + "norm_label": "non-blocking swr load pattern (performance guidelines)" + }, + { + "label": "Rule: $derived.by() for Reactive liveQuery", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 93", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_performance_guidelines_derived_by_livequery_rule", + "community": 5, + "norm_label": "rule: $derived.by() for reactive livequery" + }, + { + "label": "Rule: Keep liveQuery Closures Pure (Data-Only)", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 121", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_performance_guidelines_livequery_pure_data_rule", + "community": 5, + "norm_label": "rule: keep livequery closures pure (data-only)" + }, + { + "label": "Rule: Always use untrack() in $effect Store Writes", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 193", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_performance_guidelines_untrack_in_effect_rule", + "community": 5, + "norm_label": "rule: always use untrack() in $effect store writes" + }, + { + "label": "Rule: Guard console.log with log_lvl", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 224", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_performance_guidelines_log_lvl_guard_rule", + "community": 5, + "norm_label": "rule: guard console.log with log_lvl" + }, + { + "label": "Legacy Aether UI Component Style Patterns", + "file_type": "document", + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-03-06", + "author": "Scott Idem / One Sky IT", + "contributor": null, + "id": "archive_reference__legacy_ui_component_patterns_ui_component_patterns", + "community": 5, + "norm_label": "legacy aether ui component style patterns" + }, + { + "label": "Hero Card UI Pattern", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 11", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_ui_component_patterns_hero_card_pattern", + "community": 5, + "norm_label": "hero card ui pattern" + }, + { + "label": "List Item Card UI Pattern", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 93", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_ui_component_patterns_list_item_card_pattern", + "community": 5, + "norm_label": "list item card ui pattern" + }, + { + "label": "Empty State Panel Pattern", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 163", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_ui_component_patterns_empty_state_panel", + "community": 5, + "norm_label": "empty state panel pattern" + }, + { + "label": "Native dark mode fix (color-scheme)" + }, + { + "label": "Modal Usage Pattern (Flowbite-Svelte)", + "file_type": "concept", + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 287", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_reference__legacy_ui_component_patterns_modal_usage_flowbite", + "community": 5, + "norm_label": "modal usage pattern (flowbite-svelte)" + }, + { + "label": "Completed Agent Tasks Archive March 2026", + "file_type": "document", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-03.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-03", + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_03_completed_tasks_march_2026", + "community": 47, + "norm_label": "completed agent tasks archive march 2026" + }, + { + "label": "PUBLIC_AE_API_SECRET_KEY Security Audit (Sev-1, resolved 2026-03-11)", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-03.md", + "source_location": "line 11", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_03_public_api_secret_key_audit", + "community": 47, + "norm_label": "public_ae_api_secret_key security audit (sev-1, resolved 2026-03-11)" + }, + { + "label": "Frontend + Backend Unified Docker Compose Deploy", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-03.md", + "source_location": "line 16", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_03_docker_unified_deploy", + "community": 47, + "norm_label": "frontend + backend unified docker compose deploy" + }, + { + "label": "Stores Phase 1+2 Dead Code Cleanup and TS Interfaces", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-03.md", + "source_location": "line 2", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_03_stores_phase_1_2_cleanup", + "community": 47, + "norm_label": "stores phase 1+2 dead code cleanup and ts interfaces" + }, + { + "label": "Svelte 4 to 5 Store Migration Plan (svelte-persisted-store)", + "file_type": "document", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-04.md", + "source_location": "line 3", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_04_svelte4_to_5_store_migration_plan", + "community": 47, + "norm_label": "svelte 4 to 5 store migration plan (svelte-persisted-store)" + }, + { + "label": "IDAA Novi Re-Auth Bug (coarse reactivity root cause, 2026-03-30)", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-04.md", + "source_location": "line 13", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_04_idaa_novi_re_auth_bug", + "community": 47, + "norm_label": "idaa novi re-auth bug (coarse reactivity root cause, 2026-03-30)" + }, + { + "label": "flowbite-svelte ModalProps.children Errors (31 errors, resolved 2026-06-02)", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-04.md", + "source_location": "line 80", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_04_modalprops_children_errors", + "community": 5, + "norm_label": "flowbite-svelte modalprops.children errors (31 errors, resolved 2026-06-02)" + }, + { + "label": "Completed Agent Tasks Archive May 2026", + "file_type": "document", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-05.md", + "source_location": "line 1", + "source_url": null, + "captured_at": "2026-05", + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_05_completed_tasks_may_2026", + "community": 47, + "norm_label": "completed agent tasks archive may 2026" + }, + { + "label": "API GET/POST/PATCH/DELETE Retry Hardening (2026-05-21)", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-05.md", + "source_location": "line 6", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_05_api_retry_hardening", + "community": 47, + "norm_label": "api get/post/patch/delete retry hardening (2026-05-21)" + }, + { + "label": "IDAA Random Access Denied Root Cause Fix (2026-05-19)", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-05.md", + "source_location": "line 23", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_05_idaa_random_access_denied_fix", + "community": 47, + "norm_label": "idaa random access denied root cause fix (2026-05-19)" + }, + { + "label": "Launcher Force Sync Location (2026-05-21)", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-05.md", + "source_location": "line 44", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_05_launcher_force_sync_location", + "community": 47, + "norm_label": "launcher force sync location (2026-05-21)" + }, + { + "label": "CMSC Charlotte Event Tasks (May 27 2026)", + "file_type": "document", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md", + "source_location": "line 5", + "source_url": null, + "captured_at": "2026-06", + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_06_cmsc_charlotte_event", + "community": 5, + "norm_label": "cmsc charlotte event tasks (may 27 2026)" + }, + { + "label": "Axonius DC Event Badge Printing (June 9 2026)", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md", + "source_location": "line 29", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_06_axonius_dc_badges", + "community": 5, + "norm_label": "axonius dc event badge printing (june 9 2026)" + }, + { + "label": "build_tmp_sort Utility Rollout", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md", + "source_location": "line 61", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_06_build_tmp_sort_rollout", + "community": 5, + "norm_label": "build_tmp_sort utility rollout" + }, + { + "label": "IDB Content Version System (check_and_clear_idb_tables)", + "file_type": "concept", + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md", + "source_location": "line 76", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "archive_todo__agents__archive_2026_06_idb_content_version_system", + "community": 5, + "norm_label": "idb content version system (check_and_clear_idb_tables)" + }, + { + "label": "SvelteKit App Entry Point (app.html)", + "file_type": "code", + "source_file": "src/app.html", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "src_app_html_sveltekit_entry_point", + "community": 117, + "norm_label": "sveltekit app entry point (app.html)" + }, + { + "label": "Service Worker Suppression on Localhost", + "file_type": "concept", + "source_file": "src/app.html", + "source_location": "lines 6-48", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "src_app_html_service_worker_suppression", + "community": 117, + "norm_label": "service worker suppression on localhost" + }, + { + "label": "Pre-JS Loading Spinner (#ae_loader)", + "file_type": "concept", + "source_file": "src/app.html", + "source_location": "lines 76-98", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "src_app_html_ae_loader_spinner", + "community": 117, + "norm_label": "pre-js loading spinner (#ae_loader)" + }, + { + "label": "PWA Web App Manifest", + "file_type": "concept", + "source_file": "src/app.html", + "source_location": "line 53", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "src_app_html_pwa_manifest", + "community": 117, + "norm_label": "pwa web app manifest" + }, + { + "label": "AE Archives Module", + "file_type": "document", + "source_file": "src/lib/ae_archives/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_archives_readme_archives_module", + "community": 9, + "norm_label": "ae archives module" + }, + { + "label": "Archive Object", + "file_type": "concept", + "source_file": "src/lib/ae_archives/README.md", + "source_location": "lines 7-9", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_archives_readme_archive_object", + "community": 9, + "norm_label": "archive object" + }, + { + "label": "Archive Content Object", + "file_type": "concept", + "source_file": "src/lib/ae_archives/README.md", + "source_location": "lines 11-13", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_archives_readme_archive_content_object", + "community": 9, + "norm_label": "archive content object" + }, + { + "label": "AE Posts Module", + "file_type": "document", + "source_file": "src/lib/ae_posts/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_posts_readme_posts_module", + "community": 9, + "norm_label": "ae posts module" + }, + { + "label": "Post Object", + "file_type": "concept", + "source_file": "src/lib/ae_posts/README.md", + "source_location": "lines 7-9", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_posts_readme_post_object", + "community": 9, + "norm_label": "post object" + }, + { + "label": "Post Comment Object", + "file_type": "concept", + "source_file": "src/lib/ae_posts/README.md", + "source_location": "lines 11-13", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_posts_readme_post_comment_object", + "community": 9, + "norm_label": "post comment object" + }, + { + "label": "AE Sponsorships Module", + "file_type": "document", + "source_file": "src/lib/ae_sponsorships/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_sponsorships_readme_sponsorships_module", + "community": 121, + "norm_label": "ae sponsorships module" + }, + { + "label": "Sponsorship Configuration Object (Sponsorship_Cfg)", + "file_type": "concept", + "source_file": "src/lib/ae_sponsorships/README.md", + "source_location": "lines 7-10", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_sponsorships_readme_sponsorship_cfg_object", + "community": 121, + "norm_label": "sponsorship configuration object (sponsorship_cfg)" + }, + { + "label": "Sponsorship Object", + "file_type": "concept", + "source_file": "src/lib/ae_sponsorships/README.md", + "source_location": "lines 12-14", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "ae_sponsorships_readme_sponsorship_object", + "community": 121, + "norm_label": "sponsorship object" + }, + { + "label": "Electron Native Bridge (SvelteKit Side)", + "file_type": "document", + "source_file": "src/lib/electron/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "electron_readme_electron_bridge", + "community": 62, + "norm_label": "electron native bridge (sveltekit side)" + }, + { + "label": "electron_relay.ts (IPC Messenger)", + "file_type": "code", + "source_file": "src/lib/electron/README.md", + "source_location": "line 10", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "electron_readme_electron_relay_ts", + "community": 62, + "norm_label": "electron_relay.ts (ipc messenger)" + }, + { + "label": "Electron Three-Layer Bridge Architecture", + "file_type": "concept", + "source_file": "src/lib/electron/README.md", + "source_location": "lines 43-50", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "electron_readme_three_layer_bridge_arch", + "community": 62, + "norm_label": "electron three-layer bridge architecture" + }, + { + "label": "Electron contextBridge Security Model", + "file_type": "concept", + "source_file": "src/lib/electron/README.md", + "source_location": "lines 37-41", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "electron_readme_context_bridge_security", + "community": 62, + "norm_label": "electron contextbridge security model" + }, + { + "label": "Event Launcher (Electron App)", + "file_type": "concept", + "source_file": "src/lib/electron/README.md", + "source_location": "lines 3-5", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "electron_readme_event_launcher", + "community": 62, + "norm_label": "event launcher (electron app)" + }, + { + "label": "Aether App Parent iFrame Host (parent_iframe.html)", + "file_type": "code", + "source_file": "src/parent_iframe.html", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "src_parent_iframe_html_ae_iframe_parent", + "community": 9, + "norm_label": "aether app parent iframe host (parent_iframe.html)" + }, + { + "label": "postMessage iframe Height Sync Protocol", + "file_type": "concept", + "source_file": "src/parent_iframe.html", + "source_location": "lines 45-96", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "src_parent_iframe_html_postmessage_height_sync", + "community": 9, + "norm_label": "postmessage iframe height sync protocol" + }, + { + "label": "URL Parameter-Based iframe Routing", + "file_type": "concept", + "source_file": "src/parent_iframe.html", + "source_location": "lines 3-41", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "src_parent_iframe_html_url_param_routing", + "community": 9, + "norm_label": "url parameter-based iframe routing" + }, + { + "label": "Core Routes Module (/routes/core)", + "file_type": "document", + "source_file": "src/routes/core/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "core_readme_core_module", + "community": 100, + "norm_label": "core routes module (/routes/core)" + }, + { + "label": "Accounts Admin UI", + "file_type": "concept", + "source_file": "src/routes/core/README.md", + "source_location": "lines 9-12", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "core_readme_accounts_admin", + "community": 100, + "norm_label": "accounts admin ui" + }, + { + "label": "Hosted Files Admin UI", + "file_type": "concept", + "source_file": "src/routes/core/README.md", + "source_location": "lines 14-18", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "core_readme_hosted_files_admin", + "community": 100, + "norm_label": "hosted files admin ui" + }, + { + "label": "People Admin UI", + "file_type": "concept", + "source_file": "src/routes/core/README.md", + "source_location": "lines 20-29", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "core_readme_people_admin", + "community": 100, + "norm_label": "people admin ui" + }, + { + "label": "Sites and Site Domains Admin UI", + "file_type": "concept", + "source_file": "src/routes/core/README.md", + "source_location": "lines 31-35", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "core_readme_sites_admin", + "community": 100, + "norm_label": "sites and site domains admin ui" + }, + { + "label": "Users Admin UI", + "file_type": "concept", + "source_file": "src/routes/core/README.md", + "source_location": "lines 37-40", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "core_readme_users_admin", + "community": 100, + "norm_label": "users admin ui" + }, + { + "label": "Events Presentation Management Module (/routes/events)", + "file_type": "document", + "source_file": "src/routes/events/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "events_readme_pres_mgmt_module", + "community": 104, + "norm_label": "events presentation management module (/routes/events)" + }, + { + "label": "Event Object", + "file_type": "concept", + "source_file": "src/routes/events/README.md", + "source_location": "lines 28-29", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "events_readme_event_object", + "community": 104, + "norm_label": "event object" + }, + { + "label": "EventSession Object", + "file_type": "concept", + "source_file": "src/routes/events/README.md", + "source_location": "lines 30-31", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "events_readme_event_session_object", + "community": 104, + "norm_label": "eventsession object" + }, + { + "label": "EventPresentation Object", + "file_type": "concept", + "source_file": "src/routes/events/README.md", + "source_location": "lines 32-33", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "events_readme_event_presentation_object", + "community": 104, + "norm_label": "eventpresentation object" + }, + { + "label": "EventPresenter Object", + "file_type": "concept", + "source_file": "src/routes/events/README.md", + "source_location": "lines 34-35", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "events_readme_event_presenter_object", + "community": 104, + "norm_label": "eventpresenter object" + }, + { + "label": "EventFile Object", + "file_type": "concept", + "source_file": "src/routes/events/README.md", + "source_location": "lines 36-37", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "events_readme_event_file_object", + "community": 104, + "norm_label": "eventfile object" + }, + { + "label": "Event Badges Module v3 (/routes/events/[event_id]/(badges))", + "file_type": "document", + "source_file": "src/routes/events/[event_id]/(badges)/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "badges_readme_badges_module", + "community": 197, + "norm_label": "event badges module v3 (/routes/events/[event_id]/(badges))" + }, + { + "label": "Exhibitor Leads Module v3 (/routes/events/[event_id]/(leads))", + "file_type": "document", + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "leads_readme_exhibitor_leads_module", + "community": 62, + "norm_label": "exhibitor leads module v3 (/routes/events/[event_id]/(leads))" + }, + { + "label": "event_exhibit Object", + "file_type": "concept", + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 72-79", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "leads_readme_event_exhibit_object", + "community": 62, + "norm_label": "event_exhibit object" + }, + { + "label": "event_exhibit_tracking Object", + "file_type": "concept", + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 81-92", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "leads_readme_event_exhibit_tracking_object", + "community": 62, + "norm_label": "event_exhibit_tracking object" + }, + { + "label": "Leads Module Three Auth Levels", + "file_type": "concept", + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 94-103", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "leads_readme_leads_auth_levels", + "community": 62, + "norm_label": "leads module three auth levels" + }, + { + "label": "Leads QR Badge Scan Flow", + "file_type": "concept", + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 105-117", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "leads_readme_qr_scan_flow", + "community": 62, + "norm_label": "leads qr badge scan flow" + }, + { + "label": "Leads Stripe Payment Component", + "file_type": "concept", + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 120-130", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "leads_readme_stripe_payment", + "community": 62, + "norm_label": "leads stripe payment component" + }, + { + "label": "Leads Module PWA-Only (No Electron)", + "file_type": "concept", + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "line 4", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "leads_readme_pwa_only", + "community": 62, + "norm_label": "leads module pwa-only (no electron)" + }, + { + "label": "AE Event Module v3 (/routes/events/[event_id])", + "file_type": "document", + "source_file": "src/routes/events/[event_id]/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "event_id_readme_event_module_v3", + "community": 200, + "norm_label": "ae event module v3 (/routes/events/[event_id])" + }, + { + "label": "IDAA Integration Module (/routes/idaa)", + "file_type": "document", + "source_file": "src/routes/idaa/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "idaa_readme_idaa_integration_module", + "community": 9, + "norm_label": "idaa integration module (/routes/idaa)" + }, + { + "label": "IDAA Novi iframe Bridge Architecture", + "file_type": "concept", + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 9-19", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "idaa_readme_novi_iframe_bridge_arch", + "community": 9, + "norm_label": "idaa novi iframe bridge architecture" + }, + { + "label": "IDAA Novi UUID Verification Flow", + "file_type": "concept", + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 43-47", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "idaa_readme_novi_uuid_verification", + "community": 9, + "norm_label": "idaa novi uuid verification flow" + }, + { + "label": "IDAA Archives Route (/idaa/archives)", + "file_type": "concept", + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 23-28", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "idaa_readme_idaa_archives_route", + "community": 9, + "norm_label": "idaa archives route (/idaa/archives)" + }, + { + "label": "IDAA Bulletin Board Route (/idaa/bb)", + "file_type": "concept", + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 30-34", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "idaa_readme_idaa_bb_route", + "community": 9, + "norm_label": "idaa bulletin board route (/idaa/bb)" + }, + { + "label": "IDAA Recovery Meetings Route (/idaa/recovery_meetings)", + "file_type": "concept", + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 36-41", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "idaa_readme_idaa_recovery_meetings_route", + "community": 9, + "norm_label": "idaa recovery meetings route (/idaa/recovery_meetings)" + }, + { + "label": "Journals Module (/routes/journals)", + "file_type": "document", + "source_file": "src/routes/journals/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "journals_readme_journals_module", + "community": 127, + "norm_label": "journals module (/routes/journals)" + }, + { + "label": "Journal Entry Encryption (Passcode)", + "file_type": "concept", + "source_file": "src/routes/journals/README.md", + "source_location": "line 12", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "journals_readme_journal_encryption", + "community": 127, + "norm_label": "journal entry encryption (passcode)" + }, + { + "label": "Journals Offline Support (Dexie IndexedDB)", + "file_type": "concept", + "source_file": "src/routes/journals/README.md", + "source_location": "line 13", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "journals_readme_journal_offline_support", + "community": 127, + "norm_label": "journals offline support (dexie indexeddb)" + }, + { + "label": "IDAA Novi Archives iframe Embed Template", + "file_type": "code", + "source_file": "static/idaa_novi_iframe_archives.html", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_archives_novi_archive_embed", + "community": 9, + "norm_label": "idaa novi archives iframe embed template" + }, + { + "label": "IDAA iframe postMessage Scroll Sync", + "file_type": "concept", + "source_file": "static/idaa_novi_iframe_archives.html", + "source_location": "lines 66-84", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_archives_postmessage_scroll_sync", + "community": 9, + "norm_label": "idaa iframe postmessage scroll sync" + }, + { + "label": "Novi CustomerUniqueId Server-Side Injection", + "file_type": "concept", + "source_file": "static/idaa_novi_iframe_archives.html", + "source_location": "line 30", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_archives_novi_customer_uid_inject", + "community": 9, + "norm_label": "novi customeruniqueid server-side injection" + }, + { + "label": "IDAA Restricted Access Site Key", + "file_type": "concept", + "source_file": "static/idaa_novi_iframe_archives.html", + "source_location": "line 38", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_archives_restricted_access_key", + "community": 9, + "norm_label": "idaa restricted access site key" + }, + { + "label": "IDAA Novi Bulletin Board iframe Embed Template", + "file_type": "code", + "source_file": "static/idaa_novi_iframe_bulletin_board.html", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_bulletin_board_bb_embed", + "community": 9, + "norm_label": "idaa novi bulletin board iframe embed template" + }, + { + "label": "IDAA Novi Jitsi Meeting iframe Embed Template", + "file_type": "code", + "source_file": "static/idaa_novi_iframe_jitsi_meeting.html", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed", + "community": 9, + "norm_label": "idaa novi jitsi meeting iframe embed template" + }, + { + "label": "Jitsi JWT Authentication via Backend Token Endpoint", + "file_type": "concept", + "source_file": "static/idaa_novi_iframe_jitsi_meeting.html", + "source_location": "lines 122-205", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_jitsi_meeting_jitsi_jwt_auth", + "community": 9, + "norm_label": "jitsi jwt authentication via backend token endpoint" + }, + { + "label": "Jitsi Hardcoded Moderator UUID List", + "file_type": "concept", + "source_file": "static/idaa_novi_iframe_jitsi_meeting.html", + "source_location": "lines 75-82", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_jitsi_meeting_jitsi_moderator_list", + "community": 9, + "norm_label": "jitsi hardcoded moderator uuid list" + }, + { + "label": "Jitsi Novi Group UID for Moderators", + "file_type": "concept", + "source_file": "static/idaa_novi_iframe_jitsi_meeting.html", + "source_location": "lines 40-47", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_jitsi_meeting_novi_group_uid", + "community": 9, + "norm_label": "jitsi novi group uid for moderators" + }, + { + "label": "IDAA Novi Jitsi Reports iframe Embed Template", + "file_type": "code", + "source_file": "static/idaa_novi_iframe_jitsi_reports.html", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_jitsi_reports_jitsi_reports_embed", + "community": 211, + "norm_label": "idaa novi jitsi reports iframe embed template" + }, + { + "label": "IDAA Novi Recovery Meetings iframe Embed Template", + "file_type": "code", + "source_file": "static/idaa_novi_iframe_recovery_meetings.html", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_idaa_novi_iframe_recovery_meetings_recovery_meetings_embed", + "community": 9, + "norm_label": "idaa novi recovery meetings iframe embed template" + }, + { + "label": "Jitsi Meet External API Integration (jitsi_iframe_api.html)", + "file_type": "code", + "source_file": "static/jitsi_iframe_api.html", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_jitsi_iframe_api_jitsi_external_api", + "community": 9, + "norm_label": "jitsi meet external api integration (jitsi_iframe_api.html)" + }, + { + "label": "Jitsi Configurable Sound Disabling", + "file_type": "concept", + "source_file": "static/jitsi_iframe_api.html", + "source_location": "lines 99-105", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_jitsi_iframe_api_jitsi_sound_config", + "community": 9, + "norm_label": "jitsi configurable sound disabling" + }, + { + "label": "robots.txt Deny All Crawlers", + "file_type": "document", + "source_file": "static/robots.txt", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_robots_txt_crawl_deny_all", + "community": 212, + "norm_label": "robots.txt deny all crawlers" + }, + { + "label": "Playwright Integration Test Suite", + "file_type": "document", + "source_file": "tests/README.md", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_playwright_test_suite", + "community": 9, + "norm_label": "playwright integration test suite" + }, + { + "label": "ae_loc __version Guard Pattern", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 113-129", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_ae_version_guard", + "community": 9, + "norm_label": "ae_loc __version guard pattern" + }, + { + "label": "IDB Inject-Then-Reload Test Pattern", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 131-149", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_idb_inject_reload_pattern", + "community": 9, + "norm_label": "idb inject-then-reload test pattern" + }, + { + "label": "HTML5 Form Validation Silent Block Trap", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 156-175", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_html5_validation_trap", + "community": 9, + "norm_label": "html5 form validation silent block trap" + }, + { + "label": "Svelte 5 One-Time value= Bind Trap", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 177-195", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_svelte5_value_bind_trap", + "community": 9, + "norm_label": "svelte 5 one-time value= bind trap" + }, + { + "label": "Playwright addInitScript Store Pre-Seeding Pattern", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 197-231", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_addInitScript_pattern", + "community": 9, + "norm_label": "playwright addinitscript store pre-seeding pattern" + }, + { + "label": "__ae_test_mode Email Suppression", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 233-247", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_test_mode_email_suppress", + "community": 9, + "norm_label": "__ae_test_mode email suppression" + }, + { + "label": "Svelte 5 PersistedState Event Sub-Stores", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 37-48", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_persisted_state_stores", + "community": 9, + "norm_label": "svelte 5 persistedstate event sub-stores" + }, + { + "label": "IDAA ae_idaa_loc Full Structure Seed Requirement", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 330-373", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_idaa_store_seed_trap", + "community": 9, + "norm_label": "idaa ae_idaa_loc full structure seed requirement" + }, + { + "label": "StorageEvent Approach for Reactive Store Testing", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 375-408", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_storage_event_approach", + "community": 9, + "norm_label": "storageevent approach for reactive store testing" + }, + { + "label": "Demo and Test Record IDs Reference", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 426-483", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_demo_test_ids", + "community": 9, + "norm_label": "demo and test record ids reference" + }, + { + "label": "V3 API Latency Probe Test", + "file_type": "concept", + "source_file": "tests/README.md", + "source_location": "lines 89-102", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "tests_readme_v3_latency_probe", + "community": 9, + "norm_label": "v3 api latency probe test" + }, + { + "label": "One Sky IT Logo 2022", + "file_type": "image", + "source_file": "static/OSIT_logo_2022_96px.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "One Sky IT", + "contributor": null, + "id": "static_osit_logo_2022_96px_one_sky_it_logo", + "community": 129, + "norm_label": "one sky it logo 2022" + }, + { + "label": "Hexagon Cluster Motif", + "file_type": "image", + "source_file": "static/OSIT_logo_2022_96px.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_osit_logo_2022_96px_hexagon_motif", + "community": 129, + "norm_label": "hexagon cluster motif" + }, + { + "label": "Blue Color Scheme", + "file_type": "concept", + "source_file": "static/OSIT_logo_2022_96px.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_osit_logo_2022_96px_blue_color_scheme", + "community": 129, + "norm_label": "blue color scheme" + }, + { + "label": "Badge Header Calibration Image", + "file_type": "image", + "source_file": "static/badge_header_calibration.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "properties": { + "purpose": "Print calibration guide for event badge header area", + "dimensions_label": "3.46\" x 0.75\" ZC10L HEADER", + "clip_slot_danger_zone": true, + "description": "Horizontal calibration strip showing the badge header dimensions for a ZC10L badge printer. Features a highlighted 'CLIP SLOT DANGER ZONE' region marked in red/orange indicating where badge clip hardware overlaps the printable area \u2014 content must avoid this zone to prevent being obscured by the physical clip attachment. Used to align and verify badge print positioning before production runs.", + "confidence_score": 1.0 + }, + "id": "static_badge_header_calibration_badge_calibration_header", + "community": 128, + "norm_label": "badge header calibration image" + }, + { + "label": "Clip Slot Danger Zone", + "file_type": "concept", + "source_file": "static/badge_header_calibration.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "properties": { + "description": "The region on a badge header where the physical lanyard/clip hardware attaches. Content printed in this zone will be obscured by the clip. Calibration image visually marks this zone to guide badge template designers.", + "confidence_score": 1.0 + }, + "id": "static_badge_header_calibration_clip_slot_danger_zone", + "community": 128, + "norm_label": "clip slot danger zone" + }, + { + "label": "ZC10L Badge Header Format", + "file_type": "concept", + "source_file": "static/badge_header_calibration.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "properties": { + "description": "Badge header format specification: 3.46 inches wide by 0.75 inches tall, for the ZC10L badge printer model. Defines the printable header area dimensions used in calibration.", + "width_inches": 3.46, + "height_inches": 0.75, + "printer_model": "ZC10L", + "confidence_score": 1.0 + }, + "id": "static_badge_header_calibration_zc10l_header", + "community": 128, + "norm_label": "zc10l badge header format" + }, + { + "label": "Badge Header Calibration Strip SVG", + "file_type": "image", + "source_file": "static/badge_header_calibration.svg", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "description": "SVG calibration strip for event badge header slot (88mm x 19mm / 3.464in x 0.75in). Used with banner_full_width=ON and debug print mode to verify horizontal alignment. Contains dual rulers (top: millimeters at 1mm/5mm/10mm intervals; bottom: inches at 0.25in/0.5in/1in intervals). Scale: 332 SVG units = 88mm (1mm = 3.7727px, 1in = 95.85px). Red danger zones mark lanyard clip slot positions at approximately 53-101px and 231-279px from left edge.", + "confidence_score": 1.0, + "id": "static_badge_header_calibration_svg", + "community": 107, + "norm_label": "badge header calibration strip svg" + }, + { + "label": "Millimeter Ruler (Top)", + "file_type": "concept", + "source_file": "static/badge_header_calibration.svg", + "source_location": "lines 16-121", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "description": "Top ruler in millimeters spanning 0-88mm. Minor ticks at 1mm intervals (height=3px), medium ticks at 5mm intervals (height=7px), major ticks with labels at 10mm intervals (height=13px). Labels at 10,20,30,40,50,60,70,80mm.", + "confidence_score": 1.0, + "id": "static_badge_header_calibration_mm_ruler", + "community": 107, + "norm_label": "millimeter ruler (top)" + }, + { + "label": "Inch Ruler (Bottom)", + "file_type": "concept", + "source_file": "static/badge_header_calibration.svg", + "source_location": "lines 124-151", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "description": "Bottom ruler in inches spanning 0-3.464in. Minor ticks at 0.25in intervals (height=5px), medium ticks at 0.5in intervals (height=9px), major ticks with labels at 1in intervals (height=14px). Labels at 1, 2, 3 inches.", + "confidence_score": 1.0, + "id": "static_badge_header_calibration_inch_ruler", + "community": 107, + "norm_label": "inch ruler (bottom)" + }, + { + "label": "Lanyard Clip Slot Danger Zones", + "file_type": "concept", + "source_file": "static/badge_header_calibration.svg", + "source_location": "lines 157-159", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "description": "Two red semi-transparent rectangles marking lanyard clip slot danger areas on the badge header. Left zone: x=53 to x=101 (approx 14-27mm). Right zone: x=231 to x=279 (approx 61-74mm). Used to warn against placing content in these areas during badge header design.", + "confidence_score": 1.0, + "id": "static_badge_header_calibration_clip_danger_zones", + "community": 107, + "norm_label": "lanyard clip slot danger zones" + }, + { + "label": "Event Badge Header Printing", + "file_type": "concept", + "source_file": "static/badge_header_calibration.svg", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "description": "The physical context this calibration tool supports: printing badge headers for events. The header slot is 88mm wide x 19mm tall. Calibration verifies horizontal alignment when used with banner_full_width=ON and debug print mode.", + "confidence_score": 0.95, + "id": "concept_badge_header_printing", + "community": 107, + "norm_label": "event badge header printing" + }, + { + "label": "Badge Header Demo Image", + "file_type": "image", + "source_file": "static/badge_header_demo.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_badge_header_demo_badge_header", + "community": 207, + "norm_label": "badge header demo image" + }, + { + "label": "One Sky IT Logo", + "file_type": "image", + "source_file": "static/badge_header_demo.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_badge_header_demo_one_sky_it_logo", + "community": 208, + "norm_label": "one sky it logo" + }, + { + "label": "Aether Platform Branding", + "file_type": "image", + "source_file": "static/badge_header_demo.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_badge_header_demo_aether_platform_branding", + "community": 206, + "norm_label": "aether platform branding" + }, + { + "label": "Badge Header Hex Blue (One Sky IT / Aether Platform)", + "file_type": "image", + "source_file": "static/badge_header_hex_blue.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "One Sky IT", + "contributor": null, + "id": "static_badge_header_hex_blue_image", + "community": 209, + "norm_label": "badge header hex blue (one sky it / aether platform)" + }, + { + "label": "Badge Header Hex Blue SVG", + "file_type": "image", + "source_file": "static/badge_header_hex_blue.svg", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": "One Sky IT", + "contributor": null, + "id": "static_badge_header_hex_blue_svg", + "community": 112, + "norm_label": "badge header hex blue svg" + }, + { + "label": "Blue Linear Gradient (#1e3a8a \u2192 #1e40af)", + "file_type": "concept", + "source_file": "static/badge_header_hex_blue.svg", + "source_location": "defs/linearGradient#grad", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_badge_header_hex_blue_gradient", + "community": 112, + "norm_label": "blue linear gradient (#1e3a8a \u2192 #1e40af)" + }, + { + "label": "Hexagon Tile Pattern (white stroke, 10% opacity)", + "file_type": "concept", + "source_file": "static/badge_header_hex_blue.svg", + "source_location": "defs/pattern#hexagons", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_badge_header_hex_blue_hexpattern", + "community": 112, + "norm_label": "hexagon tile pattern (white stroke, 10% opacity)" + }, + { + "label": "ONE SKY IT Text Label", + "file_type": "concept", + "source_file": "static/badge_header_hex_blue.svg", + "source_location": "text[1]", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_badge_header_hex_blue_oneskyit_text", + "community": 112, + "norm_label": "one sky it text label" + }, + { + "label": "AETHER PLATFORM Text Label", + "file_type": "concept", + "source_file": "static/badge_header_hex_blue.svg", + "source_location": "text[2]", + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_badge_header_hex_blue_aether_text", + "community": 112, + "norm_label": "aether platform text label" + }, + { + "label": "App Favicon", + "file_type": "image", + "source_file": "static/favicon.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "description": "Honeycomb/hexagonal cluster logo in blue tones. A group of solid blue hexagons arranged in a flower/honeycomb pattern with a lighter blue (near-white) hexagon accent near the top center, on a white background. Represents the Aether platform brand identity.", + "id": "static_favicon_app_favicon", + "community": 210, + "norm_label": "app favicon" + }, + { + "label": "Skeleton UI Favicon", + "file_type": "image", + "source_file": "static/skeleton_favicon.png", + "source_location": null, + "source_url": null, + "captured_at": null, + "author": null, + "contributor": null, + "id": "static_skeleton_favicon_skeleton_ui_favicon", + "community": 213, + "norm_label": "skeleton ui favicon" + } + ], + "links": [ + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L9", + "weight": 1.0, + "source": "components", + "target": "components_aliases", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L16", + "weight": 1.0, + "source": "components", + "target": "components_registry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L2", + "weight": 1.0, + "source": "components", + "target": "components_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L3", + "weight": 1.0, + "source": "components", + "target": "components_style", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L4", + "weight": 1.0, + "source": "components", + "target": "components_tailwind", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L15", + "weight": 1.0, + "source": "components", + "target": "components_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L7", + "weight": 1.0, + "source": "components_tailwind", + "target": "components_tailwind_basecolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L5", + "weight": 1.0, + "source": "components_tailwind", + "target": "components_tailwind_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L6", + "weight": 1.0, + "source": "components_tailwind", + "target": "components_tailwind_css", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L10", + "weight": 1.0, + "source": "components_aliases", + "target": "components_aliases_components", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L13", + "weight": 1.0, + "source": "components_aliases", + "target": "components_aliases_hooks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L12", + "weight": 1.0, + "source": "components_aliases", + "target": "components_aliases_ui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components.json", + "source_location": "L11", + "weight": 1.0, + "source": "components_aliases", + "target": "components_aliases_utils", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L91", + "weight": 1.0, + "source": "package", + "target": "package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L4", + "weight": 1.0, + "source": "package", + "target": "package_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L27", + "weight": 1.0, + "source": "package", + "target": "package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L5", + "weight": 1.0, + "source": "package", + "target": "package_homepage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L2", + "weight": 1.0, + "source": "package", + "target": "package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L77", + "weight": 1.0, + "source": "package", + "target": "package_overrides", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "source": "package", + "target": "package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L7", + "weight": 1.0, + "source": "package", + "target": "package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L76", + "weight": 1.0, + "source": "package", + "target": "package_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L3", + "weight": 1.0, + "source": "package", + "target": "package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L71", + "weight": 1.0, + "source": "package", + "target": "package_vitest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L9", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L10", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_build_dev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L21", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_build_docker_dev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L12", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_build_prod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L11", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_build_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L15", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_check", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L16", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_check_watch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L22", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_compose_down", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L24", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_deploy_remote_prod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L23", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_deploy_remote_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L8", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_dev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L18", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_format", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L17", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_lint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L25", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_postinstall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L13", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_preview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L14", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L19", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_test_integration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L20", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_test_unit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L44", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_clsx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L45", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_eslint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L46", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_eslint_config_prettier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L28", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_eslint_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L47", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_eslint_plugin_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L48", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_flowbite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L49", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_globals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L50", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_highlight_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L51", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_lowlight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L52", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_mode_watcher", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L29", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_playwright_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L53", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_prettier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L54", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_prettier_plugin_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L55", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_sass_embedded", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L30", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_skeletonlabs_skeleton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L31", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_skeletonlabs_skeleton_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L56", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L57", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_svelte_awesome_color_picker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L58", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_svelte_check", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L59", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_svelte_highlight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L60", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_svelte_idle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L32", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_sveltejs_adapter_auto", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L33", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_sveltejs_adapter_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L34", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_sveltejs_adapter_static", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L35", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_sveltejs_kit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L36", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_sveltejs_vite_plugin_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L61", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_tailwind_merge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L62", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_tailwind_variants", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L63", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_tailwindcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L64", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_tailwindcss_animate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L37", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_tailwindcss_forms", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L38", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_tailwindcss_typography", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L65", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_tslib", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L39", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_types_eslint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L40", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_types_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L41", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_types_qrcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L66", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L42", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_typescript_eslint_eslint_plugin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L43", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_typescript_eslint_parser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L67", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_typescript_svelte_plugin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L68", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_vite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L69", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_vitest", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L60", + "weight": 1.0, + "context": "import", + "source": "package_devdependencies_svelte_idle", + "target": "svelte_idle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L66", + "weight": 1.0, + "context": "import", + "source": "package_devdependencies_typescript", + "target": "typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L72", + "weight": 1.0, + "source": "package_vitest", + "target": "package_vitest_exclude", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L84", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_codemirror_autocomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L82", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_codemirror_commands", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L83", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_codemirror_lang_markdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L81", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_codemirror_language", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L86", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_codemirror_lint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L85", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_codemirror_search", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L79", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_codemirror_state", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L80", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_codemirror_view", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L78", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_esbuild", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L87", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_lezer_common", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L88", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_lezer_highlight", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L89", + "weight": 1.0, + "source": "package_overrides", + "target": "package_overrides_lezer_lr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L92", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_autocomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L93", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_commands", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L94", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_lang_css", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L95", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_lang_html", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L96", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_lang_javascript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L97", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_lang_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L98", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_lang_markdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L99", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_language", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L100", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_language_data", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L101", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_lint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L102", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_search", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L103", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_state", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L104", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_theme_one_dark", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L105", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_codemirror_view", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L110", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_dayjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L111", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_dexie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L106", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_floating_ui_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L112", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L113", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_html5_qrcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L107", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_lucide_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L114", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_marked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L115", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_openai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L108", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_popperjs_core", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L116", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_prettier_plugin_tailwindcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L117", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_qrcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L118", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_runed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L119", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_svelte_persisted_store", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L109", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_tailwindcss_vite", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L120", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_typescript_eslint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L111", + "weight": 1.0, + "context": "import", + "source": "package_dependencies_dexie", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L112", + "weight": 1.0, + "context": "import", + "source": "package_dependencies_flowbite_svelte", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L113", + "weight": 1.0, + "context": "import", + "source": "package_dependencies_html5_qrcode", + "target": "html5_qrcode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L114", + "weight": 1.0, + "context": "import", + "source": "package_dependencies_marked", + "target": "marked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L115", + "weight": 1.0, + "context": "import", + "source": "package_dependencies_openai", + "target": "openai", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "playwright.config.ts", + "source_location": "L3", + "weight": 1.0, + "source": "playwright_config", + "target": "playwright_config_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L180", + "weight": 1.0, + "source": "scripts_migrate_fa_to_lucide", + "target": "scripts_migrate_fa_to_lucide_parse_fa_class", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L196", + "weight": 1.0, + "source": "scripts_migrate_fa_to_lucide", + "target": "scripts_migrate_fa_to_lucide_replace_span", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L181", + "weight": 1.0, + "source": "scripts_migrate_fa_to_lucide_rationale_181", + "target": "scripts_migrate_fa_to_lucide_parse_fa_class", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "scripts/migrate_fa_to_lucide.py", + "source_location": "L197", + "weight": 1.0, + "source": "scripts_migrate_fa_to_lucide_rationale_197", + "target": "scripts_migrate_fa_to_lucide_replace_span", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/postinstall.mjs", + "source_location": "L23", + "weight": 1.0, + "source": "scripts_postinstall", + "target": "scripts_postinstall_dist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/postinstall.mjs", + "source_location": "L32", + "weight": 1.0, + "source": "scripts_postinstall", + "target": "scripts_postinstall_patch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/postinstall.mjs", + "source_location": "L22", + "weight": 1.0, + "source": "scripts_postinstall", + "target": "scripts_postinstall_root", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/app.d.ts", + "source_location": "L31", + "weight": 1.0, + "source": "src_app_d", + "target": "src_app_d_intrinsicelements", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/app.d.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_app_d", + "target": "src_app_d_locals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/app.d.ts", + "source_location": "L18", + "weight": 1.0, + "source": "src_app_d", + "target": "src_app_d_platform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/app.d.ts", + "source_location": "L21", + "weight": 1.0, + "source": "src_app_d", + "target": "src_app_d_window", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L163", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_delete_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_delete_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_delete_object_delete_object", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L110", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_download_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L52", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_ae_obj_li_for_lu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_crud_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_crud_obj_li_get_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_crud_obj_li_get_ae_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_crud_obj_li_get_nested_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_crud_obj_li_get_nested_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L29", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L29", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_data_store_get_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_lookup", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_lookup_get_ae_lookup_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_get_object_get_object", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L315", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_patch_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_patch_object_patch_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_obj_create_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_obj_create_nested_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_obj_delete_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_obj_delete_nested_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_obj_update_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_obj_update_nested_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L19", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_search", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L19", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_crud_search_search_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_post_object_post_object", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L211", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_send_email", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L33", + "weight": 1.0, + "source": "ae_api_api", + "target": "ae_api_api_serialize_json_field_pretty", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_api_api", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_api_api", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__check_hosted_file_obj_w_hash.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_check_hosted_file_obj_w_hash", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_countries", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_country_subdivisions", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_core_data_store", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__export.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_export", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_time_zones", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_person", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_track.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_track", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L57", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/manifest.webmanifest/+server.ts", + "source_location": "L2", + "weight": 1.0, + "source": "manifest_webmanifest_server", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L22", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api.ts", + "source_location": "L92", + "weight": 1.0, + "source": "ae_api_api_get_ae_obj_li_for_lu", + "target": "ae_api_api_get_lookup_get_ae_lookup_li" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_delete_object.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_api_api_delete_object", + "target": "ae_api_api_delete_object_delete_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_delete_object.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_delete_object", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_delete_object.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_delete_object", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_delete_object.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_delete_object", + "target": "stores_ae_stores_ae_auth_error", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_delete_object.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_delete_object", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_delete_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_delete_object_delete_object", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L277", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_delete_ae_obj", + "target": "ae_api_api_delete_object_delete_object" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L333", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_delete_nested_ae_obj", + "target": "ae_api_api_delete_object_delete_object" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_crud_obj_li_get_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L108", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_crud_obj_li_get_ae_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L59", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_crud_obj_li_get_nested_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L176", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_crud_obj_li_get_nested_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L88", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_crud_obj_li_getaeobjliv3params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_crud_obj_li_getaeobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L44", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_crud_obj_li_getnestedaeobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L158", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_crud_obj_li_getnestedobjliv3params", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "ae_api_api_get_object_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li_getaeobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L35", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li_get_ae_obj", + "target": "ae_api_api_get_object_get_object" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L51", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li_getnestedaeobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L79", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li_get_nested_ae_obj", + "target": "ae_api_api_get_object_get_object" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L103", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li_getaeobjliv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L149", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li_get_ae_obj_li", + "target": "ae_api_api_get_object_get_object" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_get__crud_obj_li.ts", + "source_location": "L209", + "weight": 1.0, + "source": "ae_api_api_get_crud_obj_li_get_nested_obj_li", + "target": "ae_api_api_get_object_get_object" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api_get_data_store", + "target": "ae_api_api_get_data_store_get_data_store", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_api_api_get_data_store", + "target": "ae_api_api_get_data_store_getdatastorev3params", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_get_data_store", + "target": "ae_api_api_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_get_data_store", + "target": "ae_api_api_get_object_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_get_data_store", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_get_data_store", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_get__data_store.ts", + "source_location": "L47", + "weight": 1.0, + "source": "ae_api_api_get_data_store_get_data_store", + "target": "ae_api_api_get_object_get_object" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__lookup.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_api_api_get_lookup", + "target": "ae_api_api_get_lookup_get_ae_lookup_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__lookup.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_get_lookup", + "target": "ae_api_api_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__lookup.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_get_lookup", + "target": "ae_api_api_get_object_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__lookup.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_get_lookup", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get__lookup.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_get_lookup", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_get__lookup.ts", + "source_location": "L61", + "weight": 1.0, + "source": "ae_api_api_get_lookup_get_ae_lookup_li", + "target": "ae_api_api_get_object_get_object" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_api_api_get_object", + "target": "ae_api_api_get_object_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_get_object", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_get_object", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_get_object", + "target": "stores_ae_stores_ae_auth_error", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_get_object.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_get_object", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_patch_object.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_api_api_patch_object", + "target": "ae_api_api_patch_object_patch_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_patch_object.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_patch_object", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_patch_object.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_patch_object", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_patch_object.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_patch_object", + "target": "stores_ae_stores_ae_auth_error", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_patch_object.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_patch_object", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_patch_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_patch_object_patch_object", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L171", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_update_ae_obj", + "target": "ae_api_api_patch_object_patch_object" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L234", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_update_nested_obj", + "target": "ae_api_api_patch_object_patch_object" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L34", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_create_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L88", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_create_nested_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L26", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_createaeobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L73", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_createnestedobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L260", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_delete_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L305", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_delete_nested_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L247", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_deleteaeobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L285", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_deletenestedaeobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_serialize_json_field_pretty", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L144", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_update_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L197", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_update_nested_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L135", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_updateaeobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L180", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_crud_obj_updatenestedobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "ae_api_api_post_object_post_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L54", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_create_ae_obj", + "target": "ae_api_api_post_crud_obj_serialize_json_field_pretty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L116", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_create_nested_obj", + "target": "ae_api_api_post_crud_obj_serialize_json_field_pretty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L165", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_update_ae_obj", + "target": "ae_api_api_post_crud_obj_serialize_json_field_pretty", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L228", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_update_nested_obj", + "target": "ae_api_api_post_crud_obj_serialize_json_field_pretty", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L29", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_createaeobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L64", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_create_ae_obj", + "target": "ae_api_api_post_object_post_object" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L83", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_createnestedobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L122", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_create_nested_obj", + "target": "ae_api_api_post_object_post_object" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L139", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_updateaeobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L192", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_updatenestedobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L252", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_deleteaeobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_obj.ts", + "source_location": "L298", + "weight": 1.0, + "source": "ae_api_api_post_crud_obj_deletenestedaeobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L25", + "weight": 1.0, + "source": "ae_api_api_post_crud_search", + "target": "ae_api_api_post_crud_search_search_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_api_api_post_crud_search", + "target": "ae_api_api_post_crud_search_searchaeobjv3params", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_post_crud_search", + "target": "ae_api_api_post_object", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_post_crud_search", + "target": "ae_api_api_post_object_post_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_post_crud_search", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_post_crud_search", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_api_api_post_crud_search_searchaeobjv3params", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_api/api_post__crud_search.ts", + "source_location": "L77", + "weight": 1.0, + "source": "ae_api_api_post_crud_search_search_ae_obj", + "target": "ae_api_api_post_object_post_object" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_api_api_post_object", + "target": "ae_api_api_post_object_post_object", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L446", + "weight": 1.0, + "source": "ae_api_api_post_object", + "target": "ae_api_api_post_object_post_with_xhr", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_api_api_post_object", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_post_object", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_api_api_post_object", + "target": "stores_ae_stores_ae_auth_error", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_api_api_post_object", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_api/api_post_object.ts", + "source_location": "L190", + "weight": 1.0, + "source": "ae_api_api_post_object_post_object", + "target": "ae_api_api_post_object_post_with_xhr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_editable_fields", + "target": "ae_archives_ae_archives_archive_editable_fields_editable_fields_archive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_content_load_ae_obj_li_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L217", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_create_ae_obj_archive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L267", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_delete_ae_obj_id_archive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_load_ae_obj_id_archive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L103", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_load_ae_obj_li_archive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L494", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_process_ae_obj_archive_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L441", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L414", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L354", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_qry_archive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L305", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_ae_archives_archive_update_ae_obj_archive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_db_archives", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_archives_db_archives_db_archives", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive", + "target": "types_ae_types_ae_archive", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L83", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_load_ae_obj_id_archive", + "target": "ae_archives_ae_archives_archive_content_load_ae_obj_li_archive_content" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L58", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_load_ae_obj_id_archive", + "target": "ae_archives_ae_archives_archive_process_ae_obj_archive_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L62", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_load_ae_obj_id_archive", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_load_ae_obj_id_archive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L197", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_load_ae_obj_li_archive", + "target": "ae_archives_ae_archives_archive_content_load_ae_obj_li_archive_content" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L172", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_load_ae_obj_li_archive", + "target": "ae_archives_ae_archives_archive_process_ae_obj_archive_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L176", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_load_ae_obj_li_archive", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_load_ae_obj_li_archive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L250", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_create_ae_obj_archive", + "target": "ae_archives_ae_archives_archive_process_ae_obj_archive_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L254", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_create_ae_obj_archive", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_create_ae_obj_archive", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_delete_ae_obj_id_archive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L337", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_update_ae_obj_archive", + "target": "ae_archives_ae_archives_archive_process_ae_obj_archive_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L341", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_update_ae_obj_archive", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_update_ae_obj_archive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive.ts", + "source_location": "L501", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_process_ae_obj_archive_props", + "target": "ae_archives_ae_archives_archive_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_editable_fields", + "target": "ae_archives_ae_archives_archive_content_editable_fields_editable_fields_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L153", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_create_ae_obj_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L209", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_delete_ae_obj_id_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_load_ae_obj_id_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L71", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_load_ae_obj_li_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L387", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_process_ae_obj_archive_content_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L334", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L296", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L247", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_ae_archives_archive_content_update_ae_obj_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_db_archives", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_archives_db_archives_db_archives", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content", + "target": "types_ae_types_ae_archivecontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L45", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_load_ae_obj_id_archive_content", + "target": "ae_archives_ae_archives_archive_content_process_ae_obj_archive_content_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L49", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_load_ae_obj_id_archive_content", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_content_load_ae_obj_id_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L131", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_load_ae_obj_li_archive_content", + "target": "ae_archives_ae_archives_archive_content_process_ae_obj_archive_content_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L135", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_load_ae_obj_li_archive_content", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_content_load_ae_obj_li_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L192", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_create_ae_obj_archive_content", + "target": "ae_archives_ae_archives_archive_content_process_ae_obj_archive_content_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L196", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_create_ae_obj_archive_content", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_content_create_ae_obj_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_content_delete_ae_obj_id_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L279", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_update_ae_obj_archive_content", + "target": "ae_archives_ae_archives_archive_content_process_ae_obj_archive_content_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L283", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_update_ae_obj_archive_content", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_archive_content_update_ae_obj_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives__archive_content.ts", + "source_location": "L394", + "weight": 1.0, + "source": "ae_archives_ae_archives_archive_content_process_ae_obj_archive_content_props", + "target": "ae_archives_ae_archives_archive_content_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/ae_archives_functions.ts", + "source_location": "L19", + "weight": 1.0, + "source": "ae_archives_ae_archives_functions", + "target": "ae_archives_ae_archives_functions_export_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_archives_db_archives", + "target": "ae_archives_db_archives_archive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L81", + "weight": 1.0, + "source": "ae_archives_db_archives", + "target": "ae_archives_db_archives_archive_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L197", + "weight": 1.0, + "source": "ae_archives_db_archives", + "target": "ae_archives_db_archives_db_archives", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L145", + "weight": 1.0, + "source": "ae_archives_db_archives", + "target": "ae_archives_db_archives_mysubclasseddexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_archives_db_archives", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_archives_db_archives", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_archives_db_archives", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L51", + "weight": 1.0, + "source": "ae_archives_db_archives_archive", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L122", + "weight": 1.0, + "source": "ae_archives_db_archives_archive_content", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_archives/db_archives.ts", + "source_location": "L150", + "weight": 1.0, + "source": "ae_archives_db_archives_mysubclasseddexie", + "target": "ae_archives_db_archives_mysubclasseddexie_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_account_editable_fields", + "target": "ae_core_ae_core_account_editable_fields_editable_fields_account", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L143", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_create_ae_obj_account", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L251", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_delete_ae_obj_id_account", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_load_ae_obj_id_account", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L72", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_load_ae_obj_li_account", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L367", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_process_ae_obj_account_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L315", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L293", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L198", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_ae_core_account_update_ae_obj_account", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_account", + "target": "types_ae_types_ae_account", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.ts", + "source_location": "L2", + "weight": 1.0, + "source": "src_routes_core_accounts_page_ts_accounts_page", + "target": "ae_core_ae_core_account", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L45", + "weight": 1.0, + "source": "ae_core_ae_core_account_load_ae_obj_id_account", + "target": "ae_core_ae_core_account_process_ae_obj_account_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L49", + "weight": 1.0, + "source": "ae_core_ae_core_account_load_ae_obj_id_account", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L121", + "weight": 1.0, + "source": "ae_core_ae_core_account_load_ae_obj_li_account", + "target": "ae_core_ae_core_account_process_ae_obj_account_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L125", + "weight": 1.0, + "source": "ae_core_ae_core_account_load_ae_obj_li_account", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.ts", + "source_location": "L2", + "weight": 1.0, + "source": "src_routes_core_accounts_page_ts_accounts_page", + "target": "ae_core_ae_core_account_load_ae_obj_li_account", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L172", + "weight": 1.0, + "source": "ae_core_ae_core_account_create_ae_obj_account", + "target": "ae_core_ae_core_account_process_ae_obj_account_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L176", + "weight": 1.0, + "source": "ae_core_ae_core_account_create_ae_obj_account", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L231", + "weight": 1.0, + "source": "ae_core_ae_core_account_update_ae_obj_account", + "target": "ae_core_ae_core_account_process_ae_obj_account_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L235", + "weight": 1.0, + "source": "ae_core_ae_core_account_update_ae_obj_account", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__account.ts", + "source_location": "L374", + "weight": 1.0, + "source": "ae_core_ae_core_account_process_ae_obj_account_props", + "target": "ae_core_ae_core_account_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log_editable_fields", + "target": "ae_core_ae_core_activity_log_editable_fields_editable_fields_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L89", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_create_ae_obj_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_load_ae_obj_id_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L40", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_load_ae_obj_li_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L357", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_process_ae_obj_activity_log_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L302", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L262", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L163", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_qry_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L130", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "ae_core_ae_core_activity_log_update_ae_obj_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log", + "target": "types_ae_types_ae_activitylog", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_core_ae_core_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_activity_log_load_ae_obj_id_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_activity_log_load_ae_obj_li_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_activity_log_create_ae_obj_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_activity_log_update_ae_obj_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_core_ae_core_activity_log_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__activity_log.ts", + "source_location": "L364", + "weight": 1.0, + "source": "ae_core_ae_core_activity_log_process_ae_obj_activity_log_props", + "target": "ae_core_ae_core_activity_log_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_core_ae_core_activity_log_process_ae_obj_activity_log_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L413", + "weight": 1.0, + "source": "ae_reports_reports_functions_qry_jitsi_report", + "target": "ae_core_ae_core_activity_log_process_ae_obj_activity_log_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_address_editable_fields", + "target": "ae_core_ae_core_address_editable_fields_editable_fields_address", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L122", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_create_ae_obj_address", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L206", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_delete_ae_obj_id_address", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_load_ae_obj_id_address", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L58", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_load_ae_obj_li_address", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L299", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_process_ae_obj_address_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L258", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L236", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L165", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_ae_core_address_update_ae_obj_address", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_address", + "target": "types_ae_types_ae_address", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L149", + "weight": 1.0, + "source": "ae_core_ae_core_address_create_ae_obj_address", + "target": "ae_core_ae_core_address_process_ae_obj_address_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L153", + "weight": 1.0, + "source": "ae_core_ae_core_address_create_ae_obj_address", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L190", + "weight": 1.0, + "source": "ae_core_ae_core_address_update_ae_obj_address", + "target": "ae_core_ae_core_address_process_ae_obj_address_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L194", + "weight": 1.0, + "source": "ae_core_ae_core_address_update_ae_obj_address", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__address.ts", + "source_location": "L306", + "weight": 1.0, + "source": "ae_core_ae_core_address_process_ae_obj_address_props", + "target": "ae_core_ae_core_address_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_contact_editable_fields", + "target": "ae_core_ae_core_contact_editable_fields_editable_fields_contact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L120", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_create_ae_obj_contact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L204", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_delete_ae_obj_id_contact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_load_ae_obj_id_contact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L58", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_load_ae_obj_li_contact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L297", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_process_ae_obj_contact_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L256", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L234", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L163", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_ae_core_contact_update_ae_obj_contact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_contact", + "target": "types_ae_types_ae_contact", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L147", + "weight": 1.0, + "source": "ae_core_ae_core_contact_create_ae_obj_contact", + "target": "ae_core_ae_core_contact_process_ae_obj_contact_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L151", + "weight": 1.0, + "source": "ae_core_ae_core_contact_create_ae_obj_contact", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L188", + "weight": 1.0, + "source": "ae_core_ae_core_contact_update_ae_obj_contact", + "target": "ae_core_ae_core_contact_process_ae_obj_contact_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L192", + "weight": 1.0, + "source": "ae_core_ae_core_contact_update_ae_obj_contact", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__contact.ts", + "source_location": "L304", + "weight": 1.0, + "source": "ae_core_ae_core_contact_process_ae_obj_contact_props", + "target": "ae_core_ae_core_contact_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_person_editable_fields", + "target": "ae_core_ae_core_person_editable_fields_editable_fields_person", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_person", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L205", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_create_ae_obj_person", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L294", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_delete_ae_obj_id_person", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_load_ae_obj_id_person", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L66", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_load_ae_obj_li_person", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L447", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_process_ae_obj_person_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L395", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L325", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L252", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_ae_core_person_update_ae_obj_person", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_person", + "target": "types_ae_types_ae_person", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_person_load_ae_obj_id_person", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L42", + "weight": 1.0, + "source": "ae_core_ae_core_person_load_ae_obj_id_person", + "target": "ae_core_ae_core_person_process_ae_obj_person_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L48", + "weight": 1.0, + "source": "ae_core_ae_core_person_load_ae_obj_id_person", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_person_load_ae_obj_li_person", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L180", + "weight": 1.0, + "source": "ae_core_ae_core_person_load_ae_obj_li_person", + "target": "ae_core_ae_core_person_process_ae_obj_person_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L186", + "weight": 1.0, + "source": "ae_core_ae_core_person_load_ae_obj_li_person", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_person_create_ae_obj_person", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L235", + "weight": 1.0, + "source": "ae_core_ae_core_person_create_ae_obj_person", + "target": "ae_core_ae_core_person_process_ae_obj_person_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L239", + "weight": 1.0, + "source": "ae_core_ae_core_person_create_ae_obj_person", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_person_update_ae_obj_person", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L277", + "weight": 1.0, + "source": "ae_core_ae_core_person_update_ae_obj_person", + "target": "ae_core_ae_core_person_process_ae_obj_person_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L281", + "weight": 1.0, + "source": "ae_core_ae_core_person_update_ae_obj_person", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_person_delete_ae_obj_id_person", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__person.ts", + "source_location": "L454", + "weight": 1.0, + "source": "ae_core_ae_core_person_process_ae_obj_person_props", + "target": "ae_core_ae_core_person_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_site_editable_fields", + "target": "ae_core_ae_core_site_editable_fields_editable_fields_site", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L392", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_create_ae_obj_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L580", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_create_ae_obj_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L478", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_delete_ae_obj_id_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L671", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_delete_ae_obj_id_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L263", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_load_ae_obj_id_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L316", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_load_ae_obj_li_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L514", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_load_ae_obj_li_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L98", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_lookup_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L837", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_process_ae_obj_site_domain_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L823", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_process_ae_obj_site_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L771", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L706", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_properties_to_save_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L739", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_properties_to_save_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L157", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_refresh_site_domain_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L436", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_update_ae_obj_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L624", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_ae_core_site_update_ae_obj_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "types_ae_types_ae_site", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_site", + "target": "types_ae_types_ae_sitedomain", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_layout_ts_routes_layout", + "target": "ae_core_ae_core_site", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L129", + "weight": 1.0, + "source": "ae_core_ae_core_site_lookup_site_domain", + "target": "ae_core_ae_core_site_refresh_site_domain_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "src/routes/+layout.ts", + "source_location": "L340", + "weight": 1.0, + "source": "routes_layout_load", + "target": "ae_core_ae_core_site_lookup_site_domain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_layout_ts_routes_layout", + "target": "ae_core_ae_core_site_lookup_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L211", + "weight": 1.0, + "source": "ae_core_ae_core_site_refresh_site_domain_background", + "target": "ae_core_ae_core_site_process_ae_obj_site_domain_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L215", + "weight": 1.0, + "source": "ae_core_ae_core_site_refresh_site_domain_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L294", + "weight": 1.0, + "source": "ae_core_ae_core_site_load_ae_obj_id_site", + "target": "ae_core_ae_core_site_process_ae_obj_site_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L298", + "weight": 1.0, + "source": "ae_core_ae_core_site_load_ae_obj_id_site", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L370", + "weight": 1.0, + "source": "ae_core_ae_core_site_load_ae_obj_li_site", + "target": "ae_core_ae_core_site_process_ae_obj_site_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L374", + "weight": 1.0, + "source": "ae_core_ae_core_site_load_ae_obj_li_site", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L419", + "weight": 1.0, + "source": "ae_core_ae_core_site_create_ae_obj_site", + "target": "ae_core_ae_core_site_process_ae_obj_site_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L423", + "weight": 1.0, + "source": "ae_core_ae_core_site_create_ae_obj_site", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L461", + "weight": 1.0, + "source": "ae_core_ae_core_site_update_ae_obj_site", + "target": "ae_core_ae_core_site_process_ae_obj_site_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L465", + "weight": 1.0, + "source": "ae_core_ae_core_site_update_ae_obj_site", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L557", + "weight": 1.0, + "source": "ae_core_ae_core_site_load_ae_obj_li_site_domain", + "target": "ae_core_ae_core_site_process_ae_obj_site_domain_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L562", + "weight": 1.0, + "source": "ae_core_ae_core_site_load_ae_obj_li_site_domain", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L606", + "weight": 1.0, + "source": "ae_core_ae_core_site_create_ae_obj_site_domain", + "target": "ae_core_ae_core_site_process_ae_obj_site_domain_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L611", + "weight": 1.0, + "source": "ae_core_ae_core_site_create_ae_obj_site_domain", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L653", + "weight": 1.0, + "source": "ae_core_ae_core_site_update_ae_obj_site_domain", + "target": "ae_core_ae_core_site_process_ae_obj_site_domain_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L658", + "weight": 1.0, + "source": "ae_core_ae_core_site_update_ae_obj_site_domain", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L846", + "weight": 1.0, + "source": "ae_core_ae_core_site_process_ae_obj_site_domain_props", + "target": "ae_core_ae_core_site_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site.ts", + "source_location": "L830", + "weight": 1.0, + "source": "ae_core_ae_core_site_process_ae_obj_site_props", + "target": "ae_core_ae_core_site_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__site_domain.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_site_domain_editable_fields", + "target": "ae_core_ae_core_site_domain_editable_fields_editable_fields_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_user_editable_fields", + "target": "ae_core_ae_core_user_editable_fields_editable_fields_user", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_user", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L508", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_auth_ae_obj_user_id_change_password", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L390", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_auth_ae_obj_user_id_user_auth_key", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L346", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_auth_ae_obj_username_password", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L213", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_create_ae_obj_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L299", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_delete_ae_obj_id_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_load_ae_obj_id_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L64", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_load_ae_obj_li_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L626", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_process_ae_obj_user_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L574", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L545", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L469", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_qry_ae_obj_li_user_email", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L433", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_send_email_auth_ae_obj_user_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L257", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_ae_core_user_update_ae_obj_user", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_ae_core_user", + "target": "types_ae_types_ae_user", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_core_users_user_id_page_ts_user_id_page", + "target": "ae_core_ae_core_user", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L42", + "weight": 1.0, + "source": "ae_core_ae_core_user_load_ae_obj_id_user", + "target": "ae_core_ae_core_user_process_ae_obj_user_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L46", + "weight": 1.0, + "source": "ae_core_ae_core_user_load_ae_obj_id_user", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_core_users_user_id_page_ts_user_id_page", + "target": "ae_core_ae_core_user_load_ae_obj_id_user", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "src/routes/core/users/[user_id]/+page.ts", + "source_location": "L15", + "weight": 1.0, + "source": "user_id_page_load", + "target": "ae_core_ae_core_user_load_ae_obj_id_user" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L240", + "weight": 1.0, + "source": "ae_core_ae_core_user_create_ae_obj_user", + "target": "ae_core_ae_core_user_process_ae_obj_user_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L244", + "weight": 1.0, + "source": "ae_core_ae_core_user_create_ae_obj_user", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L282", + "weight": 1.0, + "source": "ae_core_ae_core_user_update_ae_obj_user", + "target": "ae_core_ae_core_user_process_ae_obj_user_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L286", + "weight": 1.0, + "source": "ae_core_ae_core_user_update_ae_obj_user", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_user_auth_ae_obj_username_password", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_user_auth_ae_obj_user_id_user_auth_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_user_send_email_auth_ae_obj_user_id", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_user_qry_ae_obj_li_user_email", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_user_auth_ae_obj_user_id_change_password", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core__user.ts", + "source_location": "L633", + "weight": 1.0, + "source": "ae_core_ae_core_user_process_ae_obj_user_props", + "target": "ae_core_ae_core_user_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L51", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_ae_core_functions_export_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L46", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_api_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L46", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_api_helpers_add_url_params", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L46", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_api_helpers_clean_headers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L29", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_check_hosted_file_obj_w_hash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L29", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_check_hosted_file_obj_w_hash_check_hosted_file_obj_w_hash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L33", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_countries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L33", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_countries_load_ae_obj_li_country", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L35", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_country_subdivisions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L35", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_country_subdivisions_load_ae_obj_li_country_subdivision", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L48", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_export", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L48", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_export_download_export_obj_type", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L37", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_hosted_files", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L37", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_hosted_files_delete_ae_obj_id_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L37", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_hosted_files_load_ae_obj_id_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L37", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_hosted_files_load_ae_obj_li_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L44", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L44", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_qr_code", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_qr_code_generate_qr_code", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_qr_code_js_generate_qr_code", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L31", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_time_zones", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/ae_core_functions.ts", + "source_location": "L31", + "weight": 1.0, + "source": "ae_core_ae_core_functions", + "target": "ae_core_core_time_zones_load_ae_obj_li_time_zone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L59", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_core_people_person_id_page_ts_person_id_page", + "target": "ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_hosted_files_layout_ts_hosted_files_layout", + "target": "ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__api_helpers.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_core_api_helpers", + "target": "ae_core_core_api_helpers_add_url_params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__api_helpers.ts", + "source_location": "L38", + "weight": 1.0, + "source": "ae_core_core_api_helpers", + "target": "ae_core_core_api_helpers_clean_headers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__api_helpers.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_api_helpers", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__api_helpers.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_api_helpers", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__check_hosted_file_obj_w_hash.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_check_hosted_file_obj_w_hash", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__check_hosted_file_obj_w_hash.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_core_check_hosted_file_obj_w_hash", + "target": "ae_core_core_check_hosted_file_obj_w_hash_check_hosted_file_obj_w_hash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__check_hosted_file_obj_w_hash.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_check_hosted_file_obj_w_hash", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__check_hosted_file_obj_w_hash.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_check_hosted_file_obj_w_hash", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_countries", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L50", + "weight": 1.0, + "source": "ae_core_core_countries", + "target": "ae_core_core_countries_load_ae_obj_li_country", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_core_core_countries", + "target": "ae_core_core_countries_refresh_lu_country_background", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_countries", + "target": "ae_core_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_countries", + "target": "ae_core_db_lookups_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__countries.ts", + "source_location": "L66", + "weight": 1.0, + "source": "ae_core_core_countries_load_ae_obj_li_country", + "target": "ae_core_core_countries_refresh_lu_country_background", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_country_subdivisions", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L50", + "weight": 1.0, + "source": "ae_core_core_country_subdivisions", + "target": "ae_core_core_country_subdivisions_load_ae_obj_li_country_subdivision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L14", + "weight": 1.0, + "source": "ae_core_core_country_subdivisions", + "target": "ae_core_core_country_subdivisions_refresh_lu_country_subdivision_background", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_country_subdivisions", + "target": "ae_core_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_country_subdivisions", + "target": "ae_core_db_lookups_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__country_subdivisions.ts", + "source_location": "L65", + "weight": 1.0, + "source": "ae_core_core_country_subdivisions_load_ae_obj_li_country_subdivision", + "target": "ae_core_core_country_subdivisions_refresh_lu_country_subdivision_background", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_core_data_store", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_core_core_data_store", + "target": "ae_core_core_data_store_load_ae_obj_by_code_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_data_store", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_data_store", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_data_store", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_core_data_store", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_core_data_store", + "target": "types_ae_types_ae_datastore", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__data_store.ts", + "source_location": "L85", + "weight": 1.0, + "source": "ae_core_core_data_store_load_ae_obj_by_code_data_store", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__export.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_export", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__export.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_core_export", + "target": "ae_core_core_export_download_export_obj_type", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__export.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_export", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__export.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_export", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_hosted_files_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L152", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_hosted_files_delete_ae_obj_id_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L200", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_hosted_files_download_ae_obj_id_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_hosted_files_load_ae_obj_id_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L70", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_hosted_files_load_ae_obj_li_hosted_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L324", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_hosted_files_process_ae_obj_hosted_file_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L272", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_hosted_files_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L244", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_hosted_files_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_core_hosted_files", + "target": "types_ae_types_ae_hostedfile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L42", + "weight": 1.0, + "source": "ae_core_core_hosted_files_load_ae_obj_id_hosted_file", + "target": "ae_core_core_hosted_files_process_ae_obj_hosted_file_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L46", + "weight": 1.0, + "source": "ae_core_core_hosted_files_load_ae_obj_id_hosted_file", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L120", + "weight": 1.0, + "source": "ae_core_core_hosted_files_load_ae_obj_li_hosted_file", + "target": "ae_core_core_hosted_files_process_ae_obj_hosted_file_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L124", + "weight": 1.0, + "source": "ae_core_core_hosted_files_load_ae_obj_li_hosted_file", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__hosted_files.ts", + "source_location": "L331", + "weight": 1.0, + "source": "ae_core_core_hosted_files_process_ae_obj_hosted_file_props", + "target": "ae_core_core_hosted_files_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L19", + "weight": 1.0, + "source": "ae_core_core_idb_dexie", + "target": "ae_core_core_idb_dexie_check_and_clear_idb_tables", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L108", + "weight": 1.0, + "source": "ae_core_core_idb_dexie", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L58", + "weight": 1.0, + "source": "ae_core_core_idb_dexie", + "target": "ae_core_core_idb_dexie_find_object_id", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_idb_dexie", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__idb_dexie.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_idb_dexie", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_core_core_idb_dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "ae_core_core_idb_dexie_check_and_clear_idb_tables", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L276", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_create_ae_obj_event_badge", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L68", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_load_ae_obj_id_event_badge", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L181", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_load_ae_obj_li_event_badge", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L553", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_search_event_badge", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L289", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_create_ae_obj_event_badge_template", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L159", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_load_ae_obj_id_event_badge_template", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L233", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_load_ae_obj_li_event_badge_template", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L433", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_search_event_badge_template", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L363", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_update_ae_obj_event_badge_template", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L373", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_update_ae_obj_event_badge", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L501", + "weight": 1.0, + "source": "ae_events_ae_events_event_create_ae_obj_event", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L234", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_create_ae_obj_event_device", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L53", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_load_ae_obj_id_event_device", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L151", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L419", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_search_event_device", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L337", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_update_ae_obj_event_device", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L84", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_refresh_file_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L265", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_refresh_file_li_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L512", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_search_event_file", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L419", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_update_ae_obj_event_file", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L407", + "weight": 1.0, + "source": "ae_events_ae_events_event_load_ae_obj_li_event", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L431", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_create_ae_obj_event_location", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L122", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_refresh_location_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L306", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_refresh_location_li_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L573", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_search_event_location", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L505", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_update_ae_obj_event_location", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L435", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_create_ae_obj_event_presentation", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L133", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_refresh_presentation_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L359", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_refresh_presentation_li_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L577", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_search_event_presentation", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L501", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_update_ae_obj_event_presentation", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L351", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_create_ae_obj_event_presenter", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L91", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_refresh_presenter_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L268", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_refresh_presenter_li_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L554", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_search_event_presenter", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L441", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_update_ae_obj_event_presenter", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L171", + "weight": 1.0, + "source": "ae_events_ae_events_event_refresh_event_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L725", + "weight": 1.0, + "source": "ae_events_ae_events_event_search_event", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L569", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_create_ae_obj_event_session", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L206", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_refresh_session_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L495", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_refresh_session_li_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L794", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_search_event_session", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L651", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_update_ae_obj_event_session", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L580", + "weight": 1.0, + "source": "ae_events_ae_events_event_update_ae_obj_event", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L429", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_create_ae_obj_exhibit", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L225", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_refresh_exhibit_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L380", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_refresh_exhibit_li_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L566", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_search_exhibit", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L451", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_create_ae_obj_exhibit_tracking", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L240", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_refresh_tracking_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L394", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_refresh_tracking_li_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L662", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_search_exhibit_tracking", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L499", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_update_ae_obj_exhibit_tracking", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L477", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_update_ae_obj_exhibit", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L434", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_create_ae_obj_journal", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L253", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_create_ae_obj_journal_entry", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L53", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_load_ae_obj_id_journal_entry", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L168", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_load_ae_obj_li_journal_entry", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L477", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_qry_journal_entry", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L613", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_update_ae_obj_journal_entry", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L684", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_qry_journal", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L151", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_refresh_journal_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L344", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_refresh_journal_li_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L551", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_update_ae_obj_journal", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L193", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_create_ae_obj_post_comment", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L50", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_load_ae_obj_id_post_comment", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L133", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L280", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_update_ae_obj_post_comment", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L233", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_create_ae_obj_post", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L59", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_load_ae_obj_id_post", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L160", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_load_ae_obj_li_post", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L430", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_qry_post", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L318", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_update_ae_obj_post", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L417", + "weight": 1.0, + "source": "ae_reports_reports_functions_qry_jitsi_report", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L405", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_li_sponsorship", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L259", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_cfg_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L338", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_id_background", + "target": "ae_core_core_idb_dexie_db_save_ae_obj_li_ae_obj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__idb_sort.ts", + "source_location": "L22", + "weight": 1.0, + "source": "ae_core_core_idb_sort", + "target": "ae_core_core_idb_sort_build_tmp_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_core_core_idb_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_core_core_idb_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_core_core_idb_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_core_core_idb_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_core_core_idb_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_core_core_idb_sort_build_tmp_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_core_core_idb_sort_build_tmp_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_core_core_idb_sort_build_tmp_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_core_core_idb_sort_build_tmp_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_core_core_idb_sort_build_tmp_sort", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "ae_core_core_qr_code_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "ae_core_core_qr_code_generate_qr_code", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L161", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "ae_core_core_qr_code_js_generate_qr_code", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__qr_code.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_core_core_qr_code", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_core_time_zones", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L51", + "weight": 1.0, + "source": "ae_core_core_time_zones", + "target": "ae_core_core_time_zones_load_ae_obj_li_time_zone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_core_core_time_zones", + "target": "ae_core_core_time_zones_refresh_lu_time_zone_background", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_time_zones", + "target": "ae_core_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_core_time_zones", + "target": "ae_core_db_lookups_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/core__time_zones.ts", + "source_location": "L66", + "weight": 1.0, + "source": "ae_core_core_time_zones_load_ae_obj_li_time_zone", + "target": "ae_core_core_time_zones_refresh_lu_time_zone_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L19", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "ae_core_db_core_ae_localfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L156", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L66", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "ae_core_db_core_mysubclasseddexie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L38", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "ae_core_db_core_person", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_account", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_activitylog", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_address", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_contact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_datastore", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_hostedfile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_person", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_site", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_sitedomain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_core_db_core", + "target": "types_ae_types_ae_user", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L164", + "weight": 1.0, + "source": "routes_layout_load", + "target": "ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L19", + "weight": 1.0, + "source": "ae_core_db_core_ae_localfile", + "target": "types_ae_types_ae_hostedfile", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L38", + "weight": 1.0, + "source": "ae_core_db_core_person", + "target": "types_ae_types_ae_person", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L78", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "ae_core_db_core_mysubclasseddexie_constructor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L70", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "types_ae_types_ae_account", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L76", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "types_ae_types_ae_activitylog", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L73", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "types_ae_types_ae_address", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L74", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "types_ae_types_ae_contact", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L75", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "types_ae_types_ae_datastore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L71", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "types_ae_types_ae_site", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L72", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "types_ae_types_ae_sitedomain", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_core.ts", + "source_location": "L69", + "weight": 1.0, + "source": "ae_core_db_core_mysubclasseddexie", + "target": "types_ae_types_ae_user", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_core_db_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L78", + "weight": 1.0, + "source": "ae_core_db_lookups", + "target": "ae_core_db_lookups_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L61", + "weight": 1.0, + "source": "ae_core_db_lookups", + "target": "ae_core_db_lookups_lookupsdexie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L56", + "weight": 1.0, + "source": "ae_core_db_lookups", + "target": "ae_core_db_lookups_lucachemeta", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_core_db_lookups", + "target": "ae_core_db_lookups_lucountry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L28", + "weight": 1.0, + "source": "ae_core_db_lookups", + "target": "ae_core_db_lookups_lucountrysubdivision", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L43", + "weight": 1.0, + "source": "ae_core_db_lookups", + "target": "ae_core_db_lookups_lutimezone", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_core_db_lookups", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_core/db_lookups.ts", + "source_location": "L67", + "weight": 1.0, + "source": "ae_core_db_lookups_lookupsdexie", + "target": "ae_core_db_lookups_lookupsdexie_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__badge_template_cfg.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_badge_template_cfg", + "target": "ae_events_ae_events_badge_template_cfg_badgetemplatecfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_editable_fields", + "target": "ae_events_ae_events_event_editable_fields_editable_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L18", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_badge_template_load_ae_obj_li_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L467", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_create_ae_obj_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L516", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_delete_ae_obj_id_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_device", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L204", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L21", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_load_ae_obj_id_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L300", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_load_ae_obj_li_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_location", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_location_load_ae_obj_li_event_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L925", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_process_ae_obj_event_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L865", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L785", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L132", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_refresh_event_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L603", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_search_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L14", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L14", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_session_load_ae_obj_li_event_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L1084", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_sync_config_event_badges", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L976", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_sync_config_event_pres_mgmt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L548", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_ae_events_event_update_ae_obj_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_events_stores_badges_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_events_stores_badges_defaults_badgesremotecfg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_events_stores_badges_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_events_stores_badges_svelte_badges_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_events_stores_pres_mgmt_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_events_stores_pres_mgmt_defaults_pressmgmtremotecfg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_events_stores_pres_mgmt_svelte_pres_mgmt_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_events_ae_events_event", + "target": "types_ae_types_ae_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L90", + "weight": 1.0, + "source": "ae_events_ae_events_event_load_ae_obj_id_event", + "target": "ae_events_ae_events_event_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L72", + "weight": 1.0, + "source": "ae_events_ae_events_event_load_ae_obj_id_event", + "target": "ae_events_ae_events_event_refresh_event_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L180", + "weight": 1.0, + "source": "ae_events_ae_events_event_refresh_event_background", + "target": "ae_events_ae_events_event_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L166", + "weight": 1.0, + "source": "ae_events_ae_events_event_refresh_event_background", + "target": "ae_events_ae_events_event_process_ae_obj_event_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L285", + "weight": 1.0, + "source": "ae_events_ae_events_event_handle_nested_loads", + "target": "ae_events_ae_events_event_badge_template_load_ae_obj_li_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L233", + "weight": 1.0, + "source": "ae_events_ae_events_event_handle_nested_loads", + "target": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L244", + "weight": 1.0, + "source": "ae_events_ae_events_event_handle_nested_loads", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L257", + "weight": 1.0, + "source": "ae_events_ae_events_event_handle_nested_loads", + "target": "ae_events_ae_events_event_location_load_ae_obj_li_event_location", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L270", + "weight": 1.0, + "source": "ae_events_ae_events_event_handle_nested_loads", + "target": "ae_events_ae_events_event_session_load_ae_obj_li_event_session", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L402", + "weight": 1.0, + "source": "ae_events_ae_events_event_load_ae_obj_li_event", + "target": "ae_events_ae_events_event_process_ae_obj_event_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L494", + "weight": 1.0, + "source": "ae_events_ae_events_event_create_ae_obj_event", + "target": "ae_events_ae_events_event_process_ae_obj_event_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L573", + "weight": 1.0, + "source": "ae_events_ae_events_event_update_ae_obj_event", + "target": "ae_events_ae_events_event_process_ae_obj_event_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L719", + "weight": 1.0, + "source": "ae_events_ae_events_event_search_event", + "target": "ae_events_ae_events_event_process_ae_obj_event_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event.ts", + "source_location": "L932", + "weight": 1.0, + "source": "ae_events_ae_events_event_process_ae_obj_event_props", + "target": "ae_events_ae_events_event_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_editable_fields", + "target": "ae_events_ae_events_event_badge_editable_fields_editable_fields_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.test.ts", + "source_location": "L22", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_test", + "target": "ae_events_ae_events_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.test.ts", + "source_location": "L22", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_test", + "target": "ae_events_ae_events_event_badge_create_ae_obj_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L239", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_create_ae_obj_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L291", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_delete_ae_obj_id_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_load_ae_obj_id_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L120", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_load_ae_obj_li_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L725", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_process_ae_obj_event_badge_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L669", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L573", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L388", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_search_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_template_load_ae_obj_id_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L333", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_ae_events_event_badge_update_ae_obj_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge", + "target": "types_ae_types_ae_eventbadge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L34", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/unit/create_event_badge.spec.ts", + "source_location": "L16", + "weight": 1.0, + "source": "unit_create_event_badge_spec", + "target": "ae_events_ae_events_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L61", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_load_ae_obj_id_event_badge", + "target": "ae_events_ae_events_event_badge_process_ae_obj_event_badge_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L107", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_load_ae_obj_id_event_badge", + "target": "ae_events_ae_events_event_badge_template_load_ae_obj_id_event_badge_template" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L176", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_load_ae_obj_li_event_badge", + "target": "ae_events_ae_events_event_badge_process_ae_obj_event_badge_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L225", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_load_ae_obj_li_event_badge", + "target": "ae_events_ae_events_event_badge_template_load_ae_obj_id_event_badge_template" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L271", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_create_ae_obj_event_badge", + "target": "ae_events_ae_events_event_badge_process_ae_obj_event_badge_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/unit/create_event_badge.spec.ts", + "source_location": "L16", + "weight": 1.0, + "source": "unit_create_event_badge_spec", + "target": "ae_events_ae_events_event_badge_create_ae_obj_event_badge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L368", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_update_ae_obj_event_badge", + "target": "ae_events_ae_events_event_badge_process_ae_obj_event_badge_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L548", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_search_event_badge", + "target": "ae_events_ae_events_event_badge_process_ae_obj_event_badge_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge.ts", + "source_location": "L734", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_process_ae_obj_event_badge_props", + "target": "ae_events_ae_events_event_badge_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_editable_fields", + "target": "ae_events_ae_events_event_badge_template_editable_fields_editable_fields_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L262", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_create_ae_obj_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L301", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_delete_ae_obj_id_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L125", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_load_ae_obj_id_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L182", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_load_ae_obj_li_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L110", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_process_ae_badge_template_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L58", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L375", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_search_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L333", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_update_ae_obj_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L38", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L117", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_process_ae_badge_template_props", + "target": "ae_events_ae_events_event_badge_template_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L285", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_create_ae_obj_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_process_ae_badge_template_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L155", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_load_ae_obj_id_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_process_ae_badge_template_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L229", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_load_ae_obj_li_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_process_ae_badge_template_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L429", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_search_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_process_ae_badge_template_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_badge_template.ts", + "source_location": "L359", + "weight": 1.0, + "source": "ae_events_ae_events_event_badge_template_update_ae_obj_event_badge_template", + "target": "ae_events_ae_events_event_badge_template_process_ae_badge_template_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_editable_fields", + "target": "ae_events_ae_events_event_device_editable_fields_editable_fields_event_device", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L193", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_create_ae_obj_event_device", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L249", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_delete_ae_obj_id_event_device", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_load_ae_obj_id_event_device", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L93", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L542", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_process_ae_obj_event_device_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L487", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L433", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L352", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_search_event_device", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L293", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_device_update_ae_obj_event_device", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_location", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_ae_events_event_location_load_ae_obj_id_event_location", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_device", + "target": "types_ae_types_ae_eventdevice", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_device", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L46", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_load_ae_obj_id_event_device", + "target": "ae_events_ae_events_event_device_process_ae_obj_event_device_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L80", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_load_ae_obj_id_event_device", + "target": "ae_events_ae_events_event_location_load_ae_obj_id_event_location" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L144", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "target": "ae_events_ae_events_event_device_process_ae_obj_event_device_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L179", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "target": "ae_events_ae_events_event_location_load_ae_obj_id_event_location" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L386", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_handle_nested_loads", + "target": "ae_events_ae_events_event_device_load_ae_obj_li_event_device", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L227", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_create_ae_obj_event_device", + "target": "ae_events_ae_events_event_device_process_ae_obj_event_device_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L330", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_update_ae_obj_event_device", + "target": "ae_events_ae_events_event_device_process_ae_obj_event_device_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L413", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_search_event_device", + "target": "ae_events_ae_events_event_device_process_ae_obj_event_device_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_device.ts", + "source_location": "L549", + "weight": 1.0, + "source": "ae_events_ae_events_event_device_process_ae_obj_event_device_props", + "target": "ae_events_ae_events_event_device_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_editable_fields", + "target": "ae_events_ae_events_event_file_editable_fields_editable_fields_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L328", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_create_event_file_obj_from_hosted_file_async", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L365", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_delete_ae_obj_id_event_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_load_ae_obj_id_event_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L98", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L620", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_process_ae_obj_event_file_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L584", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L529", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L59", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_refresh_file_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L177", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_refresh_file_li_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L430", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_search_event_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L391", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_ae_events_event_file_update_ae_obj_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_file", + "target": "types_ae_types_ae_eventfile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L36", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_load_ae_obj_id_event_file", + "target": "ae_events_ae_events_event_file_refresh_file_id_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L78", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_refresh_file_id_background", + "target": "ae_events_ae_events_event_file_process_ae_obj_event_file_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L142", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "target": "ae_events_ae_events_event_file_refresh_file_li_background", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L355", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_handle_nested_loads", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L182", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_handle_nested_loads", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L100", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_refresh_presenter_id_background", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L284", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_refresh_presenter_li_background", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L276", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_handle_nested_loads", + "target": "ae_events_ae_events_event_file_load_ae_obj_li_event_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L246", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_refresh_file_li_background", + "target": "ae_events_ae_events_event_file_process_ae_obj_event_file_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L415", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_update_ae_obj_event_file", + "target": "ae_events_ae_events_event_file_process_ae_obj_event_file_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L506", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_search_event_file", + "target": "ae_events_ae_events_event_file_process_ae_obj_event_file_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_file.ts", + "source_location": "L627", + "weight": 1.0, + "source": "ae_events_ae_events_event_file_process_ae_obj_event_file_props", + "target": "ae_events_ae_events_event_file_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_editable_fields", + "target": "ae_events_ae_events_event_location_editable_fields_editable_fields_event_location", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L402", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_create_ae_obj_event_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L445", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_delete_ae_obj_id_event_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L335", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L14", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_load_ae_obj_id_event_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L146", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_load_ae_obj_li_event_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L655", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_process_ae_obj_event_location_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L610", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L586", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L93", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_refresh_location_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L260", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_refresh_location_li_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L519", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_search_event_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L474", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_location_update_ae_obj_event_location", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_ae_events_event_session_load_ae_obj_li_event_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_event_location", + "target": "types_ae_types_ae_eventlocation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L26", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_location", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L63", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_load_ae_obj_id_event_location", + "target": "ae_events_ae_events_event_location_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L50", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_load_ae_obj_id_event_location", + "target": "ae_events_ae_events_event_location_refresh_location_id_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L130", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_refresh_location_id_background", + "target": "ae_events_ae_events_event_location_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L116", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_refresh_location_id_background", + "target": "ae_events_ae_events_event_location_process_ae_obj_event_location_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L222", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_load_ae_obj_li_event_location", + "target": "ae_events_ae_events_event_location_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L202", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_load_ae_obj_li_event_location", + "target": "ae_events_ae_events_event_location_refresh_location_li_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L315", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_refresh_location_li_background", + "target": "ae_events_ae_events_event_location_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L295", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_refresh_location_li_background", + "target": "ae_events_ae_events_event_location_process_ae_obj_event_location_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L368", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_handle_nested_loads", + "target": "ae_events_ae_events_event_session_load_ae_obj_li_event_session", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L425", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_create_ae_obj_event_location", + "target": "ae_events_ae_events_event_location_process_ae_obj_event_location_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L499", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_update_ae_obj_event_location", + "target": "ae_events_ae_events_event_location_process_ae_obj_event_location_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L568", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_search_event_location", + "target": "ae_events_ae_events_event_location_process_ae_obj_event_location_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_location.ts", + "source_location": "L662", + "weight": 1.0, + "source": "ae_events_ae_events_event_location_process_ae_obj_event_location_props", + "target": "ae_events_ae_events_event_location_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_person", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_person", + "target": "ae_events_ae_events_event_person_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_events_ae_events_event_person", + "target": "ae_events_ae_events_event_person_create_ae_obj_event_person", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_person", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_person.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_person", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L36", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_person", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L36", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_person_create_ae_obj_event_person", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_editable_fields", + "target": "ae_events_ae_events_event_presentation_editable_fields_editable_fields_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L14", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L399", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_create_ae_obj_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L449", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_delete_ae_obj_id_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L161", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_load_ae_obj_id_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L218", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_load_ae_obj_li_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L677", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_process_ae_obj_event_presentation_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L629", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L592", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L104", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_refresh_presentation_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L317", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_refresh_presentation_li_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L515", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_search_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L474", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presentation_update_ae_obj_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_ae_events_event_presenter_load_ae_obj_li_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation", + "target": "types_ae_types_ae_eventpresentation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L30", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L70", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_load_ae_obj_id_event_presentation", + "target": "ae_events_ae_events_event_presentation_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L56", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_load_ae_obj_id_event_presentation", + "target": "ae_events_ae_events_event_presentation_refresh_presentation_id_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L142", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_refresh_presentation_id_background", + "target": "ae_events_ae_events_event_presentation_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L127", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_refresh_presentation_id_background", + "target": "ae_events_ae_events_event_presentation_process_ae_obj_event_presentation_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L198", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_handle_nested_loads", + "target": "ae_events_ae_events_event_presenter_load_ae_obj_li_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L269", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_load_ae_obj_li_event_presentation", + "target": "ae_events_ae_events_event_presentation_refresh_presentation_li_background", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_presentation_load_ae_obj_li_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L294", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_handle_nested_loads", + "target": "ae_events_ae_events_event_presentation_load_ae_obj_li_event_presentation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L348", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_refresh_presentation_li_background", + "target": "ae_events_ae_events_event_presentation_process_ae_obj_event_presentation_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L429", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_create_ae_obj_event_presentation", + "target": "ae_events_ae_events_event_presentation_process_ae_obj_event_presentation_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L495", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_update_ae_obj_event_presentation", + "target": "ae_events_ae_events_event_presentation_process_ae_obj_event_presentation_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L572", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_search_event_presentation", + "target": "ae_events_ae_events_event_presentation_process_ae_obj_event_presentation_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presentation.ts", + "source_location": "L684", + "weight": 1.0, + "source": "ae_events_ae_events_event_presentation_process_ae_obj_event_presentation_props", + "target": "ae_events_ae_events_event_presentation_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_editable_fields", + "target": "ae_events_ae_events_event_presenter_editable_fields_editable_fields_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L305", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_create_ae_obj_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L365", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_delete_ae_obj_id_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L569", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_email_sign_in_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_load_ae_obj_id_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L119", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_load_ae_obj_li_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L738", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_process_ae_obj_event_presenter_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L689", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L630", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L67", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_refresh_presenter_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L216", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_refresh_presenter_li_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L455", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_search_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L402", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_ae_events_event_presenter_update_ae_obj_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter", + "target": "types_ae_types_ae_eventpresenter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L32", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_presenter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L43", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_load_ae_obj_id_event_presenter", + "target": "ae_events_ae_events_event_presenter_refresh_presenter_id_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L85", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_refresh_presenter_id_background", + "target": "ae_events_ae_events_event_presenter_process_ae_obj_event_presenter_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L180", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_load_ae_obj_li_event_presenter", + "target": "ae_events_ae_events_event_presenter_refresh_presenter_li_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L246", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_refresh_presenter_li_background", + "target": "ae_events_ae_events_event_presenter_process_ae_obj_event_presenter_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L345", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_create_ae_obj_event_presenter", + "target": "ae_events_ae_events_event_presenter_process_ae_obj_event_presenter_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L435", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_update_ae_obj_event_presenter", + "target": "ae_events_ae_events_event_presenter_process_ae_obj_event_presenter_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L549", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_search_event_presenter", + "target": "ae_events_ae_events_event_presenter_process_ae_obj_event_presenter_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_presenter.ts", + "source_location": "L745", + "weight": 1.0, + "source": "ae_events_ae_events_event_presenter_process_ae_obj_event_presenter_props", + "target": "ae_events_ae_events_event_presenter_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_editable_fields", + "target": "ae_events_ae_events_event_session_editable_fields_editable_fields_event_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L536", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_create_ae_obj_event_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L582", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_delete_ae_obj_id_event_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L809", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_email_sign_in_event_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L253", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_load_ae_obj_id_event_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L321", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_load_ae_obj_li_event_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L936", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_process_ae_obj_event_session_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L896", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L846", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L142", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_refresh_session_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L445", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_refresh_session_li_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L664", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_search_event_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L615", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_ae_events_event_session_update_ae_obj_event_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_session", + "target": "types_ae_types_ae_eventsession", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L28", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_event_session", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L88", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_load_ae_obj_id_event_session", + "target": "ae_events_ae_events_event_session_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L71", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_load_ae_obj_id_event_session", + "target": "ae_events_ae_events_event_session_refresh_session_id_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L226", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_refresh_session_id_background", + "target": "ae_events_ae_events_event_session_handle_nested_loads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L173", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_refresh_session_id_background", + "target": "ae_events_ae_events_event_session_process_ae_obj_event_session_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L392", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_load_ae_obj_li_event_session", + "target": "ae_events_ae_events_event_session_refresh_session_li_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L484", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_refresh_session_li_background", + "target": "ae_events_ae_events_event_session_process_ae_obj_event_session_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L563", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_create_ae_obj_event_session", + "target": "ae_events_ae_events_event_session_process_ae_obj_event_session_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L645", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_update_ae_obj_event_session", + "target": "ae_events_ae_events_event_session_process_ae_obj_event_session_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L789", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_search_event_session", + "target": "ae_events_ae_events_event_session_process_ae_obj_event_session_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_session.ts", + "source_location": "L943", + "weight": 1.0, + "source": "ae_events_ae_events_event_session_process_ae_obj_event_session_props", + "target": "ae_events_ae_events_event_session_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_track.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_event_track", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_track.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_event_track", + "target": "ae_events_ae_events_event_track_load_ae_obj_li_event_track", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_track.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_track", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__event_track.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_event_track", + "target": "types_ae_types_ae_eventtrack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_editable_fields", + "target": "ae_events_ae_events_exhibit_editable_fields_editable_fields_event_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L400", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_create_ae_obj_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L129", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_load_ae_obj_id_event_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L248", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_load_ae_obj_li_event_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L112", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_process_ae_obj_exhibit_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L43", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_properties_to_save_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L189", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_refresh_exhibit_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L335", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_refresh_exhibit_li_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L493", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_search_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L445", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_ae_events_exhibit_update_ae_obj_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit", + "target": "types_ae_types_ae_eventexhibit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L119", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_process_ae_obj_exhibit_props", + "target": "ae_events_ae_events_exhibit_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L423", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_create_ae_obj_exhibit", + "target": "ae_events_ae_events_exhibit_process_ae_obj_exhibit_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L212", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_refresh_exhibit_id_background", + "target": "ae_events_ae_events_exhibit_process_ae_obj_exhibit_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L369", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_refresh_exhibit_li_background", + "target": "ae_events_ae_events_exhibit_process_ae_obj_exhibit_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L561", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_search_exhibit", + "target": "ae_events_ae_events_exhibit_process_ae_obj_exhibit_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L471", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_update_ae_obj_exhibit", + "target": "ae_events_ae_events_exhibit_process_ae_obj_exhibit_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L161", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_load_ae_obj_id_event_exhibit", + "target": "ae_events_ae_events_exhibit_refresh_exhibit_id_background", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_load_ae_obj_id_event_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit.ts", + "source_location": "L298", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_load_ae_obj_li_event_exhibit", + "target": "ae_events_ae_events_exhibit_refresh_exhibit_li_background", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_load_ae_obj_li_event_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_create_ae_obj_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_update_ae_obj_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_search_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_editable_fields", + "target": "ae_events_ae_events_exhibit_tracking_editable_fields_editable_fields_event_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L414", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_create_ae_obj_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L527", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_download_export_event_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L143", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_load_ae_obj_id_event_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L263", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_load_ae_obj_li_event_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L126", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_process_ae_obj_exhibit_tracking_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L57", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_properties_to_save_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L204", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_refresh_tracking_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L349", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_refresh_tracking_li_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L566", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_search_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L467", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_update_ae_obj_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking", + "target": "types_ae_types_ae_eventexhibittracking", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L133", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_process_ae_obj_exhibit_tracking_props", + "target": "ae_events_ae_events_exhibit_tracking_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L445", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_create_ae_obj_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_process_ae_obj_exhibit_tracking_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L227", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_refresh_tracking_id_background", + "target": "ae_events_ae_events_exhibit_tracking_process_ae_obj_exhibit_tracking_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L383", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_refresh_tracking_li_background", + "target": "ae_events_ae_events_exhibit_tracking_process_ae_obj_exhibit_tracking_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L657", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_search_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_process_ae_obj_exhibit_tracking_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L493", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_update_ae_obj_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_process_ae_obj_exhibit_tracking_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L176", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_load_ae_obj_id_event_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_refresh_tracking_id_background", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_tracking_load_ae_obj_id_event_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events__exhibit_tracking.ts", + "source_location": "L312", + "weight": 1.0, + "source": "ae_events_ae_events_exhibit_tracking_load_ae_obj_li_event_exhibit_tracking", + "target": "ae_events_ae_events_exhibit_tracking_refresh_tracking_li_background", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_tracking_load_ae_obj_li_event_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_tracking_create_ae_obj_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_tracking_update_ae_obj_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_tracking_download_export_event_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_exhibit_tracking_search_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_events_functions.ts", + "source_location": "L40", + "weight": 1.0, + "source": "ae_events_ae_events_functions", + "target": "ae_events_ae_events_functions_export_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "badge_id_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L41", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L65", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L43", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L44", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_ts_print_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_ts_review_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.ts", + "source_location": "L2", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_reports_page_ts_reports_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_launcher_launcher_event_location_id_page_ts_event_location_id_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_launcher_launcher_layout_ts_launcher_layout", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_layout_ts_event_id_layout", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_ts_exhibit_id_layout", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_ts_exhibit_tracking_id_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_layout_ts_leads_layout", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_page_ts_leads_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/+layout.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_layout_ts_pres_mgmt_layout", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_ts_event_location_id_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_locations_page_ts_locations_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_ts_presenter_id_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_ts_session_id_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_page_ts_events_page", + "target": "ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L171", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_acrobat_mac_mirror_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L238", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_acrobat_win_mirror_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L344", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_default_launch_profile_aliases", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L277", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_default_launch_profile_defs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L340", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_default_launch_profile_library", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L350", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_default_launch_profiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L264", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_default_os_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L271", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_defaultlaunchprofiledefinition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L127", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_keynote_mac_extend_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L29", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_launchprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L149", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_libreoffice_mac_extend_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L216", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_libreoffice_win_extend_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L94", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_make_vlc_mirror_linux_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L77", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_make_vlc_mirror_mac_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L105", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_powerpoint_mac_extend_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L196", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_powerpoint_win_extend_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L363", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_resolve_launch_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L258", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_url_web_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L194", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_vlc_mirror_linux_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/ae_launcher__default_launch_profiles.ts", + "source_location": "L193", + "weight": 1.0, + "source": "ae_events_ae_launcher_default_launch_profiles", + "target": "ae_events_ae_launcher_default_launch_profiles_vlc_mirror_mac_profile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L84", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_events_ae_launcher_default_launch_profiles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L10", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_defaults", + "target": "ae_events_ae_launcher_default_launch_profiles", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L84", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_events_ae_launcher_default_launch_profiles_launchprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L10", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_defaults", + "target": "ae_events_ae_launcher_default_launch_profiles_launchprofile", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L107", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_defaults_launcherlocstate", + "target": "ae_events_ae_launcher_default_launch_profiles_launchprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L84", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_events_ae_launcher_default_launch_profiles_resolve_launch_profile", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L162", + "weight": 1.0, + "source": "launcher_launcher_file_cont_get_launch_profile", + "target": "ae_events_ae_launcher_default_launch_profiles_resolve_launch_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L114", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L210", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_badge_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L960", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L279", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_device", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L447", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_eventfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L347", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L385", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_exhibit_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L520", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L821", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_mysubclasseddexie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L574", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_presentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L633", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_presenter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L723", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_registration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L734", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "ae_events_db_events_session", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_events_db_events", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L29", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L30", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L30", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L50", + "weight": 1.0, + "source": "ae_events_db_events_event", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L568", + "weight": 1.0, + "source": "ae_events_db_events_location", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L628", + "weight": 1.0, + "source": "ae_events_db_events_presentation", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L720", + "weight": 1.0, + "source": "ae_events_db_events_presenter", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L757", + "weight": 1.0, + "source": "ae_events_db_events_session", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_events/db_events.ts", + "source_location": "L836", + "weight": 1.0, + "source": "ae_events_db_events_mysubclasseddexie", + "target": "ae_events_db_events_mysubclasseddexie_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L29", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L30", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L30", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_events_db_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L28", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_bbpostformvalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_bbpostidentitydefaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_bbpostobjectlike", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L51", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_bbpoststaffnotificationemail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L43", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_bbpoststaffnotificationsitecfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L118", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_build_bb_post_payload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L191", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_build_bb_post_staff_notification_email", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L108", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_buildbbpostpayloadargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L185", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_buildbbpoststaffnotificationemailargs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L80", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_create_bb_post_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L60", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_empty_identity_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L66", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_is_new_bb_post", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L70", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "ae_idaa_ae_idaa_bb_post_helpers_normalize_identity_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L84", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers_create_bb_post_form", + "target": "ae_idaa_ae_idaa_bb_post_helpers_is_new_bb_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L127", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers_build_bb_post_payload", + "target": "ae_idaa_ae_idaa_bb_post_helpers_normalize_identity_defaults", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L85", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers_create_bb_post_form", + "target": "ae_idaa_ae_idaa_bb_post_helpers_normalize_identity_defaults", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L109", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers_buildbbpostpayloadargs", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_idaa/ae_idaa__bb_post_helpers.ts", + "source_location": "L186", + "weight": 1.0, + "source": "ae_idaa_ae_idaa_bb_post_helpers_buildbbpoststaffnotificationemailargs", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_editable_fields", + "target": "ae_journals_ae_journals_journal_editable_fields_editable_fields_journal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_journals_ae_journals_functions", + "target": "ae_journals_ae_journals_journal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L13", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L381", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_create_ae_obj_journal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L458", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_delete_ae_obj_id_journal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_entry_load_ae_obj_li_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_load_ae_obj_id_journal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L186", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_load_ae_obj_li_journal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L864", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_process_ae_obj_journal_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L793", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L711", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L571", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_qry_journal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L119", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_refresh_journal_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L277", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_refresh_journal_li_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L506", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_ae_journals_journal_update_ae_obj_journal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "ae_journals_db_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "marked", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal", + "target": "types_ae_types_ae_journal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L80", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_load_ae_obj_id_journal", + "target": "ae_journals_ae_journals_journal_entry_load_ae_obj_li_journal_entry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L64", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_load_ae_obj_id_journal", + "target": "ae_journals_ae_journals_journal_refresh_journal_id_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L165", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_refresh_journal_id_background", + "target": "ae_journals_ae_journals_journal_entry_load_ae_obj_li_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L145", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_refresh_journal_id_background", + "target": "ae_journals_ae_journals_journal_process_ae_obj_journal_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L239", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_load_ae_obj_li_journal", + "target": "ae_journals_ae_journals_journal_refresh_journal_li_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L359", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_refresh_journal_li_background", + "target": "ae_journals_ae_journals_journal_entry_load_ae_obj_li_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L338", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_refresh_journal_li_background", + "target": "ae_journals_ae_journals_journal_process_ae_obj_journal_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L425", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_create_ae_obj_journal", + "target": "ae_journals_ae_journals_journal_process_ae_obj_journal_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L542", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_update_ae_obj_journal", + "target": "ae_journals_ae_journals_journal_process_ae_obj_journal_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L673", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_qry_journal", + "target": "ae_journals_ae_journals_journal_process_ae_obj_journal_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal.ts", + "source_location": "L871", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_process_ae_obj_journal_props", + "target": "ae_journals_ae_journals_journal_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_editable_fields", + "target": "ae_journals_ae_journals_journal_entry_editable_fields_editable_fields_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_functions.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_ae_journals_functions", + "target": "ae_journals_ae_journals_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L202", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_create_ae_obj_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L277", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_delete_ae_obj_id_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L14", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_load_ae_obj_id_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L78", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_load_ae_obj_li_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L994", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_process_ae_obj_journal_entry_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L923", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L840", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L326", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_qry_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L568", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_update_ae_obj_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "ae_journals_db_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "marked", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry", + "target": "types_ae_types_ae_journalentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L43", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_load_ae_obj_id_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_process_ae_obj_journal_entry_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L151", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_load_ae_obj_li_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_process_ae_obj_journal_entry_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L243", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_create_ae_obj_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_process_ae_obj_journal_entry_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L470", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_qry_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_process_ae_obj_journal_entry_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L604", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_update_ae_obj_journal_entry", + "target": "ae_journals_ae_journals_journal_entry_process_ae_obj_journal_entry_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals__journal_entry.ts", + "source_location": "L1003", + "weight": 1.0, + "source": "ae_journals_ae_journals_journal_entry_process_ae_obj_journal_entry_props", + "target": "ae_journals_ae_journals_journal_entry_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L22", + "weight": 1.0, + "source": "ae_journals_ae_journals_decryption", + "target": "ae_journals_ae_journals_decryption_decrypt_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_ae_journals_decryption", + "target": "ae_journals_ae_journals_decryption_decryptionresult", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_decryption", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_decryption", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_journals_ae_journals_decryption", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_journals_ae_journals_decryption", + "target": "types_ae_types_ae_journal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_decryption.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_journals_ae_journals_decryption", + "target": "types_ae_types_ae_journalentry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_journals_ae_journals_decryption", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_journals_ae_journals_decryption_decrypt_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L231", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view_run_decryption_workflow", + "target": "ae_journals_ae_journals_decryption_decrypt_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_editor_helpers.ts", + "source_location": "L32", + "weight": 1.0, + "source": "ae_journals_ae_journals_editor_helpers", + "target": "ae_journals_ae_journals_editor_helpers_togglelineprefix", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_editor_helpers.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_ae_journals_editor_helpers", + "target": "ae_journals_ae_journals_editor_helpers_wrapselection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L165", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_journals_ae_journals_export_templates_export_templates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_journals_ae_journals_export_templates_exporttemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L76", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_journals_ae_journals_export_templates_template_amazon_vine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L45", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_journals_ae_journals_export_templates_template_personal_log", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L106", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_journals_ae_journals_export_templates_template_standard_html", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L157", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_journals_ae_journals_export_templates_template_standard_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L21", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_journals_ae_journals_export_templates_template_standard_markdown", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates", + "target": "types_ae_types_ae_journalentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_export_templates.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_journals_ae_journals_export_templates_exporttemplate", + "target": "types_ae_types_ae_journalentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_functions.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_ae_journals_functions", + "target": "ae_journals_ae_journals_functions_export_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L53", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_ts_journal_entry_id_page", + "target": "ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_journals_journal_id_layout_ts_journal_id_layout", + "target": "ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_journals_page_ts_journals_page", + "target": "ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "ae_journals_ae_journals_parsers_aejournalentryinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L205", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "ae_journals_ae_journals_parsers_format_vine_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L168", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "ae_journals_ae_journals_parsers_parse_amazon_vine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L99", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "ae_journals_ae_journals_parsers_parse_personal_log", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L22", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "ae_journals_ae_journals_parsers_parse_standard_note", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L243", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "ae_journals_ae_journals_parsers_parsers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L112", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers_parse_personal_log", + "target": "ae_journals_ae_journals_parsers_parse_standard_note", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_parsers.ts", + "source_location": "L187", + "weight": 1.0, + "source": "ae_journals_ae_journals_parsers_parse_amazon_vine", + "target": "ae_journals_ae_journals_parsers_format_vine_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_journals_ae_journals_search_helpers", + "target": "ae_journals_ae_journals_search_helpers_build_journal_entry_search_blob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L77", + "weight": 1.0, + "source": "ae_journals_ae_journals_search_helpers", + "target": "ae_journals_ae_journals_search_helpers_journal_entry_compare_for_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L87", + "weight": 1.0, + "source": "ae_journals_ae_journals_search_helpers", + "target": "ae_journals_ae_journals_search_helpers_journal_entry_filter_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L50", + "weight": 1.0, + "source": "ae_journals_ae_journals_search_helpers", + "target": "ae_journals_ae_journals_search_helpers_journal_entry_matches_search", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_ae_journals_search_helpers", + "target": "ae_journals_ae_journals_search_helpers_journalentrysearchparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_journals_ae_journals_search_helpers", + "target": "ae_journals_ae_journals_search_helpers_normalize_search_value", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/journal_entry_visibility.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "journals_journal_entry_visibility_test", + "target": "ae_journals_ae_journals_search_helpers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_search_helpers.ts", + "source_location": "L74", + "weight": 1.0, + "source": "ae_journals_ae_journals_search_helpers_journal_entry_matches_search", + "target": "ae_journals_ae_journals_search_helpers_build_journal_entry_search_blob", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/journal_entry_visibility.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "journals_journal_entry_visibility_test", + "target": "ae_journals_ae_journals_search_helpers_journal_entry_matches_search", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/journal_entry_visibility.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "journals_journal_entry_visibility_test", + "target": "ae_journals_ae_journals_search_helpers_journal_entry_filter_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L115", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_local_data_struct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L208", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_prom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L204", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_prom_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L168", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_sess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L124", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_session_data_struct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L189", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_slct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L175", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_slct_obj_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L198", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_trig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L194", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "ae_journals_ae_journals_stores_journals_trig_template", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/ae_journals_stores.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_ae_journals_stores", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L20", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L47", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L20", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_journals_ae_journals_stores_journals_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L47", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_journals_ae_journals_stores_journals_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L20", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_journals_ae_journals_stores_journals_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L47", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_journals_ae_journals_stores_journals_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L47", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_journals_ae_journals_stores_journals_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L47", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_journals_ae_journals_stores_journals_trig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L146", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "ae_journals_db_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L23", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "ae_journals_db_journals_journal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L78", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "ae_journals_db_journals_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L91", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "ae_journals_db_journals_journal_entry_field_li", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L42", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "ae_journals_db_journals_journal_field_li", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L120", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "ae_journals_db_journals_mysubclasseddexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "stores_store_versions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "stores_store_versions_idb_content_versions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "types_ae_types_ae_journal", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_journals_db_journals", + "target": "types_ae_types_ae_journalentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L36", + "weight": 1.0, + "source": "ae_journals_db_journals_journal", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L23", + "weight": 1.0, + "source": "ae_journals_db_journals_journal", + "target": "types_ae_types_ae_journal", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L87", + "weight": 1.0, + "source": "ae_journals_db_journals_journal_entry", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L78", + "weight": 1.0, + "source": "ae_journals_db_journals_journal_entry", + "target": "types_ae_types_ae_journalentry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_journals/db_journals.ts", + "source_location": "L124", + "weight": 1.0, + "source": "ae_journals_db_journals_mysubclasseddexie", + "target": "ae_journals_db_journals_mysubclasseddexie_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_editable_fields", + "target": "ae_posts_ae_posts_post_editable_fields_editable_fields_post", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L197", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_create_ae_obj_post", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L246", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_delete_ae_obj_id_post", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L14", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_load_ae_obj_id_post", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L97", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_load_ae_obj_li_post", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L555", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_process_ae_obj_post_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L499", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L466", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L331", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_qry_post", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L282", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_ae_posts_post_update_ae_obj_post", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_db_posts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "ae_posts_db_posts_db_posts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_posts_ae_posts_post", + "target": "types_ae_types_ae_post", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_load_ae_obj_id_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L79", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_load_ae_obj_id_post", + "target": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L55", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_load_ae_obj_id_post", + "target": "ae_posts_ae_posts_post_process_ae_obj_post_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_load_ae_obj_li_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L178", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_load_ae_obj_li_post", + "target": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L154", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_load_ae_obj_li_post", + "target": "ae_posts_ae_posts_post_process_ae_obj_post_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_create_ae_obj_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L228", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_create_ae_obj_post", + "target": "ae_posts_ae_posts_post_process_ae_obj_post_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_delete_ae_obj_id_post", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_update_ae_obj_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L314", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_update_ae_obj_post", + "target": "ae_posts_ae_posts_post_process_ae_obj_post_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_qry_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L447", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_qry_post", + "target": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L425", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_qry_post", + "target": "ae_posts_ae_posts_post_process_ae_obj_post_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post.ts", + "source_location": "L564", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_process_ae_obj_post_props", + "target": "ae_posts_ae_posts_post_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_editable_fields", + "target": "ae_posts_ae_posts_post_comment_editable_fields_editable_fields_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L151", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_create_ae_obj_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L206", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_delete_ae_obj_id_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_load_ae_obj_id_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L72", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L375", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_process_ae_obj_post_comment_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L319", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L293", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_properties_to_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L244", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_ae_posts_post_comment_update_ae_obj_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_db_posts", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "ae_posts_db_posts_db_posts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment", + "target": "types_ae_types_ae_postcomment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_comment_load_ae_obj_id_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L46", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_load_ae_obj_id_post_comment", + "target": "ae_posts_ae_posts_post_comment_process_ae_obj_post_comment_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L129", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_load_ae_obj_li_post_comment", + "target": "ae_posts_ae_posts_post_comment_process_ae_obj_post_comment_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_comment_create_ae_obj_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L189", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_create_ae_obj_post_comment", + "target": "ae_posts_ae_posts_post_comment_process_ae_obj_post_comment_props", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_comment_delete_ae_obj_id_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_post_comment_update_ae_obj_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L276", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_update_ae_obj_post_comment", + "target": "ae_posts_ae_posts_post_comment_process_ae_obj_post_comment_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts__post_comment.ts", + "source_location": "L382", + "weight": 1.0, + "source": "ae_posts_ae_posts_post_comment_process_ae_obj_post_comment_props", + "target": "ae_posts_ae_posts_post_comment_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/ae_posts_functions.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_posts_ae_posts_functions", + "target": "ae_posts_ae_posts_functions_export_obj", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_idaa_idaa_bb_layout_ts_bb_layout", + "target": "ae_posts_ae_posts_functions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L146", + "weight": 1.0, + "source": "ae_posts_db_posts", + "target": "ae_posts_db_posts_db_posts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L115", + "weight": 1.0, + "source": "ae_posts_db_posts", + "target": "ae_posts_db_posts_mysubclasseddexie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_posts_db_posts", + "target": "ae_posts_db_posts_post", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L76", + "weight": 1.0, + "source": "ae_posts_db_posts", + "target": "ae_posts_db_posts_post_comment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_posts_db_posts", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_db_posts", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_posts_db_posts", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L45", + "weight": 1.0, + "source": "ae_posts_db_posts_post", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L95", + "weight": 1.0, + "source": "ae_posts_db_posts_post_comment", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_posts/db_posts.ts", + "source_location": "L120", + "weight": 1.0, + "source": "ae_posts_db_posts_mysubclasseddexie", + "target": "ae_posts_db_posts_mysubclasseddexie_constructor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L118", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L94", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_extract_flat_search_results", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L69", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_extract_participant_uuid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L59", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_extract_uuid_from_url_params", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L302", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_load_jitsi_report_from_cache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_meetingevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_meetingparticipant", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L22", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_meetingreport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L51", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_normalize_text", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L55", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_normalize_uuid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L45", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_parse_duration_seconds", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L345", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_qry_jitsi_report", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L35", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "ae_reports_reports_functions_safe_parse_meta", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_reports_reports_functions", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L158", + "weight": 1.0, + "source": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "target": "ae_reports_reports_functions_safe_parse_meta", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L177", + "weight": 1.0, + "source": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "target": "ae_reports_reports_functions_parse_duration_seconds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L190", + "weight": 1.0, + "source": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "target": "ae_reports_reports_functions_normalize_text", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L56", + "weight": 1.0, + "source": "ae_reports_reports_functions_normalize_uuid", + "target": "ae_reports_reports_functions_normalize_text", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L198", + "weight": 1.0, + "source": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "target": "ae_reports_reports_functions_normalize_uuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L87", + "weight": 1.0, + "source": "ae_reports_reports_functions_extract_participant_uuid", + "target": "ae_reports_reports_functions_normalize_uuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L63", + "weight": 1.0, + "source": "ae_reports_reports_functions_extract_uuid_from_url_params", + "target": "ae_reports_reports_functions_normalize_uuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L159", + "weight": 1.0, + "source": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "target": "ae_reports_reports_functions_extract_uuid_from_url_params", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L196", + "weight": 1.0, + "source": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "target": "ae_reports_reports_functions_extract_participant_uuid", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L393", + "weight": 1.0, + "source": "ae_reports_reports_functions_qry_jitsi_report", + "target": "ae_reports_reports_functions_extract_flat_search_results", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L338", + "weight": 1.0, + "source": "ae_reports_reports_functions_load_jitsi_report_from_cache", + "target": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_reports/reports_functions.ts", + "source_location": "L426", + "weight": 1.0, + "source": "ae_reports_reports_functions_qry_jitsi_report", + "target": "ae_reports_reports_functions_build_jitsi_report_from_logs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.editable_fields.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship_editable_fields", + "target": "ae_sponsorships_ae_sponsorships_sponsorship_editable_fields_editable_fields_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.editable_fields.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship_editable_fields", + "target": "ae_sponsorships_ae_sponsorships_sponsorship_editable_fields_editable_fields_sponsorship_cfg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship", + "target": "ae_sponsorships_ae_sponsorships_sponsorship_load_ae_obj_id_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L26", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship", + "target": "ae_sponsorships_ae_sponsorships_sponsorship_load_ae_obj_li_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships__sponsorship.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_sponsorship", + "target": "types_ae_types_ae_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L7", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_ae_promises", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L420", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_create_ae_obj_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L463", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_delete_ae_obj_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L480", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_download_export_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L274", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_id_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L196", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_id_sponsorship_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L353", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_li_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L34", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_cfg_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L101", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L131", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L61", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_properties_to_save_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_properties_to_save_sponsorship_cfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L238", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_cfg_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L317", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L516", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_spons_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L440", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_ae_sponsorships_functions_update_ae_obj_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_db_sponsorships", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "ae_sponsorships_db_sponsorships_db_sponsorships", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "types_ae_types_ae_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions", + "target": "types_ae_types_ae_sponsorshipcfg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L41", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_cfg_props", + "target": "ae_sponsorships_ae_sponsorships_functions_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L255", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_cfg_id_background", + "target": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_cfg_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L401", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_li_sponsorship", + "target": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L108", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_props", + "target": "ae_sponsorships_ae_sponsorships_functions_process_generic_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L334", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_id_background", + "target": "ae_sponsorships_ae_sponsorships_functions_process_ae_obj_sponsorship_props", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L218", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_id_sponsorship_cfg", + "target": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_cfg_id_background", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/ae_sponsorships_functions.ts", + "source_location": "L297", + "weight": 1.0, + "source": "ae_sponsorships_ae_sponsorships_functions_load_ae_obj_id_sponsorship", + "target": "ae_sponsorships_ae_sponsorships_functions_refresh_sponsorship_id_background", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L133", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships", + "target": "ae_sponsorships_db_sponsorships_db_sponsorships", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L108", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships", + "target": "ae_sponsorships_db_sponsorships_mysubclasseddexie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships", + "target": "ae_sponsorships_db_sponsorships_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L77", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships", + "target": "ae_sponsorships_db_sponsorships_sponsorship_cfg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L93", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships_sponsorship_cfg", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_sponsorships/db_sponsorships.ts", + "source_location": "L113", + "weight": 1.0, + "source": "ae_sponsorships_db_sponsorships_mysubclasseddexie", + "target": "ae_sponsorships_db_sponsorships_mysubclasseddexie_constructor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_string_snippets.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_utils_ae_string_snippets", + "target": "ae_utils_ae_string_snippets_string_snippets", + "confidence_score": 1.0 + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L48", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "ae_utils_ae_string_snippets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "ae_utils_ae_string_snippets_string_snippets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "ae_utils_ae_string_snippets_string_snippets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "ae_utils_ae_string_snippets_string_snippets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_utils_ae_string_snippets_string_snippets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_utils_ae_string_snippets_string_snippets", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L47", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "ae_utils_ae_string_snippets_string_snippets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L333", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L207", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_count_words", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L88", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_create_a_element", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L109", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_create_img_element", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L150", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_create_video_element", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_crypto", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_crypto_combine_iv_and_base64", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_crypto_decrypt_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_crypto_decrypt_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_crypto_encrypt_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L24", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_crypto_encrypt_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_datetime_format", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L16", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_datetime_format_iso_datetime_formatter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L18", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_extract_prefixed_form_data", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L18", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_extract_prefixed_form_data_extract_prefixed_form_data", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_file_extension_icon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L10", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_file_extension_icon_file_extension_icon", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_file_extension_icon_lucide", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_file_extension_icon_lucide_file_extension_icon_lucide", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_files", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_files_clean_filename", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_files_format_bytes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_files_get_file_hash", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_files_guess_file_extension", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_files_guess_file_name", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L23", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_format_html", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L23", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_format_html_format_html", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_get_obj_li_w_match_prop", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L9", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_get_obj_li_w_match_prop_get_obj_li_w_match_prop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L53", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_handle_url_and_message", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_is_datetime_recent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L17", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_is_datetime_recent_is_datetime_recent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L32", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_key_str", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L36", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_key_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L41", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_number_w_commas", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_perm_checks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_perm_checks_compare_access_levels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L12", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_perm_checks_process_permission_checks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_process_data_string", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_process_data_string_process_data_string", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L22", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_return_obj_type_path", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L22", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_return_obj_type_path_return_obj_type_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L279", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_set_focus", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L21", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_set_obj_prop_display_name", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L21", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_set_obj_prop_display_name_set_obj_prop_display_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L296", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_shorten_filename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L218", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_shorten_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L273", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_strip_html", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L19", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_to_title_case", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L19", + "weight": 1.0, + "source": "ae_utils_ae_utils", + "target": "ae_utils_ae_utils_to_title_case_to_title_case", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L22", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L18", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L45", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L56", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L44", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L21", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L22", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__file_extension_icon.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_utils_ae_utils_file_extension_icon", + "target": "ae_utils_ae_utils_key_str", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__process_data_string.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_utils_ae_utils_process_data_string", + "target": "ae_utils_ae_utils_key_val", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L136", + "weight": 1.0, + "source": "ae_utils_ae_utils_create_img_element", + "target": "ae_utils_ae_utils_create_a_element", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils.ts", + "source_location": "L175", + "weight": 1.0, + "source": "ae_utils_ae_utils_create_video_element", + "target": "ae_utils_ae_utils_create_a_element", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L22", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L18", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L45", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L56", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L44", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L21", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L22", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_utils_ae_utils_ae_util", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L40", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto", + "target": "ae_utils_ae_utils_crypto_combine_iv_and_base64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L84", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto", + "target": "ae_utils_ae_utils_crypto_decrypt_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L134", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto", + "target": "ae_utils_ae_utils_crypto_decrypt_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L11", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto", + "target": "ae_utils_ae_utils_crypto_encrypt_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L65", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto", + "target": "ae_utils_ae_utils_crypto_encrypt_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto", + "target": "ae_utils_ae_utils_crypto_generate_iv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L114", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto", + "target": "ae_utils_ae_utils_crypto_split_iv_and_base64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L15", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto_encrypt_content", + "target": "ae_utils_ae_utils_crypto_generate_iv", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L77", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto_encrypt_wrapper", + "target": "ae_utils_ae_utils_crypto_encrypt_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L78", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto_encrypt_wrapper", + "target": "ae_utils_ae_utils_crypto_combine_iv_and_base64", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L146", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto_decrypt_wrapper", + "target": "ae_utils_ae_utils_crypto_decrypt_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__crypto.ts", + "source_location": "L142", + "weight": 1.0, + "source": "ae_utils_ae_utils_crypto_decrypt_wrapper", + "target": "ae_utils_ae_utils_crypto_split_iv_and_base64", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_utils_ae_utils_datetime_format", + "target": "ae_utils_ae_utils_datetime_format_format_pairs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L25", + "weight": 1.0, + "source": "ae_utils_ae_utils_datetime_format", + "target": "ae_utils_ae_utils_datetime_format_iso_datetime_formatter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L18", + "weight": 1.0, + "source": "ae_utils_ae_utils_datetime_format", + "target": "ae_utils_ae_utils_datetime_format_to_12h", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__datetime_format.ts", + "source_location": "L21", + "weight": 1.0, + "source": "ae_utils_ae_utils_datetime_format", + "target": "ae_utils_ae_utils_datetime_format_to_24h", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__extract_prefixed_form_data.ts", + "source_location": "L14", + "weight": 1.0, + "source": "ae_utils_ae_utils_extract_prefixed_form_data", + "target": "ae_utils_ae_utils_extract_prefixed_form_data_extract_prefixed_form_data", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__extract_prefixed_form_data.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_utils_ae_utils_extract_prefixed_form_data", + "target": "ae_utils_ae_utils_extract_prefixed_form_data_key_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__file_extension_icon.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_utils_ae_utils_file_extension_icon", + "target": "ae_utils_ae_utils_file_extension_icon_file_extension_icon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__file_extension_icon_lucide.ts", + "source_location": "L8", + "weight": 1.0, + "source": "ae_utils_ae_utils_file_extension_icon_lucide", + "target": "ae_utils_ae_utils_file_extension_icon_lucide_file_extension_icon_lucide", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_utils_ae_utils_files", + "target": "ae_utils_ae_utils_files_clean_filename", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L23", + "weight": 1.0, + "source": "ae_utils_ae_utils_files", + "target": "ae_utils_ae_utils_files_format_bytes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L82", + "weight": 1.0, + "source": "ae_utils_ae_utils_files", + "target": "ae_utils_ae_utils_files_get_file_hash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L60", + "weight": 1.0, + "source": "ae_utils_ae_utils_files", + "target": "ae_utils_ae_utils_files_guess_file_extension", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__files.ts", + "source_location": "L39", + "weight": 1.0, + "source": "ae_utils_ae_utils_files", + "target": "ae_utils_ae_utils_files_guess_file_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__format_html.ts", + "source_location": "L5", + "weight": 1.0, + "source": "ae_utils_ae_utils_format_html", + "target": "ae_utils_ae_utils_format_html_format_html", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__get_obj_li_w_match_prop.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_utils_ae_utils_get_obj_li_w_match_prop", + "target": "ae_utils_ae_utils_get_obj_li_w_match_prop_get_obj_li_w_match_prop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__is_datetime_recent.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_ae_utils_is_datetime_recent", + "target": "ae_utils_ae_utils_is_datetime_recent_is_datetime_recent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L6", + "weight": 1.0, + "source": "ae_utils_ae_utils_perm_checks", + "target": "ae_utils_ae_utils_perm_checks_access_level_order", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_utils_ae_utils_perm_checks", + "target": "ae_utils_ae_utils_perm_checks_compare_access_levels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_utils_ae_utils_perm_checks", + "target": "ae_utils_ae_utils_perm_checks_key_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__perm_checks.ts", + "source_location": "L36", + "weight": 1.0, + "source": "ae_utils_ae_utils_perm_checks", + "target": "ae_utils_ae_utils_perm_checks_process_permission_checks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/perm_checks.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_perm_checks_test", + "target": "ae_utils_ae_utils_perm_checks", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/perm_checks.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_perm_checks_test", + "target": "ae_utils_ae_utils_perm_checks_access_level_order", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/perm_checks.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_perm_checks_test", + "target": "ae_utils_ae_utils_perm_checks_compare_access_levels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/perm_checks.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "ae_utils_perm_checks_test", + "target": "ae_utils_ae_utils_perm_checks_process_permission_checks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__process_data_string.ts", + "source_location": "L20", + "weight": 1.0, + "source": "ae_utils_ae_utils_process_data_string", + "target": "ae_utils_ae_utils_process_data_string_process_data_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__return_obj_type_path.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_utils_ae_utils_return_obj_type_path", + "target": "ae_utils_ae_utils_return_obj_type_path_return_obj_type_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__set_obj_prop_display_name.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_utils_ae_utils_set_obj_prop_display_name", + "target": "ae_utils_ae_utils_set_obj_prop_display_name_set_obj_prop_display_name", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__set_obj_prop_display_name.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_utils_ae_utils_set_obj_prop_display_name", + "target": "ae_utils_ae_utils_to_title_case", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__set_obj_prop_display_name.ts", + "source_location": "L1", + "weight": 1.0, + "source": "ae_utils_ae_utils_set_obj_prop_display_name", + "target": "ae_utils_ae_utils_to_title_case_to_title_case", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_utils/ae_utils__set_obj_prop_display_name.ts", + "source_location": "L133", + "weight": 1.0, + "source": "ae_utils_ae_utils_set_obj_prop_display_name_set_obj_prop_display_name", + "target": "ae_utils_ae_utils_to_title_case_to_title_case" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/ae_utils__to_title_case.ts", + "source_location": "L3", + "weight": 1.0, + "source": "ae_utils_ae_utils_to_title_case", + "target": "ae_utils_ae_utils_to_title_case_to_title_case", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/ae_utils/utils.ts", + "source_location": "L4", + "weight": 1.0, + "source": "ae_utils_utils", + "target": "ae_utils_utils_cn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source_location": "L209", + "weight": 1.0, + "source": "app_components_e_app_access_type", + "target": "app_components_e_app_access_type_handle_check_passcode_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source_location": "L113", + "weight": 1.0, + "source": "app_components_e_app_access_type", + "target": "app_components_e_app_access_type_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source": "app_components_e_app_access_type", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source": "app_components_e_app_access_type", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source": "app_components_e_app_access_type", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source": "app_components_e_app_access_type", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source": "app_components_e_app_access_type", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_access_type.svelte", + "source": "app_components_e_app_access_type", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source": "app_components_e_app_sys_bar", + "target": "app_components_e_app_access_type", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/[account_id]/+page.svelte", + "source": "account_id_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/[address_id]/+page.svelte", + "source": "address_id_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/+page.svelte", + "source": "addresses_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source": "app_components_e_app_sign_in_out", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_li", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte", + "source": "archives_ae_idaa_comp_archive_obj_li", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_print_controls.svelte", + "source": "badge_id_ae_comp_badge_print_controls", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/[contact_id]/+page.svelte", + "source": "contact_id_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/+page.svelte", + "source": "contacts_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/+layout.svelte", + "source": "core_layout", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/sign_in_out.svelte", + "source": "event_id_sign_in_out", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/ae_comp__lead_detail_form.svelte", + "source": "exhibit_tracking_id_ae_comp_lead_detail_form", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L17", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source": "journals_ae_comp_journal_obj_id_edit", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_view.svelte", + "source": "journals_ae_comp_journal_obj_id_view", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_config.svelte", + "source": "journals_ae_comp_modal_journal_entry_config", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__obj_core_props.svelte", + "source": "journals_ae_comp_obj_core_props", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source": "launcher_menu_session_list", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+page.svelte", + "source": "launcher_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/lookups/+page.svelte", + "source": "lookups_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/[site_id]/+page.svelte", + "source": "site_id_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.svelte", + "source": "src_routes_core_accounts_page_svelte_accounts_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source": "src_routes_core_files_page_svelte_files_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/+page.svelte", + "source": "src_routes_core_people_page_svelte_people_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/+page.svelte", + "source": "src_routes_core_sites_page_svelte_sites_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.svelte", + "source": "src_routes_core_users_user_id_page_svelte_user_id_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+layout.svelte", + "source": "src_routes_journals_layout_svelte_journals_layout", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/+page.svelte", + "source": "users_page", + "target": "navigation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/ae_obj_field_editor/+page.svelte", + "source": "ae_obj_field_editor_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source": "badges_ae_comp_badge_search", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source": "core_ae_comp_person_obj_tbl", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte", + "source": "device_ae_comp_event_device_obj_li_wrapper", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store.svelte", + "source": "elements_element_data_store", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L21", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L23", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source": "events_ae_comp_event_file_obj_tbl_wrapper", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte", + "source": "events_ae_comp_event_session_obj_li_wrapper", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl.svelte", + "source": "events_ae_comp_event_session_obj_tbl", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte", + "source": "events_ae_comp_event_session_obj_tbl_wrapper", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_payment.svelte", + "source": "exhibit_id_ae_comp_exhibit_payment", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source": "exhibit_id_ae_comp_exhibit_signin", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_search.svelte", + "source": "exhibit_id_ae_comp_exhibit_tracking_search", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source": "exhibit_id_ae_comp_lead_manual_search", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_start.svelte", + "source": "exhibit_id_ae_comp_tab_start", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source": "launcher_launcher_presentation_view", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "source": "launcher_launcher_session_view_posters", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source": "launcher_menu_session_list", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/modules/+page.svelte", + "source": "modules_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li_wrapper", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte", + "source": "presenter_ae_comp_event_presenter_obj_tbl_wrapper", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte", + "source": "print_list_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L29", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L20", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/config/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_config_page_svelte_config_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_svelte_exhibit_id_layout", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+page.svelte", + "source": "src_routes_events_event_id_page_svelte_event_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_config_page_svelte_config_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.svelte", + "source": "src_routes_events_page_svelte_events_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/+page.svelte", + "source": "templates_page", + "target": "dexie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_debug_menu.svelte", + "source": "app_components_e_app_debug_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source": "app_components_e_app_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_view.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte", + "source": "archives_ae_idaa_comp_archive_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source": "badge_id_ae_comp_badge_review_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte", + "source": "badges_ae_comp_badge_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source": "badges_ae_comp_badge_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_li.svelte", + "source": "bb_ae_idaa_comp_post_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source": "core_ae_comp_person_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source": "device_ae_comp_event_device_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video.svelte", + "source": "elements_ae_comp_hosted_files_clip_video", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video_li.svelte", + "source": "elements_ae_comp_hosted_files_clip_video_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_download_button.svelte", + "source": "elements_ae_comp_hosted_files_download_button", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_ae_obj_field_editor.svelte", + "source": "elements_element_ae_obj_field_editor", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_editor_tiptap.svelte", + "source": "elements_element_editor_tiptap", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_file.svelte", + "source": "elements_element_input_file", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_files_tbl.svelte", + "source": "elements_element_input_files_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source": "elements_element_manage_event_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source": "elements_element_manage_event_file_li_direct", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source": "elements_element_manage_hosted_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_obj_tbl_row.svelte", + "source": "elements_element_obj_tbl_row", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl.svelte", + "source": "events_ae_comp_event_session_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_obj_li.svelte", + "source": "exhibit_id_ae_comp_exhibit_tracking_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source": "exhibit_id_ae_comp_lead_manual_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_header.svelte", + "source": "journals_ae_comp_journal_entry_header", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_metadata.svelte", + "source": "journals_ae_comp_journal_entry_metadata", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_view.svelte", + "source": "journals_ae_comp_journal_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_li.svelte", + "source": "journals_ae_comp_journal_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_append.svelte", + "source": "journals_ae_comp_modal_journal_entry_append", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_export.svelte", + "source": "journals_ae_comp_modal_journal_export", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__obj_core_props.svelte", + "source": "journals_ae_comp_obj_core_props", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source": "launcher_launcher_background_sync", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source": "launcher_menu_session_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte", + "source": "presenter_ae_comp_event_presenter_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/reports_badge_export.svelte", + "source": "reports_reports_badge_export", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source": "reports_reports_file_downloads", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte", + "source": "reports_reports_files", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte", + "source": "reports_reports_presenters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source": "reports_reports_sessions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte", + "source": "session_id_ae_comp_event_session_poc_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source": "session_id_ae_comp_event_session_poc_profile", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source": "session_id_ae_comp_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/activity_logs/+page.svelte", + "source": "src_routes_core_activity_logs_page_svelte_activity_logs_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source": "src_routes_core_files_page_svelte_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+page.svelte", + "source": "src_routes_events_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.svelte", + "source": "src_routes_events_page_svelte_events_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source": "src_routes_hosted_files_layout_svelte_hosted_files_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+page.svelte", + "source": "src_routes_hosted_files_page_svelte_hosted_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.svelte", + "source": "src_routes_idaa_idaa_jitsi_reports_page_svelte_jitsi_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source": "video_util_hold_video_util", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source": "video_util_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_utils_ae_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/[account_id]/+page.svelte", + "source": "account_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/[address_id]/+page.svelte", + "source": "address_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/ae_comp__address_form.svelte", + "source": "addresses_ae_comp_address_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/+page.svelte", + "source": "addresses_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/ae_obj_field_editor/+page.svelte", + "source": "ae_obj_field_editor_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_debug_menu.svelte", + "source": "app_components_e_app_debug_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_help_tech.svelte", + "source": "app_components_e_app_help_tech", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source": "app_components_e_app_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source": "app_components_e_app_sys_bar", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_view.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte", + "source": "archives_ae_idaa_comp_archive_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__media_player.svelte", + "source": "archives_ae_idaa_comp_media_player", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source": "badge_id_ae_comp_badge_obj_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_print_controls.svelte", + "source": "badge_id_ae_comp_badge_print_controls", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source": "badge_id_ae_comp_badge_review_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte", + "source": "badges_ae_comp_badge_create_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte", + "source": "badges_ae_comp_badge_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source": "badges_ae_comp_badge_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source": "badges_ae_comp_badge_upload_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_li.svelte", + "source": "bb_ae_idaa_comp_post_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_options.svelte", + "source": "bb_ae_idaa_comp_post_options", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_app_modes.svelte", + "source": "cfg_components_launcher_cfg_app_modes", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_controller.svelte", + "source": "cfg_components_launcher_cfg_controller", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte", + "source": "cfg_components_launcher_cfg_health", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte", + "source": "cfg_components_launcher_cfg_launch_timing", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_local_actions.svelte", + "source": "cfg_components_launcher_cfg_local_actions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_native_os.svelte", + "source": "cfg_components_launcher_cfg_native_os", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_screen_saver.svelte", + "source": "cfg_components_launcher_cfg_screen_saver", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_section.svelte", + "source": "cfg_components_launcher_cfg_section", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_sync_timers.svelte", + "source": "cfg_components_launcher_cfg_sync_timers", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_template.svelte", + "source": "cfg_components_launcher_cfg_template", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_updates.svelte", + "source": "cfg_components_launcher_cfg_updates", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_wallpaper.svelte", + "source": "cfg_components_launcher_cfg_wallpaper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/[contact_id]/+page.svelte", + "source": "contact_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/ae_comp__contact_form.svelte", + "source": "contacts_ae_comp_contact_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/+page.svelte", + "source": "contacts_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source": "core_ae_comp_person_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/+layout.svelte", + "source": "core_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/data_store/+page.svelte", + "source": "data_store_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source": "device_ae_comp_event_device_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source": "elements_ae_ai_tools", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video.svelte", + "source": "elements_ae_comp_hosted_files_clip_video", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video_li.svelte", + "source": "elements_ae_comp_hosted_files_clip_video_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_download_button.svelte", + "source": "elements_ae_comp_hosted_files_download_button", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_upload.svelte", + "source": "elements_ae_comp_hosted_files_upload", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__site_config_editor.svelte", + "source": "elements_ae_comp_site_config_editor", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source": "elements_ae_object_flags", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_ae_obj_field_editor.svelte", + "source": "elements_element_ae_obj_field_editor", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store.svelte", + "source": "elements_element_data_store", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store_form.svelte", + "source": "elements_element_data_store_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_editor_codemirror.svelte", + "source": "elements_element_editor_codemirror", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_file.svelte", + "source": "elements_element_input_file", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_files_tbl.svelte", + "source": "elements_element_input_files_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source": "elements_element_manage_event_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source": "elements_element_manage_event_file_li_direct", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source": "elements_element_manage_hosted_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_sql_qry.svelte", + "source": "elements_element_sql_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/sign_in_out.svelte", + "source": "event_id_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_files_upload.svelte", + "source": "events_ae_comp_event_files_upload", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__events_menu_nav.svelte", + "source": "events_ae_comp_events_menu_nav", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__events_menu_opts.svelte", + "source": "events_ae_comp_events_menu_opts", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_custom_questions.svelte", + "source": "exhibit_id_ae_comp_exhibit_custom_questions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_license_list.svelte", + "source": "exhibit_id_ae_comp_exhibit_license_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_payment.svelte", + "source": "exhibit_id_ae_comp_exhibit_payment", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source": "exhibit_id_ae_comp_exhibit_signin", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_search.svelte", + "source": "exhibit_id_ae_comp_exhibit_tracking_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source": "exhibit_id_ae_comp_lead_manual_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/ae_comp__lead_detail_form.svelte", + "source": "exhibit_tracking_id_ae_comp_lead_detail_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+page.svelte", + "source": "idaa_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_editor.svelte", + "source": "journals_ae_comp_journal_entry_editor", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_header.svelte", + "source": "journals_ae_comp_journal_entry_header", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_metadata.svelte", + "source": "journals_ae_comp_journal_entry_metadata", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_qry.svelte", + "source": "journals_ae_comp_journal_entry_obj_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_quick_add.svelte", + "source": "journals_ae_comp_journal_entry_quick_add", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source": "journals_ae_comp_journal_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_view.svelte", + "source": "journals_ae_comp_journal_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_li.svelte", + "source": "journals_ae_comp_journal_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_config.svelte", + "source": "journals_ae_comp_modal_journal_config", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_append.svelte", + "source": "journals_ae_comp_modal_journal_entry_append", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_config.svelte", + "source": "journals_ae_comp_modal_journal_entry_config", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_import.svelte", + "source": "journals_ae_comp_modal_journal_import", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__obj_core_props.svelte", + "source": "journals_ae_comp_obj_core_props", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source": "launcher_launcher_background_sync", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source": "launcher_launcher_presentation_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "source": "launcher_launcher_session_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_launcher_controls.svelte", + "source": "launcher_menu_launcher_controls", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source": "launcher_menu_session_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+page.svelte", + "source": "launcher_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/ae_comp__exhibit_search.svelte", + "source": "leads_ae_comp_exhibit_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source": "locations_ae_comp_event_location_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__locations_page_menu.svelte", + "source": "locations_ae_comp_locations_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/lookups/+page.svelte", + "source": "lookups_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/modules/+page.svelte", + "source": "modules_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/ae_comp__person_form.svelte", + "source": "people_ae_comp_person_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/ae_comp__person_search.svelte", + "source": "people_ae_comp_person_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/ae_comp__pres_mgmt_session_search.svelte", + "source": "pres_mgmt_ae_comp_pres_mgmt_session_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte", + "source": "presenter_ae_comp_event_presenter_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte", + "source": "print_list_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/event_reports_page_menu.svelte", + "source": "reports_event_reports_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source": "reports_reports_file_downloads", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte", + "source": "reports_reports_files", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte", + "source": "reports_reports_presenters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source": "reports_reports_sessions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+page.svelte", + "source": "routes_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/ae_comp__event_session_alert.svelte", + "source": "session_ae_comp_event_session_alert", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte", + "source": "session_id_ae_comp_event_session_poc_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source": "session_id_ae_comp_event_session_poc_profile", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source": "session_id_ae_comp_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_abstracts_form.svelte", + "source": "settings_ae_comp_event_settings_abstracts_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source": "settings_ae_comp_event_settings_badges_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_basic_form.svelte", + "source": "settings_ae_comp_event_settings_basic_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_form.svelte", + "source": "settings_ae_comp_event_settings_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/[site_id]/+page.svelte", + "source": "site_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.svelte", + "source": "src_routes_core_accounts_page_svelte_accounts_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/activity_logs/+page.svelte", + "source": "src_routes_core_activity_logs_page_svelte_activity_logs_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source": "src_routes_core_files_page_svelte_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/+page.svelte", + "source": "src_routes_core_page_svelte_core_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/+page.svelte", + "source": "src_routes_core_people_page_svelte_people_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/+page.svelte", + "source": "src_routes_core_sites_page_svelte_sites_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.svelte", + "source": "src_routes_core_users_user_id_page_svelte_user_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_launcher_launcher_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/+layout.svelte", + "source": "src_routes_events_event_id_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+layout.svelte", + "source": "src_routes_events_event_id_layout_svelte_event_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/config/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+page.svelte", + "source": "src_routes_events_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+layout.svelte", + "source": "src_routes_events_layout_svelte_events_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.svelte", + "source": "src_routes_events_page_svelte_events_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source": "src_routes_hosted_files_layout_svelte_hosted_files_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+page.svelte", + "source": "src_routes_hosted_files_page_svelte_hosted_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+layout.svelte", + "source": "src_routes_idaa_idaa_archives_layout_svelte_archives_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.svelte", + "source": "src_routes_idaa_idaa_bb_layout_svelte_bb_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.svelte", + "source": "src_routes_idaa_idaa_jitsi_reports_page_svelte_jitsi_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_layout_svelte_recovery_meetings_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source": "src_routes_idaa_idaa_video_conferences_page_svelte_video_conferences_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+layout.svelte", + "source": "src_routes_journals_layout_svelte_journals_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/hosted_files/+page.svelte", + "source": "src_routes_testing_hosted_files_page_svelte_hosted_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte", + "source": "templates_ae_comp_badge_template_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/+page.svelte", + "source": "templates_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/+page.svelte", + "source": "users_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source": "video_util_hold_video_util", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source": "video_util_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source": "app_components_e_app_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source": "badge_id_ae_comp_badge_obj_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source": "badge_id_ae_comp_badge_review_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source": "elements_element_manage_hosted_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/ae_comp__person_form.svelte", + "source": "people_ae_comp_person_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source": "session_id_ae_comp_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/+page.svelte", + "source": "src_routes_core_people_page_svelte_people_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl.svelte", + "source": "events_ae_comp_event_session_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source": "launcher_menu_session_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source": "session_id_ae_comp_event_session_poc_profile", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_events", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_analytics.svelte", + "source_location": "L22", + "weight": 1.0, + "source": "app_components_e_app_analytics", + "target": "app_components_e_app_analytics_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_analytics.svelte", + "source": "app_components_e_app_analytics", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "app_components_e_app_analytics", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_clipboard.svelte", + "source": "app_components_e_app_clipboard", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source": "app_components_e_app_sign_in_out", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte", + "source": "archive_id_ae_idaa_comp_modal_media_player", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__media_player.svelte", + "source": "archives_ae_idaa_comp_media_player", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source": "badge_id_ae_comp_badge_obj_view", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_print_controls.svelte", + "source": "badge_id_ae_comp_badge_print_controls", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source": "badge_id_ae_comp_badge_review_form", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "badge_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L17", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/clear-caches/+page.svelte", + "source": "clear_caches_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/codemirror_modules.ts", + "source_location": "L43", + "weight": 1.0, + "source": "elements_codemirror_modules", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store.svelte", + "source": "elements_element_data_store", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_editor_codemirror.svelte", + "source": "elements_element_editor_codemirror", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_editor_tiptap.svelte", + "source": "elements_element_editor_tiptap", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L22", + "weight": 1.0, + "source": "elements_pwa_install_svelte", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+page.svelte", + "source": "launcher_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L19", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+error.svelte", + "source": "routes_error", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_core_people_person_id_page_ts_person_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_ts_print_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_ts_review_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.ts", + "source_location": "L1", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_reports_page_ts_reports_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_launcher_launcher_event_location_id_page_ts_event_location_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_launcher_launcher_layout_ts_launcher_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_layout_ts_event_id_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_ts_exhibit_id_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_ts_exhibit_tracking_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_layout_ts_leads_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_page_ts_leads_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/+layout.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_layout_ts_pres_mgmt_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_ts_event_location_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_locations_page_ts_locations_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_ts_presenter_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_ts_session_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+layout.svelte", + "source": "src_routes_events_layout_svelte_events_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_events_page_ts_events_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source": "src_routes_hosted_files_layout_svelte_hosted_files_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_hosted_files_layout_ts_hosted_files_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_idaa_idaa_bb_layout_ts_bb_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_ts_journal_entry_id_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_journals_journal_id_layout_ts_journal_id_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+layout.svelte", + "source": "src_routes_journals_layout_svelte_journals_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_journals_page_ts_journals_page", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "environment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_clipboard.svelte", + "source_location": "L15", + "weight": 1.0, + "source": "app_components_e_app_clipboard", + "target": "app_components_e_app_clipboard_children_log_lvl_0_value_bindable_success_bindable_false_btn_text_copy_to_clipboard_btn_title_copy_to_clipboard_btn_class_btn_btn_sm_preset_tonal_warning_text_warning_500_m_1_hide_icon_false_hide_text_false_icon_name_copy_copy_check_link", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_view", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_li", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source": "reports_reports_file_downloads", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source": "session_id_ae_comp_event_session_poc_profile", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source": "src_routes_idaa_idaa_video_conferences_page_svelte_video_conferences_page", + "target": "app_components_e_app_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "app_components_e_app_debug_menu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_help_tech.svelte", + "source": "app_components_e_app_help_tech", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "app_components_e_app_help_tech", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_options.svelte", + "source": "bb_ae_idaa_comp_post_options", + "target": "app_components_e_app_help_tech", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "target": "app_components_e_app_help_tech", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "app_components_e_app_help_tech", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "app_components_e_app_help_tech", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+layout.svelte", + "source": "src_routes_journals_layout_svelte_journals_layout", + "target": "app_components_e_app_help_tech", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte", + "source": "badges_ae_comp_badge_create_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source": "badges_ae_comp_badge_upload_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video.svelte", + "source": "elements_ae_comp_hosted_files_clip_video", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video_li.svelte", + "source": "elements_ae_comp_hosted_files_clip_video_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_upload.svelte", + "source": "elements_ae_comp_hosted_files_upload", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_ae_obj_field_editor.svelte", + "source": "elements_element_ae_obj_field_editor", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store.svelte", + "source": "elements_element_data_store", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store_form.svelte", + "source": "elements_element_data_store_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/sign_in_out.svelte", + "source": "event_id_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_files_upload.svelte", + "source": "events_ae_comp_event_files_upload", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_quick_add.svelte", + "source": "journals_ae_comp_journal_entry_quick_add", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/lookups/+page.svelte", + "source": "lookups_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/modules/+page.svelte", + "source": "modules_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/ae_comp__event_session_alert.svelte", + "source": "session_ae_comp_event_session_alert", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source": "src_routes_core_files_page_svelte_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/config/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L479", + "weight": 1.0, + "source": "app_components_e_app_sign_in_out", + "target": "app_components_e_app_sign_in_out_async", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L279", + "weight": 1.0, + "source": "app_components_e_app_sign_in_out", + "target": "app_components_e_app_sign_in_out_handle_change_password", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L253", + "weight": 1.0, + "source": "app_components_e_app_sign_in_out", + "target": "app_components_e_app_sign_in_out_handle_lookup_user_email", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L229", + "weight": 1.0, + "source": "app_components_e_app_sign_in_out", + "target": "app_components_e_app_sign_in_out_handle_send_auth_email", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L101", + "weight": 1.0, + "source": "app_components_e_app_sign_in_out", + "target": "app_components_e_app_sign_in_out_sign_in", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source_location": "L151", + "weight": 1.0, + "source": "app_components_e_app_sign_in_out", + "target": "app_components_e_app_sign_in_out_sign_out", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sign_in_out.svelte", + "source": "app_components_e_app_sign_in_out", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source": "app_components_e_app_sys_bar", + "target": "app_components_e_app_sign_in_out", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte", + "source": "archive_id_ae_idaa_comp_modal_media_player", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source": "badge_id_ae_comp_badge_review_form", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source": "elements_ae_ai_tools", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store_form.svelte", + "source": "elements_element_data_store_form", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source": "journals_ae_comp_journal_obj_id_edit", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_config.svelte", + "source": "journals_ae_comp_modal_journal_config", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_append.svelte", + "source": "journals_ae_comp_modal_journal_entry_append", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_config.svelte", + "source": "journals_ae_comp_modal_journal_entry_config", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_export.svelte", + "source": "journals_ae_comp_modal_journal_export", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_import.svelte", + "source": "journals_ae_comp_modal_journal_import", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__locations_page_menu.svelte", + "source": "locations_ae_comp_locations_page_menu", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/event_reports_page_menu.svelte", + "source": "reports_event_reports_page_menu", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L19", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/+page.svelte", + "source": "templates_page", + "target": "flowbite_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source_location": "L157", + "weight": 1.0, + "source": "app_components_e_app_sys_bar", + "target": "app_components_e_app_sys_bar_if", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source_location": "L632", + "weight": 1.0, + "source": "app_components_e_app_sys_bar", + "target": "app_components_e_app_sys_bar_opacity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source": "app_components_e_app_sys_bar", + "target": "app_components_e_app_url_builder", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_sys_bar.svelte", + "source": "app_components_e_app_sys_bar", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "app_components_e_app_sys_bar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/app_components/e_app_url_builder.svelte", + "source": "app_components_e_app_url_builder", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/[account_id]/+page.svelte", + "source": "account_id_page", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/[address_id]/+page.svelte", + "source": "address_id_page", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/[contact_id]/+page.svelte", + "source": "contact_id_page", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/[site_id]/+page.svelte", + "source": "site_id_page", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.svelte", + "source": "src_routes_events_page_svelte_events_page", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source": "src_routes_idaa_idaa_video_conferences_page_svelte_video_conferences_page", + "target": "stores", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L27", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_check_hash_file_cache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L176", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_cleanup_tmp_files", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L322", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_control_presentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L113", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_copy_from_cache_to_temp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L42", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_download_to_cache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L16", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_get_device_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L21", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_get_device_info", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L207", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_kill_processes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L62", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_launch_from_cache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L228", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_launch_presentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L506", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_list_display_modes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L562", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_list_tools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L476", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_manage_recording", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L543", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_open_external", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L138", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_open_folder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L217", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_open_local_file_v2", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L530", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_power_control", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L422", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_restore_macos_default_wallpaper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L144", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_run_cmd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L158", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_run_cmd_sync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L201", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_run_osascript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L491", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_set_display_layout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L512", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_set_display_mode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L387", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_set_wallpaper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L448", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_update_app", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L461", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "electron_electron_relay_window_control", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L2", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L2", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L2", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L2", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "stores_ae_stores_ae_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L2", + "weight": 1.0, + "source": "electron_electron_relay", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L83", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "electron_electron_relay", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L245", + "weight": 1.0, + "source": "electron_electron_relay_launch_presentation", + "target": "electron_electron_relay_get_device_info", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L186", + "weight": 1.0, + "source": "electron_electron_relay_cleanup_tmp_files", + "target": "electron_electron_relay_run_cmd", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L301", + "weight": 1.0, + "source": "electron_electron_relay_launch_presentation", + "target": "electron_electron_relay_run_cmd", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L376", + "weight": 1.0, + "source": "electron_electron_relay_control_presentation", + "target": "electron_electron_relay_run_osascript", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L308", + "weight": 1.0, + "source": "electron_electron_relay_launch_presentation", + "target": "electron_electron_relay_run_osascript", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L444", + "weight": 1.0, + "source": "electron_electron_relay_restore_macos_default_wallpaper", + "target": "electron_electron_relay_run_osascript", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/electron/electron_relay.ts", + "source_location": "L312", + "weight": 1.0, + "source": "electron_electron_relay_launch_presentation", + "target": "electron_electron_relay_open_local_file_v2", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/action_fit_text.ts", + "source_location": "L20", + "weight": 1.0, + "source": "elements_action_fit_text", + "target": "elements_action_fit_text_fit_text", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/action_fit_text.ts", + "source_location": "L15", + "weight": 1.0, + "source": "elements_action_fit_text", + "target": "elements_action_fit_text_fittextparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L87", + "weight": 1.0, + "source": "elements_ae_ai_tools", + "target": "elements_ae_ai_tools_generate_ai_result", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L149", + "weight": 1.0, + "source": "elements_ae_ai_tools", + "target": "elements_ae_ai_tools_handle_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L75", + "weight": 1.0, + "source": "elements_ae_ai_tools", + "target": "elements_ae_ai_tools_show_api_token", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L83", + "weight": 1.0, + "source": "elements_ae_ai_tools", + "target": "elements_ae_ai_tools_tab_button_class", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source_location": "L74", + "weight": 1.0, + "source": "elements_ae_ai_tools", + "target": "elements_ae_ai_tools_tmp_summary", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source": "elements_ae_ai_tools", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_ai_tools.svelte", + "source": "elements_ae_ai_tools", + "target": "openai", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_ai_tools.svelte", + "source": "journals_ae_comp_journal_entry_ai_tools", + "target": "elements_ae_ai_tools", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/editor_test/+page.svelte", + "source": "editor_test_page", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__site_config_editor.svelte", + "source": "elements_ae_comp_site_config_editor", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_ae_obj_field_editor.svelte", + "source": "elements_element_ae_obj_field_editor", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store_form.svelte", + "source": "elements_element_data_store_form", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_editor_codemirror.svelte", + "source_location": "L204", + "weight": 1.0, + "source": "elements_element_editor_codemirror", + "target": "elements_element_editor_codemirror_toggle_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_editor_codemirror.svelte", + "source_location": "L164", + "weight": 1.0, + "source": "elements_element_editor_codemirror", + "target": "elements_element_editor_codemirror_wrap_selection", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_editor_codemirror.svelte", + "source": "elements_element_editor_codemirror", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_codemirror_modules", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_editor.svelte", + "source": "journals_ae_comp_journal_entry_editor", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source": "journals_ae_comp_journal_obj_id_edit", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_config.svelte", + "source": "journals_ae_comp_modal_journal_config", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_config.svelte", + "source": "journals_ae_comp_modal_journal_entry_config", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "elements_element_editor_codemirror", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video.svelte", + "source": "elements_ae_comp_hosted_files_clip_video", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video.svelte", + "source": "elements_ae_comp_hosted_files_clip_video", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_element_input_files_tbl_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source": "video_util_hold_video_util", + "target": "elements_ae_comp_hosted_files_clip_video", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source": "video_util_page", + "target": "elements_ae_comp_hosted_files_clip_video", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_li", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L42", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_clip_video_li.svelte", + "source": "elements_ae_comp_hosted_files_clip_video_li", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_download_button.svelte", + "source_location": "L146", + "weight": 1.0, + "source": "elements_ae_comp_hosted_files_download_button", + "target": "elements_ae_comp_hosted_files_download_button_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_download_button.svelte", + "source": "elements_ae_comp_hosted_files_download_button", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_core_hosted_files", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_download_button.svelte", + "source": "elements_ae_comp_hosted_files_download_button", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L80", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/hosted_files/+page.svelte", + "source": "src_routes_testing_hosted_files_page_svelte_hosted_files_page", + "target": "elements_ae_comp_hosted_files_download_button", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source": "video_util_hold_video_util", + "target": "elements_ae_comp_hosted_files_clip_video_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source": "video_util_page", + "target": "elements_ae_comp_hosted_files_clip_video_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source": "badges_ae_comp_badge_search", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_section.svelte", + "source": "cfg_components_launcher_cfg_section", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L53", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "transition", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source": "src_routes_core_files_page_svelte_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_core_hosted_files", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/hosted_files/+page.svelte", + "source": "src_routes_testing_hosted_files_page_svelte_hosted_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_core_hosted_files", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "elements_ae_comp_hosted_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "elements_ae_comp_hosted_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_upload.svelte", + "source_location": "L88", + "weight": 1.0, + "source": "elements_ae_comp_hosted_files_upload", + "target": "elements_ae_comp_hosted_files_upload_function", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_comp__hosted_files_upload.svelte", + "source": "elements_ae_comp_hosted_files_upload", + "target": "elements_element_input_files_tbl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "elements_ae_comp_hosted_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source": "video_util_hold_video_util", + "target": "elements_ae_comp_hosted_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source": "video_util_page", + "target": "elements_ae_comp_hosted_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_files_tbl.svelte", + "source": "elements_element_input_files_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_core_check_hosted_file_obj_w_hash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_files_tbl.svelte", + "source": "elements_element_input_files_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_files_tbl.svelte", + "source": "elements_element_input_files_tbl", + "target": "legacy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_files_upload.svelte", + "source": "events_ae_comp_event_files_upload", + "target": "elements_element_input_files_tbl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/[site_id]/+page.svelte", + "source": "site_id_page", + "target": "elements_ae_comp_site_config_editor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L52", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "elements_ae_object_flags_emit_toggle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L39", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "elements_ae_object_flags_obj_bindable_show_labels_true_hide_alert_hide_alert_false_hide_private_hide_private_false_hide_public_hide_public_false_hide_personal_hide_personal_false_hide_professional_hide_professional_false_hide_template_hide_template_false_on_toggle_ontoggle_container_class_flex_flex_row_flex_wrap_gap_1_items_center_justify_evenly_py_2_border_y_border_surface_500_10", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L56", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "elements_ae_object_flags_toggle_alert", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L71", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "elements_ae_object_flags_toggle_personal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L61", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "elements_ae_object_flags_toggle_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L76", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "elements_ae_object_flags_toggle_professional", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L66", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "elements_ae_object_flags_toggle_public", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L81", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "elements_ae_object_flags_toggle_template", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source": "elements_ae_object_flags", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L16", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L16", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L17", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L17", + "weight": 1.0, + "source": "elements_ae_object_flags", + "target": "types_ae_types_ae_journalentrydraft", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_config.svelte", + "source": "journals_ae_comp_modal_journal_entry_config", + "target": "elements_ae_object_flags", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L58", + "weight": 1.0, + "source": "elements_ae_object_flags_toggle_alert", + "target": "elements_ae_object_flags_emit_toggle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L73", + "weight": 1.0, + "source": "elements_ae_object_flags_toggle_personal", + "target": "elements_ae_object_flags_emit_toggle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L63", + "weight": 1.0, + "source": "elements_ae_object_flags_toggle_private", + "target": "elements_ae_object_flags_emit_toggle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L78", + "weight": 1.0, + "source": "elements_ae_object_flags_toggle_professional", + "target": "elements_ae_object_flags_emit_toggle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L68", + "weight": 1.0, + "source": "elements_ae_object_flags_toggle_public", + "target": "elements_ae_object_flags_emit_toggle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/ae_object_flags.svelte", + "source_location": "L83", + "weight": 1.0, + "source": "elements_ae_object_flags_toggle_template", + "target": "elements_ae_object_flags_emit_toggle", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/ae_comp__address_form.svelte", + "source": "addresses_ae_comp_address_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/ae_comp__contact_form.svelte", + "source": "contacts_ae_comp_contact_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store.svelte", + "source": "elements_element_data_store", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store_form.svelte", + "source": "elements_element_data_store_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source": "exhibit_id_ae_comp_lead_manual_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_editor.svelte", + "source": "journals_ae_comp_journal_entry_editor", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_header.svelte", + "source": "journals_ae_comp_journal_entry_header", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_metadata.svelte", + "source": "journals_ae_comp_journal_entry_metadata", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_append.svelte", + "source": "journals_ae_comp_modal_journal_entry_append", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_config.svelte", + "source": "journals_ae_comp_modal_journal_entry_config", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_export.svelte", + "source": "journals_ae_comp_modal_journal_export", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/ae_comp__person_form.svelte", + "source": "people_ae_comp_person_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte", + "source": "print_list_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source": "src_routes_core_files_page_svelte_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "elements_ae_record_controls", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "elements_ae_record_controls", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "elements_ae_record_controls", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "elements_ae_record_controls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/codemirror_modules.ts", + "source_location": "L45", + "weight": 1.0, + "source": "elements_codemirror_modules", + "target": "elements_codemirror_modules_cmcache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/codemirror_modules.ts", + "source_location": "L89", + "weight": 1.0, + "source": "elements_codemirror_modules", + "target": "elements_codemirror_modules_ensure_codemirror_modules", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/codemirror_modules.ts", + "source_location": "L108", + "weight": 1.0, + "source": "elements_codemirror_modules_ensure_codemirror_modules", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "elements_element_access_denied", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/ae_obj_field_editor/+page.svelte", + "source": "ae_obj_field_editor_page", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L43", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_ae_obj_field_editor.svelte", + "source": "elements_element_ae_obj_field_editor", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source": "locations_ae_comp_event_location_obj_li", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L23", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L23", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "elements_element_ae_obj_field_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/editor_test/+page.svelte", + "source": "editor_test_page", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store_form.svelte", + "source": "elements_element_data_store_form", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_editor_tiptap.svelte", + "source_location": "L71", + "weight": 1.0, + "source": "elements_element_editor_tiptap", + "target": "elements_element_editor_tiptap_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "elements_element_editor_tiptap", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/data_store/+page.svelte", + "source": "data_store_page", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store.svelte", + "source": "elements_element_data_store", + "target": "elements_element_data_store_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store.svelte", + "source_location": "L187", + "weight": 1.0, + "source": "elements_element_data_store", + "target": "elements_element_data_store_hidden", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store.svelte", + "source": "elements_element_data_store", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__locations_page_menu.svelte", + "source": "locations_ae_comp_locations_page_menu", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/event_reports_page_menu.svelte", + "source": "reports_event_reports_page_menu", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+page.svelte", + "source": "routes_page", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte", + "source": "session_id_ae_comp_event_session_poc_form_agree", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+layout.svelte", + "source": "src_routes_events_layout_svelte_events_layout", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source": "src_routes_hosted_files_layout_svelte_hosted_files_layout", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+layout.svelte", + "source": "src_routes_journals_layout_svelte_journals_layout", + "target": "elements_element_data_store", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/[account_id]/+page.svelte", + "source": "account_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source": "core_ae_comp_person_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/data_store/+page.svelte", + "source": "data_store_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_data_store_form.svelte", + "source": "elements_element_data_store_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source": "elements_element_manage_hosted_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "elements_element_data_store_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source": "badge_id_ae_comp_badge_obj_view", + "target": "elements_element_fit_text", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_fit_text.svelte", + "source": "elements_element_fit_text", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_action_fit_text", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_file.svelte", + "source_location": "L70", + "weight": 1.0, + "source": "elements_element_input_file", + "target": "elements_element_input_file_function", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_file.svelte", + "source": "elements_element_input_file", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_core_check_hosted_file_obj_w_hash", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_file.svelte", + "source": "elements_element_input_file", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_input_file.svelte", + "source": "elements_element_input_file", + "target": "legacy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source": "video_util_page", + "target": "legacy", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source": "elements_element_manage_hosted_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+page.svelte", + "source": "routes_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li.svelte", + "source": "elements_element_manage_event_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "elements_element_manage_event_file_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "elements_element_manage_event_file_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source": "core_ae_comp_person_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source": "elements_element_manage_event_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source": "elements_element_manage_event_file_li_direct", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source": "elements_element_manage_hosted_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte", + "source": "badges_ae_comp_badge_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source": "badges_ae_comp_badge_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_app_modes.svelte", + "source": "cfg_components_launcher_cfg_app_modes", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_controller.svelte", + "source": "cfg_components_launcher_cfg_controller", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte", + "source": "cfg_components_launcher_cfg_health", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_native_os.svelte", + "source": "cfg_components_launcher_cfg_native_os", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_sync_timers.svelte", + "source": "cfg_components_launcher_cfg_sync_timers", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_template.svelte", + "source": "cfg_components_launcher_cfg_template", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_updates.svelte", + "source": "cfg_components_launcher_cfg_updates", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source": "core_ae_comp_person_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source": "device_ae_comp_event_device_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source": "elements_element_manage_event_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source": "elements_element_manage_event_file_li_direct", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/sign_in_out.svelte", + "source": "event_id_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source": "events_ae_comp_event_file_obj_tbl_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_files_upload.svelte", + "source": "events_ae_comp_event_files_upload", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl.svelte", + "source": "events_ae_comp_event_session_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte", + "source": "events_ae_comp_event_session_obj_tbl_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__events_menu_nav.svelte", + "source": "events_ae_comp_events_menu_nav", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__events_menu_opts.svelte", + "source": "events_ae_comp_events_menu_opts", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source": "exhibit_id_ae_comp_exhibit_signin", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_search.svelte", + "source": "exhibit_id_ae_comp_exhibit_tracking_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source": "launcher_launcher_background_sync", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source": "launcher_launcher_presentation_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "source": "launcher_launcher_session_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source": "launcher_menu_session_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/ae_comp__exhibit_search.svelte", + "source": "leads_ae_comp_exhibit_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source": "locations_ae_comp_event_location_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__locations_page_menu.svelte", + "source": "locations_ae_comp_locations_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/ae_comp__pres_mgmt_session_search.svelte", + "source": "pres_mgmt_ae_comp_pres_mgmt_session_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte", + "source": "presenter_ae_comp_event_presenter_obj_tbl_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte", + "source": "print_list_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/event_reports_page_menu.svelte", + "source": "reports_event_reports_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source": "reports_reports_file_downloads", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte", + "source": "reports_reports_files", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte", + "source": "reports_reports_presenters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source": "reports_reports_sessions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/ae_comp__event_session_alert.svelte", + "source": "session_ae_comp_event_session_alert", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte", + "source": "session_id_ae_comp_event_session_poc_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source": "session_id_ae_comp_event_session_poc_profile", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source": "session_id_ae_comp_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_launcher_launcher_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+layout.svelte", + "source": "src_routes_events_event_id_layout_svelte_event_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_svelte_exhibit_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+page.svelte", + "source": "src_routes_events_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+layout.svelte", + "source": "src_routes_events_layout_svelte_events_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.svelte", + "source": "src_routes_events_page_svelte_events_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source": "device_ae_comp_event_device_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__events_menu_opts.svelte", + "source": "events_ae_comp_events_menu_opts", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source": "locations_ae_comp_event_location_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__locations_page_menu.svelte", + "source": "locations_ae_comp_locations_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/ae_comp__pres_mgmt_session_search.svelte", + "source": "pres_mgmt_ae_comp_pres_mgmt_session_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/event_reports_page_menu.svelte", + "source": "reports_event_reports_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte", + "source": "reports_reports_files", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte", + "source": "reports_reports_presenters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source": "reports_reports_sessions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte", + "source": "session_id_ae_comp_event_session_poc_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source": "session_id_ae_comp_event_session_poc_profile", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source": "session_id_ae_comp_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_print_controls.svelte", + "source": "badge_id_ae_comp_badge_print_controls", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source": "badge_id_ae_comp_badge_review_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte", + "source": "badges_ae_comp_badge_create_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source": "badges_ae_comp_badge_upload_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte", + "source": "cfg_components_launcher_cfg_launch_timing", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_wallpaper.svelte", + "source": "cfg_components_launcher_cfg_wallpaper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source": "core_ae_comp_person_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/person_view.svelte", + "source": "core_person_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source": "device_ae_comp_event_device_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source": "elements_element_manage_event_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source": "elements_element_manage_event_file_li_direct", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_files_upload.svelte", + "source": "events_ae_comp_event_files_upload", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_custom_questions.svelte", + "source": "exhibit_id_ae_comp_exhibit_custom_questions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_license_list.svelte", + "source": "exhibit_id_ae_comp_exhibit_license_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source": "exhibit_id_ae_comp_lead_manual_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/ae_comp__lead_detail_form.svelte", + "source": "exhibit_tracking_id_ae_comp_lead_detail_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source": "launcher_launcher_background_sync", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source": "launcher_launcher_presentation_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+page.svelte", + "source": "launcher_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source": "locations_ae_comp_event_location_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/modules/+page.svelte", + "source": "modules_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte", + "source": "print_list_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source": "reports_reports_file_downloads", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte", + "source": "reports_reports_files", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte", + "source": "reports_reports_presenters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source": "reports_reports_sessions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/ae_comp__event_session_alert.svelte", + "source": "session_ae_comp_event_session_alert", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte", + "source": "session_id_ae_comp_event_session_poc_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source": "session_id_ae_comp_event_session_poc_profile", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source": "session_id_ae_comp_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/config/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_layout_svelte_recovery_meetings_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte", + "source": "templates_ae_comp_badge_template_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/+page.svelte", + "source": "templates_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_functions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L12", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "elements_element_manage_event_file_li_all_container_class_li_link_to_type_link_to_id_allow_basic_false_allow_moderator_false_display_mode_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L73", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "elements_element_manage_event_file_li_all_dq_where_eq_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L72", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "elements_element_manage_event_file_li_all_dq_where_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L46", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "elements_element_manage_event_file_li_all_lq_context_session_type_code", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L77", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "elements_element_manage_event_file_li_all_lq_event_file_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source": "elements_element_manage_event_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source": "elements_element_manage_event_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L23", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_all.svelte", + "source_location": "L23", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_all", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "elements_element_manage_event_file_li_all", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte", + "source": "archive_id_ae_idaa_comp_modal_media_player", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/ae_comp__person_obj_tbl.svelte", + "source": "core_ae_comp_person_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl.svelte", + "source": "events_ae_comp_event_session_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+page.svelte", + "source": "routes_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source": "src_routes_hosted_files_layout_svelte_hosted_files_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source": "badges_ae_comp_badge_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte", + "source": "device_ae_comp_event_device_obj_li_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source": "elements_element_manage_event_file_li_direct", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/sign_in_out.svelte", + "source": "event_id_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source": "event_location_id_ae_comp_location_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source": "events_ae_comp_event_file_obj_tbl", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source": "events_ae_comp_event_file_obj_tbl_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte", + "source": "events_ae_comp_event_session_obj_li_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte", + "source": "events_ae_comp_event_session_obj_tbl_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_payment.svelte", + "source": "exhibit_id_ae_comp_exhibit_payment", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source": "exhibit_id_ae_comp_exhibit_signin", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_search.svelte", + "source": "exhibit_id_ae_comp_exhibit_tracking_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source": "exhibit_id_ae_comp_lead_manual_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_start.svelte", + "source": "exhibit_id_ae_comp_tab_start", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source": "launcher_launcher_background_sync", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source": "launcher_launcher_presentation_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "source": "launcher_launcher_session_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+page.svelte", + "source": "launcher_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/modules/+page.svelte", + "source": "modules_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte", + "source": "presenter_ae_comp_event_presenter_obj_tbl_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte", + "source": "reports_reports_files", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte", + "source": "reports_reports_presenters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source": "reports_reports_sessions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source": "session_id_ae_comp_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/config/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_svelte_exhibit_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+page.svelte", + "source": "src_routes_events_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.svelte", + "source": "src_routes_events_page_svelte_events_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_db_events", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L82", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "elements_element_manage_event_file_li_direct_dq_where_eq_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L83", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "elements_element_manage_event_file_li_direct_dq_where_for_id_eq_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L13", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "elements_element_manage_event_file_li_direct_log_lvl_0_container_class_li_link_to_type_link_to_id_allow_basic_false_allow_moderator_false_display_mode_default", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L50", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "elements_element_manage_event_file_li_direct_lq_context_session_type_code", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L87", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "elements_element_manage_event_file_li_direct_lq_event_file_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_event_file_li_direct.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "elements_element_manage_event_file_li_direct", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "elements_element_manage_event_file_li_direct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "elements_element_manage_event_file_li_direct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "elements_element_manage_event_file_li_direct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "elements_element_manage_event_file_li_direct", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "elements_element_manage_event_file_li_direct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source_location": "L133", + "weight": 1.0, + "source": "elements_element_manage_hosted_file_li", + "target": "elements_element_manage_hosted_file_li_hidden", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li.svelte", + "source": "elements_element_manage_hosted_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_element_data_store_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "elements_element_manage_hosted_file_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_manage_hosted_file_li_all.svelte", + "source": "elements_element_manage_hosted_file_li_all", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_element_data_store_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_element_data_store_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_element_data_store_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "elements_element_manage_hosted_file_li_all", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "elements_element_manage_hosted_file_li_all", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+page.svelte", + "source": "src_routes_hosted_files_page_svelte_hosted_files_page", + "target": "elements_element_manage_hosted_file_li_all", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source": "video_util_hold_video_util", + "target": "elements_element_manage_hosted_file_li_all", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source": "video_util_page", + "target": "elements_element_manage_hosted_file_li_all", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_sql_qry.svelte", + "source": "elements_element_sql_qry", + "target": "elements_element_obj_tbl_row", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_pwa_install_prompt.svelte", + "source": "elements_element_pwa_install_prompt", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_pwa_install_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_start.svelte", + "source": "exhibit_id_ae_comp_tab_start", + "target": "elements_element_pwa_install_prompt", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_pwa_install_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source": "badges_ae_comp_badge_search", + "target": "elements_element_qr_scanner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_qr_scanner.svelte", + "source_location": "L138", + "weight": 1.0, + "source": "elements_element_qr_scanner", + "target": "elements_element_qr_scanner_await", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_qr_scanner.svelte", + "source": "elements_element_qr_scanner", + "target": "html5_qrcode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "elements_element_qr_scanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/element_sql_qry.svelte", + "source": "elements_element_sql_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api_post_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api_post_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "elements_element_websocket", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L25", + "weight": 1.0, + "source": "elements_pwa_install_svelte", + "target": "elements_pwa_install_svelte_beforeinstallpromptevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L37", + "weight": 1.0, + "source": "elements_pwa_install_svelte", + "target": "elements_pwa_install_svelte_deferred_prompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L59", + "weight": 1.0, + "source": "elements_pwa_install_svelte", + "target": "elements_pwa_install_svelte_in_standalone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L39", + "weight": 1.0, + "source": "elements_pwa_install_svelte", + "target": "elements_pwa_install_svelte_is_dismissed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L38", + "weight": 1.0, + "source": "elements_pwa_install_svelte", + "target": "elements_pwa_install_svelte_is_installed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L69", + "weight": 1.0, + "source": "elements_pwa_install_svelte", + "target": "elements_pwa_install_svelte_is_ios", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/elements/pwa_install.svelte.ts", + "source_location": "L80", + "weight": 1.0, + "source": "elements_pwa_install_svelte", + "target": "elements_pwa_install_svelte_pwa_install", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L60", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L35", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L37", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_ts_exhibit_id_layout", + "target": "stores_ae_events_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L10", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_badges_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L10", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_badges_defaults_badges_sess_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L76", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_events_sess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L22", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_events_session_data_struct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L133", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L83", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_events_slct_obj_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L153", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_events_trig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L158", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_events_trig_kv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L136", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_events_trigger", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L11", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_launcher_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L11", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_launcher_defaults_launcher_sess_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L12", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_leads_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L12", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_leads_defaults_leads_sess_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L13", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_pres_mgmt_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L13", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_pres_mgmt_defaults_pres_mgmt_sess_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L140", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_tmp_events_trig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L157", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_events_stores_tmp_events_trig_kv", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L4", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores.ts", + "source_location": "L4", + "weight": 1.0, + "source": "stores_ae_events_stores", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_events_stores_events_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L60", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_events_stores_events_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L35", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores_events_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L37", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_events_stores_events_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_events_stores_events_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L60", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L35", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L37", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_ts_exhibit_id_layout", + "target": "stores_ae_events_stores_events_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_events_stores_events_trigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L35", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores_events_trigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L37", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_events_stores_events_trigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_events_stores_events_trig_kv", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L35", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores_events_trig_kv", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L42", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L43", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L32", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__auth.svelte.ts", + "source_location": "L25", + "weight": 1.0, + "source": "stores_ae_events_stores_auth_svelte", + "target": "stores_ae_events_stores_auth_svelte_events_auth_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__auth.svelte.ts", + "source_location": "L3", + "weight": 1.0, + "source": "stores_ae_events_stores_auth_svelte", + "target": "stores_ae_events_stores_auth_svelte_events_auth_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L42", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores_auth_svelte_events_auth_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L43", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_events_stores_auth_svelte_events_auth_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L32", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_events_stores_auth_svelte_events_auth_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges.svelte.ts", + "source_location": "L16", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_svelte", + "target": "stores_ae_events_stores_badges_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges.svelte.ts", + "source_location": "L16", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_svelte", + "target": "stores_ae_events_stores_badges_defaults_badges_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges.svelte.ts", + "source_location": "L20", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_svelte", + "target": "stores_ae_events_stores_badges_svelte_badges_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L163", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_defaults", + "target": "stores_ae_events_stores_badges_defaults_badges_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L215", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_defaults", + "target": "stores_ae_events_stores_badges_defaults_badges_sess_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L98", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_defaults", + "target": "stores_ae_events_stores_badges_defaults_badgeslocstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L15", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_defaults", + "target": "stores_ae_events_stores_badges_defaults_badgesremotecfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L147", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_defaults", + "target": "stores_ae_events_stores_badges_defaults_badgessessstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L51", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_defaults", + "target": "stores_ae_events_stores_badges_defaults_default_authenticated_can_edit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__badges_defaults.ts", + "source_location": "L62", + "weight": 1.0, + "source": "stores_ae_events_stores_badges_defaults", + "target": "stores_ae_events_stores_badges_defaults_default_trusted_can_edit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L64", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher.svelte.ts", + "source_location": "L2", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_svelte", + "target": "stores_ae_events_stores_launcher_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher.svelte.ts", + "source_location": "L2", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_svelte", + "target": "stores_ae_events_stores_launcher_defaults_launcher_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher.svelte.ts", + "source_location": "L4", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_svelte", + "target": "stores_ae_events_stores_launcher_svelte_launcher_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L64", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_events_stores_launcher_svelte_launcher_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L144", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_defaults", + "target": "stores_ae_events_stores_launcher_defaults_launcher_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L244", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_defaults", + "target": "stores_ae_events_stores_launcher_defaults_launcher_sess_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L15", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_defaults", + "target": "stores_ae_events_stores_launcher_defaults_launcherlocstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L110", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_defaults", + "target": "stores_ae_events_stores_launcher_defaults_launchersessstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__launcher_defaults.ts", + "source_location": "L13", + "weight": 1.0, + "source": "stores_ae_events_stores_launcher_defaults", + "target": "stores_ae_events_stores_launcher_defaults_sectionstate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads.svelte.ts", + "source_location": "L19", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_svelte", + "target": "stores_ae_events_stores_leads_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads.svelte.ts", + "source_location": "L19", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_svelte", + "target": "stores_ae_events_stores_leads_defaults_leads_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads.svelte.ts", + "source_location": "L22", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_svelte", + "target": "stores_ae_events_stores_leads_svelte_leads_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads.svelte.ts", + "source_location": "L20", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_svelte", + "target": "stores_store_versions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L82", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_defaults", + "target": "stores_ae_events_stores_leads_defaults_leads_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L136", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_defaults", + "target": "stores_ae_events_stores_leads_defaults_leads_sess_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L9", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_defaults", + "target": "stores_ae_events_stores_leads_defaults_leadslocstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L62", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_defaults", + "target": "stores_ae_events_stores_leads_defaults_leadssessstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__leads_defaults.ts", + "source_location": "L53", + "weight": 1.0, + "source": "stores_ae_events_stores_leads_defaults", + "target": "stores_ae_events_stores_leads_defaults_tmplicense", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L40", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L41", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L42", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L31", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_events_stores_pres_mgmt_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt.svelte.ts", + "source_location": "L16", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_svelte", + "target": "stores_ae_events_stores_pres_mgmt_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt.svelte.ts", + "source_location": "L16", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_svelte", + "target": "stores_ae_events_stores_pres_mgmt_defaults_pres_mgmt_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt.svelte.ts", + "source_location": "L19", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_svelte", + "target": "stores_ae_events_stores_pres_mgmt_svelte_pres_mgmt_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt.svelte.ts", + "source_location": "L17", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_svelte", + "target": "stores_store_versions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L40", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_events_stores_pres_mgmt_svelte_pres_mgmt_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L41", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_events_stores_pres_mgmt_svelte_pres_mgmt_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L42", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_events_stores_pres_mgmt_svelte_pres_mgmt_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L31", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_events_stores_pres_mgmt_svelte_pres_mgmt_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L267", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_defaults", + "target": "stores_ae_events_stores_pres_mgmt_defaults_pres_mgmt_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L387", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_defaults", + "target": "stores_ae_events_stores_pres_mgmt_defaults_pres_mgmt_sess_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L89", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_defaults", + "target": "stores_ae_events_stores_pres_mgmt_defaults_presmgmtlocstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L218", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_defaults", + "target": "stores_ae_events_stores_pres_mgmt_defaults_presmgmtsessstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_events_stores__pres_mgmt_defaults.ts", + "source_location": "L25", + "weight": 1.0, + "source": "stores_ae_events_stores_pres_mgmt_defaults", + "target": "stores_ae_events_stores_pres_mgmt_defaults_pressmgmtremotecfg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L99", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L11", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_local_data_struct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L191", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_prom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L185", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_prom_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L147", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_sess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L106", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_session_data_struct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L172", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_slct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L150", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_slct_obj_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L182", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_trig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L175", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_idaa_stores_idaa_trig_template", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L6", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L6", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores.ts", + "source_location": "L1", + "weight": 1.0, + "source": "stores_ae_idaa_stores", + "target": "stores_store_versions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_idaa_stores_idaa_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_idaa_stores_idaa_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_idaa_stores_idaa_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_idaa_stores_idaa_trig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L149", + "weight": 1.0, + "source": "stores_ae_idaa_stores_idaa_loc_svelte", + "target": "stores_ae_idaa_stores_idaa_loc_svelte_idaa_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L76", + "weight": 1.0, + "source": "stores_ae_idaa_stores_idaa_loc_svelte", + "target": "stores_ae_idaa_stores_idaa_loc_svelte_idaa_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L5", + "weight": 1.0, + "source": "stores_ae_idaa_stores_idaa_loc_svelte", + "target": "stores_ae_idaa_stores_idaa_loc_svelte_idaaarchivesloc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L15", + "weight": 1.0, + "source": "stores_ae_idaa_stores_idaa_loc_svelte", + "target": "stores_ae_idaa_stores_idaa_loc_svelte_idaabbloc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L53", + "weight": 1.0, + "source": "stores_ae_idaa_stores_idaa_loc_svelte", + "target": "stores_ae_idaa_stores_idaa_loc_svelte_idaalocstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_idaa_stores__idaa_loc.svelte.ts", + "source_location": "L32", + "weight": 1.0, + "source": "stores_ae_idaa_stores_idaa_loc_svelte", + "target": "stores_ae_idaa_stores_idaa_loc_svelte_idaarecoverymeetingsloc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L19", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L46", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L58", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_core_accounts_page_ts_accounts_page", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_core_users_user_id_page_ts_user_id_page", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_layout_ts_routes_layout", + "target": "stores_ae_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L12", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "public", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L248", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L225", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_api_data_struct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L237", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_api_headers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L57", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L164", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_app_session_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L296", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_auth_error", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L158", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L223", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_sess", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L252", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_trig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L251", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_ae_trig_template", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L5", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_auth_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L5", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_auth_loc_defaults_auth_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L43", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L288", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L259", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_slct_obj_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L292", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_slct_trigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L302", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_ae_stores_time", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores.ts", + "source_location": "L3", + "weight": 1.0, + "source": "stores_ae_stores", + "target": "stores_store_versions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L23", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L17", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L44", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L55", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L21", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L21", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_layout_ts_routes_layout", + "target": "stores_ae_stores_key_val", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L19", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L46", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L58", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_stores_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_stores_ae_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores_ae_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L46", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "stores_ae_stores_ae_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L58", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_stores_ae_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores_ae_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_stores_ae_sess", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L19", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L46", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L58", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_core_accounts_page_ts_accounts_page", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_core_users_user_id_page_ts_user_id_page", + "target": "stores_ae_stores_ae_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_stores_ae_trig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores_ae_trig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L46", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "stores_ae_stores_ae_trig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores_ae_trig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_stores_ae_trig", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L46", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L58", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_stores_slct", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_stores_slct_trigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores_slct_trigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores_slct_trigger", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_stores_slct_trigger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L53", + "weight": 1.0, + "source": "stores_ae_stores_auth_loc_defaults", + "target": "stores_ae_stores_auth_loc_defaults_accesstype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L24", + "weight": 1.0, + "source": "stores_ae_stores_auth_loc_defaults", + "target": "stores_ae_stores_auth_loc_defaults_aeperson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L36", + "weight": 1.0, + "source": "stores_ae_stores_auth_loc_defaults", + "target": "stores_ae_stores_auth_loc_defaults_aeuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L91", + "weight": 1.0, + "source": "stores_ae_stores_auth_loc_defaults", + "target": "stores_ae_stores_auth_loc_defaults_auth_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L60", + "weight": 1.0, + "source": "stores_ae_stores_auth_loc_defaults", + "target": "stores_ae_stores_auth_loc_defaults_authlocstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/ae_stores__auth_loc_defaults.ts", + "source_location": "L16", + "weight": 1.0, + "source": "stores_ae_stores_auth_loc_defaults", + "target": "stores_ae_stores_auth_loc_defaults_sitecfgjson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/store_versions.ts", + "source_location": "L181", + "weight": 1.0, + "source": "stores_store_versions", + "target": "stores_store_versions_check_and_clear_idb_table", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/store_versions.ts", + "source_location": "L135", + "weight": 1.0, + "source": "stores_store_versions", + "target": "stores_store_versions_check_and_wipe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/stores/store_versions.ts", + "source_location": "L83", + "weight": 1.0, + "source": "stores_store_versions", + "target": "stores_store_versions_idb_content_versions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L55", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "types_ae_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L43", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_account", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L53", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_accountcfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L407", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_activitylog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L352", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_address", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L833", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_archive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L856", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_archivecontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L9", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L381", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_contact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L747", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_datastore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L436", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L919", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventabstract", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L496", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventbadge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L545", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventbadgetemplate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L482", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventcfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L901", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventdevice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L963", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventexhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L981", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventexhibittracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L876", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L570", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventlocation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1001", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventperson", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1019", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventpersonprofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1037", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventpersontracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L642", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventpresentation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L671", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventpresenter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L948", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventregistration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L590", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventsession", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L698", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_eventtrack", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L714", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_hostedfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L733", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_hostedfilelink", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L126", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_journal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L164", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_journalentry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L233", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_journalentrydraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1080", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_logclientviewing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L934", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_organization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L815", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_page", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L260", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_person", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L779", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_post", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L801", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_postcomment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L71", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L95", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_sitedomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1052", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_sponsorship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1066", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_sponsorshipcfg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L307", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L334", + "weight": 1.0, + "source": "types_ae_types", + "target": "types_ae_types_ae_userrole", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L43", + "weight": 1.0, + "source": "types_ae_types_ae_account", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L407", + "weight": 1.0, + "source": "types_ae_types_ae_activitylog", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L352", + "weight": 1.0, + "source": "types_ae_types_ae_address", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L833", + "weight": 1.0, + "source": "types_ae_types_ae_archive", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L856", + "weight": 1.0, + "source": "types_ae_types_ae_archivecontent", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L381", + "weight": 1.0, + "source": "types_ae_types_ae_contact", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L747", + "weight": 1.0, + "source": "types_ae_types_ae_datastore", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L436", + "weight": 1.0, + "source": "types_ae_types_ae_event", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L919", + "weight": 1.0, + "source": "types_ae_types_ae_eventabstract", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L496", + "weight": 1.0, + "source": "types_ae_types_ae_eventbadge", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L545", + "weight": 1.0, + "source": "types_ae_types_ae_eventbadgetemplate", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L482", + "weight": 1.0, + "source": "types_ae_types_ae_eventcfg", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L901", + "weight": 1.0, + "source": "types_ae_types_ae_eventdevice", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L963", + "weight": 1.0, + "source": "types_ae_types_ae_eventexhibit", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L981", + "weight": 1.0, + "source": "types_ae_types_ae_eventexhibittracking", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L876", + "weight": 1.0, + "source": "types_ae_types_ae_eventfile", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L570", + "weight": 1.0, + "source": "types_ae_types_ae_eventlocation", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1001", + "weight": 1.0, + "source": "types_ae_types_ae_eventperson", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1019", + "weight": 1.0, + "source": "types_ae_types_ae_eventpersonprofile", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1037", + "weight": 1.0, + "source": "types_ae_types_ae_eventpersontracking", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L642", + "weight": 1.0, + "source": "types_ae_types_ae_eventpresentation", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L671", + "weight": 1.0, + "source": "types_ae_types_ae_eventpresenter", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L948", + "weight": 1.0, + "source": "types_ae_types_ae_eventregistration", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L590", + "weight": 1.0, + "source": "types_ae_types_ae_eventsession", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L698", + "weight": 1.0, + "source": "types_ae_types_ae_eventtrack", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L714", + "weight": 1.0, + "source": "types_ae_types_ae_hostedfile", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L126", + "weight": 1.0, + "source": "types_ae_types_ae_journal", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L164", + "weight": 1.0, + "source": "types_ae_types_ae_journalentry", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1080", + "weight": 1.0, + "source": "types_ae_types_ae_logclientviewing", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L934", + "weight": 1.0, + "source": "types_ae_types_ae_organization", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L815", + "weight": 1.0, + "source": "types_ae_types_ae_page", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L260", + "weight": 1.0, + "source": "types_ae_types_ae_person", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L779", + "weight": 1.0, + "source": "types_ae_types_ae_post", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L801", + "weight": 1.0, + "source": "types_ae_types_ae_postcomment", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L71", + "weight": 1.0, + "source": "types_ae_types_ae_site", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L95", + "weight": 1.0, + "source": "types_ae_types_ae_sitedomain", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1052", + "weight": 1.0, + "source": "types_ae_types_ae_sponsorship", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L1066", + "weight": 1.0, + "source": "types_ae_types_ae_sponsorshipcfg", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/ae_types.ts", + "source_location": "L307", + "weight": 1.0, + "source": "types_ae_types_ae_user", + "target": "types_ae_types_ae_baseobj", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L34", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "types_ae_types_ae_journalentrydraft", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L55", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "types_ae_types_ae_journalentrydraft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L26", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_briefcase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L13", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_button", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L27", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_calendardays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L28", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_chevronleft", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L14", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_collapse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L11", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_drawer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L12", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_dropdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L29", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_eye", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L30", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_filetext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L21", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L31", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_listtodo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L32", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_loadercircle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L33", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_mail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L34", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_mappin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L10", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_modal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L35", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_rotateccw", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L36", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_shieldcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L37", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_squarepen", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L24", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_star", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L41", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_starhalf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L38", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_store", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L39", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_trash2", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L25", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L40", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d", + "target": "types_temporary_svelte_augments_d_userplus", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L26", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_briefcase", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L27", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_calendardays", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L28", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_chevronleft", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L29", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_eye", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L30", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_filetext", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L31", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_listtodo", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L32", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_loadercircle", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L33", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_mail", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L34", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_mappin", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L35", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_rotateccw", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L36", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_shieldcheck", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L37", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_squarepen", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L24", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_star", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L41", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_starhalf", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L38", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_store", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L39", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_trash2", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L25", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_user", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "src/lib/types/temporary-svelte-augments.d.ts", + "source_location": "L40", + "weight": 1.0, + "source": "types_temporary_svelte_augments_d_userplus", + "target": "types_temporary_svelte_augments_d_iconbase", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/lucide-augment.d.ts", + "source_location": "L22", + "weight": 1.0, + "source": "src_lucide_augment_d", + "target": "src_lucide_augment_d_iconprops", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+error.svelte", + "source": "routes_error", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source": "exhibit_id_ae_comp_exhibit_signin", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_obj_li.svelte", + "source": "exhibit_id_ae_comp_exhibit_tracking_obj_li", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source": "exhibit_id_ae_comp_lead_manual_search", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_start.svelte", + "source": "exhibit_id_ae_comp_tab_start", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source": "launcher_menu_session_list", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/modules/+page.svelte", + "source": "modules_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/config/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_config_page_svelte_config_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.svelte", + "source": "src_routes_idaa_idaa_bb_layout_svelte_bb_layout", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_layout_svelte_recovery_meetings_layout", + "target": "state", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "css", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "github_dark_css", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_app_css", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "javascript", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "typescript", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "window", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.svelte", + "source": "src_routes_layout_svelte_routes_layout", + "target": "xml", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/+page.svelte", + "source": "routes_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "window", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L12", + "weight": 1.0, + "source": "src_routes_layout_ts_routes_layout", + "target": "public", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L46", + "weight": 1.0, + "source": "src_routes_layout_ts_routes_layout", + "target": "routes_layout_ae_api_headers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L35", + "weight": 1.0, + "source": "src_routes_layout_ts_routes_layout", + "target": "routes_layout_ae_api_init", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/+layout.ts", + "source_location": "L54", + "weight": 1.0, + "source": "src_routes_layout_ts_routes_layout", + "target": "routes_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/+page.svelte", + "source": "routes_page", + "target": "public", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/manifest.webmanifest/+server.ts", + "source_location": "L3", + "weight": 1.0, + "source": "manifest_webmanifest_server", + "target": "public", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "public", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_core_page_ts_core_page", + "target": "core_page_load", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.svelte", + "source_location": "L52", + "weight": 1.0, + "source": "src_routes_core_accounts_page_svelte_accounts_page", + "target": "accounts_page_handle_add_account", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.svelte", + "source_location": "L37", + "weight": 1.0, + "source": "src_routes_core_accounts_page_svelte_accounts_page", + "target": "accounts_page_load_accounts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.svelte", + "source": "src_routes_core_accounts_page_svelte_accounts_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_account", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.svelte", + "source_location": "L69", + "weight": 1.0, + "source": "accounts_page_handle_add_account", + "target": "accounts_page_load_accounts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/[account_id]/+page.svelte", + "source": "account_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_account", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source": "src_routes_core_files_page_svelte_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_account", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_account", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_core_accounts_page_ts_accounts_page", + "target": "accounts_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/accounts/[account_id]/+page.svelte", + "source": "account_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_account_editable_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/activity_logs/+page.svelte", + "source": "src_routes_core_activity_logs_page_svelte_activity_logs_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/activity_logs/+page.svelte", + "source": "src_routes_core_activity_logs_page_svelte_activity_logs_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_core_activity_logs_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source": "src_routes_idaa_idaa_video_conferences_page_svelte_video_conferences_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_activity_log", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/activity_logs/+page.ts", + "source_location": "L2", + "weight": 1.0, + "source": "src_routes_core_activity_logs_page_ts_activity_logs_page", + "target": "activity_logs_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/+page.svelte", + "source": "addresses_page", + "target": "addresses_ae_comp_address_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/+page.svelte", + "source_location": "L42", + "weight": 1.0, + "source": "addresses_page", + "target": "addresses_page_load_addresses", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/+page.svelte", + "source": "addresses_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_address", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/[address_id]/+page.svelte", + "source": "address_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_address", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/ae_comp__address_form.svelte", + "source": "addresses_ae_comp_address_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_address", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/[address_id]/+page.svelte", + "source": "address_id_page", + "target": "addresses_ae_comp_address_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/ae_comp__address_form.svelte", + "source_location": "L73", + "weight": 1.0, + "source": "addresses_ae_comp_address_form", + "target": "addresses_ae_comp_address_form_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/addresses/[address_id]/+page.svelte", + "source": "address_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_address_editable_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/+page.svelte", + "source": "src_routes_core_people_page_svelte_people_page", + "target": "core_ae_comp_person_obj_tbl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/+page.svelte", + "source": "contacts_page", + "target": "contacts_ae_comp_contact_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/+page.svelte", + "source_location": "L40", + "weight": 1.0, + "source": "contacts_page", + "target": "contacts_page_load_contacts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/+page.svelte", + "source_location": "L37", + "weight": 1.0, + "source": "contacts_page", + "target": "contacts_page_loading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/+page.svelte", + "source_location": "L38", + "weight": 1.0, + "source": "contacts_page", + "target": "contacts_page_show_add_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/+page.svelte", + "source": "contacts_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_contact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/[contact_id]/+page.svelte", + "source": "contact_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_contact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/ae_comp__contact_form.svelte", + "source": "contacts_ae_comp_contact_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_contact", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/[contact_id]/+page.svelte", + "source": "contact_id_page", + "target": "contacts_ae_comp_contact_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/ae_comp__contact_form.svelte", + "source_location": "L77", + "weight": 1.0, + "source": "contacts_ae_comp_contact_form", + "target": "contacts_ae_comp_contact_form_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/contacts/[contact_id]/+page.svelte", + "source": "contact_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_contact_editable_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L120", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "data_stores_page_clear_filters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L184", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "data_stores_page_do_rename_apply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L152", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "data_stores_page_do_rename_preview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L83", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "data_stores_page_do_search", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L141", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "data_stores_page_open_edit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L146", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "data_stores_page_open_new", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L130", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "data_stores_page_toggle_sort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L215", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "data_stores_page_type_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source": "src_routes_core_data_stores_page_svelte_data_stores_page", + "target": "reactivity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L208", + "weight": 1.0, + "source": "data_stores_page_do_rename_apply", + "target": "data_stores_page_do_search", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.svelte", + "source_location": "L137", + "weight": 1.0, + "source": "data_stores_page_toggle_sort", + "target": "data_stores_page_do_search", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "reactivity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "reactivity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source": "src_routes_core_files_page_svelte_files_page", + "target": "reactivity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/data_stores/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_core_data_stores_page_ts_data_stores_page", + "target": "data_stores_page_load", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source_location": "L184", + "weight": 1.0, + "source": "src_routes_core_files_page_svelte_files_page", + "target": "files_page_for", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.svelte", + "source_location": "L383", + "weight": 1.0, + "source": "src_routes_core_files_page_svelte_files_page", + "target": "files_page_if", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/files/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_core_files_page_ts_files_page", + "target": "files_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/+page.svelte", + "source": "src_routes_core_people_page_svelte_people_page", + "target": "people_ae_comp_person_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/+page.svelte", + "source": "src_routes_core_people_page_svelte_people_page", + "target": "people_ae_comp_person_search", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/ae_comp__person_search.svelte", + "source": "people_ae_comp_person_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_person", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "people_ae_comp_person_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_core_people_page_ts_people_page", + "target": "people_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "core_person_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_person", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_user", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_event", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_ae_posts_post", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.svelte", + "source": "src_routes_core_people_person_id_page_svelte_person_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_core_people_person_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.svelte", + "source": "src_routes_core_users_user_id_page_svelte_user_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_user", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_user", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/+page.svelte", + "source": "users_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_user", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_core_people_person_id_page_ts_person_id_page", + "target": "ae_core_ae_core_functions_core_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/people/[person_id]/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_core_people_person_id_page_ts_person_id_page", + "target": "person_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/+page.svelte", + "source": "src_routes_core_sites_page_svelte_sites_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/+page.svelte", + "source_location": "L53", + "weight": 1.0, + "source": "src_routes_core_sites_page_svelte_sites_page", + "target": "sites_page_handle_add_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/+page.svelte", + "source_location": "L36", + "weight": 1.0, + "source": "src_routes_core_sites_page_svelte_sites_page", + "target": "sites_page_load_sites", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/+page.svelte", + "source_location": "L71", + "weight": 1.0, + "source": "sites_page_handle_add_site", + "target": "sites_page_load_sites", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/[site_id]/+page.svelte", + "source": "site_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_site", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_core_sites_page_ts_sites_page", + "target": "sites_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/[site_id]/+page.svelte", + "source": "site_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_site_domain_editable_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/sites/[site_id]/+page.svelte", + "source": "site_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_site_editable_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.svelte", + "source": "src_routes_core_users_user_id_page_svelte_user_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_ae_core_user_editable_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/core/users/[user_id]/+page.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_core_users_user_id_page_ts_user_id_page", + "target": "user_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+layout.svelte", + "source_location": "L142", + "weight": 1.0, + "source": "src_routes_events_layout_svelte_events_layout", + "target": "events_layout_gray", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+layout.svelte", + "source_location": "L141", + "weight": 1.0, + "source": "src_routes_events_layout_svelte_events_layout", + "target": "events_layout_iframe", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+layout.svelte", + "source": "src_routes_events_layout_svelte_events_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+layout.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_layout_ts_events_layout", + "target": "events_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_page_ts_events_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_page_ts_events_page", + "target": "events_page_load", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+layout.svelte", + "source": "badges_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_types", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "badges_ae_comp_badge_create_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "badges_ae_comp_badge_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "badges_ae_comp_badge_search", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "badges_ae_comp_badge_upload_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source_location": "L266", + "weight": 1.0, + "source": "badges_page", + "target": "badges_page_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/+page.svelte", + "source": "badges_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_print_controls.svelte", + "source": "badge_id_ae_comp_badge_print_controls", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte", + "source": "badges_ae_comp_badge_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source": "badges_ae_comp_badge_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/config/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_badges_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte", + "source_location": "L104", + "weight": 1.0, + "source": "badges_ae_comp_badge_search", + "target": "badges_ae_comp_badge_search_function", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source_location": "L259", + "weight": 1.0, + "source": "badges_ae_comp_badge_upload_form", + "target": "badges_ae_comp_badge_upload_form_handle_cancel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source_location": "L49", + "weight": 1.0, + "source": "badges_ae_comp_badge_upload_form", + "target": "badges_ae_comp_badge_upload_form_handle_file_change", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source_location": "L60", + "weight": 1.0, + "source": "badges_ae_comp_badge_upload_form", + "target": "badges_ae_comp_badge_upload_form_handle_upload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "badges_ae_comp_badge_upload_form", + "target": "badges_ae_comp_badge_upload_form_parse_csv", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "badge_id_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "badge_id_page", + "target": "badge_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source": "badge_id_ae_comp_badge_obj_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_badge_template_cfg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source": "badge_id_ae_comp_badge_obj_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_styles_badge_layout_epson_4x5_fanfold_css", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source": "badge_id_ae_comp_badge_obj_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_styles_badge_layout_epson_4x6_fanfold_css", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte", + "source": "badge_id_ae_comp_badge_obj_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_elements_styles_badge_layout_zebra_zc10l_pvc_css", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/print_list/+page.svelte", + "source": "print_list_page", + "target": "badge_id_ae_comp_badge_obj_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "badge_id_ae_comp_badge_obj_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte", + "source": "templates_ae_comp_badge_template_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_events_badge_template_cfg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "badge_id_ae_comp_badge_print_controls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source_location": "L1438", + "weight": 1.0, + "source": "badge_id_ae_comp_badge_review_form", + "target": "badge_id_ae_comp_badge_review_form_get_option_code", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte", + "source_location": "L968", + "weight": 1.0, + "source": "badge_id_ae_comp_badge_review_form", + "target": "badge_id_ae_comp_badge_review_form_xl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "badge_id_ae_comp_badge_review_form", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_svelte_print_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_badge_id_print_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_ts_print_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_print_page_ts_print_page", + "target": "print_page_load", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_badge_id_review_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source_location": "L143", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "review_page_build_review_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source_location": "L148", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_svelte_review_page", + "target": "review_page_copy_review_link", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte", + "source_location": "L149", + "weight": 1.0, + "source": "review_page_copy_review_link", + "target": "review_page_build_review_url", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_ts_review_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_badge_id_review_page_ts_review_page", + "target": "review_page_load", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_badges_badges_reports_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "reports_reports_badge_export", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "reports_reports_badge_long_names", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.svelte", + "source": "src_routes_events_event_id_badges_badges_reports_page_svelte_reports_page", + "target": "reports_reports_badge_print_throughput", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.ts", + "source_location": "L2", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_reports_page_ts_reports_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/badges/reports/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_event_id_badges_badges_reports_page_ts_reports_page", + "target": "reports_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/+page.svelte", + "source": "templates_page", + "target": "templates_ae_comp_badge_template_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(badges)/templates/+page.svelte", + "source_location": "L68", + "weight": 1.0, + "source": "templates_page", + "target": "templates_page_catch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/+layout.svelte", + "source": "src_routes_events_event_id_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/+layout.svelte", + "source": "src_routes_events_event_id_launcher_layout_svelte_launcher_layout", + "target": "launcher_launcher_background_sync", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_app_modes.svelte", + "source": "cfg_components_launcher_cfg_app_modes", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_controller.svelte", + "source": "cfg_components_launcher_cfg_controller", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte", + "source": "cfg_components_launcher_cfg_health", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte", + "source": "cfg_components_launcher_cfg_launch_timing", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_local_actions.svelte", + "source": "cfg_components_launcher_cfg_local_actions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_native_os.svelte", + "source": "cfg_components_launcher_cfg_native_os", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_screen_saver.svelte", + "source": "cfg_components_launcher_cfg_screen_saver", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_sync_timers.svelte", + "source": "cfg_components_launcher_cfg_sync_timers", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_template.svelte", + "source": "cfg_components_launcher_cfg_template", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_updates.svelte", + "source": "cfg_components_launcher_cfg_updates", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_wallpaper.svelte", + "source": "cfg_components_launcher_cfg_wallpaper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source": "launcher_launcher_background_sync", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source": "launcher_launcher_presentation_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "source": "launcher_launcher_session_view_posters", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_launcher_controls.svelte", + "source": "launcher_menu_launcher_controls", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source": "launcher_menu_location_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source": "launcher_menu_session_list", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_launcher_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source": "launcher_launcher_background_sync", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_electron_electron_relay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L653", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_force_location_sync", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L94", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_is_url_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L87", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_log_lvl_1", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L109", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_loop_info", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L633", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_refresh_current_session_files", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L287", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_refresh_event_data", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L604", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_refresh_location_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L330", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_refresh_presentation_data", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L352", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_refresh_presenter_data", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L306", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_refresh_session_data", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L520", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_run_device_heartbeat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L372", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_run_sync_cycle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L130", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_show_monitor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L91", + "weight": 1.0, + "source": "launcher_launcher_background_sync", + "target": "launcher_launcher_background_sync_sync_stats", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_app_modes.svelte", + "source": "cfg_components_launcher_cfg_app_modes", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_app_modes", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_controller.svelte", + "source": "cfg_components_launcher_cfg_controller", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte", + "source": "cfg_components_launcher_cfg_health", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte", + "source": "cfg_components_launcher_cfg_launch_timing", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_local_actions.svelte", + "source": "cfg_components_launcher_cfg_local_actions", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_native_os.svelte", + "source": "cfg_components_launcher_cfg_native_os", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_screen_saver.svelte", + "source": "cfg_components_launcher_cfg_screen_saver", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_sync_timers.svelte", + "source": "cfg_components_launcher_cfg_sync_timers", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_template.svelte", + "source": "cfg_components_launcher_cfg_template", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_updates.svelte", + "source": "cfg_components_launcher_cfg_updates", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_wallpaper.svelte", + "source": "cfg_components_launcher_cfg_wallpaper", + "target": "cfg_components_launcher_cfg_section", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_controller", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_health", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte", + "source_location": "L157", + "weight": 1.0, + "source": "cfg_components_launcher_cfg_launch_timing", + "target": "cfg_components_launcher_cfg_launch_timing_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte", + "source": "cfg_components_launcher_cfg_launch_timing", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_launcher_default_launch_profiles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_launch_timing", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_events_ae_launcher_default_launch_profiles", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_local_actions.svelte", + "source_location": "L38", + "weight": 1.0, + "source": "cfg_components_launcher_cfg_local_actions", + "target": "cfg_components_launcher_cfg_local_actions_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_local_actions.svelte", + "source": "cfg_components_launcher_cfg_local_actions", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_electron_electron_relay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_local_actions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_native_os.svelte", + "source": "cfg_components_launcher_cfg_native_os", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_electron_electron_relay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_updates.svelte", + "source": "cfg_components_launcher_cfg_updates", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_electron_electron_relay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_wallpaper.svelte", + "source": "cfg_components_launcher_cfg_wallpaper", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_electron_electron_relay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source": "launcher_launcher_file_cont", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_electron_electron_relay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_launcher_controls.svelte", + "source": "launcher_menu_launcher_controls", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_electron_electron_relay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_native_os", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_screen_saver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_sync_timers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_updates", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source": "launcher_launcher_cfg", + "target": "cfg_components_launcher_cfg_wallpaper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "easing", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_launcher_launcher_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "launcher_launcher_cfg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "launcher_launcher_menu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "launcher_launcher_session_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte", + "source": "src_routes_events_event_id_launcher_launcher_layout_svelte_launcher_layout", + "target": "svelte_idle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_cfg.svelte", + "source_location": "L167", + "weight": 1.0, + "source": "launcher_launcher_cfg", + "target": "launcher_launcher_cfg_opacity", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "launcher_launcher_file_cont", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "launcher_menu_launcher_controls", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "launcher_menu_location_list", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_menu.svelte", + "source": "launcher_launcher_menu", + "target": "launcher_menu_session_list", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_db_core", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "launcher_launcher_file_cont", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "launcher_launcher_presentation_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "launcher_launcher_presenter_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "launcher_launcher_presenter_view_posters", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view.svelte", + "source": "launcher_launcher_session_view", + "target": "launcher_launcher_session_view_posters", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_launcher_launcher_layout_ts_launcher_layout", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/+layout.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_launcher_launcher_layout_ts_launcher_layout", + "target": "launcher_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_launcher_launcher_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_launcher_launcher_event_location_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_launcher_launcher_event_location_id_page_ts_event_location_id_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_launcher_launcher_event_location_id_page_ts_event_location_id_page", + "target": "src_routes_events_event_id_launcher_launcher_event_location_id_page_ts_event_location_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_background_sync.svelte", + "source_location": "L681", + "weight": 1.0, + "source": "launcher_launcher_background_sync_force_location_sync", + "target": "launcher_launcher_background_sync_run_sync_cycle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L57", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L59", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_core_ae_core_functions_core_func", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L65", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L135", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "launcher_launcher_file_cont_get_launch_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L191", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "launcher_launcher_file_cont_handle_open_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L535", + "weight": 1.0, + "source": "launcher_launcher_file_cont", + "target": "launcher_launcher_file_cont_prevent_default", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source": "launcher_launcher_presentation_view", + "target": "launcher_launcher_file_cont", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte", + "source": "launcher_launcher_presenter_view", + "target": "launcher_launcher_file_cont", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte", + "source": "launcher_launcher_presenter_view_posters", + "target": "launcher_launcher_file_cont", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "source": "launcher_launcher_session_view_posters", + "target": "launcher_launcher_file_cont", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_file_cont.svelte", + "source_location": "L207", + "weight": 1.0, + "source": "launcher_launcher_file_cont_handle_open_file", + "target": "launcher_launcher_file_cont_get_launch_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_location_list.svelte", + "source_location": "L178", + "weight": 1.0, + "source": "launcher_menu_location_list", + "target": "launcher_menu_location_list_async", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/menu_session_list.svelte", + "source_location": "L174", + "weight": 1.0, + "source": "launcher_menu_session_list", + "target": "launcher_menu_session_list_center", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte", + "source_location": "L64", + "weight": 1.0, + "source": "launcher_launcher_presentation_view", + "target": "launcher_launcher_presentation_view_hidden", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "source": "launcher_launcher_session_view_posters", + "target": "launcher_launcher_presentation_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte", + "source": "launcher_launcher_session_view_posters", + "target": "launcher_launcher_presenter_view_posters", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_layout_ts_leads_layout", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+layout.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_layout_ts_leads_layout", + "target": "leads_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_page_svelte_leads_page", + "target": "leads_ae_comp_exhibit_search", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source": "exhibit_id_ae_comp_exhibit_signin", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_search.svelte", + "source": "exhibit_id_ae_comp_exhibit_tracking_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte", + "source": "exhibit_id_ae_comp_lead_manual_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte", + "source": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "source": "exhibit_id_ae_comp_tab_add", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/ae_comp__lead_detail_form.svelte", + "source": "exhibit_tracking_id_ae_comp_lead_detail_form", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/ae_comp__exhibit_search.svelte", + "source": "leads_ae_comp_exhibit_search", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_leads_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/ae_comp__exhibit_search.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "leads_ae_comp_exhibit_search", + "target": "leads_ae_comp_exhibit_search_function", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_page_ts_leads_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_page_ts_leads_page", + "target": "leads_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_ts_exhibit_id_layout", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts", + "source_location": "L9", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_layout_ts_exhibit_id_layout", + "target": "exhibit_id_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "exhibit_id_ae_comp_exhibit_payment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "exhibit_id_ae_comp_exhibit_tracking_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "exhibit_id_ae_comp_exhibit_tracking_search", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "exhibit_id_ae_comp_tab_add", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "exhibit_id_ae_comp_tab_manage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source": "exhibit_id_page", + "target": "exhibit_id_ae_comp_tab_start", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte", + "source_location": "L415", + "weight": 1.0, + "source": "exhibit_id_page", + "target": "exhibit_id_page_set_active_tab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_obj_li.svelte", + "source_location": "L66", + "weight": 1.0, + "source": "exhibit_id_ae_comp_exhibit_tracking_obj_li", + "target": "exhibit_id_ae_comp_exhibit_tracking_obj_li_months", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_obj_li.svelte", + "source_location": "L70", + "weight": 1.0, + "source": "exhibit_id_ae_comp_exhibit_tracking_obj_li", + "target": "exhibit_id_ae_comp_exhibit_tracking_obj_li_years", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "source": "exhibit_id_ae_comp_tab_add", + "target": "exhibit_id_ae_comp_lead_manual_search", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "source": "exhibit_id_ae_comp_tab_add", + "target": "exhibit_id_ae_comp_lead_qr_scanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "source": "exhibit_id_ae_comp_tab_add", + "target": "exhibit_id_ae_comp_lead_qr_scanner_multi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "source_location": "L146", + "weight": 1.0, + "source": "exhibit_id_ae_comp_tab_add", + "target": "exhibit_id_ae_comp_tab_add_ring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte", + "source_location": "L145", + "weight": 1.0, + "source": "exhibit_id_ae_comp_tab_add", + "target": "exhibit_id_ae_comp_tab_add_shadow", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_start.svelte", + "source": "exhibit_id_ae_comp_tab_start", + "target": "exhibit_id_ae_comp_exhibit_signin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "exhibit_id_ae_comp_exhibit_custom_questions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "exhibit_id_ae_comp_exhibit_license_list", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte", + "source": "exhibit_id_ae_comp_tab_manage", + "target": "exhibit_id_ae_comp_exhibit_payment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte", + "source_location": "L60", + "weight": 1.0, + "source": "exhibit_id_ae_comp_exhibit_signin", + "target": "exhibit_id_ae_comp_exhibit_signin_if", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte", + "source_location": "L244", + "weight": 1.0, + "source": "exhibit_id_ae_comp_lead_qr_scanner", + "target": "exhibit_id_ae_comp_lead_qr_scanner_reset_scanner", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte", + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_svelte_exhibit_tracking_id_page", + "target": "exhibit_tracking_id_ae_comp_lead_detail_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/ae_comp__lead_detail_form.svelte", + "source_location": "L128", + "weight": 1.0, + "source": "exhibit_tracking_id_ae_comp_lead_detail_form", + "target": "exhibit_tracking_id_ae_comp_lead_detail_form_q_key", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_ts_exhibit_tracking_id_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.ts", + "source_location": "L9", + "weight": 1.0, + "source": "src_routes_events_event_id_leads_leads_exhibit_exhibit_id_lead_exhibit_tracking_id_page_ts_exhibit_tracking_id_page", + "target": "exhibit_tracking_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/+layout.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_layout_ts_pres_mgmt_layout", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_layout_ts_pres_mgmt_layout", + "target": "pres_mgmt_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "events_ae_comp_events_menu_nav", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "events_ae_comp_events_menu_opts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte", + "source_location": "L90", + "weight": 1.0, + "source": "pres_mgmt_ae_comp_event_page_menu", + "target": "pres_mgmt_ae_comp_event_page_menu_hidden", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "pres_mgmt_ae_comp_event_page_menu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source": "event_location_id_ae_comp_location_page_menu", + "target": "events_ae_comp_events_menu_nav", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__locations_page_menu.svelte", + "source": "locations_ae_comp_locations_page_menu", + "target": "events_ae_comp_events_menu_nav", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "events_ae_comp_events_menu_nav", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/event_reports_page_menu.svelte", + "source": "reports_event_reports_page_menu", + "target": "events_ae_comp_events_menu_nav", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "events_ae_comp_events_menu_nav", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L41", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "device_ae_comp_event_device_obj_li", + "target": "stores_ae_stores_ae_snip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte", + "source": "device_ae_comp_event_device_obj_li_wrapper", + "target": "device_ae_comp_event_device_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source": "locations_ae_comp_event_location_obj_li", + "target": "device_ae_comp_event_device_obj_li_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "event_location_id_ae_comp_location_page_menu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "event_location_id_ae_comp_location_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "events_ae_comp_event_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "events_ae_comp_event_session_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_svelte_event_location_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_location_event_location_id_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_files_upload.svelte", + "source_location": "L76", + "weight": 1.0, + "source": "events_ae_comp_event_files_upload", + "target": "events_ae_comp_event_files_upload_function", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "events_ae_comp_event_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "events_ae_comp_event_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "events_ae_comp_event_files_upload", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "presenter_ae_comp_event_presenter_obj_li_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li.svelte", + "source": "events_ae_comp_event_session_obj_li", + "target": "session_ae_comp_event_session_alert", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_li_wrapper.svelte", + "source": "events_ae_comp_event_session_obj_li_wrapper", + "target": "events_ae_comp_event_session_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source_location": "L225", + "weight": 1.0, + "source": "event_location_id_ae_comp_location_view", + "target": "event_location_id_ae_comp_location_view_hidden", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte", + "source_location": "L73", + "weight": 1.0, + "source": "event_location_id_ae_comp_location_view", + "target": "event_location_id_ae_comp_location_view_if", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source_location": "L183", + "weight": 1.0, + "source": "event_location_id_ae_comp_location_page_menu", + "target": "event_location_id_ae_comp_location_page_menu_ae_btn_surface", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte", + "source_location": "L184", + "weight": 1.0, + "source": "event_location_id_ae_comp_location_page_menu", + "target": "event_location_id_ae_comp_location_page_menu_ae_btn_surface_outlined", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_ts_event_location_id_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_ts_event_location_id_page", + "target": "src_routes_events_event_id_pres_mgmt_location_event_location_id_page_ts_event_location_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "event_id_sign_in_out", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_locations_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "locations_ae_comp_event_location_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_locations_page_svelte_locations_page", + "target": "locations_ae_comp_locations_page_menu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source": "locations_ae_comp_event_location_obj_li", + "target": "events_ae_comp_event_session_obj_li_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source_location": "L140", + "weight": 1.0, + "source": "locations_ae_comp_event_location_obj_li", + "target": "locations_ae_comp_event_location_obj_li_dim", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source_location": "L70", + "weight": 1.0, + "source": "locations_ae_comp_event_location_obj_li", + "target": "locations_ae_comp_event_location_obj_li_gray", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte", + "source_location": "L117", + "weight": 1.0, + "source": "locations_ae_comp_event_location_obj_li", + "target": "locations_ae_comp_event_location_obj_li_hidden", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/sign_in_out.svelte", + "source": "event_id_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/sign_in_out.svelte", + "source": "event_id_sign_in_out", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte", + "source": "session_id_ae_comp_session_page_menu", + "target": "event_id_sign_in_out", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.ts", + "source_location": "L4", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_locations_page_ts_locations_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/locations/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_locations_page_ts_locations_page", + "target": "locations_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "events_ae_comp_event_session_obj_li_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_pres_mgmt_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "pres_mgmt_ae_comp_pres_mgmt_session_search", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte", + "source_location": "L242", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_page_svelte_pres_mgmt_page", + "target": "pres_mgmt_page_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte", + "source": "presenter_id_ae_comp_event_presenter_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte", + "source": "presenter_id_ae_comp_presenter_page_menu", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source": "presenter_id_ae_comp_presenter_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte", + "source": "session_id_ae_comp_event_session_poc_form_agree", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte", + "source": "session_id_ae_comp_event_session_poc_profile", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source": "session_id_ae_comp_session_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_auth_svelte", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/ae_comp__pres_mgmt_session_search.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "pres_mgmt_ae_comp_pres_mgmt_session_search", + "target": "pres_mgmt_ae_comp_pres_mgmt_session_search_function", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_pres_mgmt_config_page_svelte_config_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_events_stores_pres_mgmt_defaults", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_presenter_presenter_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "presenter_id_ae_comp_event_presenter_form_agree", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "presenter_id_ae_comp_presenter_page_menu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_svelte_presenter_id_page", + "target": "presenter_id_ae_comp_presenter_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "presenter_id_ae_comp_event_presenter_form_agree", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L22", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_core_ae_core_functions_core_func", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L44", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L156", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "presenter_id_ae_comp_presenter_view_load_person_options_for_presenter_link", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "presenter_id_ae_comp_presenter_view", + "target": "stores_ae_stores_ae_snip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_ts_presenter_id_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_presenter_presenter_id_page_ts_presenter_id_page", + "target": "presenter_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "ae_core_ae_core_functions_core_func", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L43", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L90", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "presenter_ae_comp_event_presenter_obj_li_hidden", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_li", + "target": "stores_ae_stores_ae_snip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte", + "source": "presenter_ae_comp_event_presenter_obj_li_wrapper", + "target": "presenter_ae_comp_event_presenter_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_presentation_obj_li.svelte", + "source": "events_ae_comp_event_presentation_obj_li", + "target": "presenter_ae_comp_event_presenter_obj_li_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte", + "source": "presenter_ae_comp_event_presenter_obj_tbl_wrapper", + "target": "presenter_ae_comp_event_presenter_obj_tbl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte", + "source_location": "L69", + "weight": 1.0, + "source": "presenter_ae_comp_event_presenter_obj_tbl_wrapper", + "target": "presenter_ae_comp_event_presenter_obj_tbl_wrapper_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte", + "source": "reports_reports_presenters", + "target": "presenter_ae_comp_event_presenter_obj_tbl_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_ae_comp_event_file_obj_tbl_svelte", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_reports_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "reports_event_reports_page_menu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "reports_reports_file_downloads", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "reports_reports_files", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "reports_reports_presenters", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_reports_page_svelte_reports_page", + "target": "reports_reports_sessions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source": "reports_reports_sessions", + "target": "events_ae_comp_event_session_obj_tbl_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte", + "source_location": "L278", + "weight": 1.0, + "source": "reports_reports_sessions", + "target": "reports_reports_sessions_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte", + "source": "reports_reports_files", + "target": "events_ae_comp_event_file_obj_tbl_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source_location": "L549", + "weight": 1.0, + "source": "reports_reports_file_downloads", + "target": "reports_reports_file_downloads_each", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte", + "source_location": "L525", + "weight": 1.0, + "source": "reports_reports_file_downloads", + "target": "reports_reports_file_downloads_pg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source": "events_ae_comp_event_file_obj_tbl_wrapper", + "target": "events_ae_comp_event_file_obj_tbl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source_location": "L60", + "weight": 1.0, + "source": "events_ae_comp_event_file_obj_tbl_wrapper", + "target": "events_ae_comp_event_file_obj_tbl_wrapper_dq_where_eq_id_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source_location": "L59", + "weight": 1.0, + "source": "events_ae_comp_event_file_obj_tbl_wrapper", + "target": "events_ae_comp_event_file_obj_tbl_wrapper_dq_where_type_id_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte", + "source_location": "L68", + "weight": 1.0, + "source": "events_ae_comp_event_file_obj_tbl_wrapper", + "target": "events_ae_comp_event_file_obj_tbl_wrapper_lq_event_file_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte", + "source": "events_ae_comp_event_session_obj_tbl_wrapper", + "target": "events_ae_comp_event_session_obj_tbl", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "events_ae_comp_event_presentation_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_pres_mgmt_session_session_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "session_id_ae_comp_session_page_menu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte", + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_svelte_session_id_page", + "target": "session_id_ae_comp_session_view", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_core_ae_core_functions_core_func", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L37", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "session_id_ae_comp_event_session_poc_form_agree", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L36", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "session_id_ae_comp_event_session_poc_profile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L101", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "session_id_ae_comp_session_view_load_person_options_for_session_poc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L194", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "session_id_ae_comp_session_view_send_poc_email_link", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte", + "source_location": "L26", + "weight": 1.0, + "source": "session_id_ae_comp_session_view", + "target": "stores_ae_stores_ae_snip", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_ts_session_id_page", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_pres_mgmt_session_session_id_page_ts_session_id_page", + "target": "session_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+layout.svelte", + "source": "src_routes_events_event_id_layout_svelte_event_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_events_event_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_events_event_id_layout_ts_event_id_layout", + "target": "ae_events_ae_events_functions_events_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/+layout.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_events_event_id_layout_ts_event_id_layout", + "target": "event_id_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "settings_ae_comp_event_settings_abstracts_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "settings_ae_comp_event_settings_basic_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/+page.svelte", + "source": "settings_page", + "target": "settings_ae_comp_event_settings_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L25", + "weight": 1.0, + "source": "settings_ae_comp_event_settings_badges_form", + "target": "settings_ae_comp_event_settings_badges_form_all_attendee_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L35", + "weight": 1.0, + "source": "settings_ae_comp_event_settings_badges_form", + "target": "settings_ae_comp_event_settings_badges_form_all_staff_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L42", + "weight": 1.0, + "source": "settings_ae_comp_event_settings_badges_form", + "target": "settings_ae_comp_event_settings_badges_form_ensure_permissions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L74", + "weight": 1.0, + "source": "settings_ae_comp_event_settings_badges_form", + "target": "settings_ae_comp_event_settings_badges_form_is_field_enabled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L101", + "weight": 1.0, + "source": "settings_ae_comp_event_settings_badges_form", + "target": "settings_ae_comp_event_settings_badges_form_save", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L84", + "weight": 1.0, + "source": "settings_ae_comp_event_settings_badges_form", + "target": "settings_ae_comp_event_settings_badges_form_toggle_field", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte", + "source_location": "L85", + "weight": 1.0, + "source": "settings_ae_comp_event_settings_badges_form_toggle_field", + "target": "settings_ae_comp_event_settings_badges_form_ensure_permissions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L277", + "weight": 1.0, + "source": "events_ae_comp_event_file_obj_tbl", + "target": "events_ae_comp_event_file_obj_tbl_blob", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L291", + "weight": 1.0, + "source": "events_ae_comp_event_file_obj_tbl", + "target": "events_ae_comp_event_file_obj_tbl_container", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L282", + "weight": 1.0, + "source": "events_ae_comp_event_file_obj_tbl", + "target": "events_ae_comp_event_file_obj_tbl_download_link", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/events/ae_comp__event_file_obj_tbl.svelte", + "source_location": "L280", + "weight": 1.0, + "source": "events_ae_comp_event_file_obj_tbl", + "target": "events_ae_comp_event_file_obj_tbl_obj_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/health/+server.ts", + "source_location": "L4", + "weight": 1.0, + "source": "health_server", + "target": "health_server_get", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source": "src_routes_hosted_files_layout_svelte_hosted_files_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_hosted_files_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.svelte", + "source_location": "L76", + "weight": 1.0, + "source": "src_routes_hosted_files_layout_svelte_hosted_files_layout", + "target": "hosted_files_layout_iframe", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_hosted_files_layout_ts_hosted_files_layout", + "target": "ae_core_ae_core_functions_core_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+layout.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_hosted_files_layout_ts_hosted_files_layout", + "target": "hosted_files_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/+page.svelte", + "source": "src_routes_hosted_files_page_svelte_hosted_files_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api_js", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source": "video_util_hold_video_util", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api_js", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/+page.svelte", + "source": "video_util_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_api_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/hosted_files/video_util/hold_video_util.svelte", + "source_location": "L108", + "weight": 1.0, + "source": "video_util_hold_video_util", + "target": "video_util_hold_video_util_hidden", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_db_archives", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_db_posts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_store_versions", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source_location": "L622", + "weight": 1.0, + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "idaa_layout_children", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/+layout.svelte", + "source_location": "L346", + "weight": 1.0, + "source": "src_routes_idaa_idaa_layout_svelte_idaa_layout", + "target": "idaa_layout_cleartimeout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_view.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte", + "source": "archive_id_ae_idaa_comp_modal_media_player", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte", + "source": "archives_ae_idaa_comp_archive_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__media_player.svelte", + "source": "archives_ae_idaa_comp_media_player", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_li.svelte", + "source": "bb_ae_idaa_comp_post_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_options.svelte", + "source": "bb_ae_idaa_comp_post_options", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+layout.svelte", + "source": "src_routes_idaa_idaa_archives_layout_svelte_archives_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.svelte", + "source": "src_routes_idaa_idaa_bb_layout_svelte_bb_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.svelte", + "source": "src_routes_idaa_idaa_jitsi_reports_page_svelte_jitsi_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_layout_svelte_recovery_meetings_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source": "src_routes_idaa_idaa_video_conferences_page_svelte_video_conferences_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_stores_ae_idaa_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_db_posts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_db_posts", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_db_archives", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_db_archives", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+layout.svelte", + "source": "src_routes_idaa_idaa_archives_layout_svelte_archives_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_archives_types", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_archives_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+layout.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_idaa_idaa_archives_layout_ts_archives_layout", + "target": "archives_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "archives_ae_idaa_comp_archive_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/+page.svelte", + "source": "archives_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_ae_archives_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_ae_archives_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_ae_archives_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_ae_archives_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_view.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_ae_archives_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte", + "source": "archives_ae_idaa_comp_archive_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_ae_archives_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_archives_ae_archives_functions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte", + "source_location": "L193", + "weight": 1.0, + "source": "archives_ae_idaa_comp_archive_obj_li", + "target": "archives_ae_idaa_comp_archive_obj_li_hidden", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "archive_id_ae_idaa_comp_archive_content_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "archive_id_ae_idaa_comp_archive_obj_id_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "archive_id_ae_idaa_comp_modal_media_player", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source_location": "L236", + "weight": 1.0, + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "archive_id_page_if", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte", + "source": "src_routes_idaa_idaa_archives_archive_id_page_svelte_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_archives_archive_id_types", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte", + "source": "archive_id_ae_idaa_comp_modal_media_player", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_archives_archive_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/+page.ts", + "source_location": "L1", + "weight": 1.0, + "source": "src_routes_idaa_idaa_archives_archive_id_page_ts_archive_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_archives_archive_id_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source_location": "L236", + "weight": 1.0, + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "archive_id_ae_idaa_comp_archive_obj_id_edit_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte", + "source": "archive_id_ae_idaa_comp_archive_content_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte", + "source": "archive_id_ae_idaa_comp_modal_media_player", + "target": "archives_ae_idaa_comp_media_player", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_core_db_lookups", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.svelte", + "source": "src_routes_idaa_idaa_bb_layout_svelte_bb_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_ae_posts_functions", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.svelte", + "source": "src_routes_idaa_idaa_bb_layout_svelte_bb_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_bb_types", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_li.svelte", + "source": "bb_ae_idaa_comp_post_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_bb_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.ts", + "source_location": "L1", + "weight": 1.0, + "source": "src_routes_idaa_idaa_bb_page_ts_bb_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_bb_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_ae_posts_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_ae_posts_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_ae_posts_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_posts_ae_posts_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_idaa_idaa_bb_layout_ts_bb_layout", + "target": "ae_posts_ae_posts_functions_posts_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+layout.ts", + "source_location": "L9", + "weight": 1.0, + "source": "src_routes_idaa_idaa_bb_layout_ts_bb_layout", + "target": "bb_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "bb_ae_idaa_comp_post_obj_id_edit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "bb_ae_idaa_comp_post_obj_id_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "bb_ae_idaa_comp_post_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/+page.svelte", + "source": "src_routes_idaa_idaa_bb_page_svelte_bb_page", + "target": "bb_ae_idaa_comp_post_options", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source_location": "L261", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "bb_ae_idaa_comp_post_obj_id_edit_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_idaa_ae_idaa_bb_post_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "bb_ae_idaa_comp_post_obj_id_edit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "bb_ae_idaa_comp_post_obj_id_edit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L41", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L9", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "bb_ae_idaa_comp_post_obj_id_view_lq_post_obj_lq_post_comment_obj_li_lq_post_comment_obj_log_lvl_0", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_obj_id_view", + "target": "stores_ae_stores_ae_snip", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "bb_ae_idaa_comp_post_obj_id_view", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_bb_post_id_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source_location": "L108", + "weight": 1.0, + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "post_id_page_if", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.svelte", + "source_location": "L263", + "weight": 1.0, + "source": "src_routes_idaa_idaa_bb_post_id_page_svelte_post_id_page", + "target": "post_id_page_onclick", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/[post_id]/+page.ts", + "source_location": "L1", + "weight": 1.0, + "source": "src_routes_idaa_idaa_bb_post_id_page_ts_post_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_bb_post_id_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte", + "source_location": "L61", + "weight": 1.0, + "source": "bb_ae_idaa_comp_post_comment_obj_id_edit", + "target": "bb_ae_idaa_comp_post_comment_obj_id_edit_function", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.svelte", + "source": "src_routes_idaa_idaa_jitsi_reports_page_svelte_jitsi_reports_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_reports_reports_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.svelte", + "source": "src_routes_idaa_idaa_jitsi_reports_page_svelte_jitsi_reports_page", + "target": "jitsi_reports_ae_idaa_comp_jitsi_url_builder", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/jitsi_reports/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_idaa_idaa_jitsi_reports_page_ts_jitsi_reports_page", + "target": "jitsi_reports_page_load", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_layout_svelte_recovery_meetings_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_recovery_meetings_types", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte", + "source": "recovery_meetings_ae_idaa_comp_event_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_recovery_meetings_types", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_recovery_meetings_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+layout.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_idaa_idaa_recovery_meetings_layout_ts_recovery_meetings_layout", + "target": "recovery_meetings_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/+page.svelte", + "source": "recovery_meetings_page", + "target": "recovery_meetings_ae_idaa_comp_event_obj_qry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "recovery_meetings_ae_idaa_comp_event_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L15", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper_container_class_li_event_id_li_link_to_type_account_link_to_id_order_by_updated_on_hide_not_hidden_all_hidden_not_hidden_enable_enabled_all_disabled_enabled_limit_0_offset_0_log_lvl_bindable_0", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L44", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper_dq_where_eq_id_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L43", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper_dq_where_type_id_val", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte", + "source_location": "L53", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper", + "target": "recovery_meetings_ae_idaa_comp_event_obj_li_wrapper_lq_event_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_recovery_meetings_event_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte", + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_svelte_event_id_page", + "target": "recovery_meetings_ae_idaa_comp_event_obj_id_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.ts", + "source_location": "L1", + "weight": 1.0, + "source": "src_routes_idaa_idaa_recovery_meetings_event_id_page_ts_event_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_idaa_recovery_meetings_event_id_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte", + "source_location": "L250", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_edit", + "target": "recovery_meetings_ae_idaa_comp_event_obj_id_edit_if", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "source_location": "L129", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_view", + "target": "recovery_meetings_ae_idaa_comp_event_obj_id_view_ae_d_none", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte", + "source_location": "L449", + "weight": 1.0, + "source": "recovery_meetings_ae_idaa_comp_event_obj_id_view", + "target": "recovery_meetings_ae_idaa_comp_event_obj_id_view_hidden", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source_location": "L844", + "weight": 1.0, + "source": "src_routes_idaa_idaa_video_conferences_page_svelte_video_conferences_page", + "target": "video_conferences_page_init_jitsi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.svelte", + "source_location": "L1211", + "weight": 1.0, + "source": "src_routes_idaa_idaa_video_conferences_page_svelte_video_conferences_page", + "target": "video_conferences_page_myclipboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/(idaa)/video_conferences/+page.ts", + "source_location": "L3", + "weight": 1.0, + "source": "src_routes_idaa_idaa_video_conferences_page_ts_video_conferences_page", + "target": "video_conferences_page_load", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_idaa_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L403", + "weight": 1.0, + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "idaa_layout_ae_btn_success_outlined", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L404", + "weight": 1.0, + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "idaa_layout_ae_btn_warning_filled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L402", + "weight": 1.0, + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "idaa_layout_ae_btn_warning_outlined", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/+layout.svelte", + "source_location": "L401", + "weight": 1.0, + "source": "src_routes_idaa_layout_svelte_idaa_layout", + "target": "idaa_layout_hidden", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/idaa/clear-caches/+page.svelte", + "source_location": "L28", + "weight": 1.0, + "source": "clear_caches_page", + "target": "clear_caches_page_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+layout.svelte", + "source": "src_routes_journals_layout_svelte_journals_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+layout.svelte", + "source": "src_routes_journals_layout_svelte_journals_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_journals_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_ai_tools.svelte", + "source": "journals_ae_comp_journal_entry_ai_tools", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_editor.svelte", + "source": "journals_ae_comp_journal_entry_editor", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_header.svelte", + "source": "journals_ae_comp_journal_entry_header", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_qry.svelte", + "source": "journals_ae_comp_journal_entry_obj_qry", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_quick_add.svelte", + "source": "journals_ae_comp_journal_entry_quick_add", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source": "journals_ae_comp_journal_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_view.svelte", + "source": "journals_ae_comp_journal_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_config.svelte", + "source": "journals_ae_comp_modal_journal_config", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_import.svelte", + "source": "journals_ae_comp_modal_journal_import", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__obj_core_props.svelte", + "source": "journals_ae_comp_obj_core_props", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_stores", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+layout.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_journals_layout_ts_journals_layout", + "target": "journals_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "journals_ae_comp_journal_entry_quick_add", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "journals_ae_comp_journal_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "journals_ae_comp_modal_journal_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.svelte", + "source": "src_routes_journals_page_svelte_journals_page", + "target": "journals_ae_comp_modal_journal_import", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/ae_obj_field_editor/+page.svelte", + "source": "ae_obj_field_editor_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_db_journals", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_quick_add.svelte", + "source": "journals_ae_comp_journal_entry_quick_add", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source": "journals_ae_comp_journal_obj_id_edit", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_view.svelte", + "source": "journals_ae_comp_journal_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_append.svelte", + "source": "journals_ae_comp_modal_journal_entry_append", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_entry_config.svelte", + "source": "journals_ae_comp_modal_journal_entry_config", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_import.svelte", + "source": "journals_ae_comp_modal_journal_import", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__obj_core_props.svelte", + "source": "journals_ae_comp_obj_core_props", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_functions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "journals_ae_comp_modal_journal_import", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_import.svelte", + "source": "journals_ae_comp_modal_journal_import", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_parsers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.ts", + "source_location": "L5", + "weight": 1.0, + "source": "src_routes_journals_page_ts_journals_page", + "target": "ae_journals_ae_journals_functions_journals_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/+page.ts", + "source_location": "L7", + "weight": 1.0, + "source": "src_routes_journals_page_ts_journals_page", + "target": "journals_page_load", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_journals_journal_id_types", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source_location": "L63", + "weight": 1.0, + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "journal_id_layout_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.svelte", + "source": "src_routes_journals_journal_id_layout_svelte_journal_id_layout", + "target": "journals_ae_comp_journal_entry_obj_qry", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_journals_journal_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_journals_journal_id_layout_ts_journal_id_layout", + "target": "ae_journals_ae_journals_functions_journals_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+layout.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_journals_journal_id_layout_ts_journal_id_layout", + "target": "journal_id_layout_load", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_search_helpers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source_location": "L211", + "weight": 1.0, + "source": "journal_id_page", + "target": "journal_id_page_if", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "journals_ae_comp_journal_entry_obj_li_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "journals_ae_comp_journal_obj_id_view", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/+page.svelte", + "source": "journal_id_page", + "target": "journals_ae_comp_modal_journal_export", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_view.svelte", + "source": "journals_ae_comp_journal_obj_id_view", + "target": "journals_ae_comp_journal_obj_id_edit", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li_wrapper.svelte", + "source_location": "L21", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li_wrapper", + "target": "journals_ae_comp_journal_entry_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li_wrapper.svelte", + "source_location": "L10", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li_wrapper", + "target": "journals_ae_comp_journal_entry_obj_li_wrapper_container_class_li_lq_journal_obj_lq_journal_entry_obj_li_show_found_header_true_log_lvl_0", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__modal_journal_export.svelte", + "source": "journals_ae_comp_modal_journal_export", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_export_templates", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "journals_ae_comp_modal_journal_export", + "confidence_score": 1.0 + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_routes_journals_journal_id_entry_journal_entry_id_types", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte", + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_svelte_journal_entry_id_page", + "target": "journals_ae_comp_journal_entry_obj_id_view", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L24", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "ae_journals_ae_journals_functions_journals_func", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_decryption", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L30", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_ai_tools", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L27", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_editor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L28", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_header", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L29", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_metadata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L31", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_file_li", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L66", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_deep_copy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L358", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_handle_content_decryption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L404", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_handle_force_reset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L381", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_handle_marked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L436", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_handle_show_ai_tools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L90", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_has_unsaved_changes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L62", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_is_processing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L47", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_log_lvl_0_lq_journal_obj_lq_journal_obj_li_lq_journal_entry_obj_on_show_export", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L215", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_run_decryption_workflow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L433", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_show_append_modal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L63", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_show_config_modal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L276", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_journal_entry_obj_id_view_update_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L32", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_modal_journal_entry_append", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L33", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "journals_ae_comp_modal_journal_entry_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L14", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view", + "target": "marked", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.ts", + "source_location": "L6", + "weight": 1.0, + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_ts_journal_entry_id_page", + "target": "ae_journals_ae_journals_functions_journals_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/[journal_id]/entry/[journal_entry_id]/+page.ts", + "source_location": "L8", + "weight": 1.0, + "source": "src_routes_journals_journal_id_entry_journal_entry_id_page_ts_journal_entry_id_page", + "target": "journal_entry_id_page_load", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source_location": "L169", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "journals_ae_comp_journal_entry_obj_file_li_handle_remove_file", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source_location": "L104", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_file_li", + "target": "journals_ae_comp_journal_entry_obj_file_li_update_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_file_li.svelte", + "source_location": "L190", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_file_li_handle_remove_file", + "target": "journals_ae_comp_journal_entry_obj_file_li_update_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L347", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view_update_journal_entry", + "target": "journals_ae_comp_journal_entry_obj_id_view_deep_copy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L364", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view_handle_content_decryption", + "target": "journals_ae_comp_journal_entry_obj_id_view_run_decryption_workflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L254", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view_run_decryption_workflow", + "target": "journals_ae_comp_journal_entry_obj_id_view_handle_marked", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_id_view.svelte", + "source_location": "L429", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_id_view_handle_force_reset", + "target": "journals_ae_comp_journal_entry_obj_id_view_update_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L54", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "journals_ae_comp_modal_journal_entry_append", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L53", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "ae_journals_ae_journals_functions_journals_func", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L68", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "journals_ae_comp_journal_entry_obj_li_handle_modal_close", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L73", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "journals_ae_comp_journal_entry_obj_li_handle_modal_update", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L608", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "journals_ae_comp_journal_entry_obj_li_hidden", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L9", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "journals_ae_comp_journal_entry_obj_li_log_lvl_bindable_0_lq_journal_obj_lq_journal_entry_obj_li_show_found_header_true", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L61", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "journals_ae_comp_journal_entry_obj_li_show_append_modal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L79", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li", + "target": "journals_ae_comp_journal_entry_obj_li_visible_journal_entry_obj_li", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_entry_obj_li.svelte", + "source_location": "L74", + "weight": 1.0, + "source": "journals_ae_comp_journal_entry_obj_li_handle_modal_update", + "target": "journals_ae_comp_journal_entry_obj_li_handle_modal_close", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/journals/ae_comp__journal_obj_id_edit.svelte", + "source_location": "L161", + "weight": 1.0, + "source": "journals_ae_comp_journal_obj_id_edit", + "target": "journals_ae_comp_journal_obj_id_edit_catch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/routes/manifest.webmanifest/+server.ts", + "source_location": "L2", + "weight": 1.0, + "source": "manifest_webmanifest_server", + "target": "ae_api_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/routes/manifest.webmanifest/+server.ts", + "source_location": "L10", + "weight": 1.0, + "source": "manifest_webmanifest_server", + "target": "manifest_webmanifest_server_get", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api_get_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/+page.svelte", + "source": "testing_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_api_api_patch_object", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/ae_obj_field_editor/+page.svelte", + "source": "ae_obj_field_editor_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_journal", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "src/routes/testing/ae_obj_field_editor/+page.svelte", + "source": "ae_obj_field_editor_page", + "target": "home_scott_osit_dev_aether_app_sveltekit_src_lib_ae_journals_ae_journals_journal_entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/service-worker.js", + "source_location": "L19", + "weight": 1.0, + "source": "src_service_worker", + "target": "src_service_worker_addfilestocache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/service-worker.js", + "source_location": "L7", + "weight": 1.0, + "source": "src_service_worker", + "target": "src_service_worker_assets", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/service-worker.js", + "source_location": "L37", + "weight": 1.0, + "source": "src_service_worker", + "target": "src_service_worker_deleteoldcaches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/service-worker.js", + "source_location": "L61", + "weight": 1.0, + "source": "src_service_worker", + "target": "src_service_worker_respond", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "static/manifest.json", + "source_location": "L2", + "weight": 1.0, + "source": "static_manifest", + "target": "static_manifest_background_color", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "static/manifest.json", + "source_location": "L3", + "weight": 1.0, + "source": "static_manifest", + "target": "static_manifest_description", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "static/manifest.json", + "source_location": "L4", + "weight": 1.0, + "source": "static_manifest", + "target": "static_manifest_display", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "static/manifest.json", + "source_location": "L5", + "weight": 1.0, + "source": "static_manifest", + "target": "static_manifest_icons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "static/manifest.json", + "source_location": "L87", + "weight": 1.0, + "source": "static_manifest", + "target": "static_manifest_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "static/manifest.json", + "source_location": "L88", + "weight": 1.0, + "source": "static_manifest", + "target": "static_manifest_short_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "static/manifest.json", + "source_location": "L89", + "weight": 1.0, + "source": "static_manifest", + "target": "static_manifest_start_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "static/manifest.json", + "source_location": "L90", + "weight": 1.0, + "source": "static_manifest", + "target": "static_manifest_testing", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "svelte.config.js", + "source_location": "L7", + "weight": 1.0, + "source": "svelte_config", + "target": "svelte_config_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tailwind.config.ts", + "source_location": "L6", + "weight": 1.0, + "source": "tailwind_config", + "target": "tailwind_config_configwithsafelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/ae_defaults.ts", + "source_location": "L1", + "weight": 1.0, + "source": "helpers_ae_defaults", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L31", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L3", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/archive_content.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_archive_content_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_badges_list.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_coldstart_event_badges_list_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_session.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_coldstart_event_session_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_settings.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_coldstart_event_settings_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_journal.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_coldstart_journal_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_crud.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_badge_crud_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_data_integrity.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_badge_data_integrity_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_interaction.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_badge_interaction_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_presenter.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_presenter_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L54", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_nested_crud.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_v3_api_nested_crud_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_security.modern.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_v3_api_security_modern_test", + "target": "helpers_ae_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L31", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L3", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/archive_content.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_archive_content_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_badges_list.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_coldstart_event_badges_list_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_session.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_coldstart_event_session_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_settings.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_coldstart_event_settings_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_journal.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_coldstart_journal_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_crud.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_badge_crud_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_data_integrity.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_badge_data_integrity_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_interaction.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_badge_interaction_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_presenter.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_presenter_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L54", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_nested_crud.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_v3_api_nested_crud_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_security.modern.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_v3_api_security_modern_test", + "target": "helpers_ae_defaults_ae_app_local_data_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/env.ts", + "source_location": "L22", + "weight": 1.0, + "source": "helpers_env", + "target": "helpers_env_mock_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/env.ts", + "source_location": "L37", + "weight": 1.0, + "source": "helpers_env", + "target": "helpers_env_test_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L30", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L2", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_badges_list.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_coldstart_event_badges_list_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_session.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_coldstart_event_session_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_event_settings.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_coldstart_event_settings_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/coldstart_journal.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_coldstart_journal_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L14", + "weight": 1.0, + "source": "tests_event_badge_attendee_workflow_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_crud.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_event_badge_crud_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_data_integrity.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_event_badge_data_integrity_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_interaction.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_event_badge_interaction_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L14", + "weight": 1.0, + "source": "tests_event_badge_print_layout_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L26", + "weight": 1.0, + "source": "tests_event_badge_render_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_smoke.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_event_badge_smoke_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_presenter.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_event_presenter_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L55", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L17", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_leads_add_lead_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_config.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_leads_config_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_leads_payment_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L4", + "weight": 1.0, + "source": "tests_v3_api_latency_probe_test", + "target": "helpers_env", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L30", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_env_mock_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L2", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_env_mock_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L55", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "helpers_env_mock_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L17", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "helpers_env_mock_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_config.test.ts", + "source_location": "L2", + "weight": 1.0, + "source": "tests_leads_config_test", + "target": "helpers_env_mock_site_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/idb_helpers.ts", + "source_location": "L22", + "weight": 1.0, + "source": "helpers_idb_helpers", + "target": "helpers_idb_helpers_inject_badge_and_template", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L15", + "weight": 1.0, + "source": "tests_event_badge_attendee_workflow_test", + "target": "helpers_idb_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L15", + "weight": 1.0, + "source": "tests_event_badge_print_layout_test", + "target": "helpers_idb_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L27", + "weight": 1.0, + "source": "tests_event_badge_render_test", + "target": "helpers_idb_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L15", + "weight": 1.0, + "source": "tests_event_badge_attendee_workflow_test", + "target": "helpers_idb_helpers_inject_badge_and_template", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L15", + "weight": 1.0, + "source": "tests_event_badge_print_layout_test", + "target": "helpers_idb_helpers_inject_badge_and_template", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L27", + "weight": 1.0, + "source": "tests_event_badge_render_test", + "target": "helpers_idb_helpers_inject_badge_and_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L346", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_attach_leads_routes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L117", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_minimal_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L49", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_minimal_event_for_leads", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L80", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_minimal_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L129", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_minimal_tracking", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L165", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_seed_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L242", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_seed_events_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L185", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_seed_leads_loc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L487", + "weight": 1.0, + "source": "helpers_leads_helpers", + "target": "helpers_leads_helpers_setup_leads_test_page", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_add_lead_test", + "target": "helpers_leads_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "helpers_leads_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_config.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_config_test", + "target": "helpers_leads_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "helpers_leads_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_payment_test", + "target": "helpers_leads_helpers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_config.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_config_test", + "target": "helpers_leads_helpers_minimal_event_for_leads", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/leads_config.test.ts", + "source_location": "L48", + "weight": 1.0, + "source": "tests_leads_config_test_setup_config_routes", + "target": "helpers_leads_helpers_minimal_event_for_leads", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "helpers_leads_helpers_minimal_exhibit", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L364", + "weight": 1.0, + "source": "helpers_leads_helpers_attach_leads_routes", + "target": "helpers_leads_helpers_minimal_badge", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_add_lead_test", + "target": "helpers_leads_helpers_minimal_badge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L515", + "weight": 1.0, + "source": "helpers_leads_helpers_setup_leads_test_page", + "target": "helpers_leads_helpers_seed_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "helpers_leads_helpers_seed_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_config.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_config_test", + "target": "helpers_leads_helpers_seed_ae_loc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L516", + "weight": 1.0, + "source": "helpers_leads_helpers_setup_leads_test_page", + "target": "helpers_leads_helpers_seed_leads_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "helpers_leads_helpers_seed_leads_loc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L517", + "weight": 1.0, + "source": "helpers_leads_helpers_setup_leads_test_page", + "target": "helpers_leads_helpers_seed_events_loc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "helpers_leads_helpers_seed_events_loc", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/leads_helpers.ts", + "source_location": "L514", + "weight": 1.0, + "source": "helpers_leads_helpers_setup_leads_test_page", + "target": "helpers_leads_helpers_attach_leads_routes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "helpers_leads_helpers_attach_leads_routes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_add_lead_test", + "target": "helpers_leads_helpers_setup_leads_test_page", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "helpers_leads_helpers_setup_leads_test_page", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "helpers_leads_helpers_setup_leads_test_page", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_leads_payment_test", + "target": "helpers_leads_helpers_setup_leads_test_page", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L32", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_minimal_ae_api_mocks_attach_minimal_routes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L19", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_minimal_ae_api_mocks_minimal_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L5", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_minimal_ae_api_mocks_minimal_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L87", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_minimal_ae_api_mocks_seed_trusted_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L118", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks", + "target": "helpers_minimal_ae_api_mocks_setup_badge_test_page", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "tests_event_badge_attendee_workflow_test", + "target": "helpers_minimal_ae_api_mocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "tests_event_badge_print_layout_test", + "target": "helpers_minimal_ae_api_mocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L28", + "weight": 1.0, + "source": "tests_event_badge_render_test", + "target": "helpers_minimal_ae_api_mocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_smoke.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_event_badge_smoke_test", + "target": "helpers_minimal_ae_api_mocks", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_presenter.test.ts", + "source_location": "L4", + "weight": 1.0, + "source": "tests_event_presenter_test", + "target": "helpers_minimal_ae_api_mocks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L120", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks_setup_badge_test_page", + "target": "helpers_minimal_ae_api_mocks_attach_minimal_routes", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_presenter.test.ts", + "source_location": "L4", + "weight": 1.0, + "source": "tests_event_presenter_test", + "target": "helpers_minimal_ae_api_mocks_attach_minimal_routes", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/_helpers/minimal_ae_api_mocks.ts", + "source_location": "L121", + "weight": 1.0, + "source": "helpers_minimal_ae_api_mocks_setup_badge_test_page", + "target": "helpers_minimal_ae_api_mocks_seed_trusted_session", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "tests_event_badge_attendee_workflow_test", + "target": "helpers_minimal_ae_api_mocks_setup_badge_test_page", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "tests_event_badge_print_layout_test", + "target": "helpers_minimal_ae_api_mocks_setup_badge_test_page", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L28", + "weight": 1.0, + "source": "tests_event_badge_render_test", + "target": "helpers_minimal_ae_api_mocks_setup_badge_test_page", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_smoke.test.ts", + "source_location": "L3", + "weight": 1.0, + "source": "tests_event_badge_smoke_test", + "target": "helpers_minimal_ae_api_mocks_setup_badge_test_page", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L22", + "weight": 1.0, + "source": "tests_event_badge_attendee_workflow_test", + "target": "tests_event_badge_attendee_workflow_test_mock_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_attendee_workflow.test.ts", + "source_location": "L42", + "weight": 1.0, + "source": "tests_event_badge_attendee_workflow_test", + "target": "tests_event_badge_attendee_workflow_test_mock_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L26", + "weight": 1.0, + "source": "tests_event_badge_print_layout_test", + "target": "tests_event_badge_print_layout_test_mock_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_print_layout.test.ts", + "source_location": "L47", + "weight": 1.0, + "source": "tests_event_badge_print_layout_test", + "target": "tests_event_badge_print_layout_test_mock_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L41", + "weight": 1.0, + "source": "tests_event_badge_render_test", + "target": "tests_event_badge_render_test_make_badge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/event_badge_render.test.ts", + "source_location": "L65", + "weight": 1.0, + "source": "tests_event_badge_render_test", + "target": "tests_event_badge_render_test_make_template", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L100", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "tests_idaa_novi_auth_test_fresh_site_cfg_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L174", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "tests_idaa_novi_auth_test_mock_novi_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L80", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "tests_idaa_novi_auth_test_mock_novi_member", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L137", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "tests_idaa_novi_auth_test_mock_v3_routes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L201", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "tests_idaa_novi_auth_test_seed_anonymous_session", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_novi_auth.test.ts", + "source_location": "L117", + "weight": 1.0, + "source": "tests_idaa_novi_auth_test", + "target": "tests_idaa_novi_auth_test_stale_site_cfg_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L68", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "tests_idaa_recovery_meeting_edit_test_build_idaa_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L800", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "tests_idaa_recovery_meeting_edit_test_capture_patch_body", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L27", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "tests_idaa_recovery_meeting_edit_test_mock_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L709", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "tests_idaa_recovery_meeting_edit_test_open_edit_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L314", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "tests_idaa_recovery_meeting_edit_test_seed_event_idb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L176", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "tests_idaa_recovery_meeting_edit_test_setup_api_mocks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L105", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test", + "target": "tests_idaa_recovery_meeting_edit_test_setup_idaa_auth", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L151", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test_setup_idaa_auth", + "target": "tests_idaa_recovery_meeting_edit_test_build_idaa_loc_defaults", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/idaa_recovery_meeting_edit.test.ts", + "source_location": "L711", + "weight": 1.0, + "source": "tests_idaa_recovery_meeting_edit_test_open_edit_form", + "target": "tests_idaa_recovery_meeting_edit_test_seed_event_idb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L19", + "weight": 1.0, + "source": "tests_leads_add_lead_test", + "target": "tests_leads_add_lead_test_search_mode_seed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_add_lead.test.ts", + "source_location": "L15", + "weight": 1.0, + "source": "tests_leads_add_lead_test", + "target": "tests_leads_add_lead_test_signed_in_kv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L34", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "tests_leads_auth_test_header_action_btn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L28", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "tests_leads_auth_test_passcode_input", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_auth.test.ts", + "source_location": "L24", + "weight": 1.0, + "source": "tests_leads_auth_test", + "target": "tests_leads_auth_test_signin_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_config.test.ts", + "source_location": "L20", + "weight": 1.0, + "source": "tests_leads_config_test", + "target": "tests_leads_config_test_setup_config_routes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L38", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_exhibit_with_licenses", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L71", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_goto_and_wait_for_exhibit_ready", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L47", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_header_action_btn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L35", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_license_li_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L18", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_licensed_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L25", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_licensed_user_b", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L52", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_passcode_input", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L57", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_search_mode_seed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L44", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test", + "target": "tests_leads_licensed_signin_test_signin_form", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/leads_licensed_signin.test.ts", + "source_location": "L76", + "weight": 1.0, + "source": "tests_leads_licensed_signin_test_goto_and_wait_for_exhibit_ready", + "target": "tests_leads_licensed_signin_test_passcode_input", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L22", + "weight": 1.0, + "source": "tests_leads_payment_test", + "target": "tests_leads_payment_test_manage_btn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L16", + "weight": 1.0, + "source": "tests_leads_payment_test", + "target": "tests_leads_payment_test_payment_btn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/leads_payment.test.ts", + "source_location": "L13", + "weight": 1.0, + "source": "tests_leads_payment_test", + "target": "tests_leads_payment_test_signed_in_kv", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/private_network.test.ts", + "source_location": "L8", + "weight": 1.0, + "source": "tests_private_network_test", + "target": "tests_private_network_test_isprivatehostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/unit/create_event_badge.spec.ts", + "source_location": "L9", + "weight": 1.0, + "source": "unit_create_event_badge_spec", + "target": "unit_create_event_badge_spec_mockcreatenested", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L21", + "weight": 1.0, + "source": "tests_v3_api_latency_probe_test", + "target": "tests_v3_api_latency_probe_test_endpointprobe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L28", + "weight": 1.0, + "source": "tests_v3_api_latency_probe_test", + "target": "tests_v3_api_latency_probe_test_percentile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L12", + "weight": 1.0, + "source": "tests_v3_api_latency_probe_test", + "target": "tests_v3_api_latency_probe_test_probesample", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L106", + "weight": 1.0, + "source": "tests_v3_api_latency_probe_test", + "target": "tests_v3_api_latency_probe_test_reportmarkdown", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L35", + "weight": 1.0, + "source": "tests_v3_api_latency_probe_test", + "target": "tests_v3_api_latency_probe_test_summarize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L59", + "weight": 1.0, + "source": "tests_v3_api_latency_probe_test", + "target": "tests_v3_api_latency_probe_test_timedjsonfetch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "tests/v3_api_latency_probe.test.ts", + "source_location": "L48", + "weight": 1.0, + "source": "tests_v3_api_latency_probe_test_summarize", + "target": "tests_v3_api_latency_probe_test_percentile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "source": "tsconfig", + "target": "tsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "source": "tsconfig", + "target": "tsconfig_extends", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_allowjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_checkjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_esmoduleinterop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_forceconsistentcasinginfilenames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_plugins", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_resolvejsonmodule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_sourcemap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_strict", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "vite.config.ts", + "source_location": "L45", + "weight": 1.0, + "source": "vite_config", + "target": "vite_config_manualchunks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "vite.config.ts", + "source_location": "L6", + "weight": 1.0, + "source": "vite_config", + "target": "vite_config_pkg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "vitest.config.ts", + "source_location": "L2", + "weight": 1.0, + "source": "vitest_config", + "target": "vite_config", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "CLAUDE.md", + "source_location": null, + "weight": 1.0, + "source": "aether_app_sveltekit_claude_idaa_privacy", + "target": "documentation_ae__permissions_idaa_auth_before_cache" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "CLAUDE.md", + "source_location": "CRITICAL: Privacy & Business Rules", + "weight": 1.0, + "source": "aether_app_sveltekit_claude_idaa_privacy", + "target": "documentation_client__idaa_idaa_architecture" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "CLAUDE.md", + "source_location": "Mandatory Workflow - Before committing", + "weight": 1.0, + "source": "aether_app_sveltekit_claude_mandatory_workflow", + "target": "documentation_guide__development_svelte_check_mandate" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_guide__ae_ui_style_skeleton_v4_mandate", + "target": "aether_app_sveltekit_claude_tech_stack" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "CLAUDE.md", + "source_location": "API (V3) - Guide", + "weight": 1.0, + "source": "aether_app_sveltekit_claude_v3_api", + "target": "documentation_guide__ae_api_v3_api_guide" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_auth_headers", + "target": "aether_app_sveltekit_claude_v3_api" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "CLAUDE.md", + "source_location": null, + "weight": 1.0, + "source": "aether_app_sveltekit_claude_swr_pattern", + "target": "documentation_bootstrap__ai_agent_quickstart_svelte5_patterns" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "CLAUDE.md", + "source_location": null, + "weight": 1.0, + "source": "aether_app_sveltekit_claude_journals_canonical", + "target": "documentation_ae__architecture_journals_canonical" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "README.md", + "source_location": "How to build and deploy SvelteKit", + "weight": 1.0, + "source": "aether_app_sveltekit_readme_sveltekit", + "target": "aether_app_sveltekit_readme_docker_deploy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "README.md", + "source_location": "Client-Side Cache & IDB Version Management", + "weight": 1.0, + "source": "aether_app_sveltekit_readme_sveltekit", + "target": "aether_app_sveltekit_readme_idb_version_mgmt" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.75, + "source_file": "README.md", + "source_location": null, + "weight": 1.0, + "source": "aether_app_sveltekit_readme_idb_version_mgmt", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_try_cache_bug" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_client__idaa_recovery_meetings", + "target": "aether_app_sveltekit_readme_events_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "conductor/fix-idaa-breakout-links.md", + "source_location": "1. Objective", + "weight": 1.0, + "source": "conductor_fix_idaa_breakout_links_breakout_url", + "target": "documentation_client__idaa_breakout_links" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "conductor/fix-idaa-breakout-links.md", + "source_location": null, + "weight": 1.0, + "source": "conductor_fix_idaa_breakout_links_breakout_url", + "target": "documentation_client__idaa_iframe_integration" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.75, + "source_file": "conductor/launcher-ux-refinement.md", + "source_location": null, + "weight": 1.0, + "source": "conductor_launcher_ux_refinement_plan", + "target": "documentation_ae__architecture_electron_runtime" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Architecture.md", + "source_location": "7.2. Electron Native App", + "weight": 1.0, + "source": "documentation_ae__architecture_architecture", + "target": "documentation_ae__architecture_electron_runtime" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Architecture.md", + "source_location": "2.1. Journals as the Canonical Frontend Pattern", + "weight": 1.0, + "source": "documentation_ae__architecture_architecture", + "target": "documentation_ae__architecture_journals_canonical" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Architecture.md", + "source_location": "8. IndexedDB LiveQuery Usage", + "weight": 1.0, + "source": "documentation_ae__architecture_architecture", + "target": "documentation_ae__architecture_livequery_naming" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Architecture.md", + "source_location": "6.1. Core Standard Fields", + "weight": 1.0, + "source": "documentation_ae__architecture_architecture", + "target": "documentation_ae__architecture_standard_fields" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/README__Docs_Index.md", + "source_location": "3) Safety and Reference", + "weight": 1.0, + "source": "documentation_readme__docs_index_docs_index", + "target": "documentation_ae__architecture_architecture" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GUIDE__AE_Events_Onsite_Runbook.md", + "source_location": "SRR Practice Stations - Native mode", + "weight": 1.0, + "source": "documentation_guide__ae_events_onsite_runbook_srr_workflow", + "target": "documentation_ae__architecture_electron_runtime" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/AE__Architecture.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_ae__architecture_standard_fields", + "target": "documentation_ae__naming_conventions_id_convention" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Naming_Conventions.md", + "source_location": "2. File Naming", + "weight": 1.0, + "source": "documentation_ae__naming_conventions_naming", + "target": "documentation_ae__naming_conventions_file_naming" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Naming_Conventions.md", + "source_location": "3. Function and Variable Naming", + "weight": 1.0, + "source": "documentation_ae__naming_conventions_naming", + "target": "documentation_ae__naming_conventions_function_naming" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Naming_Conventions.md", + "source_location": "4. Object and Property Naming - IDs", + "weight": 1.0, + "source": "documentation_ae__naming_conventions_naming", + "target": "documentation_ae__naming_conventions_id_convention" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/AE__Naming_Conventions.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_ae__naming_conventions_id_convention", + "target": "documentation_bootstrap__ai_agent_quickstart_patch_id_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "Access Level Hierarchy", + "weight": 1.0, + "source": "documentation_ae__permissions_and_security_permissions", + "target": "documentation_ae__permissions_access_level_hierarchy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "$ae_loc Store", + "weight": 1.0, + "source": "documentation_ae__permissions_and_security_permissions", + "target": "documentation_ae__permissions_ae_loc_store" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "Edit Mode \u2014 Critical Rules", + "weight": 1.0, + "source": "documentation_ae__permissions_and_security_permissions", + "target": "documentation_ae__permissions_edit_mode_rules" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "IDAA IDB Caching", + "weight": 1.0, + "source": "documentation_ae__permissions_and_security_permissions", + "target": "documentation_ae__permissions_idaa_auth_before_cache" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": "Site Passcode Security Warning", + "weight": 1.0, + "source": "documentation_ae__permissions_and_security_permissions", + "target": "documentation_ae__permissions_site_passcode_security" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "10. Reading Order", + "weight": 1.0, + "source": "documentation_bootstrap__ai_agent_quickstart_quickstart", + "target": "documentation_ae__permissions_and_security_permissions" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/README__Docs_Index.md", + "source_location": "3) Safety and Reference", + "weight": 1.0, + "source": "documentation_readme__docs_index_docs_index", + "target": "documentation_ae__permissions_and_security_permissions" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/AE__Permissions_and_Security.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_ae__permissions_idaa_auth_before_cache", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_auth_gate_layout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "7. Common Mistakes", + "weight": 1.0, + "source": "documentation_bootstrap__ai_agent_quickstart_quickstart", + "target": "documentation_bootstrap__ai_agent_quickstart_common_mistakes" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "5. V3 API Patterns", + "weight": 1.0, + "source": "documentation_bootstrap__ai_agent_quickstart_quickstart", + "target": "documentation_bootstrap__ai_agent_quickstart_dexie_where" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "2. Critical Rules", + "weight": 1.0, + "source": "documentation_bootstrap__ai_agent_quickstart_quickstart", + "target": "documentation_bootstrap__ai_agent_quickstart_patch_id_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "4. Svelte 5 Runes Mode", + "weight": 1.0, + "source": "documentation_bootstrap__ai_agent_quickstart_quickstart", + "target": "documentation_bootstrap__ai_agent_quickstart_svelte5_patterns" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": "10. Reading Order", + "weight": 1.0, + "source": "documentation_bootstrap__ai_agent_quickstart_quickstart", + "target": "documentation_guide__ae_api_v3_api_guide" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/README__Docs_Index.md", + "source_location": "1) First Read", + "weight": 1.0, + "source": "documentation_readme__docs_index_docs_index", + "target": "documentation_bootstrap__ai_agent_quickstart_quickstart" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "GEMINI.md", + "source_location": null, + "weight": 1.0, + "source": "aether_app_sveltekit_gemini_reactivity_patterns", + "target": "documentation_bootstrap__ai_agent_quickstart_svelte5_patterns" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GEMINI__Svelte_and_Me.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_gemini__svelte_async_await_rule", + "target": "documentation_bootstrap__ai_agent_quickstart_svelte5_patterns" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/BOOTSTRAP__AI_Agent_Quickstart.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_bootstrap__ai_agent_quickstart_dexie_where", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Module 2: Bulletin Board", + "weight": 1.0, + "source": "documentation_client__idaa_idaa_architecture", + "target": "documentation_client__idaa_bb_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "State Management", + "weight": 1.0, + "source": "documentation_client__idaa_idaa_architecture", + "target": "documentation_client__idaa_idaa_stores" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Iframe Integration", + "weight": 1.0, + "source": "documentation_client__idaa_idaa_architecture", + "target": "documentation_client__idaa_iframe_integration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Module 5: Jitsi Reports", + "weight": 1.0, + "source": "documentation_client__idaa_idaa_architecture", + "target": "documentation_client__idaa_jitsi_reports" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Authentication: Novi UUID System", + "weight": 1.0, + "source": "documentation_client__idaa_idaa_architecture", + "target": "documentation_client__idaa_novi_verification" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Module 3: Recovery Meetings", + "weight": 1.0, + "source": "documentation_client__idaa_idaa_architecture", + "target": "documentation_client__idaa_recovery_meetings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Identity Linkage", + "weight": 1.0, + "source": "documentation_client__idaa_idaa_architecture", + "target": "documentation_client__idaa_triple_linkage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/README__Docs_Index.md", + "source_location": "4) Module Docs - IDAA", + "weight": 1.0, + "source": "documentation_readme__docs_index_docs_index", + "target": "documentation_client__idaa_idaa_architecture" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/CLIENT__IDAA_and_customized_mods.md", + "source_location": "Full API spec: GUIDE__AE_API_V3_for_Frontend.md \u00a712", + "weight": 1.0, + "source": "documentation_client__idaa_novi_verification", + "target": "documentation_guide__ae_api_v3_novi_verify_endpoint" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GEMINI__Svelte_and_Me.md", + "source_location": "1. Async/Await", + "weight": 1.0, + "source": "documentation_gemini__svelte_and_me_svelte5_learnings", + "target": "documentation_gemini__svelte_async_await_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GEMINI__Svelte_and_Me.md", + "source_location": "5. Safe Property Binding", + "weight": 1.0, + "source": "documentation_gemini__svelte_and_me_svelte5_learnings", + "target": "documentation_gemini__svelte_bindable_init_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "1. Authentication", + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_api_guide", + "target": "documentation_guide__ae_api_v3_auth_headers" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "2. Bootstrapping", + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_api_guide", + "target": "documentation_guide__ae_api_v3_bootstrap_handshake" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "3.C. *_json serialization", + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_api_guide", + "target": "documentation_guide__ae_api_v3_json_serialization" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "10. Event Exhibit Tracking Export", + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_api_guide", + "target": "documentation_guide__ae_api_v3_leads_export" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "4. V3 Uniform Lookup System", + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_api_guide", + "target": "documentation_guide__ae_api_v3_lookup_system" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": "12. IDAA Novi Verification", + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_api_guide", + "target": "documentation_guide__ae_api_v3_novi_verify_endpoint" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend_websockets.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_websockets_ws_guide", + "target": "documentation_guide__ae_api_v3_api_guide" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__Development.md", + "source_location": "5. Key Documentation", + "weight": 1.0, + "source": "documentation_guide__development_dev_sop", + "target": "documentation_guide__ae_api_v3_api_guide" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_bootstrap_handshake", + "target": "aether_app_sveltekit_gemini_bootstrap_paradox" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend_websockets.md", + "source_location": "1. Key Improvements", + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_websockets_ws_guide", + "target": "documentation_guide__ae_api_v3_websockets_ws_granular_routing" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend_websockets.md", + "source_location": "3. The V3 Message Schema", + "weight": 1.0, + "source": "documentation_guide__ae_api_v3_websockets_ws_guide", + "target": "documentation_guide__ae_api_v3_websockets_ws_message_schema" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_Events_Badges_Onsite.md", + "source_location": "Epson ColorWorks C3500", + "weight": 1.0, + "source": "documentation_guide__ae_events_badges_onsite_badge_printing", + "target": "documentation_guide__ae_events_badges_onsite_epson_c3500" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_Events_Badges_Onsite.md", + "source_location": "Zebra ZC10L", + "weight": 1.0, + "source": "documentation_guide__ae_events_badges_onsite_badge_printing", + "target": "documentation_guide__ae_events_badges_onsite_zebra_zc10l" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_Events_Onsite_Runbook.md", + "source_location": "Badge Printing - see GUIDE__AE_Events_Badges_Onsite.md", + "weight": 1.0, + "source": "documentation_guide__ae_events_onsite_runbook_onsite_ops", + "target": "documentation_guide__ae_events_badges_onsite_badge_printing" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_Events_Onsite_Runbook.md", + "source_location": "Speaker Ready Room", + "weight": 1.0, + "source": "documentation_guide__ae_events_onsite_runbook_onsite_ops", + "target": "documentation_guide__ae_events_onsite_runbook_srr_workflow" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": "3. The AE_Firefly Theme", + "weight": 1.0, + "source": "documentation_guide__ae_ui_style_guidelines_style_guide", + "target": "documentation_guide__ae_ui_style_ae_firefly_theme" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": "2. Technical Stack Mandates", + "weight": 1.0, + "source": "documentation_guide__ae_ui_style_guidelines_style_guide", + "target": "documentation_guide__ae_ui_style_skeleton_v4_mandate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": "4. Color Token Rules", + "weight": 1.0, + "source": "documentation_guide__ae_ui_style_guidelines_style_guide", + "target": "documentation_guide__ae_ui_style_token_rules" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__AE_UI_Style_Guidelines.md", + "source_location": "9. Accessibility", + "weight": 1.0, + "source": "documentation_guide__ae_ui_style_guidelines_style_guide", + "target": "documentation_guide__ae_ui_style_wcag_accessibility" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/README__Docs_Index.md", + "source_location": "2) Core Guides", + "weight": 1.0, + "source": "documentation_readme__docs_index_docs_index", + "target": "documentation_guide__ae_ui_style_guidelines_style_guide" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__Development.md", + "source_location": "6. Inline Field Editing", + "weight": 1.0, + "source": "documentation_guide__development_dev_sop", + "target": "documentation_guide__development_inline_field_editor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__Development.md", + "source_location": "1. Verification", + "weight": 1.0, + "source": "documentation_guide__development_dev_sop", + "target": "documentation_guide__development_svelte_check_mandate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__Development.md", + "source_location": "7. URL Parameters", + "weight": 1.0, + "source": "documentation_guide__development_dev_sop", + "target": "documentation_guide__development_url_params" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/README__Docs_Index.md", + "source_location": "2) Core Guides", + "weight": 1.0, + "source": "documentation_readme__docs_index_docs_index", + "target": "documentation_guide__development_dev_sop" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "Bootstrap Race: Account-scoped Loads", + "weight": 1.0, + "source": "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_account_id_gate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "SvelteKit Layout Hierarchy", + "weight": 1.0, + "source": "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_auth_gate_layout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "IDB Sort: build_tmp_sort Pattern", + "weight": 1.0, + "source": "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_build_tmp_sort" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "Async Functions Called from $effect", + "weight": 1.0, + "source": "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_effect_guard_loop" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "Critical Discovery (2026-02-26)", + "weight": 1.0, + "source": "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_try_cache_bug" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": "The untrack() Reactive-Tracking Trap", + "weight": 1.0, + "source": "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "target": "documentation_guide__sveltekit2_svelte5_dexiejs_untrack_trap" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.75, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md", + "source_location": null, + "weight": 1.0, + "source": "documentation_guide__sveltekit2_svelte5_dexiejs_account_id_gate", + "target": "aether_app_sveltekit_gemini_bootstrap_paradox" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 65", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_badge_type_list" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 197", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_cfg_json" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 296", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_controls_cfg" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 428", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_cross_browser_print" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 118", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_duplex_field" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 5", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_event_badge_template" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 134", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_external_css" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 178", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_layout_codes" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 384", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badge_templates_print_layout_arch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badge_Templates.md", + "source_location": "line 477", + "weight": 1.0, + "source": "documentation_module__ae_events_badge_templates_badge_template_module", + "target": "documentation_module__ae_events_badges_badges_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 13", + "weight": 1.0, + "source": "documentation_module__ae_events_badges_badges_module", + "target": "documentation_module__ae_events_badge_templates_event_badge_template" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 67", + "weight": 0.85, + "source": "documentation_module__ae_events_badges_attendee_self_service", + "target": "documentation_module__ae_events_badge_templates_controls_cfg" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 57", + "weight": 1.0, + "source": "documentation_module__ae_events_badges_badges_module", + "target": "documentation_module__ae_events_badges_access_control" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 11", + "weight": 1.0, + "source": "documentation_module__ae_events_badges_badges_module", + "target": "documentation_module__ae_events_badges_event_badge" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 48", + "weight": 1.0, + "source": "documentation_module__ae_events_badges_badges_module", + "target": "documentation_module__ae_events_badges_external_system_integration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 24", + "weight": 1.0, + "source": "documentation_module__ae_events_badges_badges_module", + "target": "documentation_module__ae_events_badges_override_fields_pattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Badges.md", + "source_location": "line 122", + "weight": 1.0, + "source": "documentation_module__ae_events_badges_badges_module", + "target": "documentation_module__ae_events_badges_print_tracking" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 42", + "weight": 1.0, + "source": "documentation_todo__agents_badges_followups", + "target": "documentation_module__ae_events_badges_badges_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 160", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_event_exhibit_tracking", + "target": "documentation_module__ae_events_badges_event_badge" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Config_Menu.md", + "source_location": "line 1", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_config_menu_config_menu", + "target": "documentation_module__ae_events_launcher_launcher_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 23", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_launcher_module", + "target": "documentation_module__ae_events_launcher_display_views" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 43", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_launcher_module", + "target": "documentation_module__ae_events_launcher_download_priority" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 61", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_launcher_module", + "target": "documentation_module__ae_events_launcher_native_native_integration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 10", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_launcher_module", + "target": "documentation_module__ae_events_launcher_operational_modes" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher.md", + "source_location": "line 35", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_launcher_module", + "target": "documentation_module__ae_events_launcher_sync_engine" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 106", + "weight": 0.85, + "source": "documentation_module__ae_events_presentation_management_object_hierarchy", + "target": "documentation_module__ae_events_launcher_launcher_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Config_Menu.md", + "source_location": "line 21", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_config_menu_config_menu", + "target": "documentation_module__ae_events_launcher_config_menu_section_expansion" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Config_Menu.md", + "source_location": "line 13", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_config_menu_config_menu", + "target": "documentation_module__ae_events_launcher_config_menu_visibility_modes" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 261", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_native_integration", + "target": "documentation_module__ae_events_launcher_native_applescript_hardened" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 39", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_native_integration", + "target": "documentation_module__ae_events_launcher_native_electron_relay" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 68", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_native_integration", + "target": "documentation_module__ae_events_launcher_native_hashed_cache" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 147", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_native_integration", + "target": "documentation_module__ae_events_launcher_native_ipc_whitelist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 197", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_native_integration", + "target": "documentation_module__ae_events_launcher_native_launch_profiles" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 85", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_native_integration", + "target": "documentation_module__ae_events_launcher_native_safe_handover" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 22", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_native_integration", + "target": "documentation_module__ae_events_launcher_native_three_layer_bridge" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 53", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_native_integration", + "target": "documentation_module__ae_events_launcher_native_zero_config_lifecycle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 36", + "weight": 1.0, + "source": "documentation_todo__agents_launcher_wallpaper_reliability", + "target": "documentation_module__ae_events_launcher_native_native_integration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 39", + "weight": 1.0, + "source": "documentation_module__ae_events_launcher_native_three_layer_bridge", + "target": "documentation_module__ae_events_launcher_native_electron_relay" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md", + "source_location": "line 215", + "weight": 0.85, + "source": "documentation_module__ae_events_launcher_native_launch_profiles", + "target": "documentation_module__ae_events_launcher_native_applescript_hardened" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 51", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_leads_module", + "target": "documentation_module__ae_events_leads_allow_tracking" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 222", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_leads_module", + "target": "documentation_module__ae_events_leads_capture_identity" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 139", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_leads_module", + "target": "documentation_module__ae_events_leads_event_exhibit" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 155", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_leads_module", + "target": "documentation_module__ae_events_leads_event_exhibit_tracking" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 211", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_leads_module", + "target": "documentation_module__ae_events_leads_pwa_offline" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 91", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_leads_module", + "target": "documentation_module__ae_events_leads_qr_scan_modes" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 236", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_leads_module", + "target": "documentation_module__ae_events_leads_soft_delete_reenable" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Leads.md", + "source_location": "line 252", + "weight": 1.0, + "source": "documentation_module__ae_events_leads_leads_module", + "target": "documentation_module__ae_events_leads_stripe_payment" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 67", + "weight": 1.0, + "source": "documentation_module__ae_events_presentation_management_pres_mgmt_module", + "target": "documentation_module__ae_events_presentation_management_client_setup_variation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 45", + "weight": 1.0, + "source": "documentation_module__ae_events_presentation_management_pres_mgmt_module", + "target": "documentation_module__ae_events_presentation_management_file_attachment_levels" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 87", + "weight": 1.0, + "source": "documentation_module__ae_events_presentation_management_pres_mgmt_module", + "target": "documentation_module__ae_events_presentation_management_mod_pres_mgmt_json" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md", + "source_location": "line 11", + "weight": 1.0, + "source": "documentation_module__ae_events_presentation_management_pres_mgmt_module", + "target": "documentation_module__ae_events_presentation_management_object_hierarchy" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.65, + "source_file": "documentation/MODULE__AE_IDAA_Recovery_Meetings.md", + "source_location": "line 6", + "weight": 0.65, + "source": "documentation_module__ae_idaa_recovery_meetings_events_lib_reuse", + "target": "documentation_module__ae_events_presentation_management_pres_mgmt_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 8", + "weight": 1.0, + "source": "documentation_todo__agents_lci_pres_mgmt_restoration", + "target": "documentation_module__ae_events_presentation_management_pres_mgmt_module" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 237", + "weight": 0.85, + "source": "documentation_reference__common_agent_mistakes_conditional_sync_gate", + "target": "documentation_module__ae_events_presentation_management_mod_pres_mgmt_json" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_IDAA_Archives.md", + "source_location": "line 22", + "weight": 1.0, + "source": "documentation_module__ae_idaa_archives_idaa_archives_module", + "target": "documentation_module__ae_idaa_archives_security_requirement" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_IDAA_Archives.md", + "source_location": "line 38", + "weight": 1.0, + "source": "documentation_module__ae_idaa_archives_idaa_archives_module", + "target": "documentation_reference__common_agent_mistakes_idaa_public_exposure" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_IDAA_Bulletin_Board.md", + "source_location": "line 25", + "weight": 0.95, + "source": "documentation_module__ae_idaa_bulletin_board_sev1_privacy", + "target": "documentation_module__ae_idaa_archives_security_requirement" + }, + { + "relation": "rationale_for", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 14", + "weight": 0.95, + "source": "documentation_reference__common_agent_mistakes_idaa_public_exposure", + "target": "documentation_module__ae_idaa_archives_security_requirement" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_IDAA_Bulletin_Board.md", + "source_location": "line 25", + "weight": 1.0, + "source": "documentation_module__ae_idaa_bulletin_board_idaa_bb_module", + "target": "documentation_module__ae_idaa_bulletin_board_sev1_privacy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_IDAA_Bulletin_Board.md", + "source_location": "line 38", + "weight": 1.0, + "source": "documentation_module__ae_idaa_bulletin_board_idaa_bb_module", + "target": "documentation_reference__common_agent_mistakes_idaa_public_exposure" + }, + { + "relation": "rationale_for", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 14", + "weight": 0.95, + "source": "documentation_reference__common_agent_mistakes_idaa_public_exposure", + "target": "documentation_module__ae_idaa_bulletin_board_sev1_privacy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_IDAA_Recovery_Meetings.md", + "source_location": "line 6", + "weight": 1.0, + "source": "documentation_module__ae_idaa_recovery_meetings_recovery_meetings_module", + "target": "documentation_module__ae_idaa_recovery_meetings_events_lib_reuse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_IDAA_Recovery_Meetings.md", + "source_location": "line 40", + "weight": 1.0, + "source": "documentation_module__ae_idaa_recovery_meetings_recovery_meetings_module", + "target": "documentation_reference__common_agent_mistakes_idaa_public_exposure" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_IDAA_Video_Conferences.md", + "source_location": "line 19", + "weight": 1.0, + "source": "documentation_module__ae_idaa_video_conferences_video_conf_module", + "target": "documentation_module__ae_idaa_video_conferences_breakout_link" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_IDAA_Video_Conferences.md", + "source_location": "line 7", + "weight": 1.0, + "source": "documentation_module__ae_idaa_video_conferences_video_conf_module", + "target": "documentation_module__ae_idaa_video_conferences_jitsi" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 68", + "weight": 1.0, + "source": "documentation_module__ae_journals_journals_module", + "target": "documentation_module__ae_journals_access_privacy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 39", + "weight": 1.0, + "source": "documentation_module__ae_journals_journals_module", + "target": "documentation_module__ae_journals_config_map_config_map" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 46", + "weight": 1.0, + "source": "documentation_module__ae_journals_journals_module", + "target": "documentation_module__ae_journals_e2ee_encryption" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 54", + "weight": 1.0, + "source": "documentation_module__ae_journals_journals_module", + "target": "documentation_module__ae_journals_security_limitations" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 82", + "weight": 1.0, + "source": "documentation_module__ae_journals_journals_module", + "target": "documentation_todo__agents_journal_entry_followups" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 62", + "weight": 0.95, + "source": "documentation_module__ae_journals_config_map_encryption_behavior", + "target": "documentation_module__ae_journals_e2ee_encryption" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_Journals.md", + "source_location": "line 54", + "weight": 0.95, + "source": "documentation_module__ae_journals_security_limitations", + "target": "documentation_todo__agents_journal_entry_followups" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 62", + "weight": 1.0, + "source": "documentation_module__ae_journals_config_map_config_map", + "target": "documentation_module__ae_journals_config_map_encryption_behavior" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 40", + "weight": 1.0, + "source": "documentation_module__ae_journals_config_map_config_map", + "target": "documentation_module__ae_journals_config_map_entry_level_settings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 21", + "weight": 1.0, + "source": "documentation_module__ae_journals_config_map_config_map", + "target": "documentation_module__ae_journals_config_map_journal_level_settings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/MODULE__AE_Journals_Config_Map.md", + "source_location": "line 8", + "weight": 1.0, + "source": "documentation_module__ae_journals_config_map_config_map", + "target": "documentation_module__ae_journals_config_map_module_level_settings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 42", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_badges_followups" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 88", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_idb_sort_migration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 101", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_journal_entry_followups" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 36", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_launcher_wallpaper_reliability" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 8", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_lci_pres_mgmt_restoration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 127", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_service_worker_fix" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 67", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_site_passcode_jwt_migration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 80", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_svelte5_store_migration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 58", + "weight": 1.0, + "source": "documentation_todo__agents_active_tasks", + "target": "documentation_todo__agents_v3_crud_migration_complete" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 199", + "weight": 0.85, + "source": "documentation_reference__common_agent_mistakes_shadow_field_bypass", + "target": "documentation_todo__agents_lci_pres_mgmt_restoration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/TODO__Agents.md", + "source_location": "line 127", + "weight": 1.0, + "source": "documentation_todo__agents_service_worker_fix", + "target": "documentation_reference__common_agent_mistakes_incomplete_cache_clearing" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 32", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_coarse_store_effect_loops" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 231", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_conditional_sync_gate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 41", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_dexie_get_string_id" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 14", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_idaa_public_exposure" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 85", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_idb_version_bump" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 142", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_incomplete_cache_clearing" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 23", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_object_id_in_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 250", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_optional_param_svelte" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 66", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_pre_stringify_json" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 195", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_shadow_field_bypass" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/REFERENCE__Common_Agent_Mistakes.md", + "source_location": "line 213", + "weight": 1.0, + "source": "documentation_reference__common_agent_mistakes_mistake_catalog", + "target": "documentation_reference__common_agent_mistakes_swr_await_stale" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": null, + "weight": 0.85, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "target": "archive_project__ae_events_badges_config_cleanup_document" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 165", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_config_ui_page" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 320", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_lock_config_removal" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 44", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_naming_convention" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 143", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 62", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_pressmgmt_remote_cfg" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 155", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_sync_config_function" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 7", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_document", + "target": "documentation_project__stores_svelte5_migration_document" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 320", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_lock_config_removal", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_pressmgmt_remote_cfg" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 44", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_naming_convention", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_pressmgmt_remote_cfg" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 143", + "weight": 0.95, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store", + "target": "documentation_project__stores_svelte5_migration_persisted_state_pattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md", + "source_location": "line 185", + "weight": 1.0, + "source": "documentation_project__ae_events_pressmgmt_config_cleanup_poc_settings", + "target": "documentation_project__ae_events_pressmgmt_config_cleanup_config_ui_page" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Obj_Field_Editor_New.md", + "source_location": "line 38", + "weight": 1.0, + "source": "documentation_project__ae_obj_field_editor_new_document", + "target": "documentation_project__ae_obj_field_editor_new_element_ae_obj_field_editor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 16", + "weight": 1.0, + "source": "documentation_project__ae_site_passcode_security_document", + "target": "documentation_project__ae_site_passcode_security_access_code_kv_json_exposure" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 48", + "weight": 1.0, + "source": "documentation_project__ae_site_passcode_security_document", + "target": "documentation_project__ae_site_passcode_security_api_verified_auth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 122", + "weight": 1.0, + "source": "documentation_project__ae_site_passcode_security_document", + "target": "documentation_project__ae_site_passcode_security_authenticate_passcode_endpoint" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 70", + "weight": 1.0, + "source": "documentation_project__ae_site_passcode_security_document", + "target": "documentation_project__ae_site_passcode_security_role_ttl" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 30", + "weight": 1.0, + "source": "documentation_project__ae_site_passcode_security_document", + "target": "documentation_project__ae_site_passcode_security_threat_model" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 16", + "weight": 1.0, + "source": "documentation_project__ae_site_passcode_security_access_code_kv_json_exposure", + "target": "documentation_project__ae_site_passcode_security_api_verified_auth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md", + "source_location": "line 70", + "weight": 1.0, + "source": "documentation_project__ae_site_passcode_security_api_verified_auth", + "target": "documentation_project__ae_site_passcode_security_role_ttl" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Documentation_Refresh_and_Archive_Plan_2026.md", + "source_location": "line 32", + "weight": 1.0, + "source": "documentation_project__documentation_refresh_document", + "target": "documentation_project__documentation_refresh_archive_strategy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Documentation_Refresh_and_Archive_Plan_2026.md", + "source_location": "line 19", + "weight": 1.0, + "source": "documentation_project__documentation_refresh_document", + "target": "documentation_project__documentation_refresh_module_coverage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Documentation_Refresh_and_Archive_Plan_2026.md", + "source_location": "line 8", + "weight": 1.0, + "source": "documentation_project__documentation_refresh_document", + "target": "documentation_project__documentation_refresh_naming_standard" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/PROJECT__Documentation_Refresh_and_Archive_Plan_2026.md", + "source_location": null, + "weight": 0.85, + "source": "documentation_project__documentation_refresh_archive_strategy", + "target": "archive_project__ae_access_control_ux_document" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 38", + "weight": 1.0, + "source": "documentation_project__idaa_stores_svelte5_migration_document", + "target": "documentation_project__idaa_stores_svelte5_migration_consumer_inventory" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 9", + "weight": 1.0, + "source": "documentation_project__idaa_stores_svelte5_migration_document", + "target": "documentation_project__idaa_stores_svelte5_migration_idaa_loc_store" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 228", + "weight": 1.0, + "source": "documentation_project__idaa_stores_svelte5_migration_document", + "target": "documentation_project__idaa_stores_svelte5_migration_risk_register" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 99", + "weight": 1.0, + "source": "documentation_project__idaa_stores_svelte5_migration_document", + "target": "documentation_project__idaa_stores_svelte5_migration_safety_rules" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 14", + "weight": 1.0, + "source": "documentation_project__idaa_stores_svelte5_migration_document", + "target": "documentation_project__stores_svelte5_migration_document" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 17", + "weight": 1.0, + "source": "documentation_project__stores_svelte5_migration_idaa_access_denied_bug", + "target": "documentation_project__idaa_stores_svelte5_migration_document" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": null, + "weight": 0.95, + "source": "documentation_project__idaa_stores_svelte5_migration_idaa_loc_store", + "target": "documentation_project__stores_svelte5_migration_persisted_state_pattern" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__IDAA_Stores_Svelte5_Migration_2026.md", + "source_location": "line 99", + "weight": 1.0, + "source": "documentation_project__idaa_stores_svelte5_migration_safety_rules", + "target": "documentation_project__idaa_stores_svelte5_migration_idaa_loc_store" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 52", + "weight": 1.0, + "source": "documentation_project__stores_svelte5_migration_document", + "target": "documentation_project__stores_svelte5_migration_ae_loc_remaining" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 24", + "weight": 1.0, + "source": "documentation_project__stores_svelte5_migration_document", + "target": "documentation_project__stores_svelte5_migration_events_module_complete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 66", + "weight": 1.0, + "source": "documentation_project__stores_svelte5_migration_document", + "target": "documentation_project__stores_svelte5_migration_persisted_state_pattern" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 17", + "weight": 1.0, + "source": "documentation_project__stores_svelte5_migration_idaa_access_denied_bug", + "target": "documentation_project__stores_svelte5_migration_document" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 106", + "weight": 0.95, + "source": "archive_project__ae_events_badges_config_cleanup_badges_loc_store", + "target": "documentation_project__stores_svelte5_migration_persisted_state_pattern" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md", + "source_location": "line 79", + "weight": 1.0, + "source": "documentation_project__stores_svelte5_migration_version_stamping_bug", + "target": "documentation_project__stores_svelte5_migration_persisted_state_pattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": "line 436", + "weight": 1.0, + "source": "documentation_proposal__ae_ui_ux_future_ideas_document", + "target": "documentation_proposal__ae_ui_ux_future_ideas_confirmed_meetings_filter" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": "line 228", + "weight": 1.0, + "source": "documentation_proposal__ae_ui_ux_future_ideas_document", + "target": "documentation_proposal__ae_ui_ux_future_ideas_live_now_indicator" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": "line 10", + "weight": 1.0, + "source": "documentation_proposal__ae_ui_ux_future_ideas_document", + "target": "documentation_proposal__ae_ui_ux_future_ideas_recovery_meetings_ux" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/PROPOSAL__AE_UI_UX_Future_Ideas.md", + "source_location": "line 283", + "weight": 1.0, + "source": "documentation_proposal__ae_ui_ux_future_ideas_favorites_server_side", + "target": "documentation_proposal__ae_ui_ux_future_ideas_recovery_meetings_ux" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 138", + "weight": 1.0, + "source": "archive_project__ae_access_control_ux_document", + "target": "archive_project__ae_access_control_ux_ae_auth_error_store" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 148", + "weight": 1.0, + "source": "archive_project__ae_access_control_ux_document", + "target": "archive_project__ae_access_control_ux_element_access_denied" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 52", + "weight": 1.0, + "source": "archive_project__ae_access_control_ux_document", + "target": "archive_project__ae_access_control_ux_idaa_novi_uuid_gate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 33", + "weight": 1.0, + "source": "archive_project__ae_access_control_ux_document", + "target": "archive_project__ae_access_control_ux_session_expired_banner" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Access_Control_UX.md", + "source_location": "line 186", + "weight": 1.0, + "source": "archive_project__ae_access_control_ux_ae_auth_error_store", + "target": "archive_project__ae_access_control_ux_session_expired_banner" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Docker_CI_BuildKit_implement.md", + "source_location": "line 14", + "weight": 1.0, + "source": "archive_project__ae_docker_ci_buildkit_document", + "target": "archive_project__ae_docker_ci_buildkit_multistage_dockerfile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 106", + "weight": 1.0, + "source": "archive_project__ae_events_badges_config_cleanup_document", + "target": "archive_project__ae_events_badges_config_cleanup_badges_loc_store" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 36", + "weight": 1.0, + "source": "archive_project__ae_events_badges_config_cleanup_document", + "target": "archive_project__ae_events_badges_config_cleanup_badges_remote_cfg" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 57", + "weight": 1.0, + "source": "archive_project__ae_events_badges_config_cleanup_document", + "target": "archive_project__ae_events_badges_config_cleanup_edit_permissions" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md", + "source_location": "line 206", + "weight": 1.0, + "source": "archive_project__ae_events_badges_config_cleanup_document", + "target": "archive_project__ae_events_badges_config_cleanup_passcode_security" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 57", + "weight": 0.85, + "source": "archive_project__ae_events_badges_review_print_document", + "target": "archive_project__ae_events_badges_config_cleanup_document" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 70", + "weight": 1.0, + "source": "archive_project__ae_events_badges_review_print_document", + "target": "archive_project__ae_events_badges_review_print_auto_scaling" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 140", + "weight": 1.0, + "source": "archive_project__ae_events_badges_review_print_document", + "target": "archive_project__ae_events_badges_review_print_chrome_pdf_issue" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 25", + "weight": 1.0, + "source": "archive_project__ae_events_badges_review_print_document", + "target": "archive_project__ae_events_badges_review_print_email_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Review_Print.md", + "source_location": "line 18", + "weight": 1.0, + "source": "archive_project__ae_events_badges_review_print_document", + "target": "archive_project__ae_events_badges_review_print_two_flows" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3_detail.md", + "source_location": null, + "weight": 1.0, + "source": "archive_project__ae_events_exhibitor_leads_v3_detail_document", + "target": "archive_project__ae_events_exhibitor_leads_v3_document" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3.md", + "source_location": "line 19", + "weight": 1.0, + "source": "archive_project__ae_events_exhibitor_leads_v3_document", + "target": "archive_project__ae_events_exhibitor_leads_v3_four_tabs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3.md", + "source_location": "line 36", + "weight": 1.0, + "source": "archive_project__ae_events_exhibitor_leads_v3_document", + "target": "archive_project__ae_events_exhibitor_leads_v3_license_model" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3.md", + "source_location": null, + "weight": 0.95, + "source": "archive_project__ae_events_exhibitor_leads_v3_four_tabs", + "target": "archive_project__ae_events_exhibitor_leads_v3_detail_exhibit_manage_tab" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Exhibitor_Leads_v3_detail.md", + "source_location": "line 107", + "weight": 1.0, + "source": "archive_project__ae_events_exhibitor_leads_v3_detail_document", + "target": "archive_project__ae_events_exhibitor_leads_v3_detail_exhibit_manage_tab" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Zebra_Hardware_Test_Day.md", + "source_location": "line 197", + "weight": 1.0, + "source": "archive_project__ae_events_zebra_hardware_test_day_zebra_zc10l_badge_printing", + "target": "archive_project__ae_events_zebra_hardware_test_day_badge_print_controls" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Zebra_Hardware_Test_Day.md", + "source_location": "line 102", + "weight": 0.9, + "source": "archive_project__ae_events_zebra_hardware_test_day_zebra_zc10l_badge_printing", + "target": "archive_project__ae_events_zebra_hardware_test_day_print_tracking" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Events_Zebra_Hardware_Test_Day.md", + "source_location": "line 34", + "weight": 1.0, + "source": "archive_project__ae_events_zebra_hardware_test_day_zebra_zc10l_badge_printing", + "target": "archive_project__ae_events_zebra_hardware_test_day_pvc_badge_layout" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.75, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md", + "source_location": null, + "weight": 0.7, + "source": "archive_todo__agents__archive_2026_06_axonius_dc_badges", + "target": "archive_project__ae_events_zebra_hardware_test_day_zebra_zc10l_badge_printing" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": null, + "weight": 0.7, + "source": "archive_reference__legacy_aether_api_pydantic_objects_event_badge_base_model", + "target": "archive_project__ae_events_zebra_hardware_test_day_print_tracking" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Firefly_Theme_Repair_SUMMARY.md", + "source_location": "line 25", + "weight": 1.0, + "source": "archive_project__ae_firefly_theme_repair_summary_firefly_theme_repair", + "target": "archive_project__ae_firefly_theme_repair_summary_ae_app_3x_llm_branch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Firefly_Theme_Repair_SUMMARY.md", + "source_location": "line 16", + "weight": 1.0, + "source": "archive_project__ae_firefly_theme_repair_summary_firefly_theme_repair", + "target": "archive_project__ae_firefly_theme_repair_summary_element_modal_v1" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Firefly_Theme_Repair_SUMMARY.md", + "source_location": "line 8", + "weight": 1.0, + "source": "archive_project__ae_firefly_theme_repair_summary_firefly_theme_repair", + "target": "archive_project__ae_firefly_theme_repair_summary_firefly_css_files" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Object_Field_Editor_V3_upgrade.md", + "source_location": "line 43", + "weight": 1.0, + "source": "archive_project__ae_object_field_editor_v3_upgrade_field_editor_v3", + "target": "archive_project__ae_object_field_editor_v3_upgrade_crud_v1_v2_retirement" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Object_Field_Editor_V3_upgrade.md", + "source_location": "line 17", + "weight": 0.9, + "source": "archive_project__ae_object_field_editor_v3_upgrade_field_editor_v3", + "target": "archive_project__ae_object_field_editor_v3_upgrade_svelte5_runes_pattern" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__Use_AE_API_V3_CRUD_upgrade.md", + "source_location": null, + "weight": 0.8, + "source": "archive_project__use_ae_api_v3_crud_upgrade_crud_v3_migration", + "target": "archive_project__ae_object_field_editor_v3_upgrade_field_editor_v3" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/archive/PROJECT__AE_Object_Field_Editor_V3_upgrade.md", + "source_location": null, + "weight": 0.8, + "source": "archive_project__ae_object_field_editor_v3_upgrade_crud_v1_v2_retirement", + "target": "archive_reference__legacy_aether_components_element_ae_obj_field_editor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Pres_Mgmt_Session_view_refactor_2026-02.md", + "source_location": "line 57", + "weight": 0.8, + "source": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_session_cold_start_bug", + "target": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_blocking_hydration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Pres_Mgmt_Session_view_refactor_2026-02.md", + "source_location": "line 12", + "weight": 1.0, + "source": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_session_cold_start_bug", + "target": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_microtask_yield" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Pres_Mgmt_Session_view_refactor_2026-02.md", + "source_location": "line 8", + "weight": 1.0, + "source": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_session_cold_start_bug", + "target": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_try_cache_fix" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__AE_Pres_Mgmt_Session_view_refactor_2026-02.md", + "source_location": null, + "weight": 0.7, + "source": "archive_project__ae_pres_mgmt_session_view_refactor_2026_02_microtask_yield", + "target": "archive_reference__legacy_performance_guidelines_swr_non_blocking_load_pattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 87", + "weight": 0.9, + "source": "archive_project__ae_style_review_2026_03_style_review_project", + "target": "archive_project__ae_style_review_2026_03_dark_mode_architecture" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 39", + "weight": 0.9, + "source": "archive_project__ae_style_review_2026_03_style_review_project", + "target": "archive_project__ae_style_review_2026_03_dual_generation_problem" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 119", + "weight": 1.0, + "source": "archive_project__ae_style_review_2026_03_style_review_project", + "target": "archive_project__ae_style_review_2026_03_fontawesome_to_lucide_migration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": "line 104", + "weight": 1.0, + "source": "archive_project__ae_style_review_2026_03_style_review_project", + "target": "archive_project__ae_style_review_2026_03_variant_to_preset_migration" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": null, + "weight": 0.8, + "source": "archive_project__ae_style_review_2026_03_style_review_project", + "target": "archive_reference__legacy_ui_component_patterns_ui_component_patterns" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.75, + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md", + "source_location": null, + "weight": 0.6, + "source": "archive_project__ae_style_review_2026_03_fontawesome_to_lucide_migration", + "target": "archive_project__ae_ui_journals_module_update_2026_journals_ui_modernization" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": null, + "weight": 0.8, + "source": "archive_project__ae_ui_journals_module_update_2026_skeleton_v4_token_reference", + "target": "archive_project__ae_style_review_2026_03_variant_to_preset_migration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 53", + "weight": 1.0, + "source": "archive_project__ae_ui_journals_module_update_2026_journals_ui_modernization", + "target": "archive_project__ae_ui_journals_module_update_2026_append_prepend_feature" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 176", + "weight": 1.0, + "source": "archive_project__ae_ui_journals_module_update_2026_journals_ui_modernization", + "target": "archive_project__ae_ui_journals_module_update_2026_decryption_reactivity_loop" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 48", + "weight": 1.0, + "source": "archive_project__ae_ui_journals_module_update_2026_journals_ui_modernization", + "target": "archive_project__ae_ui_journals_module_update_2026_quick_add_feature" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 116", + "weight": 0.9, + "source": "archive_project__ae_ui_journals_module_update_2026_journals_ui_modernization", + "target": "archive_project__ae_ui_journals_module_update_2026_skeleton_v4_token_reference" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": "line 102", + "weight": 1.0, + "source": "archive_project__ae_ui_journals_module_update_2026_journals_ui_modernization", + "target": "archive_project__ae_ui_journals_module_update_2026_untrack_pattern" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/archive/PROJECT__AE_UI_Journals_Module_Update_2026.md", + "source_location": null, + "weight": 0.9, + "source": "archive_project__ae_ui_journals_module_update_2026_untrack_pattern", + "target": "archive_reference__legacy_performance_guidelines_untrack_in_effect_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_combined_front_back_Docker.md", + "source_location": "line 44", + "weight": 1.0, + "source": "archive_project__ae_combined_front_back_docker_unified_docker_orchestration", + "target": "archive_project__ae_combined_front_back_docker_ae_app_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__AE_combined_front_back_Docker.md", + "source_location": "line 14", + "weight": 1.0, + "source": "archive_project__ae_combined_front_back_docker_unified_docker_orchestration", + "target": "archive_project__ae_combined_front_back_docker_internal_networking" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-03.md", + "source_location": "line 16", + "weight": 0.9, + "source": "archive_project__ae_combined_front_back_docker_unified_docker_orchestration", + "target": "archive_todo__agents__archive_2026_03_docker_unified_deploy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__Use_AE_API_V3_CRUD_upgrade.md", + "source_location": "line 104", + "weight": 1.0, + "source": "archive_project__use_ae_api_v3_crud_upgrade_crud_v3_migration", + "target": "archive_project__use_ae_api_v3_crud_upgrade_integer_trap_bug" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROJECT__Use_AE_API_V3_CRUD_upgrade.md", + "source_location": "line 92", + "weight": 1.0, + "source": "archive_project__use_ae_api_v3_crud_upgrade_crud_v3_migration", + "target": "archive_project__use_ae_api_v3_crud_upgrade_permissive_update_mode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROPOSAL__AE_Events_Launcher_Config_Menu_Unified_Vision_v3_1.md", + "source_location": "line 32", + "weight": 1.0, + "source": "archive_proposal__ae_events_launcher_config_menu_unified_vision_v3_1_launcher_config_vision", + "target": "archive_proposal__ae_events_launcher_config_menu_unified_vision_v3_1_vertical_sidebar_modal" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.75, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-05.md", + "source_location": null, + "weight": 0.6, + "source": "archive_todo__agents__archive_2026_05_launcher_force_sync_location", + "target": "archive_proposal__ae_events_launcher_config_menu_unified_vision_v3_1_launcher_config_vision" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROPOSAL__IDAA_Recovery_Meetings_UI_UX_Roadmap_2026.md", + "source_location": "line 14", + "weight": 1.0, + "source": "archive_proposal__idaa_recovery_meetings_ui_ux_roadmap_2026_recovery_meetings_roadmap", + "target": "archive_proposal__idaa_recovery_meetings_ui_ux_roadmap_2026_live_now_badge" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/PROPOSAL__IDAA_Recovery_Meetings_UI_UX_Roadmap_2026.md", + "source_location": "line 7", + "weight": 1.0, + "source": "archive_proposal__idaa_recovery_meetings_ui_ux_roadmap_2026_recovery_meetings_roadmap", + "target": "archive_proposal__idaa_recovery_meetings_ui_ux_roadmap_2026_timezone_conversion" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/README.md", + "source_location": "line 29", + "weight": 0.9, + "source": "archive_readme_archive_index", + "target": "archive_readme_restore_policy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 7", + "weight": 1.0, + "source": "archive_reference__legacy_aether_api_pydantic_objects_legacy_pydantic_models", + "target": "archive_reference__legacy_aether_api_pydantic_objects_account_base_model" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 396", + "weight": 1.0, + "source": "archive_reference__legacy_aether_api_pydantic_objects_legacy_pydantic_models", + "target": "archive_reference__legacy_aether_api_pydantic_objects_event_badge_base_model" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 282", + "weight": 1.0, + "source": "archive_reference__legacy_aether_api_pydantic_objects_legacy_pydantic_models", + "target": "archive_reference__legacy_aether_api_pydantic_objects_event_base_model" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 1128", + "weight": 1.0, + "source": "archive_reference__legacy_aether_api_pydantic_objects_legacy_pydantic_models", + "target": "archive_reference__legacy_aether_api_pydantic_objects_journal_base_model" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 1210", + "weight": 1.0, + "source": "archive_reference__legacy_aether_api_pydantic_objects_legacy_pydantic_models", + "target": "archive_reference__legacy_aether_api_pydantic_objects_journal_entry_base_model" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_API_Pydantic_Objects.md", + "source_location": "line 495", + "weight": 1.0, + "source": "archive_reference__legacy_aether_api_pydantic_objects_legacy_pydantic_models", + "target": "archive_reference__legacy_aether_api_pydantic_objects_person_base_model" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": null, + "weight": 0.7, + "source": "archive_reference__legacy_aether_data_structures_core_standard_fields", + "target": "archive_reference__legacy_aether_api_pydantic_objects_event_base_model" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Components.md", + "source_location": "line 65", + "weight": 1.0, + "source": "archive_reference__legacy_aether_components_legacy_component_reference", + "target": "archive_reference__legacy_aether_components_element_ae_obj_field_editor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Components.md", + "source_location": "line 86", + "weight": 1.0, + "source": "archive_reference__legacy_aether_components_legacy_component_reference", + "target": "archive_reference__legacy_aether_components_object_menu_sort_options" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": "line 7", + "weight": 1.0, + "source": "archive_reference__legacy_aether_data_structures_legacy_data_structures", + "target": "archive_reference__legacy_aether_data_structures_core_standard_fields" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": "line 97", + "weight": 1.0, + "source": "archive_reference__legacy_aether_data_structures_legacy_data_structures", + "target": "archive_reference__legacy_aether_data_structures_dexie_livequery_naming" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": "line 54", + "weight": 1.0, + "source": "archive_reference__legacy_aether_data_structures_legacy_data_structures", + "target": "archive_reference__legacy_aether_data_structures_tmp_sort_fields" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": null, + "weight": 0.8, + "source": "archive_reference__legacy_aether_data_structures_dexie_livequery_naming", + "target": "archive_reference__legacy_performance_guidelines_derived_by_livequery_rule" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/REFERENCE__Legacy_Aether_Data_Structures.md", + "source_location": null, + "weight": 0.8, + "source": "archive_reference__legacy_aether_data_structures_tmp_sort_fields", + "target": "archive_todo__agents__archive_2026_06_build_tmp_sort_rollout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 93", + "weight": 1.0, + "source": "archive_reference__legacy_performance_guidelines_swr_non_blocking_load_pattern", + "target": "archive_reference__legacy_performance_guidelines_derived_by_livequery_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 121", + "weight": 1.0, + "source": "archive_reference__legacy_performance_guidelines_swr_non_blocking_load_pattern", + "target": "archive_reference__legacy_performance_guidelines_livequery_pure_data_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 224", + "weight": 0.8, + "source": "archive_reference__legacy_performance_guidelines_swr_non_blocking_load_pattern", + "target": "archive_reference__legacy_performance_guidelines_log_lvl_guard_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md", + "source_location": "line 193", + "weight": 1.0, + "source": "archive_reference__legacy_performance_guidelines_swr_non_blocking_load_pattern", + "target": "archive_reference__legacy_performance_guidelines_untrack_in_effect_rule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 163", + "weight": 1.0, + "source": "archive_reference__legacy_ui_component_patterns_ui_component_patterns", + "target": "archive_reference__legacy_ui_component_patterns_empty_state_panel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 11", + "weight": 1.0, + "source": "archive_reference__legacy_ui_component_patterns_ui_component_patterns", + "target": "archive_reference__legacy_ui_component_patterns_hero_card_pattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 93", + "weight": 1.0, + "source": "archive_reference__legacy_ui_component_patterns_ui_component_patterns", + "target": "archive_reference__legacy_ui_component_patterns_list_item_card_pattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 287", + "weight": 1.0, + "source": "archive_reference__legacy_ui_component_patterns_ui_component_patterns", + "target": "archive_reference__legacy_ui_component_patterns_modal_usage_flowbite" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": "line 388", + "weight": 1.0, + "source": "archive_reference__legacy_ui_component_patterns_ui_component_patterns", + "target": "archive_reference__legacy_ui_component_patterns_native_select_dark_mode_fix" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.75, + "source_file": "documentation/archive/REFERENCE__Legacy_UI_Component_Patterns.md", + "source_location": null, + "weight": 0.6, + "source": "archive_reference__legacy_ui_component_patterns_modal_usage_flowbite", + "target": "archive_todo__agents__archive_2026_04_modalprops_children_errors" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-03.md", + "source_location": "line 16", + "weight": 1.0, + "source": "archive_todo__agents__archive_2026_03_completed_tasks_march_2026", + "target": "archive_todo__agents__archive_2026_03_docker_unified_deploy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-03.md", + "source_location": "line 11", + "weight": 1.0, + "source": "archive_todo__agents__archive_2026_03_completed_tasks_march_2026", + "target": "archive_todo__agents__archive_2026_03_public_api_secret_key_audit" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-03.md", + "source_location": "line 2", + "weight": 1.0, + "source": "archive_todo__agents__archive_2026_03_completed_tasks_march_2026", + "target": "archive_todo__agents__archive_2026_03_stores_phase_1_2_cleanup" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-04.md", + "source_location": "line 3", + "weight": 0.9, + "source": "archive_todo__agents__archive_2026_04_svelte4_to_5_store_migration_plan", + "target": "archive_todo__agents__archive_2026_03_stores_phase_1_2_cleanup" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-04.md", + "source_location": "line 13", + "weight": 1.0, + "source": "archive_todo__agents__archive_2026_04_svelte4_to_5_store_migration_plan", + "target": "archive_todo__agents__archive_2026_04_idaa_novi_re_auth_bug" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-04.md", + "source_location": null, + "weight": 0.8, + "source": "archive_todo__agents__archive_2026_04_idaa_novi_re_auth_bug", + "target": "archive_todo__agents__archive_2026_05_idaa_random_access_denied_fix" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-05.md", + "source_location": "line 6", + "weight": 1.0, + "source": "archive_todo__agents__archive_2026_05_completed_tasks_may_2026", + "target": "archive_todo__agents__archive_2026_05_api_retry_hardening" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-05.md", + "source_location": "line 23", + "weight": 1.0, + "source": "archive_todo__agents__archive_2026_05_completed_tasks_may_2026", + "target": "archive_todo__agents__archive_2026_05_idaa_random_access_denied_fix" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-05.md", + "source_location": "line 44", + "weight": 1.0, + "source": "archive_todo__agents__archive_2026_05_completed_tasks_may_2026", + "target": "archive_todo__agents__archive_2026_05_launcher_force_sync_location" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.75, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md", + "source_location": null, + "weight": 0.6, + "source": "archive_todo__agents__archive_2026_06_cmsc_charlotte_event", + "target": "archive_todo__agents__archive_2026_06_axonius_dc_badges" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md", + "source_location": "line 61", + "weight": 0.9, + "source": "archive_todo__agents__archive_2026_06_cmsc_charlotte_event", + "target": "archive_todo__agents__archive_2026_06_build_tmp_sort_rollout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md", + "source_location": "line 76", + "weight": 0.9, + "source": "archive_todo__agents__archive_2026_06_cmsc_charlotte_event", + "target": "archive_todo__agents__archive_2026_06_idb_content_version_system" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/app.html", + "source_location": "lines 76-106", + "weight": 1.0, + "source": "src_app_html_sveltekit_entry_point", + "target": "src_app_html_ae_loader_spinner" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/app.html", + "source_location": "line 53", + "weight": 1.0, + "source": "src_app_html_sveltekit_entry_point", + "target": "src_app_html_pwa_manifest" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/app.html", + "source_location": "lines 6-48", + "weight": 1.0, + "source": "src_app_html_sveltekit_entry_point", + "target": "src_app_html_service_worker_suppression" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/README.md", + "source_location": "lines 11-13", + "weight": 1.0, + "source": "ae_archives_readme_archives_module", + "target": "ae_archives_readme_archive_content_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_archives/README.md", + "source_location": "lines 7-9", + "weight": 1.0, + "source": "ae_archives_readme_archives_module", + "target": "ae_archives_readme_archive_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 26-28", + "weight": 1.0, + "source": "idaa_readme_idaa_archives_route", + "target": "ae_archives_readme_archives_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/README.md", + "source_location": "lines 11-13", + "weight": 1.0, + "source": "ae_posts_readme_posts_module", + "target": "ae_posts_readme_post_comment_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_posts/README.md", + "source_location": "lines 7-9", + "weight": 1.0, + "source": "ae_posts_readme_posts_module", + "target": "ae_posts_readme_post_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "line 33", + "weight": 1.0, + "source": "idaa_readme_idaa_bb_route", + "target": "ae_posts_readme_posts_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_sponsorships/README.md", + "source_location": "lines 7-10", + "weight": 1.0, + "source": "ae_sponsorships_readme_sponsorships_module", + "target": "ae_sponsorships_readme_sponsorship_cfg_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/ae_sponsorships/README.md", + "source_location": "lines 12-14", + "weight": 1.0, + "source": "ae_sponsorships_readme_sponsorships_module", + "target": "ae_sponsorships_readme_sponsorship_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/electron/README.md", + "source_location": "lines 37-41", + "weight": 1.0, + "source": "electron_readme_electron_bridge", + "target": "electron_readme_context_bridge_security" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/electron/README.md", + "source_location": "line 10", + "weight": 1.0, + "source": "electron_readme_electron_bridge", + "target": "electron_readme_electron_relay_ts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/electron/README.md", + "source_location": "lines 3-5", + "weight": 1.0, + "source": "electron_readme_electron_bridge", + "target": "electron_readme_event_launcher" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/lib/electron/README.md", + "source_location": "lines 43-50", + "weight": 1.0, + "source": "electron_readme_electron_bridge", + "target": "electron_readme_three_layer_bridge_arch" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "line 4", + "weight": 0.7, + "source": "leads_readme_exhibitor_leads_module", + "target": "electron_readme_event_launcher" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/parent_iframe.html", + "source_location": "lines 45-96", + "weight": 1.0, + "source": "src_parent_iframe_html_ae_iframe_parent", + "target": "src_parent_iframe_html_postmessage_height_sync" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/parent_iframe.html", + "source_location": "lines 3-41", + "weight": 1.0, + "source": "src_parent_iframe_html_ae_iframe_parent", + "target": "src_parent_iframe_html_url_param_routing" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "src/parent_iframe.html", + "source_location": null, + "weight": 0.9, + "source": "src_parent_iframe_html_postmessage_height_sync", + "target": "static_idaa_novi_iframe_archives_postmessage_scroll_sync" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/core/README.md", + "source_location": "lines 9-12", + "weight": 1.0, + "source": "core_readme_core_module", + "target": "core_readme_accounts_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/core/README.md", + "source_location": "lines 14-18", + "weight": 1.0, + "source": "core_readme_core_module", + "target": "core_readme_hosted_files_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/core/README.md", + "source_location": "lines 20-29", + "weight": 1.0, + "source": "core_readme_core_module", + "target": "core_readme_people_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/core/README.md", + "source_location": "lines 31-35", + "weight": 1.0, + "source": "core_readme_core_module", + "target": "core_readme_sites_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/core/README.md", + "source_location": "lines 37-40", + "weight": 1.0, + "source": "core_readme_core_module", + "target": "core_readme_users_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/README.md", + "source_location": "lines 36-37", + "weight": 1.0, + "source": "events_readme_pres_mgmt_module", + "target": "events_readme_event_file_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/README.md", + "source_location": "lines 28-29", + "weight": 1.0, + "source": "events_readme_pres_mgmt_module", + "target": "events_readme_event_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/README.md", + "source_location": "lines 32-33", + "weight": 1.0, + "source": "events_readme_pres_mgmt_module", + "target": "events_readme_event_presentation_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/README.md", + "source_location": "lines 34-35", + "weight": 1.0, + "source": "events_readme_pres_mgmt_module", + "target": "events_readme_event_presenter_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/README.md", + "source_location": "lines 30-31", + "weight": 1.0, + "source": "events_readme_pres_mgmt_module", + "target": "events_readme_event_session_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 72-79", + "weight": 1.0, + "source": "leads_readme_exhibitor_leads_module", + "target": "leads_readme_event_exhibit_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 81-92", + "weight": 1.0, + "source": "leads_readme_exhibitor_leads_module", + "target": "leads_readme_event_exhibit_tracking_object" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 94-103", + "weight": 1.0, + "source": "leads_readme_exhibitor_leads_module", + "target": "leads_readme_leads_auth_levels" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "line 4", + "weight": 1.0, + "source": "leads_readme_exhibitor_leads_module", + "target": "leads_readme_pwa_only" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 105-117", + "weight": 1.0, + "source": "leads_readme_exhibitor_leads_module", + "target": "leads_readme_qr_scan_flow" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/[event_id]/(leads)/README.md", + "source_location": "lines 120-130", + "weight": 1.0, + "source": "leads_readme_exhibitor_leads_module", + "target": "leads_readme_stripe_payment" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 23-28", + "weight": 1.0, + "source": "idaa_readme_idaa_integration_module", + "target": "idaa_readme_idaa_archives_route" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 30-34", + "weight": 1.0, + "source": "idaa_readme_idaa_integration_module", + "target": "idaa_readme_idaa_bb_route" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 36-41", + "weight": 1.0, + "source": "idaa_readme_idaa_integration_module", + "target": "idaa_readme_idaa_recovery_meetings_route" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 9-19", + "weight": 1.0, + "source": "idaa_readme_idaa_integration_module", + "target": "idaa_readme_novi_iframe_bridge_arch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 43-47", + "weight": 1.0, + "source": "idaa_readme_idaa_integration_module", + "target": "idaa_readme_novi_uuid_verification" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "tests/README.md", + "source_location": "lines 330-373", + "weight": 0.8, + "source": "tests_readme_idaa_store_seed_trap", + "target": "idaa_readme_idaa_integration_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 25-27", + "weight": 1.0, + "source": "idaa_readme_idaa_archives_route", + "target": "static_idaa_novi_iframe_archives_novi_archive_embed" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 32-33", + "weight": 1.0, + "source": "idaa_readme_idaa_bb_route", + "target": "static_idaa_novi_iframe_bulletin_board_bb_embed" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "line 41", + "weight": 1.0, + "source": "idaa_readme_idaa_recovery_meetings_route", + "target": "static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md", + "source_location": "lines 38-40", + "weight": 1.0, + "source": "idaa_readme_idaa_recovery_meetings_route", + "target": "static_idaa_novi_iframe_recovery_meetings_recovery_meetings_embed" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/journals/README.md", + "source_location": "line 12", + "weight": 1.0, + "source": "journals_readme_journals_module", + "target": "journals_readme_journal_encryption" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/journals/README.md", + "source_location": "line 13", + "weight": 1.0, + "source": "journals_readme_journals_module", + "target": "journals_readme_journal_offline_support" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/idaa_novi_iframe_archives.html", + "source_location": "line 30", + "weight": 1.0, + "source": "static_idaa_novi_iframe_archives_novi_archive_embed", + "target": "static_idaa_novi_iframe_archives_novi_customer_uid_inject" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/idaa_novi_iframe_archives.html", + "source_location": "lines 56-119", + "weight": 1.0, + "source": "static_idaa_novi_iframe_archives_novi_archive_embed", + "target": "static_idaa_novi_iframe_archives_postmessage_scroll_sync" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/idaa_novi_iframe_archives.html", + "source_location": "line 38", + "weight": 1.0, + "source": "static_idaa_novi_iframe_archives_novi_archive_embed", + "target": "static_idaa_novi_iframe_archives_restricted_access_key" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "static/idaa_novi_iframe_bulletin_board.html", + "source_location": "line 30", + "weight": 0.9, + "source": "static_idaa_novi_iframe_bulletin_board_bb_embed", + "target": "static_idaa_novi_iframe_archives_novi_customer_uid_inject" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "static/idaa_novi_iframe_bulletin_board.html", + "source_location": "line 38", + "weight": 0.9, + "source": "static_idaa_novi_iframe_bulletin_board_bb_embed", + "target": "static_idaa_novi_iframe_archives_restricted_access_key" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/idaa_novi_iframe_jitsi_meeting.html", + "source_location": "lines 122-205", + "weight": 1.0, + "source": "static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed", + "target": "static_idaa_novi_iframe_jitsi_meeting_jitsi_jwt_auth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/idaa_novi_iframe_jitsi_meeting.html", + "source_location": "lines 75-82", + "weight": 1.0, + "source": "static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed", + "target": "static_idaa_novi_iframe_jitsi_meeting_jitsi_moderator_list" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/idaa_novi_iframe_jitsi_meeting.html", + "source_location": "lines 40-47", + "weight": 1.0, + "source": "static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed", + "target": "static_idaa_novi_iframe_jitsi_meeting_novi_group_uid" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "static/idaa_novi_iframe_jitsi_meeting.html", + "source_location": null, + "weight": 0.8, + "source": "static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed", + "target": "static_jitsi_iframe_api_jitsi_external_api" + }, + { + "relation": "semantically_similar_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "static/jitsi_iframe_api.html", + "source_location": "lines 122-205", + "weight": 0.9, + "source": "static_jitsi_iframe_api_jitsi_external_api", + "target": "static_idaa_novi_iframe_jitsi_meeting_jitsi_jwt_auth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/jitsi_iframe_api.html", + "source_location": "lines 99-105", + "weight": 1.0, + "source": "static_jitsi_iframe_api_jitsi_external_api", + "target": "static_jitsi_iframe_api_jitsi_sound_config" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 197-231", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_addInitScript_pattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 113-129", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_ae_version_guard" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 426-483", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_demo_test_ids" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 156-175", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_html5_validation_trap" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 330-373", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_idaa_store_seed_trap" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 131-149", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_idb_inject_reload_pattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 37-48", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_persisted_state_stores" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 375-408", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_storage_event_approach" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 177-195", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_svelte5_value_bind_trap" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 233-247", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_test_mode_email_suppress" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md", + "source_location": "lines 89-102", + "weight": 1.0, + "source": "tests_readme_playwright_test_suite", + "target": "tests_readme_v3_latency_probe" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "tests/README.md", + "source_location": "lines 37-48", + "weight": 0.7, + "source": "tests_readme_ae_version_guard", + "target": "tests_readme_persisted_state_stores" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/OSIT_logo_2022_96px.png", + "source_location": null, + "weight": 1.0, + "source": "static_osit_logo_2022_96px_one_sky_it_logo", + "target": "static_osit_logo_2022_96px_blue_color_scheme" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/OSIT_logo_2022_96px.png", + "source_location": null, + "weight": 1.0, + "source": "static_osit_logo_2022_96px_one_sky_it_logo", + "target": "static_osit_logo_2022_96px_hexagon_motif" + }, + { + "relation": "conceptually_related_to", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "static/OSIT_logo_2022_96px.png", + "source_location": null, + "weight": 0.95, + "source": "static_osit_logo_2022_96px_hexagon_motif", + "target": "static_osit_logo_2022_96px_blue_color_scheme" + }, + { + "relation": "highlights", + "weight": 1.0, + "confidence_score": 1.0, + "source_file": "static/badge_header_calibration.png", + "source": "static_badge_header_calibration_badge_calibration_header", + "target": "static_badge_header_calibration_clip_slot_danger_zone" + }, + { + "relation": "specifies_dimensions_for", + "weight": 1.0, + "confidence_score": 1.0, + "source_file": "static/badge_header_calibration.png", + "source": "static_badge_header_calibration_badge_calibration_header", + "target": "static_badge_header_calibration_zc10l_header" + }, + { + "relation": "supports", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/badge_header_calibration.svg", + "source_location": null, + "weight": 0.95, + "source": "static_badge_header_calibration_svg", + "target": "concept_badge_header_printing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/badge_header_calibration.svg", + "source_location": null, + "weight": 1.0, + "source": "static_badge_header_calibration_svg", + "target": "static_badge_header_calibration_clip_danger_zones" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/badge_header_calibration.svg", + "source_location": null, + "weight": 1.0, + "source": "static_badge_header_calibration_svg", + "target": "static_badge_header_calibration_inch_ruler" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "static/badge_header_calibration.svg", + "source_location": null, + "weight": 1.0, + "source": "static_badge_header_calibration_svg", + "target": "static_badge_header_calibration_mm_ruler" + }, + { + "from": "static_badge_header_hex_blue_image", + "to": "static_badge_header_hex_blue_image", + "label": "depicts", + "properties": { + "description": "Blue hexagon-patterned banner reading ONE SKY IT / AETHER PLATFORM; used as event badge header graphic", + "confidence": 1.0 + }, + "source_file": "static/badge_header_hex_blue.png", + "source": "static_badge_header_hex_blue_image", + "target": "static_badge_header_hex_blue_image", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": 1.0, + "provenance": "SVG text x=166 y=50 'AETHER PLATFORM'", + "source_file": "static/badge_header_hex_blue.svg", + "source": "static_badge_header_hex_blue_svg", + "target": "static_badge_header_hex_blue_aether_text", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": 1.0, + "provenance": "SVG rect fill=url(#grad)", + "source_file": "static/badge_header_hex_blue.svg", + "source": "static_badge_header_hex_blue_svg", + "target": "static_badge_header_hex_blue_gradient", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": 1.0, + "provenance": "SVG rect fill=url(#hexagons)", + "source_file": "static/badge_header_hex_blue.svg", + "source": "static_badge_header_hex_blue_svg", + "target": "static_badge_header_hex_blue_hexpattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": 1.0, + "provenance": "SVG text x=166 y=32 'ONE SKY IT'", + "source_file": "static/badge_header_hex_blue.svg", + "source": "static_badge_header_hex_blue_svg", + "target": "static_badge_header_hex_blue_oneskyit_text", + "confidence_score": 1.0 + } + ], + "hyperedges": [ + { + "id": "idaa_privacy_auth_cache_triad", + "label": "IDAA Privacy: Auth Gate + Cache Rule + Triple Linkage", + "nodes": [ + "aether_app_sveltekit_claude_idaa_privacy", + "documentation_ae__permissions_idaa_auth_before_cache", + "documentation_client__idaa_triple_linkage" + ], + "relation": "implement", + "confidence": "EXTRACTED", + "confidence_score": 0.95, + "source_file": "CLAUDE.md" + }, + { + "id": "sveltekit_data_load_idb_swr_triad", + "label": "SvelteKit Data Load: SWR Pattern + LiveQuery + try_cache Bug", + "nodes": [ + "aether_app_sveltekit_claude_swr_pattern", + "documentation_guide__sveltekit2_svelte5_dexiejs_livequery_patterns", + "documentation_guide__sveltekit2_svelte5_dexiejs_try_cache_bug" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GUIDE__SvelteKit2_Svelte5_DexieJS.md" + }, + { + "id": "v3_api_auth_naming_patch_triad", + "label": "V3 API: Auth Headers + ID Convention + PATCH Body Rule", + "nodes": [ + "documentation_guide__ae_api_v3_auth_headers", + "documentation_ae__naming_conventions_id_convention", + "documentation_bootstrap__ai_agent_quickstart_patch_id_rule" + ], + "relation": "form", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/GUIDE__AE_API_V3_for_Frontend.md" + }, + { + "id": "idaa_privacy_cluster", + "label": "IDAA Privacy Enforcement Cluster", + "nodes": [ + "documentation_module__ae_idaa_archives_idaa_archives_module", + "documentation_module__ae_idaa_bulletin_board_idaa_bb_module", + "documentation_module__ae_idaa_recovery_meetings_recovery_meetings_module", + "documentation_module__ae_idaa_video_conferences_video_conf_module", + "documentation_reference__common_agent_mistakes_idaa_public_exposure", + "documentation_module__ae_idaa_archives_security_requirement", + "documentation_module__ae_idaa_bulletin_board_sev1_privacy" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_IDAA_Archives.md" + }, + { + "id": "events_module_cluster", + "label": "Events Module Family", + "nodes": [ + "documentation_module__ae_events_presentation_management_pres_mgmt_module", + "documentation_module__ae_events_launcher_launcher_module", + "documentation_module__ae_events_badges_badges_module", + "documentation_module__ae_events_badge_templates_badge_template_module", + "documentation_module__ae_events_leads_leads_module", + "documentation_module__ae_events_launcher_native_native_integration", + "documentation_module__ae_events_launcher_config_menu_config_menu" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_Events_Presentation_Management.md" + }, + { + "id": "native_launcher_tech_cluster", + "label": "Native Launcher Technical Stack", + "nodes": [ + "documentation_module__ae_events_launcher_native_three_layer_bridge", + "documentation_module__ae_events_launcher_native_electron_relay", + "documentation_module__ae_events_launcher_native_hashed_cache", + "documentation_module__ae_events_launcher_native_safe_handover", + "documentation_module__ae_events_launcher_native_launch_profiles", + "documentation_module__ae_events_launcher_native_applescript_hardened", + "documentation_module__ae_events_launcher_native_ipc_whitelist" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/MODULE__AE_Events_Launcher_Native.md" + }, + { + "id": "journal_privacy_cluster", + "label": "Journals Privacy and Encryption Cluster", + "nodes": [ + "documentation_module__ae_journals_journals_module", + "documentation_module__ae_journals_e2ee_encryption", + "documentation_module__ae_journals_security_limitations", + "documentation_module__ae_journals_access_privacy", + "documentation_module__ae_journals_config_map_encryption_behavior", + "documentation_todo__agents_journal_entry_followups" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.9, + "source_file": "documentation/MODULE__AE_Journals.md" + }, + { + "id": "he_pressmgmt_config_cleanup_trio", + "label": "Pres Mgmt Config Cleanup: Schema + Store + UI", + "nodes": [ + "documentation_project__ae_events_pressmgmt_config_cleanup_pressmgmt_remote_cfg", + "documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store", + "documentation_project__ae_events_pressmgmt_config_cleanup_config_ui_page", + "documentation_project__ae_events_pressmgmt_config_cleanup_sync_config_function" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/PROJECT__AE_Events_PressMgmt_Config_Cleanup.md" + }, + { + "id": "he_svelte5_migration_family", + "label": "Svelte 5 PersistedState Migration (all modules)", + "nodes": [ + "documentation_project__stores_svelte5_migration_document", + "documentation_project__stores_svelte5_migration_events_module_complete", + "documentation_project__stores_svelte5_migration_persisted_state_pattern", + "documentation_project__idaa_stores_svelte5_migration_document", + "documentation_project__ae_events_pressmgmt_config_cleanup_pres_mgmt_loc_store", + "archive_project__ae_events_badges_config_cleanup_badges_loc_store" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/PROJECT__Stores_Svelte5_Migration.md" + }, + { + "id": "he_passcode_security_flow", + "label": "Passcode Security: Exposure + API Auth + JWT", + "nodes": [ + "documentation_project__ae_site_passcode_security_access_code_kv_json_exposure", + "documentation_project__ae_site_passcode_security_api_verified_auth", + "documentation_project__ae_site_passcode_security_authenticate_passcode_endpoint", + "documentation_project__ae_site_passcode_security_role_ttl" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "documentation/PROJECT__AE_Site_Passcode_Security.md" + }, + { + "id": "he_badges_module_projects", + "label": "Badges Module: Config, Review, Print Projects", + "nodes": [ + "archive_project__ae_events_badges_config_cleanup_document", + "archive_project__ae_events_badges_review_print_document", + "archive_project__ae_events_badges_config_cleanup_edit_permissions", + "archive_project__ae_events_badges_review_print_two_flows", + "archive_project__ae_events_badges_review_print_email_rule" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__AE_Events_Badges_Config_Cleanup.md" + }, + { + "id": "hyperedge_svelte5_reactivity_patterns", + "label": "Svelte 5 Reactivity Best Practices", + "nodes": [ + "archive_reference__legacy_performance_guidelines_derived_by_livequery_rule", + "archive_reference__legacy_performance_guidelines_livequery_pure_data_rule", + "archive_reference__legacy_performance_guidelines_untrack_in_effect_rule", + "archive_project__ae_ui_journals_module_update_2026_untrack_pattern", + "archive_project__ae_object_field_editor_v3_upgrade_svelte5_runes_pattern" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/REFERENCE__Legacy_Performance_Guidelines.md" + }, + { + "id": "hyperedge_style_modernization_effort", + "label": "Style Modernization Effort (FA\u2192Lucide, variant\u2192preset)", + "nodes": [ + "archive_project__ae_style_review_2026_03_style_review_project", + "archive_project__ae_style_review_2026_03_fontawesome_to_lucide_migration", + "archive_project__ae_style_review_2026_03_variant_to_preset_migration", + "archive_project__ae_ui_journals_module_update_2026_skeleton_v4_token_reference", + "archive_todo__agents__archive_2026_03_stores_phase_1_2_cleanup", + "archive_reference__legacy_ui_component_patterns_ui_component_patterns" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/PROJECT__AE_Style_Review_2026-03.md" + }, + { + "id": "hyperedge_v3_api_migration", + "label": "V3 API CRUD Migration Effort", + "nodes": [ + "archive_project__use_ae_api_v3_crud_upgrade_crud_v3_migration", + "archive_project__ae_object_field_editor_v3_upgrade_field_editor_v3", + "archive_project__ae_object_field_editor_v3_upgrade_crud_v1_v2_retirement", + "archive_project__use_ae_api_v3_crud_upgrade_permissive_update_mode" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.9, + "source_file": "documentation/archive/PROJECT__Use_AE_API_V3_CRUD_upgrade.md" + }, + { + "id": "hyperedge_conference_events_2026", + "label": "2026 Live Conference Events", + "nodes": [ + "archive_project__ae_events_zebra_hardware_test_day_zebra_zc10l_badge_printing", + "archive_todo__agents__archive_2026_06_cmsc_charlotte_event", + "archive_todo__agents__archive_2026_06_axonius_dc_badges", + "archive_todo__agents__archive_2026_05_launcher_force_sync_location" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.85, + "source_file": "documentation/archive/TODO__Agents__ARCHIVE_2026-06.md" + }, + { + "id": "idaa_novi_iframe_bridge_pattern", + "label": "IDAA Novi iframe Bridge Pattern (Archives, BB, Recovery Meetings, Jitsi)", + "nodes": [ + "idaa_readme_novi_iframe_bridge_arch", + "static_idaa_novi_iframe_archives_novi_archive_embed", + "static_idaa_novi_iframe_bulletin_board_bb_embed", + "static_idaa_novi_iframe_recovery_meetings_recovery_meetings_embed", + "static_idaa_novi_iframe_jitsi_meeting_jitsi_meeting_embed", + "static_idaa_novi_iframe_jitsi_reports_jitsi_reports_embed", + "static_idaa_novi_iframe_archives_novi_customer_uid_inject", + "static_idaa_novi_iframe_archives_restricted_access_key" + ], + "relation": "participate_in", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/idaa/README.md" + }, + { + "id": "idaa_postmessage_protocol", + "label": "IDAA iframe postMessage Communication Protocol", + "nodes": [ + "static_idaa_novi_iframe_archives_postmessage_scroll_sync", + "static_idaa_novi_iframe_bulletin_board_bb_embed", + "static_idaa_novi_iframe_recovery_meetings_recovery_meetings_embed", + "src_parent_iframe_html_postmessage_height_sync" + ], + "relation": "participate_in", + "confidence": "INFERRED", + "confidence_score": 0.95, + "source_file": "static/idaa_novi_iframe_archives.html" + }, + { + "id": "events_data_model_objects", + "label": "Events Module Core Data Objects", + "nodes": [ + "events_readme_event_object", + "events_readme_event_session_object", + "events_readme_event_presentation_object", + "events_readme_event_presenter_object", + "events_readme_event_file_object", + "leads_readme_event_exhibit_object", + "leads_readme_event_exhibit_tracking_object" + ], + "relation": "participate_in", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "src/routes/events/README.md" + }, + { + "id": "playwright_hard_won_lessons", + "label": "Playwright Test Hard-Won Lessons", + "nodes": [ + "tests_readme_ae_version_guard", + "tests_readme_idb_inject_reload_pattern", + "tests_readme_html5_validation_trap", + "tests_readme_svelte5_value_bind_trap", + "tests_readme_addInitScript_pattern", + "tests_readme_test_mode_email_suppress", + "tests_readme_idaa_store_seed_trap", + "tests_readme_storage_event_approach" + ], + "relation": "participate_in", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "tests/README.md" + } + ], + "built_at_commit": "dcc0f9a05b2c22c1bd36d0c50b0b2b26360f92d6" +} \ No newline at end of file diff --git a/graphify-out/manifest.json b/graphify-out/manifest.json new file mode 100644 index 00000000..2dd6c781 --- /dev/null +++ b/graphify-out/manifest.json @@ -0,0 +1,2257 @@ +{ + "app.d.ts": { + "mtime": 1782179325.9675379, + "ast_hash": "99e6578d746924ee9aa2efbf6e47fe66", + "semantic_hash": "99e6578d746924ee9aa2efbf6e47fe66" + }, + "lib/ae_api/api.ts": { + "mtime": 1782256303.6762886, + "ast_hash": "7db471b0fd73f09aa9a9092bbdb3a76f", + "semantic_hash": "7db471b0fd73f09aa9a9092bbdb3a76f" + }, + "lib/ae_api/api_delete_object.ts": { + "mtime": 1782179325.989936, + "ast_hash": "be739a490131f7532da02b13a0fc9ee2", + "semantic_hash": "be739a490131f7532da02b13a0fc9ee2" + }, + "lib/ae_api/api_get__crud_obj_li.ts": { + "mtime": 1782179325.9889243, + "ast_hash": "c7f0683d4b72c7aa062714c4013d793d", + "semantic_hash": "c7f0683d4b72c7aa062714c4013d793d" + }, + "lib/ae_api/api_get__data_store.ts": { + "mtime": 1782179325.9889605, + "ast_hash": "0ca46cf2bebb0898caa6ec2aeff28a1b", + "semantic_hash": "0ca46cf2bebb0898caa6ec2aeff28a1b" + }, + "lib/ae_api/api_get__lookup.ts": { + "mtime": 1782179325.9891028, + "ast_hash": "65c14e1c6d47099c1cc23bf31d654bf3", + "semantic_hash": "65c14e1c6d47099c1cc23bf31d654bf3" + }, + "lib/ae_api/api_get_object.ts": { + "mtime": 1782179325.9894102, + "ast_hash": "77cadd14f9cfb1bf5454fd6faff8b2e9", + "semantic_hash": "77cadd14f9cfb1bf5454fd6faff8b2e9" + }, + "lib/ae_api/api_patch_object.ts": { + "mtime": 1782179325.989811, + "ast_hash": "2ecd6291c0afe6e1d64872886456bbcd", + "semantic_hash": "2ecd6291c0afe6e1d64872886456bbcd" + }, + "lib/ae_api/api_post__crud_obj.ts": { + "mtime": 1782179325.9892147, + "ast_hash": "f6a7ec487addae7c5c32264aea1ed8a3", + "semantic_hash": "f6a7ec487addae7c5c32264aea1ed8a3" + }, + "lib/ae_api/api_post__crud_search.ts": { + "mtime": 1782179325.9890387, + "ast_hash": "d69f7da8699aac6da93b287602196032", + "semantic_hash": "d69f7da8699aac6da93b287602196032" + }, + "lib/ae_api/api_post_object.ts": { + "mtime": 1782179325.989645, + "ast_hash": "f9a3d74be56f2e4c2beb5ace13f330b5", + "semantic_hash": "f9a3d74be56f2e4c2beb5ace13f330b5" + }, + "lib/ae_archives/ae_archives__archive.editable_fields.ts": { + "mtime": 1782179325.978668, + "ast_hash": "11b615eca80ef64a8ab956f45157e2b3", + "semantic_hash": "11b615eca80ef64a8ab956f45157e2b3" + }, + "lib/ae_archives/ae_archives__archive.ts": { + "mtime": 1782179325.9788923, + "ast_hash": "de34a4475bb983e621c96ae56142722e", + "semantic_hash": "de34a4475bb983e621c96ae56142722e" + }, + "lib/ae_archives/ae_archives__archive_content.editable_fields.ts": { + "mtime": 1782179325.9787128, + "ast_hash": "5821af3c0946a0ea48eb5c5cea3741b4", + "semantic_hash": "5821af3c0946a0ea48eb5c5cea3741b4" + }, + "lib/ae_archives/ae_archives__archive_content.ts": { + "mtime": 1782179325.9790583, + "ast_hash": "8b721643ded1d2cabff4610643369300", + "semantic_hash": "8b721643ded1d2cabff4610643369300" + }, + "lib/ae_archives/ae_archives_functions.ts": { + "mtime": 1782179325.9786224, + "ast_hash": "ab14ebecc52dcbf9d517c9e708200c49", + "semantic_hash": "ab14ebecc52dcbf9d517c9e708200c49" + }, + "lib/ae_archives/db_archives.ts": { + "mtime": 1782179325.9791539, + "ast_hash": "6c56c77fc0965ca536e6d08515f7c2ce", + "semantic_hash": "6c56c77fc0965ca536e6d08515f7c2ce" + }, + "lib/ae_core/ae_core__account.editable_fields.ts": { + "mtime": 1782179325.9690387, + "ast_hash": "16344f4c639090b56f54f8f9f4fa499a", + "semantic_hash": "16344f4c639090b56f54f8f9f4fa499a" + }, + "lib/ae_core/ae_core__account.ts": { + "mtime": 1782179325.9691672, + "ast_hash": "d3d4f60af4ad14fdc3328a38d9bd402f", + "semantic_hash": "d3d4f60af4ad14fdc3328a38d9bd402f" + }, + "lib/ae_core/ae_core__activity_log.editable_fields.ts": { + "mtime": 1782179325.96951, + "ast_hash": "69c1c3fa39b9bbcc210c4c38311213e7", + "semantic_hash": "69c1c3fa39b9bbcc210c4c38311213e7" + }, + "lib/ae_core/ae_core__activity_log.ts": { + "mtime": 1782179325.969978, + "ast_hash": "62e77deac1a88aa46a7f471cca47184d", + "semantic_hash": "62e77deac1a88aa46a7f471cca47184d" + }, + "lib/ae_core/ae_core__address.editable_fields.ts": { + "mtime": 1782179325.9698193, + "ast_hash": "cba95ea7f3c7608e28c147eed07559d4", + "semantic_hash": "cba95ea7f3c7608e28c147eed07559d4" + }, + "lib/ae_core/ae_core__address.ts": { + "mtime": 1782179325.969661, + "ast_hash": "bd9dc8235b273795cd388aabb8b31e54", + "semantic_hash": "bd9dc8235b273795cd388aabb8b31e54" + }, + "lib/ae_core/ae_core__contact.editable_fields.ts": { + "mtime": 1782179325.969867, + "ast_hash": "b55c6bb2ef954baa429a2a6f90bef774", + "semantic_hash": "b55c6bb2ef954baa429a2a6f90bef774" + }, + "lib/ae_core/ae_core__contact.ts": { + "mtime": 1782179325.969773, + "ast_hash": "9944775e9a529dee77a8c9bbeb9c0d62", + "semantic_hash": "9944775e9a529dee77a8c9bbeb9c0d62" + }, + "lib/ae_core/ae_core__person.editable_fields.ts": { + "mtime": 1782179325.9693117, + "ast_hash": "8a03e5944ed8d6dea341631d0f384d21", + "semantic_hash": "8a03e5944ed8d6dea341631d0f384d21" + }, + "lib/ae_core/ae_core__person.ts": { + "mtime": 1782179325.9694595, + "ast_hash": "0a52900ef46ba11ccc2f51b89cdb6944", + "semantic_hash": "0a52900ef46ba11ccc2f51b89cdb6944" + }, + "lib/ae_core/ae_core__site.editable_fields.ts": { + "mtime": 1782179325.969221, + "ast_hash": "14332e58b5c1da5b20a5e19851ad7c28", + "semantic_hash": "14332e58b5c1da5b20a5e19851ad7c28" + }, + "lib/ae_core/ae_core__site.ts": { + "mtime": 1782179325.9707673, + "ast_hash": "c65a3331ba3ad00344618b336b3a648f", + "semantic_hash": "c65a3331ba3ad00344618b336b3a648f" + }, + "lib/ae_core/ae_core__site_domain.editable_fields.ts": { + "mtime": 1782179325.9692621, + "ast_hash": "53fc1e95e7a4a1bd928e767bf31647e7", + "semantic_hash": "53fc1e95e7a4a1bd928e767bf31647e7" + }, + "lib/ae_core/ae_core__user.editable_fields.ts": { + "mtime": 1782179325.9695547, + "ast_hash": "0d91a9ff1f0d3c384602df158c5bfe13", + "semantic_hash": "0d91a9ff1f0d3c384602df158c5bfe13" + }, + "lib/ae_core/ae_core__user.ts": { + "mtime": 1782179325.9709876, + "ast_hash": "a3a268dda8ab04ab068f3c63ba331c66", + "semantic_hash": "a3a268dda8ab04ab068f3c63ba331c66" + }, + "lib/ae_core/ae_core_functions.ts": { + "mtime": 1782256280.059035, + "ast_hash": "26a23ef66d8393c6280a698a19608aef", + "semantic_hash": "26a23ef66d8393c6280a698a19608aef" + }, + "lib/ae_core/core__api_helpers.ts": { + "mtime": 1782179325.9686825, + "ast_hash": "0f3b4cf3f3f14242a93da0618e33ddc0", + "semantic_hash": "0f3b4cf3f3f14242a93da0618e33ddc0" + }, + "lib/ae_core/core__check_hosted_file_obj_w_hash.ts": { + "mtime": 1782179325.9686375, + "ast_hash": "effaadd5097ff1241c724a335e41ffcc", + "semantic_hash": "effaadd5097ff1241c724a335e41ffcc" + }, + "lib/ae_core/core__countries.ts": { + "mtime": 1782179325.9704368, + "ast_hash": "c0584dd7ab4aab296dde52570f5c0330", + "semantic_hash": "c0584dd7ab4aab296dde52570f5c0330" + }, + "lib/ae_core/core__country_subdivisions.ts": { + "mtime": 1782179325.9703765, + "ast_hash": "9909ca2971bbce2ea6501ab7312f7af1", + "semantic_hash": "9909ca2971bbce2ea6501ab7312f7af1" + }, + "lib/ae_core/core__data_store.ts": { + "mtime": 1782179325.9700444, + "ast_hash": "5fc63db52e99a120a305384aaf8acc28", + "semantic_hash": "5fc63db52e99a120a305384aaf8acc28" + }, + "lib/ae_core/core__export.ts": { + "mtime": 1782179325.971348, + "ast_hash": "638c655407883a08922e3cc026effd3d", + "semantic_hash": "638c655407883a08922e3cc026effd3d" + }, + "lib/ae_core/core__hosted_files.ts": { + "mtime": 1782179325.9689097, + "ast_hash": "10e6be2d698bb2f690cbc75ec6516b66", + "semantic_hash": "10e6be2d698bb2f690cbc75ec6516b66" + }, + "lib/ae_core/core__idb_dexie.ts": { + "mtime": 1782179325.9710853, + "ast_hash": "56523f017fe50d432c8cee6309759417", + "semantic_hash": "56523f017fe50d432c8cee6309759417" + }, + "lib/ae_core/core__idb_sort.ts": { + "mtime": 1782179325.9711487, + "ast_hash": "f2cb9783ed85d99733304b29c1ecb5e4", + "semantic_hash": "f2cb9783ed85d99733304b29c1ecb5e4" + }, + "lib/ae_core/core__qr_code.ts": { + "mtime": 1782179325.9702492, + "ast_hash": "077c979fb8ed7db60ccd9fe2465bbda6", + "semantic_hash": "077c979fb8ed7db60ccd9fe2465bbda6" + }, + "lib/ae_core/core__time_zones.ts": { + "mtime": 1782179325.9705074, + "ast_hash": "7d4df84674fec174fd7c409bb8f68ca8", + "semantic_hash": "7d4df84674fec174fd7c409bb8f68ca8" + }, + "lib/ae_core/db_core.ts": { + "mtime": 1782179325.9701254, + "ast_hash": "0f08d4613112fb1bf585ed7a4e372f56", + "semantic_hash": "0f08d4613112fb1bf585ed7a4e372f56" + }, + "lib/ae_core/db_lookups.ts": { + "mtime": 1782179325.9703074, + "ast_hash": "68dbce27db720242b236033aa5ddda80", + "semantic_hash": "68dbce27db720242b236033aa5ddda80" + }, + "lib/ae_events/ae_events__badge_template_cfg.ts": { + "mtime": 1782179325.9752781, + "ast_hash": "a81d4dc6695767143b2196c7313bb7ba", + "semantic_hash": "a81d4dc6695767143b2196c7313bb7ba" + }, + "lib/ae_events/ae_events__event.editable_fields.ts": { + "mtime": 1782179325.9716334, + "ast_hash": "f95f6582c6ec2b64d0a889a97980e2e3", + "semantic_hash": "f95f6582c6ec2b64d0a889a97980e2e3" + }, + "lib/ae_events/ae_events__event.ts": { + "mtime": 1782179325.9745145, + "ast_hash": "a10e6e1f3c6713ef61b574c55b786d6a", + "semantic_hash": "a10e6e1f3c6713ef61b574c55b786d6a" + }, + "lib/ae_events/ae_events__event_badge.editable_fields.ts": { + "mtime": 1782179325.9716632, + "ast_hash": "4a093915d38ca7edabbfa8906bdaaa71", + "semantic_hash": "4a093915d38ca7edabbfa8906bdaaa71" + }, + "lib/ae_events/ae_events__event_badge.test.ts": { + "mtime": 1782179325.97249, + "ast_hash": "58134052e3c27b657903d5c8080dbd63", + "semantic_hash": "58134052e3c27b657903d5c8080dbd63" + }, + "lib/ae_events/ae_events__event_badge.ts": { + "mtime": 1782179325.9734707, + "ast_hash": "5417490d9cfb25b30f37fd55c27fd6ef", + "semantic_hash": "5417490d9cfb25b30f37fd55c27fd6ef" + }, + "lib/ae_events/ae_events__event_badge_template.editable_fields.ts": { + "mtime": 1782179325.9717116, + "ast_hash": "f10a5c8f51d3a9a0f04b5a80ebdb073b", + "semantic_hash": "f10a5c8f51d3a9a0f04b5a80ebdb073b" + }, + "lib/ae_events/ae_events__event_badge_template.ts": { + "mtime": 1782179325.9721968, + "ast_hash": "c2b928dc8e197d98ac24c76889c2b1a9", + "semantic_hash": "c2b928dc8e197d98ac24c76889c2b1a9" + }, + "lib/ae_events/ae_events__event_device.editable_fields.ts": { + "mtime": 1782179325.9717555, + "ast_hash": "fd5dbf30ad60380a72db7a3ac836433c", + "semantic_hash": "fd5dbf30ad60380a72db7a3ac836433c" + }, + "lib/ae_events/ae_events__event_device.ts": { + "mtime": 1782179325.9715595, + "ast_hash": "9d89f17dfba50ceb4d3bdf4ddc980110", + "semantic_hash": "9d89f17dfba50ceb4d3bdf4ddc980110" + }, + "lib/ae_events/ae_events__event_file.editable_fields.ts": { + "mtime": 1782179325.9717991, + "ast_hash": "c2f351759d8acbb05f3b5f544fe8bfcf", + "semantic_hash": "c2f351759d8acbb05f3b5f544fe8bfcf" + }, + "lib/ae_events/ae_events__event_file.ts": { + "mtime": 1782179325.9752264, + "ast_hash": "7a0e2284b90f01314896a63d5d70e215", + "semantic_hash": "7a0e2284b90f01314896a63d5d70e215" + }, + "lib/ae_events/ae_events__event_location.editable_fields.ts": { + "mtime": 1782179325.9718523, + "ast_hash": "30c5a68079fbc271e36ff4f122ff9be1", + "semantic_hash": "30c5a68079fbc271e36ff4f122ff9be1" + }, + "lib/ae_events/ae_events__event_location.ts": { + "mtime": 1782179325.973854, + "ast_hash": "e03809c206a960f13914945c404df417", + "semantic_hash": "e03809c206a960f13914945c404df417" + }, + "lib/ae_events/ae_events__event_person.ts": { + "mtime": 1782179325.972762, + "ast_hash": "540fec43b157f28cbd5c32cb3418d294", + "semantic_hash": "540fec43b157f28cbd5c32cb3418d294" + }, + "lib/ae_events/ae_events__event_presentation.editable_fields.ts": { + "mtime": 1782179325.9718788, + "ast_hash": "e18f72b552cca17ef4cc244bc11eb2db", + "semantic_hash": "e18f72b552cca17ef4cc244bc11eb2db" + }, + "lib/ae_events/ae_events__event_presentation.ts": { + "mtime": 1782179325.975013, + "ast_hash": "ca30cf42d6ac9fdde90a6823c6418544", + "semantic_hash": "ca30cf42d6ac9fdde90a6823c6418544" + }, + "lib/ae_events/ae_events__event_presenter.editable_fields.ts": { + "mtime": 1782179325.9719172, + "ast_hash": "f593e8ce792979769b88d29e5710db12", + "semantic_hash": "f593e8ce792979769b88d29e5710db12" + }, + "lib/ae_events/ae_events__event_presenter.ts": { + "mtime": 1782242237.600371, + "ast_hash": "c9d13432f215413d728fffb66299ba48", + "semantic_hash": "c9d13432f215413d728fffb66299ba48" + }, + "lib/ae_events/ae_events__event_session.editable_fields.ts": { + "mtime": 1782179325.9728978, + "ast_hash": "05f48fdf4e164b5d5fdf9e7f0ab508b0", + "semantic_hash": "05f48fdf4e164b5d5fdf9e7f0ab508b0" + }, + "lib/ae_events/ae_events__event_session.ts": { + "mtime": 1782237833.7364964, + "ast_hash": "84b1b72b8d0cfbd9c24676db4e4af1b7", + "semantic_hash": "84b1b72b8d0cfbd9c24676db4e4af1b7" + }, + "lib/ae_events/ae_events__event_track.ts": { + "mtime": 1782179325.9719987, + "ast_hash": "42a7582b794bb7c36cb9f05e49cc33ec", + "semantic_hash": "42a7582b794bb7c36cb9f05e49cc33ec" + }, + "lib/ae_events/ae_events__exhibit.editable_fields.ts": { + "mtime": 1782179325.971958, + "ast_hash": "7d414889087915bd20e63d4c486513f3", + "semantic_hash": "7d414889087915bd20e63d4c486513f3" + }, + "lib/ae_events/ae_events__exhibit.ts": { + "mtime": 1782179325.9723914, + "ast_hash": "330510ef04dc04fea7559aab2928a715", + "semantic_hash": "330510ef04dc04fea7559aab2928a715" + }, + "lib/ae_events/ae_events__exhibit_tracking.editable_fields.ts": { + "mtime": 1782179325.9720595, + "ast_hash": "e6f41ea8775435c853a1b1d406d1a390", + "semantic_hash": "e6f41ea8775435c853a1b1d406d1a390" + }, + "lib/ae_events/ae_events__exhibit_tracking.ts": { + "mtime": 1782179325.972711, + "ast_hash": "24112ba2751268d7f3b6acd4adebee3d", + "semantic_hash": "24112ba2751268d7f3b6acd4adebee3d" + }, + "lib/ae_events/ae_events_functions.ts": { + "mtime": 1782179325.9728613, + "ast_hash": "f0d8544efc8006e22d8811aa3a85298d", + "semantic_hash": "f0d8544efc8006e22d8811aa3a85298d" + }, + "lib/ae_events/ae_launcher__default_launch_profiles.ts": { + "mtime": 1782179325.9736388, + "ast_hash": "4da06cb90b70aa341990bac6a58fe309", + "semantic_hash": "4da06cb90b70aa341990bac6a58fe309" + }, + "lib/ae_events/db_events.ts": { + "mtime": 1782179325.9732146, + "ast_hash": "a82c0a7a150cd7961485ab6991614e30", + "semantic_hash": "a82c0a7a150cd7961485ab6991614e30" + }, + "lib/ae_idaa/ae_idaa__bb_post_helpers.ts": { + "mtime": 1782179325.9902008, + "ast_hash": "bcc3d6ddbeb7964963dc4d0c293ba0e8", + "semantic_hash": "bcc3d6ddbeb7964963dc4d0c293ba0e8" + }, + "lib/ae_journals/ae_journals__journal.editable_fields.ts": { + "mtime": 1782179325.9799087, + "ast_hash": "af79748df69a9fe58cd89c3727b776e8", + "semantic_hash": "af79748df69a9fe58cd89c3727b776e8" + }, + "lib/ae_journals/ae_journals__journal.ts": { + "mtime": 1782179325.98071, + "ast_hash": "3f4db4d1059b9cdd74ff930c7ec58ab1", + "semantic_hash": "3f4db4d1059b9cdd74ff930c7ec58ab1" + }, + "lib/ae_journals/ae_journals__journal_entry.editable_fields.ts": { + "mtime": 1782179325.9799693, + "ast_hash": "ffee7728525bee6e2b85f911b9a6b0b7", + "semantic_hash": "ffee7728525bee6e2b85f911b9a6b0b7" + }, + "lib/ae_journals/ae_journals__journal_entry.ts": { + "mtime": 1782179325.9810762, + "ast_hash": "8dcf5b6f0a2afb55d28d1d4633b2b7b9", + "semantic_hash": "8dcf5b6f0a2afb55d28d1d4633b2b7b9" + }, + "lib/ae_journals/ae_journals_decryption.ts": { + "mtime": 1782179325.9802933, + "ast_hash": "c6e14436db6af04800cf1df7b5529bfc", + "semantic_hash": "c6e14436db6af04800cf1df7b5529bfc" + }, + "lib/ae_journals/ae_journals_editor_helpers.ts": { + "mtime": 1782179325.9800107, + "ast_hash": "b4ee852d6ab82ec6dbe4cb7968443ca4", + "semantic_hash": "b4ee852d6ab82ec6dbe4cb7968443ca4" + }, + "lib/ae_journals/ae_journals_export_templates.ts": { + "mtime": 1782179325.9802475, + "ast_hash": "3186412f2a740af8fd6115b5b8e33a3d", + "semantic_hash": "3186412f2a740af8fd6115b5b8e33a3d" + }, + "lib/ae_journals/ae_journals_functions.ts": { + "mtime": 1782179325.9798756, + "ast_hash": "b2384c56519db7d3c3efa03c90f73210", + "semantic_hash": "b2384c56519db7d3c3efa03c90f73210" + }, + "lib/ae_journals/ae_journals_parsers.ts": { + "mtime": 1782179325.9801462, + "ast_hash": "af448f4715132c09a19b2adfb74093f1", + "semantic_hash": "af448f4715132c09a19b2adfb74093f1" + }, + "lib/ae_journals/ae_journals_search_helpers.ts": { + "mtime": 1782179325.9811738, + "ast_hash": "d89feb0cb4dd5e34d07d43dc26027613", + "semantic_hash": "d89feb0cb4dd5e34d07d43dc26027613" + }, + "lib/ae_journals/ae_journals_stores.ts": { + "mtime": 1782179325.9798174, + "ast_hash": "3dd99b1935c958fa7d6918275ea8e3a9", + "semantic_hash": "3dd99b1935c958fa7d6918275ea8e3a9" + }, + "lib/ae_journals/db_journals.ts": { + "mtime": 1782179325.9804246, + "ast_hash": "7ac890b134d91788eb1f5bc46be249ba", + "semantic_hash": "7ac890b134d91788eb1f5bc46be249ba" + }, + "lib/ae_posts/ae_posts__post.editable_fields.ts": { + "mtime": 1782179325.9796908, + "ast_hash": "3c27c69b24e021dd101c22101ef5ec29", + "semantic_hash": "3c27c69b24e021dd101c22101ef5ec29" + }, + "lib/ae_posts/ae_posts__post.ts": { + "mtime": 1782179325.9794943, + "ast_hash": "d187ed9a00b4e18ba23adda1844858b5", + "semantic_hash": "d187ed9a00b4e18ba23adda1844858b5" + }, + "lib/ae_posts/ae_posts__post_comment.editable_fields.ts": { + "mtime": 1782179325.9797156, + "ast_hash": "4e1b368c3a7421ca403cc07e134b699b", + "semantic_hash": "4e1b368c3a7421ca403cc07e134b699b" + }, + "lib/ae_posts/ae_posts__post_comment.ts": { + "mtime": 1782179325.9796417, + "ast_hash": "1c268a02d6ae2f83de54f0df8e5272c8", + "semantic_hash": "1c268a02d6ae2f83de54f0df8e5272c8" + }, + "lib/ae_posts/ae_posts_functions.ts": { + "mtime": 1782179325.9792216, + "ast_hash": "d468976a95266f8d41d8a761a7da3c3e", + "semantic_hash": "d468976a95266f8d41d8a761a7da3c3e" + }, + "lib/ae_posts/db_posts.ts": { + "mtime": 1782179325.9792588, + "ast_hash": "175ea8d9ebdd221709319ba19f39cca3", + "semantic_hash": "175ea8d9ebdd221709319ba19f39cca3" + }, + "lib/ae_reports/reports_functions.ts": { + "mtime": 1782179325.990382, + "ast_hash": "16813a8ad33c4fc4efadaa8a22470524", + "semantic_hash": "16813a8ad33c4fc4efadaa8a22470524" + }, + "lib/ae_sponsorships/ae_sponsorships__sponsorship.editable_fields.ts": { + "mtime": 1782179325.975916, + "ast_hash": "cb2787db7f359713b9ee846d044dcc2b", + "semantic_hash": "cb2787db7f359713b9ee846d044dcc2b" + }, + "lib/ae_sponsorships/ae_sponsorships__sponsorship.ts": { + "mtime": 1782179325.9760156, + "ast_hash": "9ce2eac6927ff51902e2b63e06011a12", + "semantic_hash": "9ce2eac6927ff51902e2b63e06011a12" + }, + "lib/ae_sponsorships/ae_sponsorships_functions.ts": { + "mtime": 1782179325.9756947, + "ast_hash": "561cce697835cc6c5622cee1038b25cc", + "semantic_hash": "561cce697835cc6c5622cee1038b25cc" + }, + "lib/ae_sponsorships/db_sponsorships.ts": { + "mtime": 1782179325.975384, + "ast_hash": "8b59143d1ff62408fac2d4846845d7c5", + "semantic_hash": "8b59143d1ff62408fac2d4846845d7c5" + }, + "lib/ae_utils/ae_string_snippets.ts": { + "mtime": 1782179325.9784174, + "ast_hash": "9b6a35e8d83f54cd8b95110e193f62e2", + "semantic_hash": "9b6a35e8d83f54cd8b95110e193f62e2" + }, + "lib/ae_utils/ae_utils.ts": { + "mtime": 1782179325.9780674, + "ast_hash": "ff60c7ee35c79b305825be04418ea8c5", + "semantic_hash": "ff60c7ee35c79b305825be04418ea8c5" + }, + "lib/ae_utils/ae_utils__crypto.ts": { + "mtime": 1782179325.977495, + "ast_hash": "d633c58ebb9245790983238b2e31ee35", + "semantic_hash": "d633c58ebb9245790983238b2e31ee35" + }, + "lib/ae_utils/ae_utils__datetime_format.ts": { + "mtime": 1782179325.9782953, + "ast_hash": "7bc09b09fe51751208af29cfd8942dbf", + "semantic_hash": "7bc09b09fe51751208af29cfd8942dbf" + }, + "lib/ae_utils/ae_utils__extract_prefixed_form_data.ts": { + "mtime": 1782179325.9767046, + "ast_hash": "019f10c77e69b40900ad44b6b8927f17", + "semantic_hash": "019f10c77e69b40900ad44b6b8927f17" + }, + "lib/ae_utils/ae_utils__file_extension_icon.ts": { + "mtime": 1782179325.976912, + "ast_hash": "fb1bf0f70a50d36c6fec5c67c1577555", + "semantic_hash": "fb1bf0f70a50d36c6fec5c67c1577555" + }, + "lib/ae_utils/ae_utils__file_extension_icon_lucide.ts": { + "mtime": 1782179325.9776936, + "ast_hash": "746d1d041925d6da2bda0723035578e4", + "semantic_hash": "746d1d041925d6da2bda0723035578e4" + }, + "lib/ae_utils/ae_utils__files.ts": { + "mtime": 1782179325.9764416, + "ast_hash": "ea4922a9ab93d9181a781cfc185513c4", + "semantic_hash": "ea4922a9ab93d9181a781cfc185513c4" + }, + "lib/ae_utils/ae_utils__format_html.ts": { + "mtime": 1782179325.9775896, + "ast_hash": "b2956e190ab63eb2bb7f78bd340e8365", + "semantic_hash": "b2956e190ab63eb2bb7f78bd340e8365" + }, + "lib/ae_utils/ae_utils__get_obj_li_w_match_prop.ts": { + "mtime": 1782179325.9765449, + "ast_hash": "cc5c190cb812c52b0f568328d990473d", + "semantic_hash": "cc5c190cb812c52b0f568328d990473d" + }, + "lib/ae_utils/ae_utils__is_datetime_recent.ts": { + "mtime": 1782179325.976318, + "ast_hash": "83d4238ec6562ee30ec44e1c847df7fc", + "semantic_hash": "83d4238ec6562ee30ec44e1c847df7fc" + }, + "lib/ae_utils/ae_utils__perm_checks.ts": { + "mtime": 1782179325.9762223, + "ast_hash": "1b9ebe8756bb52840ba4930a2959a1c6", + "semantic_hash": "1b9ebe8756bb52840ba4930a2959a1c6" + }, + "lib/ae_utils/ae_utils__process_data_string.ts": { + "mtime": 1782179325.9770284, + "ast_hash": "abc4e1ba494b112b35eb06bb2a827d41", + "semantic_hash": "abc4e1ba494b112b35eb06bb2a827d41" + }, + "lib/ae_utils/ae_utils__return_obj_type_path.ts": { + "mtime": 1782179325.9773424, + "ast_hash": "d91223985198aa125a7d58353c8b3e6a", + "semantic_hash": "d91223985198aa125a7d58353c8b3e6a" + }, + "lib/ae_utils/ae_utils__set_obj_prop_display_name.ts": { + "mtime": 1782179325.9771976, + "ast_hash": "a7a97b7004fdca47d7da92fcc188cf0e", + "semantic_hash": "a7a97b7004fdca47d7da92fcc188cf0e" + }, + "lib/ae_utils/ae_utils__to_title_case.ts": { + "mtime": 1782179325.9768076, + "ast_hash": "64ec26b65d7c0aa4ac7e534349e7dcdb", + "semantic_hash": "64ec26b65d7c0aa4ac7e534349e7dcdb" + }, + "lib/ae_utils/perm_checks.test.ts": { + "mtime": 1782179325.9778185, + "ast_hash": "f0e8f7fb94f82e056ac22e2f13fe2ba5", + "semantic_hash": "f0e8f7fb94f82e056ac22e2f13fe2ba5" + }, + "lib/ae_utils/utils.ts": { + "mtime": 1782179325.9784951, + "ast_hash": "7ce3ac7653e668129ab7eb38d5ba33c3", + "semantic_hash": "7ce3ac7653e668129ab7eb38d5ba33c3" + }, + "lib/app_components/e_app_access_type.svelte": { + "mtime": 1782179325.982255, + "ast_hash": "9753ebec097925c97ffb15eedc428332", + "semantic_hash": "9753ebec097925c97ffb15eedc428332" + }, + "lib/app_components/e_app_analytics.svelte": { + "mtime": 1782179325.9813178, + "ast_hash": "e1ac16c79006dbf730b201a50cabb4de", + "semantic_hash": "e1ac16c79006dbf730b201a50cabb4de" + }, + "lib/app_components/e_app_clipboard.svelte": { + "mtime": 1782179325.981267, + "ast_hash": "230eef19090fcf14734fd00cbb5e57f3", + "semantic_hash": "230eef19090fcf14734fd00cbb5e57f3" + }, + "lib/app_components/e_app_debug_menu.svelte": { + "mtime": 1782179325.9814308, + "ast_hash": "e819a0596d6b7c433941a80ffeaa3436", + "semantic_hash": "e819a0596d6b7c433941a80ffeaa3436" + }, + "lib/app_components/e_app_help_tech.svelte": { + "mtime": 1782179325.9824886, + "ast_hash": "f93f668047f9c6f8770674cef49a746d", + "semantic_hash": "f93f668047f9c6f8770674cef49a746d" + }, + "lib/app_components/e_app_sign_in_out.svelte": { + "mtime": 1782179325.9818013, + "ast_hash": "7f5dcc65a68b8937f5b9b6f69077d162", + "semantic_hash": "7f5dcc65a68b8937f5b9b6f69077d162" + }, + "lib/app_components/e_app_sys_bar.svelte": { + "mtime": 1782179325.98286, + "ast_hash": "40df5d6dc1ddb37132e54a0f23e6f1de", + "semantic_hash": "40df5d6dc1ddb37132e54a0f23e6f1de" + }, + "lib/app_components/e_app_url_builder.svelte": { + "mtime": 1782179325.9819605, + "ast_hash": "e47df4f577b98798def27c63bb0402ba", + "semantic_hash": "e47df4f577b98798def27c63bb0402ba" + }, + "lib/electron/electron_relay.ts": { + "mtime": 1782179325.9888175, + "ast_hash": "104376b60f0f4346be5ffb814ad032ce", + "semantic_hash": "104376b60f0f4346be5ffb814ad032ce" + }, + "lib/elements/action_fit_text.ts": { + "mtime": 1782179325.9829426, + "ast_hash": "99e8dc0ce6f0838a0e7783e6d5762fa7", + "semantic_hash": "99e8dc0ce6f0838a0e7783e6d5762fa7" + }, + "lib/elements/ae_ai_tools.svelte": { + "mtime": 1782179325.9862316, + "ast_hash": "f9c4486ea2051b8170983edb9b97b7d3", + "semantic_hash": "f9c4486ea2051b8170983edb9b97b7d3" + }, + "lib/elements/ae_comp__hosted_files_clip_video.svelte": { + "mtime": 1782179325.9869153, + "ast_hash": "708ec6906b8727c63ff354b432e56755", + "semantic_hash": "708ec6906b8727c63ff354b432e56755" + }, + "lib/elements/ae_comp__hosted_files_clip_video_li.svelte": { + "mtime": 1782179325.9869792, + "ast_hash": "8fe083105b9f8f43f91079f6941a915a", + "semantic_hash": "8fe083105b9f8f43f91079f6941a915a" + }, + "lib/elements/ae_comp__hosted_files_download_button.svelte": { + "mtime": 1782179325.9865859, + "ast_hash": "8db6f099160a3f0cf5b319e423f89373", + "semantic_hash": "8db6f099160a3f0cf5b319e423f89373" + }, + "lib/elements/ae_comp__hosted_files_upload.svelte": { + "mtime": 1782179325.9867187, + "ast_hash": "27ee4cce24c4061e09a607bc9001703a", + "semantic_hash": "27ee4cce24c4061e09a607bc9001703a" + }, + "lib/elements/ae_comp__site_config_editor.svelte": { + "mtime": 1782179325.9871979, + "ast_hash": "a3ef8adceda8f6d39595aa1996d1ef88", + "semantic_hash": "a3ef8adceda8f6d39595aa1996d1ef88" + }, + "lib/elements/ae_object_flags.svelte": { + "mtime": 1782179325.986323, + "ast_hash": "82ae40e6023138739e0dbbb1db58cf7e", + "semantic_hash": "82ae40e6023138739e0dbbb1db58cf7e" + }, + "lib/elements/ae_record_controls.svelte": { + "mtime": 1782179325.986419, + "ast_hash": "31b8e9240622081a07e76ad3084b3cb8", + "semantic_hash": "31b8e9240622081a07e76ad3084b3cb8" + }, + "lib/elements/codemirror_modules.ts": { + "mtime": 1782179325.9846892, + "ast_hash": "ea092e4018310162218c28b20823ed83", + "semantic_hash": "ea092e4018310162218c28b20823ed83" + }, + "lib/elements/element_access_denied.svelte": { + "mtime": 1782179325.9833944, + "ast_hash": "7121556e1a9e375b97f9ac4a02c2af86", + "semantic_hash": "7121556e1a9e375b97f9ac4a02c2af86" + }, + "lib/elements/element_ae_obj_field_editor.svelte": { + "mtime": 1782179325.9856536, + "ast_hash": "42c1e85fd20d1a2ef17ef21e7c903713", + "semantic_hash": "42c1e85fd20d1a2ef17ef21e7c903713" + }, + "lib/elements/element_data_store.svelte": { + "mtime": 1782179325.9853048, + "ast_hash": "47f43906137a81cdb156e1139d9222c0", + "semantic_hash": "47f43906137a81cdb156e1139d9222c0" + }, + "lib/elements/element_data_store_form.svelte": { + "mtime": 1782179325.9850903, + "ast_hash": "d6192449c4225d44bd6e6197f59daba9", + "semantic_hash": "d6192449c4225d44bd6e6197f59daba9" + }, + "lib/elements/element_editor_codemirror.svelte": { + "mtime": 1782179325.9848187, + "ast_hash": "a7943c6f673761a869e62ab8a230fa77", + "semantic_hash": "a7943c6f673761a869e62ab8a230fa77" + }, + "lib/elements/element_editor_tiptap.svelte": { + "mtime": 1782179325.98382, + "ast_hash": "c497991cab6ed7b7251154770de6cbbb", + "semantic_hash": "c497991cab6ed7b7251154770de6cbbb" + }, + "lib/elements/element_fit_text.svelte": { + "mtime": 1782179325.9843633, + "ast_hash": "40bf45c615f64b02c10e35177b7872d2", + "semantic_hash": "40bf45c615f64b02c10e35177b7872d2" + }, + "lib/elements/element_input_file.svelte": { + "mtime": 1782179325.9833262, + "ast_hash": "6cda8e77420991da1a28bf3e0bb147dc", + "semantic_hash": "6cda8e77420991da1a28bf3e0bb147dc" + }, + "lib/elements/element_input_files_tbl.svelte": { + "mtime": 1782179325.9845843, + "ast_hash": "f6a00ee155392a9b5e73440758706999", + "semantic_hash": "f6a00ee155392a9b5e73440758706999" + }, + "lib/elements/element_manage_event_file_li.svelte": { + "mtime": 1782179325.9860573, + "ast_hash": "a1c099be24f9a223fce8306dfe6f28b9", + "semantic_hash": "a1c099be24f9a223fce8306dfe6f28b9" + }, + "lib/elements/element_manage_event_file_li_all.svelte": { + "mtime": 1782179325.9835172, + "ast_hash": "1e9426c8d1364f3c0b9e92c3317ca2e0", + "semantic_hash": "1e9426c8d1364f3c0b9e92c3317ca2e0" + }, + "lib/elements/element_manage_event_file_li_direct.svelte": { + "mtime": 1782179325.983637, + "ast_hash": "09aaab051909cd8ee5676f0db39b2946", + "semantic_hash": "09aaab051909cd8ee5676f0db39b2946" + }, + "lib/elements/element_manage_hosted_file_li.svelte": { + "mtime": 1782179325.9842703, + "ast_hash": "c327220deae0d7f0f57263a60ae42b9d", + "semantic_hash": "c327220deae0d7f0f57263a60ae42b9d" + }, + "lib/elements/element_manage_hosted_file_li_all.svelte": { + "mtime": 1782179325.98372, + "ast_hash": "2a9ef01cb93d251dd3b4e5881ed7d8b6", + "semantic_hash": "2a9ef01cb93d251dd3b4e5881ed7d8b6" + }, + "lib/elements/element_obj_tbl_row.svelte": { + "mtime": 1782179325.9831274, + "ast_hash": "ac2580920e269eda04bc8110dd5ffd9a", + "semantic_hash": "ac2580920e269eda04bc8110dd5ffd9a" + }, + "lib/elements/element_pwa_install_prompt.svelte": { + "mtime": 1782179325.9834747, + "ast_hash": "743ea97bc9010cdc81f6ebc11592d2fb", + "semantic_hash": "743ea97bc9010cdc81f6ebc11592d2fb" + }, + "lib/elements/element_qr_scanner.svelte": { + "mtime": 1782179325.9839404, + "ast_hash": "d5b8a11b7918a93da55ae9f620844a73", + "semantic_hash": "d5b8a11b7918a93da55ae9f620844a73" + }, + "lib/elements/element_sql_qry.svelte": { + "mtime": 1782179325.9830372, + "ast_hash": "788086ebe9f74935f1173d19a6aa8ece", + "semantic_hash": "788086ebe9f74935f1173d19a6aa8ece" + }, + "lib/elements/element_websocket.svelte": { + "mtime": 1782179325.9841232, + "ast_hash": "081ab943226579ece04a9e78fb0b8464", + "semantic_hash": "081ab943226579ece04a9e78fb0b8464" + }, + "lib/elements/pwa_install.svelte.ts": { + "mtime": 1782179325.9872901, + "ast_hash": "6405a709f28c6aa3799b63404d565433", + "semantic_hash": "6405a709f28c6aa3799b63404d565433" + }, + "lib/stores/ae_events_stores.ts": { + "mtime": 1782179325.988009, + "ast_hash": "79a2e5f41115512df3a4e06deb555429", + "semantic_hash": "79a2e5f41115512df3a4e06deb555429" + }, + "lib/stores/ae_events_stores__auth.svelte.ts": { + "mtime": 1782179325.9878285, + "ast_hash": "d27b97587f3316544cd793972bf48f3e", + "semantic_hash": "d27b97587f3316544cd793972bf48f3e" + }, + "lib/stores/ae_events_stores__badges.svelte.ts": { + "mtime": 1782179325.987649, + "ast_hash": "368730d572a374633403e83a4a107159", + "semantic_hash": "368730d572a374633403e83a4a107159" + }, + "lib/stores/ae_events_stores__badges_defaults.ts": { + "mtime": 1782179325.987617, + "ast_hash": "f10c0a8bb7fb465cf3d3cd06084b9616", + "semantic_hash": "f10c0a8bb7fb465cf3d3cd06084b9616" + }, + "lib/stores/ae_events_stores__launcher.svelte.ts": { + "mtime": 1782179325.9877882, + "ast_hash": "62456b0c3e1b848b223bed69a53f6726", + "semantic_hash": "62456b0c3e1b848b223bed69a53f6726" + }, + "lib/stores/ae_events_stores__launcher_defaults.ts": { + "mtime": 1782179325.9874966, + "ast_hash": "5c8338c604f0d84c616faa3e2770766e", + "semantic_hash": "5c8338c604f0d84c616faa3e2770766e" + }, + "lib/stores/ae_events_stores__leads.svelte.ts": { + "mtime": 1782179325.9881778, + "ast_hash": "9efa38828017a630950f49296cb7008d", + "semantic_hash": "9efa38828017a630950f49296cb7008d" + }, + "lib/stores/ae_events_stores__leads_defaults.ts": { + "mtime": 1782179325.9879344, + "ast_hash": "5e681b7a98e93ef4913c28ebcebebdfa", + "semantic_hash": "5e681b7a98e93ef4913c28ebcebebdfa" + }, + "lib/stores/ae_events_stores__pres_mgmt.svelte.ts": { + "mtime": 1782179325.9881308, + "ast_hash": "4ea3c59d96d99adf7ed9e7e1d98755a9", + "semantic_hash": "4ea3c59d96d99adf7ed9e7e1d98755a9" + }, + "lib/stores/ae_events_stores__pres_mgmt_defaults.ts": { + "mtime": 1782179325.9884727, + "ast_hash": "d6cdfd7be952772e8da78255264a5087", + "semantic_hash": "d6cdfd7be952772e8da78255264a5087" + }, + "lib/stores/ae_idaa_stores.ts": { + "mtime": 1782179325.9877493, + "ast_hash": "5aa273feec10cc1bc7973f819a74c38a", + "semantic_hash": "5aa273feec10cc1bc7973f819a74c38a" + }, + "lib/stores/ae_idaa_stores__idaa_loc.svelte.ts": { + "mtime": 1782179325.988098, + "ast_hash": "e8045877932fa9398f1f963bc6791589", + "semantic_hash": "e8045877932fa9398f1f963bc6791589" + }, + "lib/stores/ae_stores.ts": { + "mtime": 1782179325.988614, + "ast_hash": "0f4130a12f0d433c9459cc692c819401", + "semantic_hash": "0f4130a12f0d433c9459cc692c819401" + }, + "lib/stores/ae_stores__auth_loc_defaults.ts": { + "mtime": 1782179325.9873781, + "ast_hash": "105d021007165bf6e52380f12b983fc7", + "semantic_hash": "105d021007165bf6e52380f12b983fc7" + }, + "lib/stores/store_versions.ts": { + "mtime": 1782179325.9883134, + "ast_hash": "2a3c49152431b42c1bc602707b1c60e7", + "semantic_hash": "2a3c49152431b42c1bc602707b1c60e7" + }, + "lib/types/ae_types.ts": { + "mtime": 1782179325.9907222, + "ast_hash": "390f1f58dfcc51f7974a95b08c932693", + "semantic_hash": "390f1f58dfcc51f7974a95b08c932693" + }, + "lib/types/temporary-svelte-augments.d.ts": { + "mtime": 1782179325.9907815, + "ast_hash": "b39195080c0e3635996f3d824bc365b9", + "semantic_hash": "b39195080c0e3635996f3d824bc365b9" + }, + "lucide-augment.d.ts": { + "mtime": 1782179325.9673445, + "ast_hash": "96db7ef6bbb2d368a93aaf3db81d5d71", + "semantic_hash": "96db7ef6bbb2d368a93aaf3db81d5d71" + }, + "routes/+error.svelte": { + "mtime": 1782179325.967651, + "ast_hash": "d01ed8f468a282fdbb73c9e6d155d4c6", + "semantic_hash": "d01ed8f468a282fdbb73c9e6d155d4c6" + }, + "routes/+layout.svelte": { + "mtime": 1782179325.9685283, + "ast_hash": "652851485823d87895e11056df03efa7", + "semantic_hash": "652851485823d87895e11056df03efa7" + }, + "routes/+layout.ts": { + "mtime": 1782179325.9680965, + "ast_hash": "a4c9b43c553c5f5894060a6b061481b0", + "semantic_hash": "a4c9b43c553c5f5894060a6b061481b0" + }, + "routes/+page.svelte": { + "mtime": 1782179325.9682765, + "ast_hash": "37252e0a7b87b6395de1cc753b0742e3", + "semantic_hash": "37252e0a7b87b6395de1cc753b0742e3" + }, + "routes/core/+layout.svelte": { + "mtime": 1782179325.9919097, + "ast_hash": "446ff7a04905aa5261b6f1a8800803cb", + "semantic_hash": "446ff7a04905aa5261b6f1a8800803cb" + }, + "routes/core/+page.svelte": { + "mtime": 1782179325.9921381, + "ast_hash": "3ba128f44b1dcee60a5a02cbd77402dc", + "semantic_hash": "3ba128f44b1dcee60a5a02cbd77402dc" + }, + "routes/core/+page.ts": { + "mtime": 1782179325.9914994, + "ast_hash": "ea832c8b242ac22f9225acb29daa2cec", + "semantic_hash": "ea832c8b242ac22f9225acb29daa2cec" + }, + "routes/core/accounts/+page.svelte": { + "mtime": 1782179326.0013847, + "ast_hash": "2e4c9cf3c574cdd4331ba843cade4d54", + "semantic_hash": "2e4c9cf3c574cdd4331ba843cade4d54" + }, + "routes/core/accounts/+page.ts": { + "mtime": 1782179326.001276, + "ast_hash": "7da5305bc85f736eac7db7163c8feaa0", + "semantic_hash": "7da5305bc85f736eac7db7163c8feaa0" + }, + "routes/core/accounts/[account_id]/+page.svelte": { + "mtime": 1782179326.012499, + "ast_hash": "15cdbacc92abfb474b40c1d40add5923", + "semantic_hash": "15cdbacc92abfb474b40c1d40add5923" + }, + "routes/core/activity_logs/+page.svelte": { + "mtime": 1782179326.0029545, + "ast_hash": "0530558d0c7da7d69802d23d6e610510", + "semantic_hash": "0530558d0c7da7d69802d23d6e610510" + }, + "routes/core/activity_logs/+page.ts": { + "mtime": 1782179326.0028193, + "ast_hash": "18a98d301c44b7cd2fee5202d1e6ff21", + "semantic_hash": "18a98d301c44b7cd2fee5202d1e6ff21" + }, + "routes/core/addresses/+page.svelte": { + "mtime": 1782179326.0022998, + "ast_hash": "035909e34386847a21386830b124bc61", + "semantic_hash": "035909e34386847a21386830b124bc61" + }, + "routes/core/addresses/[address_id]/+page.svelte": { + "mtime": 1782179326.0135348, + "ast_hash": "d61d70e5c759f5dcd969f5a67c214a85", + "semantic_hash": "d61d70e5c759f5dcd969f5a67c214a85" + }, + "routes/core/addresses/ae_comp__address_form.svelte": { + "mtime": 1782179326.0024629, + "ast_hash": "e40da40d37babe0aae130bc8c414e8de", + "semantic_hash": "e40da40d37babe0aae130bc8c414e8de" + }, + "routes/core/ae_comp__person_obj_tbl.svelte": { + "mtime": 1782179325.9916077, + "ast_hash": "6eae70f1585cc3085ec59b719c536a35", + "semantic_hash": "6eae70f1585cc3085ec59b719c536a35" + }, + "routes/core/contacts/+page.svelte": { + "mtime": 1782179326.00259, + "ast_hash": "8e5fc0aabfb03483f134708f5921a520", + "semantic_hash": "8e5fc0aabfb03483f134708f5921a520" + }, + "routes/core/contacts/[contact_id]/+page.svelte": { + "mtime": 1782179326.0137138, + "ast_hash": "902ab46b4f56b0d5e5623d7ad2acce82", + "semantic_hash": "902ab46b4f56b0d5e5623d7ad2acce82" + }, + "routes/core/contacts/ae_comp__contact_form.svelte": { + "mtime": 1782179326.0027556, + "ast_hash": "904d37dc7abddde2fef743e7355a7d48", + "semantic_hash": "904d37dc7abddde2fef743e7355a7d48" + }, + "routes/core/data_stores/+page.svelte": { + "mtime": 1782179325.9984317, + "ast_hash": "b82b6b22e5394a54328bf82ccdf6a25a", + "semantic_hash": "b82b6b22e5394a54328bf82ccdf6a25a" + }, + "routes/core/data_stores/+page.ts": { + "mtime": 1782179325.9983997, + "ast_hash": "85e8c0caa6efa28e177632af801b0ab6", + "semantic_hash": "85e8c0caa6efa28e177632af801b0ab6" + }, + "routes/core/files/+page.svelte": { + "mtime": 1782260215.239103, + "ast_hash": "3b4a39643a64523726db7ebbb1d3b0fa", + "semantic_hash": "3b4a39643a64523726db7ebbb1d3b0fa" + }, + "routes/core/files/+page.ts": { + "mtime": 1782179325.9987304, + "ast_hash": "85e8c0caa6efa28e177632af801b0ab6", + "semantic_hash": "85e8c0caa6efa28e177632af801b0ab6" + }, + "routes/core/lookups/+page.svelte": { + "mtime": 1782179326.0018115, + "ast_hash": "bf45b21023799bcec1fe3356bbd723f7", + "semantic_hash": "bf45b21023799bcec1fe3356bbd723f7" + }, + "routes/core/people/+page.svelte": { + "mtime": 1782179326.0018964, + "ast_hash": "2eb51ace7c36446b50e3919440945aba", + "semantic_hash": "2eb51ace7c36446b50e3919440945aba" + }, + "routes/core/people/+page.ts": { + "mtime": 1782179326.001865, + "ast_hash": "c2a64e163d79e4f3acfdc696b7f732a6", + "semantic_hash": "c2a64e163d79e4f3acfdc696b7f732a6" + }, + "routes/core/people/[person_id]/+page.svelte": { + "mtime": 1782179326.0133405, + "ast_hash": "f3e0c24d103caa9fdeb0e22ec931c9f8", + "semantic_hash": "f3e0c24d103caa9fdeb0e22ec931c9f8" + }, + "routes/core/people/[person_id]/+page.ts": { + "mtime": 1782179326.0131006, + "ast_hash": "12b54b3a908dafca705262d79d4d1737", + "semantic_hash": "12b54b3a908dafca705262d79d4d1737" + }, + "routes/core/people/ae_comp__person_form.svelte": { + "mtime": 1782179326.0020976, + "ast_hash": "9a203a246025056483b90011b961ecba", + "semantic_hash": "9a203a246025056483b90011b961ecba" + }, + "routes/core/people/ae_comp__person_search.svelte": { + "mtime": 1782179326.0021842, + "ast_hash": "b43409d10f4a7ca387d7b9bd47323207", + "semantic_hash": "b43409d10f4a7ca387d7b9bd47323207" + }, + "routes/core/person_view.svelte": { + "mtime": 1782179325.9918027, + "ast_hash": "163fca220a3138292beed502df62041c", + "semantic_hash": "163fca220a3138292beed502df62041c" + }, + "routes/core/sites/+page.svelte": { + "mtime": 1782179326.0015569, + "ast_hash": "3928713ec7f89207b1780de6f1eab9d3", + "semantic_hash": "3928713ec7f89207b1780de6f1eab9d3" + }, + "routes/core/sites/+page.ts": { + "mtime": 1782179326.0014393, + "ast_hash": "c2a64e163d79e4f3acfdc696b7f732a6", + "semantic_hash": "c2a64e163d79e4f3acfdc696b7f732a6" + }, + "routes/core/sites/[site_id]/+page.svelte": { + "mtime": 1782179326.0127542, + "ast_hash": "e7e36a427d3947c167e928087f8143b1", + "semantic_hash": "e7e36a427d3947c167e928087f8143b1" + }, + "routes/core/users/+page.svelte": { + "mtime": 1782179326.0016875, + "ast_hash": "d77e8311cf422484bf0301512662e008", + "semantic_hash": "d77e8311cf422484bf0301512662e008" + }, + "routes/core/users/[user_id]/+page.svelte": { + "mtime": 1782179326.0130181, + "ast_hash": "0b454078362a530d99f322d9e4c1b4b5", + "semantic_hash": "0b454078362a530d99f322d9e4c1b4b5" + }, + "routes/core/users/[user_id]/+page.ts": { + "mtime": 1782179326.0128279, + "ast_hash": "dcd2661fd397a3ace5313d574af57314", + "semantic_hash": "dcd2661fd397a3ace5313d574af57314" + }, + "routes/events/+layout.svelte": { + "mtime": 1782179325.993265, + "ast_hash": "7741a9a544c1624f7a6a1be3f8a2e720", + "semantic_hash": "7741a9a544c1624f7a6a1be3f8a2e720" + }, + "routes/events/+layout.ts": { + "mtime": 1782179325.9923558, + "ast_hash": "490405ece420b61dafecb90ea7aa3666", + "semantic_hash": "490405ece420b61dafecb90ea7aa3666" + }, + "routes/events/+page.svelte": { + "mtime": 1782179325.992542, + "ast_hash": "19fe34d30a9e1c148b3c1c13aee69179", + "semantic_hash": "19fe34d30a9e1c148b3c1c13aee69179" + }, + "routes/events/+page.ts": { + "mtime": 1782179325.9924011, + "ast_hash": "14485822263c3ab1919e1ab4bc9f2715", + "semantic_hash": "14485822263c3ab1919e1ab4bc9f2715" + }, + "routes/events/[event_id]/(badges)/badges/+layout.svelte": { + "mtime": 1782179326.0199265, + "ast_hash": "cdc0e9518b1ff2eb3b9440dbe5b7e504", + "semantic_hash": "cdc0e9518b1ff2eb3b9440dbe5b7e504" + }, + "routes/events/[event_id]/(badges)/badges/+page.svelte": { + "mtime": 1782179326.019667, + "ast_hash": "d63d26eb70f6a2fb3519113830a37dfd", + "semantic_hash": "d63d26eb70f6a2fb3519113830a37dfd" + }, + "routes/events/[event_id]/(badges)/badges/[badge_id]/+page.ts": { + "mtime": 1782179326.0298715, + "ast_hash": "fab573f8c5a546bfa72550f5950af6ca", + "semantic_hash": "fab573f8c5a546bfa72550f5950af6ca" + }, + "routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_obj_view.svelte": { + "mtime": 1782179326.0313048, + "ast_hash": "bcc67c767ac3c10721b0407d8787ddd1", + "semantic_hash": "bcc67c767ac3c10721b0407d8787ddd1" + }, + "routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_print_controls.svelte": { + "mtime": 1782179326.032207, + "ast_hash": "36fc0481b5c1bbb04afa49faeec5037e", + "semantic_hash": "36fc0481b5c1bbb04afa49faeec5037e" + }, + "routes/events/[event_id]/(badges)/badges/[badge_id]/ae_comp__badge_review_form.svelte": { + "mtime": 1782179326.0305917, + "ast_hash": "14d607c1c0649cc41072ddc09f5525ce", + "semantic_hash": "14d607c1c0649cc41072ddc09f5525ce" + }, + "routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.svelte": { + "mtime": 1782179326.0335796, + "ast_hash": "05632c00f2c7c0eeeb9b3f4ea4eeba9c", + "semantic_hash": "05632c00f2c7c0eeeb9b3f4ea4eeba9c" + }, + "routes/events/[event_id]/(badges)/badges/[badge_id]/print/+page.ts": { + "mtime": 1782179326.0333548, + "ast_hash": "e417e8382bd0b90537ae0a23c45d52e8", + "semantic_hash": "e417e8382bd0b90537ae0a23c45d52e8" + }, + "routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.svelte": { + "mtime": 1782179326.0338037, + "ast_hash": "59d1181a5a31e64c008f6a901544f00c", + "semantic_hash": "59d1181a5a31e64c008f6a901544f00c" + }, + "routes/events/[event_id]/(badges)/badges/[badge_id]/review/+page.ts": { + "mtime": 1782179326.0336576, + "ast_hash": "d49758ff0a062f9c65bf1a448f930c05", + "semantic_hash": "d49758ff0a062f9c65bf1a448f930c05" + }, + "routes/events/[event_id]/(badges)/badges/ae_comp__badge_create_form.svelte": { + "mtime": 1782179326.0192277, + "ast_hash": "04edc0593f7cb7b05a27246164fda62b", + "semantic_hash": "04edc0593f7cb7b05a27246164fda62b" + }, + "routes/events/[event_id]/(badges)/badges/ae_comp__badge_obj_li.svelte": { + "mtime": 1782179326.0201845, + "ast_hash": "74665ef2e4566eba672fbd646bf22210", + "semantic_hash": "74665ef2e4566eba672fbd646bf22210" + }, + "routes/events/[event_id]/(badges)/badges/ae_comp__badge_search.svelte": { + "mtime": 1782179326.019874, + "ast_hash": "4f31981f881c846df8470213e3a71d82", + "semantic_hash": "4f31981f881c846df8470213e3a71d82" + }, + "routes/events/[event_id]/(badges)/badges/ae_comp__badge_upload_form.svelte": { + "mtime": 1782179326.0194159, + "ast_hash": "8dd215dfb95fc94d7986b024d6edb447", + "semantic_hash": "8dd215dfb95fc94d7986b024d6edb447" + }, + "routes/events/[event_id]/(badges)/badges/config/+page.svelte": { + "mtime": 1782179326.0327086, + "ast_hash": "fd4c0320d189d96df4f06a38f57fff7a", + "semantic_hash": "fd4c0320d189d96df4f06a38f57fff7a" + }, + "routes/events/[event_id]/(badges)/badges/print_list/+page.svelte": { + "mtime": 1782179326.0323853, + "ast_hash": "fd464757dea7fb0efeb59534420c1a36", + "semantic_hash": "fd464757dea7fb0efeb59534420c1a36" + }, + "routes/events/[event_id]/(badges)/badges/reports/+page.svelte": { + "mtime": 1782179326.0332985, + "ast_hash": "853cab311b7e93e28b17df983f36d4b3", + "semantic_hash": "853cab311b7e93e28b17df983f36d4b3" + }, + "routes/events/[event_id]/(badges)/badges/reports/+page.ts": { + "mtime": 1782179326.0330532, + "ast_hash": "e58b467dbc57ab74f6fddecce8671bb5", + "semantic_hash": "e58b467dbc57ab74f6fddecce8671bb5" + }, + "routes/events/[event_id]/(badges)/badges/reports/reports_badge_export.svelte": { + "mtime": 1782179326.0331962, + "ast_hash": "c7a3c90960a71642340ee1b43db12e50", + "semantic_hash": "c7a3c90960a71642340ee1b43db12e50" + }, + "routes/events/[event_id]/(badges)/badges/reports/reports_badge_long_names.svelte": { + "mtime": 1782179326.0328617, + "ast_hash": "2fce34aa9c4153d3406194dac0e1c0b5", + "semantic_hash": "2fce34aa9c4153d3406194dac0e1c0b5" + }, + "routes/events/[event_id]/(badges)/badges/reports/reports_badge_print_throughput.svelte": { + "mtime": 1782179326.0329893, + "ast_hash": "dafca50ed0213f8bd9e98231e0d45322", + "semantic_hash": "dafca50ed0213f8bd9e98231e0d45322" + }, + "routes/events/[event_id]/(badges)/badges/stats/+page.svelte": { + "mtime": 1782179326.0322986, + "ast_hash": "216862d936b0717cdcce001797cc9ab4", + "semantic_hash": "216862d936b0717cdcce001797cc9ab4" + }, + "routes/events/[event_id]/(badges)/templates/+page.svelte": { + "mtime": 1782179326.020285, + "ast_hash": "efe3784c949c83148e986262b770624e", + "semantic_hash": "efe3784c949c83148e986262b770624e" + }, + "routes/events/[event_id]/(badges)/templates/ae_comp__badge_template_form.svelte": { + "mtime": 1782179326.0206656, + "ast_hash": "1627953bbaddbe934a0824ac52598a52", + "semantic_hash": "1627953bbaddbe934a0824ac52598a52" + }, + "routes/events/[event_id]/(launcher)/+layout.svelte": { + "mtime": 1782179326.0088985, + "ast_hash": "0018a067d05164b0429748a4313dea4e", + "semantic_hash": "0018a067d05164b0429748a4313dea4e" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_app_modes.svelte": { + "mtime": 1782179326.017039, + "ast_hash": "79383973647a66d5cca8da18e165f866", + "semantic_hash": "79383973647a66d5cca8da18e165f866" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_controller.svelte": { + "mtime": 1782179326.0171485, + "ast_hash": "5b7666d5bf46d92c99b07c0b18d61ec8", + "semantic_hash": "5b7666d5bf46d92c99b07c0b18d61ec8" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte": { + "mtime": 1782179326.017257, + "ast_hash": "8d32e11276f7165361fd40afc87e2695", + "semantic_hash": "8d32e11276f7165361fd40afc87e2695" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_launch_timing.svelte": { + "mtime": 1782179326.017439, + "ast_hash": "02a5c575c37ea0cbb7b965fd47999859", + "semantic_hash": "02a5c575c37ea0cbb7b965fd47999859" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_local_actions.svelte": { + "mtime": 1782179326.017561, + "ast_hash": "d189ebd5567bd82928dd90063cb74dc1", + "semantic_hash": "d189ebd5567bd82928dd90063cb74dc1" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_native_os.svelte": { + "mtime": 1782179326.0177479, + "ast_hash": "a70cbba2ca90a1ad81c72b9659bd9558", + "semantic_hash": "a70cbba2ca90a1ad81c72b9659bd9558" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_screen_saver.svelte": { + "mtime": 1782179326.0178032, + "ast_hash": "08d55d1b5be8aa31d1ef33f2c6692c99", + "semantic_hash": "08d55d1b5be8aa31d1ef33f2c6692c99" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_section.svelte": { + "mtime": 1782179326.0185652, + "ast_hash": "197277c2bae011306da93c35137111a9", + "semantic_hash": "197277c2bae011306da93c35137111a9" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_sync_timers.svelte": { + "mtime": 1782179326.01797, + "ast_hash": "f087798a95fa02f880fe889e3dc07baf", + "semantic_hash": "f087798a95fa02f880fe889e3dc07baf" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_template.svelte": { + "mtime": 1782179326.018125, + "ast_hash": "ae96a3892471591d80ed57dd00420d52", + "semantic_hash": "ae96a3892471591d80ed57dd00420d52" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_updates.svelte": { + "mtime": 1782179326.0182512, + "ast_hash": "ae529fc1bdcf72775434e1d69641336b", + "semantic_hash": "ae529fc1bdcf72775434e1d69641336b" + }, + "routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_wallpaper.svelte": { + "mtime": 1782179326.0184455, + "ast_hash": "fdfc27ddc636fb25026443c8a47d905c", + "semantic_hash": "fdfc27ddc636fb25026443c8a47d905c" + }, + "routes/events/[event_id]/(launcher)/launcher/+layout.svelte": { + "mtime": 1782179326.016865, + "ast_hash": "caa8514eca1d64c1fbdeafa893c6a53b", + "semantic_hash": "caa8514eca1d64c1fbdeafa893c6a53b" + }, + "routes/events/[event_id]/(launcher)/launcher/+layout.ts": { + "mtime": 1782179326.016325, + "ast_hash": "75c3ebc764b91e48ce40af9d901e39ee", + "semantic_hash": "75c3ebc764b91e48ce40af9d901e39ee" + }, + "routes/events/[event_id]/(launcher)/launcher/+page.svelte": { + "mtime": 1782179326.0163693, + "ast_hash": "bddb4ec57480f77964fc671cfb6d6103", + "semantic_hash": "bddb4ec57480f77964fc671cfb6d6103" + }, + "routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.svelte": { + "mtime": 1782179326.02079, + "ast_hash": "1d4c5085ff498d330fd2b28f45f5efa2", + "semantic_hash": "1d4c5085ff498d330fd2b28f45f5efa2" + }, + "routes/events/[event_id]/(launcher)/launcher/[event_location_id]/+page.ts": { + "mtime": 1782179326.0207498, + "ast_hash": "14526e7b0c2c8261b612bc3abaad6246", + "semantic_hash": "14526e7b0c2c8261b612bc3abaad6246" + }, + "routes/events/[event_id]/(launcher)/launcher_background_sync.svelte": { + "mtime": 1782179326.0092268, + "ast_hash": "2f068bce892e811b8f129ec4ac337047", + "semantic_hash": "2f068bce892e811b8f129ec4ac337047" + }, + "routes/events/[event_id]/(launcher)/launcher_cfg.svelte": { + "mtime": 1782179326.0094354, + "ast_hash": "499ca679f34e415034b2dc1e1912721c", + "semantic_hash": "499ca679f34e415034b2dc1e1912721c" + }, + "routes/events/[event_id]/(launcher)/launcher_file_cont.svelte": { + "mtime": 1782179326.0113583, + "ast_hash": "78607944cd23ea925dede784556b5c59", + "semantic_hash": "78607944cd23ea925dede784556b5c59" + }, + "routes/events/[event_id]/(launcher)/launcher_menu.svelte": { + "mtime": 1782179326.0095923, + "ast_hash": "5a5e722bbc88817daee12cd54d6d0353", + "semantic_hash": "5a5e722bbc88817daee12cd54d6d0353" + }, + "routes/events/[event_id]/(launcher)/launcher_presentation_view.svelte": { + "mtime": 1782179326.0096447, + "ast_hash": "25f915d59a77df1d9be1d6c456249aaa", + "semantic_hash": "25f915d59a77df1d9be1d6c456249aaa" + }, + "routes/events/[event_id]/(launcher)/launcher_presenter_view.svelte": { + "mtime": 1782179326.0097895, + "ast_hash": "7169b710bb2772d34575b5e6ad5de72f", + "semantic_hash": "7169b710bb2772d34575b5e6ad5de72f" + }, + "routes/events/[event_id]/(launcher)/launcher_presenter_view_posters.svelte": { + "mtime": 1782179326.0098894, + "ast_hash": "56465a7800e5838836c73f45793f848b", + "semantic_hash": "56465a7800e5838836c73f45793f848b" + }, + "routes/events/[event_id]/(launcher)/launcher_session_view.svelte": { + "mtime": 1782179326.0101488, + "ast_hash": "2964dfc48797d5227a58cc8608a883f5", + "semantic_hash": "2964dfc48797d5227a58cc8608a883f5" + }, + "routes/events/[event_id]/(launcher)/launcher_session_view_posters.svelte": { + "mtime": 1782179326.0103624, + "ast_hash": "9d0f67e0c367c40c74e530c56d804324", + "semantic_hash": "9d0f67e0c367c40c74e530c56d804324" + }, + "routes/events/[event_id]/(launcher)/menu_launcher_controls.svelte": { + "mtime": 1782179326.010543, + "ast_hash": "a655926a47f720b5b19bbe52e1badb22", + "semantic_hash": "a655926a47f720b5b19bbe52e1badb22" + }, + "routes/events/[event_id]/(launcher)/menu_location_list.svelte": { + "mtime": 1782179326.0106785, + "ast_hash": "551f792d4f38d744af8d93eeac6f42cc", + "semantic_hash": "551f792d4f38d744af8d93eeac6f42cc" + }, + "routes/events/[event_id]/(launcher)/menu_session_list.svelte": { + "mtime": 1782179326.0109098, + "ast_hash": "a43b99264f42877133245c00b33750cb", + "semantic_hash": "a43b99264f42877133245c00b33750cb" + }, + "routes/events/[event_id]/(leads)/leads/+layout.svelte": { + "mtime": 1782179326.0186388, + "ast_hash": "f8b178ca5b25fc881c5e549c9f92996c", + "semantic_hash": "f8b178ca5b25fc881c5e549c9f92996c" + }, + "routes/events/[event_id]/(leads)/leads/+layout.ts": { + "mtime": 1782179326.0186827, + "ast_hash": "737a0da54e63893c5d1fdadd14b904dd", + "semantic_hash": "737a0da54e63893c5d1fdadd14b904dd" + }, + "routes/events/[event_id]/(leads)/leads/+page.svelte": { + "mtime": 1782179326.0189364, + "ast_hash": "19171cd9627fa7878c7742ee17dc6027", + "semantic_hash": "19171cd9627fa7878c7742ee17dc6027" + }, + "routes/events/[event_id]/(leads)/leads/+page.ts": { + "mtime": 1782179326.0187466, + "ast_hash": "8172d9a0287406778f202f2a66b14a1c", + "semantic_hash": "8172d9a0287406778f202f2a66b14a1c" + }, + "routes/events/[event_id]/(leads)/leads/ae_comp__exhibit_search.svelte": { + "mtime": 1782179326.0190423, + "ast_hash": "1b685672f7506d737e36a33e6553228e", + "semantic_hash": "1b685672f7506d737e36a33e6553228e" + }, + "routes/events/[event_id]/(leads)/leads/config/+page.svelte": { + "mtime": 1782179326.0238552, + "ast_hash": "8d66ef6ad4b763a7dc8dc0c1fd6dbe9a", + "semantic_hash": "8d66ef6ad4b763a7dc8dc0c1fd6dbe9a" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.svelte": { + "mtime": 1782179326.0266664, + "ast_hash": "dc1cd4ae22caeb295981c60e7fb36320", + "semantic_hash": "dc1cd4ae22caeb295981c60e7fb36320" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+layout.ts": { + "mtime": 1782179326.0267987, + "ast_hash": "5bdf30410c5f8919c8dbcc4837c40622", + "semantic_hash": "5bdf30410c5f8919c8dbcc4837c40622" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/+page.svelte": { + "mtime": 1782179326.0281744, + "ast_hash": "274660584c1d343f2ca53c6ef5d22b70", + "semantic_hash": "274660584c1d343f2ca53c6ef5d22b70" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_custom_questions.svelte": { + "mtime": 1782179326.0269275, + "ast_hash": "ab01da708d6dd39c52753f701fe420e8", + "semantic_hash": "ab01da708d6dd39c52753f701fe420e8" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_license_list.svelte": { + "mtime": 1782179326.0270274, + "ast_hash": "341c9d3d7de96a24f70f14a39f4b13a1", + "semantic_hash": "341c9d3d7de96a24f70f14a39f4b13a1" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_payment.svelte": { + "mtime": 1782179326.027727, + "ast_hash": "735e734d5e7c3ba4d777361d8514120a", + "semantic_hash": "735e734d5e7c3ba4d777361d8514120a" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_signin.svelte": { + "mtime": 1782179326.0283155, + "ast_hash": "469fd6bfa69ffdad3710f9ad4eb204bb", + "semantic_hash": "469fd6bfa69ffdad3710f9ad4eb204bb" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_obj_li.svelte": { + "mtime": 1782179326.0267546, + "ast_hash": "c03f28e43b75f64c6c77dd48db78d3ac", + "semantic_hash": "c03f28e43b75f64c6c77dd48db78d3ac" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__exhibit_tracking_search.svelte": { + "mtime": 1782179326.0278394, + "ast_hash": "3d967ac1028691ea0807e295f6938b37", + "semantic_hash": "3d967ac1028691ea0807e295f6938b37" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_manual_search.svelte": { + "mtime": 1782179326.027147, + "ast_hash": "7962e49e7a925c7e37e2b2acc4153cf9", + "semantic_hash": "7962e49e7a925c7e37e2b2acc4153cf9" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner.svelte": { + "mtime": 1782179326.0273483, + "ast_hash": "b044936d7356f17dc5a4627113ee8191", + "semantic_hash": "b044936d7356f17dc5a4627113ee8191" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__lead_qr_scanner_multi.svelte": { + "mtime": 1782179326.0275974, + "ast_hash": "21b33a25c64f8b08ce31ea79ec1432cc", + "semantic_hash": "21b33a25c64f8b08ce31ea79ec1432cc" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_add.svelte": { + "mtime": 1782179326.0284307, + "ast_hash": "47b197308e8707267007b12faebb1463", + "semantic_hash": "47b197308e8707267007b12faebb1463" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_manage.svelte": { + "mtime": 1782179326.028802, + "ast_hash": "f05b9ee2ecee55eddaaefdf97409eb20", + "semantic_hash": "f05b9ee2ecee55eddaaefdf97409eb20" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/ae_comp__tab_start.svelte": { + "mtime": 1782179326.0284755, + "ast_hash": "b93202a2ae80045c773c13d8b7b79b5e", + "semantic_hash": "b93202a2ae80045c773c13d8b7b79b5e" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.svelte": { + "mtime": 1782179326.0342262, + "ast_hash": "4b3586ca0c1d4de6ed674eb9721ad512", + "semantic_hash": "4b3586ca0c1d4de6ed674eb9721ad512" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/+page.ts": { + "mtime": 1782179326.0338705, + "ast_hash": "90b9e8b8a49cee28066a962f3343043a", + "semantic_hash": "90b9e8b8a49cee28066a962f3343043a" + }, + "routes/events/[event_id]/(leads)/leads/exhibit/[exhibit_id]/lead/[exhibit_tracking_id]/ae_comp__lead_detail_form.svelte": { + "mtime": 1782179326.0339832, + "ast_hash": "a060027faaa5eed973c0ea43c45b0196", + "semantic_hash": "a060027faaa5eed973c0ea43c45b0196" + }, + "routes/events/[event_id]/(pres_mgmt)/+layout.svelte": { + "mtime": 1782246589.4157789, + "ast_hash": "fafe993570e061129622b3e7963f88c1", + "semantic_hash": "fafe993570e061129622b3e7963f88c1" + }, + "routes/events/[event_id]/(pres_mgmt)/+layout.ts": { + "mtime": 1782179326.01214, + "ast_hash": "2da45494c8cb9073b9fe4c1780a3a78b", + "semantic_hash": "2da45494c8cb9073b9fe4c1780a3a78b" + }, + "routes/events/[event_id]/(pres_mgmt)/ae_comp__event_page_menu.svelte": { + "mtime": 1782179326.0123005, + "ast_hash": "6efb0300bc1005b02e3eda4023dac55c", + "semantic_hash": "6efb0300bc1005b02e3eda4023dac55c" + }, + "routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li.svelte": { + "mtime": 1782179326.029121, + "ast_hash": "266f51c2fceb39534c163894416faaf7", + "semantic_hash": "266f51c2fceb39534c163894416faaf7" + }, + "routes/events/[event_id]/(pres_mgmt)/device/device/ae_comp__event_device_obj_li_wrapper.svelte": { + "mtime": 1782179326.028886, + "ast_hash": "55782731a6d9f75e544160308f9a2e58", + "semantic_hash": "55782731a6d9f75e544160308f9a2e58" + }, + "routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.svelte": { + "mtime": 1782179326.0294204, + "ast_hash": "6d70d53f9556729cd415dc66dd82fc06", + "semantic_hash": "6d70d53f9556729cd415dc66dd82fc06" + }, + "routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/+page.ts": { + "mtime": 1782179326.029207, + "ast_hash": "31ac3ff932164b8c72fda3f434b9a4f9", + "semantic_hash": "31ac3ff932164b8c72fda3f434b9a4f9" + }, + "routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_page_menu.svelte": { + "mtime": 1782179326.0296283, + "ast_hash": "afd34cab2504864c145bbc08adbe43c3", + "semantic_hash": "afd34cab2504864c145bbc08adbe43c3" + }, + "routes/events/[event_id]/(pres_mgmt)/location/[event_location_id]/ae_comp__location_view.svelte": { + "mtime": 1782179326.0298002, + "ast_hash": "2eaecfc00f68a2efd8dc8f2d333a5c4d", + "semantic_hash": "2eaecfc00f68a2efd8dc8f2d333a5c4d" + }, + "routes/events/[event_id]/(pres_mgmt)/locations/+page.svelte": { + "mtime": 1782179326.0210192, + "ast_hash": "2ddb19589fc21306bcd0a8c7924a492a", + "semantic_hash": "2ddb19589fc21306bcd0a8c7924a492a" + }, + "routes/events/[event_id]/(pres_mgmt)/locations/+page.ts": { + "mtime": 1782179326.0208702, + "ast_hash": "241692e26ff7bf69831f53b0f70f1434", + "semantic_hash": "241692e26ff7bf69831f53b0f70f1434" + }, + "routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__event_location_obj_li.svelte": { + "mtime": 1782179326.0212023, + "ast_hash": "d5fb0893cb6b353243ba4f43a30fb2a6", + "semantic_hash": "d5fb0893cb6b353243ba4f43a30fb2a6" + }, + "routes/events/[event_id]/(pres_mgmt)/locations/ae_comp__locations_page_menu.svelte": { + "mtime": 1782179326.0213182, + "ast_hash": "a1c00ca24e77d3e35b64c5268ede8f3a", + "semantic_hash": "a1c00ca24e77d3e35b64c5268ede8f3a" + }, + "routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.svelte": { + "mtime": 1782179326.0236812, + "ast_hash": "4eac2cd891184b87e54f795c96809b00", + "semantic_hash": "4eac2cd891184b87e54f795c96809b00" + }, + "routes/events/[event_id]/(pres_mgmt)/pres_mgmt/+page.ts": { + "mtime": 1782179326.0232491, + "ast_hash": "a58e0911e6addd44764675bac0507a96", + "semantic_hash": "a58e0911e6addd44764675bac0507a96" + }, + "routes/events/[event_id]/(pres_mgmt)/pres_mgmt/ae_comp__pres_mgmt_session_search.svelte": { + "mtime": 1782179326.0233846, + "ast_hash": "e1e83a40b73530e39149b8494f9a3891", + "semantic_hash": "e1e83a40b73530e39149b8494f9a3891" + }, + "routes/events/[event_id]/(pres_mgmt)/pres_mgmt/config/+page.svelte": { + "mtime": 1782179326.0265765, + "ast_hash": "c8c6bfdd1f7da922d664642a1e85e489", + "semantic_hash": "c8c6bfdd1f7da922d664642a1e85e489" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.svelte": { + "mtime": 1782253062.7382007, + "ast_hash": "9f488df6018cafc00146df77d340a6b6", + "semantic_hash": "9f488df6018cafc00146df77d340a6b6" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/+page.ts": { + "mtime": 1782179326.0239227, + "ast_hash": "d82bb0e93b7871cecf50e25aec623eff", + "semantic_hash": "d82bb0e93b7871cecf50e25aec623eff" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__event_presenter_form_agree.svelte": { + "mtime": 1782255881.750986, + "ast_hash": "6d3776f1ce6334732e66f788d0fff8cf", + "semantic_hash": "6d3776f1ce6334732e66f788d0fff8cf" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_page_menu.svelte": { + "mtime": 1782179326.0246043, + "ast_hash": "ca5880ef4dd94174ef2c20d7e2ae2527", + "semantic_hash": "ca5880ef4dd94174ef2c20d7e2ae2527" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/[presenter_id]/ae_comp__presenter_view.svelte": { + "mtime": 1782179326.0251017, + "ast_hash": "cd31651a7f767e478606e333bdbad7ba", + "semantic_hash": "cd31651a7f767e478606e333bdbad7ba" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li.svelte": { + "mtime": 1782242245.5109844, + "ast_hash": "32a628d9a0e44fe1c7217bd86d0a9ba9", + "semantic_hash": "32a628d9a0e44fe1c7217bd86d0a9ba9" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_li_wrapper.svelte": { + "mtime": 1782179326.0213878, + "ast_hash": "eb220e277c7d8d217e9b5c93a295e440", + "semantic_hash": "eb220e277c7d8d217e9b5c93a295e440" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl.svelte": { + "mtime": 1782179326.021584, + "ast_hash": "b529e6ff8b863f03bc573e9eb1e9f298", + "semantic_hash": "b529e6ff8b863f03bc573e9eb1e9f298" + }, + "routes/events/[event_id]/(pres_mgmt)/presenter/ae_comp__event_presenter_obj_tbl_wrapper.svelte": { + "mtime": 1782179326.0216792, + "ast_hash": "8699324f3b36761ef7ebbfb146420dd6", + "semantic_hash": "8699324f3b36761ef7ebbfb146420dd6" + }, + "routes/events/[event_id]/(pres_mgmt)/reports/+page.svelte": { + "mtime": 1782179326.0227392, + "ast_hash": "81133ba2968e1821000f5608356f75a3", + "semantic_hash": "81133ba2968e1821000f5608356f75a3" + }, + "routes/events/[event_id]/(pres_mgmt)/reports/event_reports_page_menu.svelte": { + "mtime": 1782179326.021965, + "ast_hash": "f2119aa4ca467618b0fd0918f1741c7f", + "semantic_hash": "f2119aa4ca467618b0fd0918f1741c7f" + }, + "routes/events/[event_id]/(pres_mgmt)/reports/reports_file_downloads.svelte": { + "mtime": 1782179326.023013, + "ast_hash": "96efe1c8e9c837bb8235870fd7b207c4", + "semantic_hash": "96efe1c8e9c837bb8235870fd7b207c4" + }, + "routes/events/[event_id]/(pres_mgmt)/reports/reports_files.svelte": { + "mtime": 1782179326.0221872, + "ast_hash": "93b99f5d3dd5409f492769972715fdd1", + "semantic_hash": "93b99f5d3dd5409f492769972715fdd1" + }, + "routes/events/[event_id]/(pres_mgmt)/reports/reports_presenters.svelte": { + "mtime": 1782179326.0223703, + "ast_hash": "1dcbbe43d5597349ffded1ebd4215dc7", + "semantic_hash": "1dcbbe43d5597349ffded1ebd4215dc7" + }, + "routes/events/[event_id]/(pres_mgmt)/reports/reports_sessions.svelte": { + "mtime": 1782179326.022552, + "ast_hash": "5f08aaad4b815c2480b6b2353852e827", + "semantic_hash": "5f08aaad4b815c2480b6b2353852e827" + }, + "routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.svelte": { + "mtime": 1782253207.2157009, + "ast_hash": "43d7d6693bf4c3c6ecc5124e0a8a6c09", + "semantic_hash": "43d7d6693bf4c3c6ecc5124e0a8a6c09" + }, + "routes/events/[event_id]/(pres_mgmt)/session/[session_id]/+page.ts": { + "mtime": 1782179326.0251977, + "ast_hash": "87d13e24d422e7cd13cdb4b5900cfafa", + "semantic_hash": "87d13e24d422e7cd13cdb4b5900cfafa" + }, + "routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_form_agree.svelte": { + "mtime": 1782256061.0631738, + "ast_hash": "eaea2452b99120b3017df39c82e830e2", + "semantic_hash": "eaea2452b99120b3017df39c82e830e2" + }, + "routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__event_session_poc_profile.svelte": { + "mtime": 1782179326.0255833, + "ast_hash": "72b10c7b8d725da320cc19b31e5b03a4", + "semantic_hash": "72b10c7b8d725da320cc19b31e5b03a4" + }, + "routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_page_menu.svelte": { + "mtime": 1782179326.0259216, + "ast_hash": "ab01c188fd1b53fcc19b247609c0bc86", + "semantic_hash": "ab01c188fd1b53fcc19b247609c0bc86" + }, + "routes/events/[event_id]/(pres_mgmt)/session/[session_id]/ae_comp__session_view.svelte": { + "mtime": 1782253223.3052454, + "ast_hash": "7dd63747693012a3aa4cc7d94dbe6b97", + "semantic_hash": "7dd63747693012a3aa4cc7d94dbe6b97" + }, + "routes/events/[event_id]/(pres_mgmt)/session/ae_comp__event_session_alert.svelte": { + "mtime": 1782179326.0231817, + "ast_hash": "8fd5939f22588208e58f2fdd81323fc3", + "semantic_hash": "8fd5939f22588208e58f2fdd81323fc3" + }, + "routes/events/[event_id]/+layout.svelte": { + "mtime": 1782179325.9996572, + "ast_hash": "b8698c94a76a1f340d309baffa72d9cd", + "semantic_hash": "b8698c94a76a1f340d309baffa72d9cd" + }, + "routes/events/[event_id]/+layout.ts": { + "mtime": 1782179325.9994872, + "ast_hash": "977c27ef2b60b2ae1005025107b9ab64", + "semantic_hash": "977c27ef2b60b2ae1005025107b9ab64" + }, + "routes/events/[event_id]/+page.svelte": { + "mtime": 1782179325.9996002, + "ast_hash": "dc6d31afa97da996c46258aeb5e31c9e", + "semantic_hash": "dc6d31afa97da996c46258aeb5e31c9e" + }, + "routes/events/[event_id]/settings/+page.svelte": { + "mtime": 1782179326.011991, + "ast_hash": "85934c4612b130eb5c2c9fdcbe1746d1", + "semantic_hash": "85934c4612b130eb5c2c9fdcbe1746d1" + }, + "routes/events/[event_id]/settings/ae_comp__event_settings_abstracts_form.svelte": { + "mtime": 1782179326.0114882, + "ast_hash": "61b3c631ef112d008f3aa2ba361d9535", + "semantic_hash": "61b3c631ef112d008f3aa2ba361d9535" + }, + "routes/events/[event_id]/settings/ae_comp__event_settings_badges_form.svelte": { + "mtime": 1782179326.0117848, + "ast_hash": "0096e57d348f56a4d203cf9f33b3246d", + "semantic_hash": "0096e57d348f56a4d203cf9f33b3246d" + }, + "routes/events/[event_id]/settings/ae_comp__event_settings_basic_form.svelte": { + "mtime": 1782179326.0115867, + "ast_hash": "9be2f52e1152dfbe4d4f30e8a13631bf", + "semantic_hash": "9be2f52e1152dfbe4d4f30e8a13631bf" + }, + "routes/events/[event_id]/settings/ae_comp__event_settings_form.svelte": { + "mtime": 1782179326.0116339, + "ast_hash": "d991cd4c0cbd5cc18342708c95fb7778", + "semantic_hash": "d991cd4c0cbd5cc18342708c95fb7778" + }, + "routes/events/[event_id]/settings/modules/+page.svelte": { + "mtime": 1782179326.0157452, + "ast_hash": "bdfed35d065736bcd5f47111908d6822", + "semantic_hash": "bdfed35d065736bcd5f47111908d6822" + }, + "routes/events/[event_id]/sign_in_out.svelte": { + "mtime": 1782242166.678511, + "ast_hash": "5923cc4c792badd0e35c53332aa2f973", + "semantic_hash": "5923cc4c792badd0e35c53332aa2f973" + }, + "routes/events/ae_comp__event_file_obj_tbl.svelte": { + "mtime": 1782179325.9928534, + "ast_hash": "812aa1023456b51b9dadedd06d460c0f", + "semantic_hash": "812aa1023456b51b9dadedd06d460c0f" + }, + "routes/events/ae_comp__event_file_obj_tbl_wrapper.svelte": { + "mtime": 1782179325.993597, + "ast_hash": "25af5d1d864e669db0a4065c7c4f6197", + "semantic_hash": "25af5d1d864e669db0a4065c7c4f6197" + }, + "routes/events/ae_comp__event_files_upload.svelte": { + "mtime": 1782179325.9934113, + "ast_hash": "2fb7f4b6539c20a1f2b478c54de11093", + "semantic_hash": "2fb7f4b6539c20a1f2b478c54de11093" + }, + "routes/events/ae_comp__event_presentation_obj_li.svelte": { + "mtime": 1782179325.9940655, + "ast_hash": "dcc94a6240c15ae3887b6fb056f23196", + "semantic_hash": "dcc94a6240c15ae3887b6fb056f23196" + }, + "routes/events/ae_comp__event_session_obj_li.svelte": { + "mtime": 1782179325.9930477, + "ast_hash": "f43c9d82459f37d6de3197ae18d22b63", + "semantic_hash": "f43c9d82459f37d6de3197ae18d22b63" + }, + "routes/events/ae_comp__event_session_obj_li_wrapper.svelte": { + "mtime": 1782179325.993127, + "ast_hash": "b257850b412c79a9556d44e6087d9e58", + "semantic_hash": "b257850b412c79a9556d44e6087d9e58" + }, + "routes/events/ae_comp__event_session_obj_tbl.svelte": { + "mtime": 1782179325.9922307, + "ast_hash": "2891e32af62e8d4577990dca8dde6388", + "semantic_hash": "2891e32af62e8d4577990dca8dde6388" + }, + "routes/events/ae_comp__event_session_obj_tbl_wrapper.svelte": { + "mtime": 1782179325.9935057, + "ast_hash": "540d33bbf1d7b7bcf6a601c9accbb8a9", + "semantic_hash": "540d33bbf1d7b7bcf6a601c9accbb8a9" + }, + "routes/events/ae_comp__events_menu_nav.svelte": { + "mtime": 1782179325.992318, + "ast_hash": "f622ffcf9c96749c54f498dbbf4d09ac", + "semantic_hash": "f622ffcf9c96749c54f498dbbf4d09ac" + }, + "routes/events/ae_comp__events_menu_opts.svelte": { + "mtime": 1782179325.9938657, + "ast_hash": "7783e875547f85d45baefe6b54bbea6d", + "semantic_hash": "7783e875547f85d45baefe6b54bbea6d" + }, + "routes/health/+server.ts": { + "mtime": 1782179325.9983513, + "ast_hash": "ea5e54a70960bf5ac8d26fa5d0c29a64", + "semantic_hash": "ea5e54a70960bf5ac8d26fa5d0c29a64" + }, + "routes/hosted_files/+layout.svelte": { + "mtime": 1782179325.9913597, + "ast_hash": "fc0acf73242d7f6e32c3ff3e7f193677", + "semantic_hash": "fc0acf73242d7f6e32c3ff3e7f193677" + }, + "routes/hosted_files/+layout.ts": { + "mtime": 1782179325.991295, + "ast_hash": "f4bcfb73c84f415eeec921934042bfdd", + "semantic_hash": "f4bcfb73c84f415eeec921934042bfdd" + }, + "routes/hosted_files/+page.svelte": { + "mtime": 1782179325.9913938, + "ast_hash": "4f8b1b32448e00f51d79990ea9b87938", + "semantic_hash": "4f8b1b32448e00f51d79990ea9b87938" + }, + "routes/hosted_files/video_util/+page.svelte": { + "mtime": 1782179326.0010974, + "ast_hash": "3c240d40eb3e05cb48fde6eff9227fa0", + "semantic_hash": "3c240d40eb3e05cb48fde6eff9227fa0" + }, + "routes/hosted_files/video_util/hold_video_util.svelte": { + "mtime": 1782179326.0012054, + "ast_hash": "e0e7e15976a2afdc8898f06dd0b8d15e", + "semantic_hash": "e0e7e15976a2afdc8898f06dd0b8d15e" + }, + "routes/idaa/(idaa)/+layout.svelte": { + "mtime": 1782179326.0002117, + "ast_hash": "cc4c90bece57867930ca8d9ea4da9042", + "semantic_hash": "cc4c90bece57867930ca8d9ea4da9042" + }, + "routes/idaa/(idaa)/+page.svelte": { + "mtime": 1782179325.999932, + "ast_hash": "5d26aa5c06bd060e17c5ba473b163168", + "semantic_hash": "5d26aa5c06bd060e17c5ba473b163168" + }, + "routes/idaa/(idaa)/archives/+layout.svelte": { + "mtime": 1782179326.0030174, + "ast_hash": "f13e57a2b4d33374f3d3c43db8927683", + "semantic_hash": "f13e57a2b4d33374f3d3c43db8927683" + }, + "routes/idaa/(idaa)/archives/+layout.ts": { + "mtime": 1782179326.0031793, + "ast_hash": "c8a6b25cbaf6131d36f47aff51d7269b", + "semantic_hash": "c8a6b25cbaf6131d36f47aff51d7269b" + }, + "routes/idaa/(idaa)/archives/+page.svelte": { + "mtime": 1782179326.0032892, + "ast_hash": "618a1e9983534dd47dc7d6fbdd82b647", + "semantic_hash": "618a1e9983534dd47dc7d6fbdd82b647" + }, + "routes/idaa/(idaa)/archives/[archive_id]/+page.svelte": { + "mtime": 1782179326.0144868, + "ast_hash": "b0b3ddc654c6571d4bd6b134e01457cd", + "semantic_hash": "b0b3ddc654c6571d4bd6b134e01457cd" + }, + "routes/idaa/(idaa)/archives/[archive_id]/+page.ts": { + "mtime": 1782179326.01424, + "ast_hash": "967a0df00099d3c579e9dc37bb0a75e7", + "semantic_hash": "967a0df00099d3c579e9dc37bb0a75e7" + }, + "routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_id_edit.svelte": { + "mtime": 1782179326.0152872, + "ast_hash": "bf955c302a125f45a306dc2ee2dc4e47", + "semantic_hash": "bf955c302a125f45a306dc2ee2dc4e47" + }, + "routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_content_obj_li.svelte": { + "mtime": 1782179326.0140302, + "ast_hash": "73d5fcfe7d251fec6ada2732f363fc70", + "semantic_hash": "73d5fcfe7d251fec6ada2732f363fc70" + }, + "routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_edit.svelte": { + "mtime": 1782179326.014799, + "ast_hash": "f0dc1259ef1fc15a4070f433acd498c5", + "semantic_hash": "f0dc1259ef1fc15a4070f433acd498c5" + }, + "routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__archive_obj_id_view.svelte": { + "mtime": 1782179326.014187, + "ast_hash": "7f2e08fe345f8a021aafc61c2a51833f", + "semantic_hash": "7f2e08fe345f8a021aafc61c2a51833f" + }, + "routes/idaa/(idaa)/archives/[archive_id]/ae_idaa_comp__modal_media_player.svelte": { + "mtime": 1782179326.0138073, + "ast_hash": "a232b31b380c9c7f203ab10f3041ff9e", + "semantic_hash": "a232b31b380c9c7f203ab10f3041ff9e" + }, + "routes/idaa/(idaa)/archives/ae_idaa_comp__archive_obj_li.svelte": { + "mtime": 1782179326.003134, + "ast_hash": "47bf3df22b32bc84523cf8f6e843ea3a", + "semantic_hash": "47bf3df22b32bc84523cf8f6e843ea3a" + }, + "routes/idaa/(idaa)/archives/ae_idaa_comp__media_player.svelte": { + "mtime": 1782179326.0033937, + "ast_hash": "2cb2166f3b2cbb8648eed0371ab6c719", + "semantic_hash": "2cb2166f3b2cbb8648eed0371ab6c719" + }, + "routes/idaa/(idaa)/bb/+layout.svelte": { + "mtime": 1782179326.0058043, + "ast_hash": "3ef0666fd160a235eea49d12fe3854f4", + "semantic_hash": "3ef0666fd160a235eea49d12fe3854f4" + }, + "routes/idaa/(idaa)/bb/+layout.ts": { + "mtime": 1782179326.005765, + "ast_hash": "29893d90b971d5adbd30ddaa952ca3b7", + "semantic_hash": "29893d90b971d5adbd30ddaa952ca3b7" + }, + "routes/idaa/(idaa)/bb/+page.svelte": { + "mtime": 1782179326.007413, + "ast_hash": "43d5a65956c97962cf55bfde8a461276", + "semantic_hash": "43d5a65956c97962cf55bfde8a461276" + }, + "routes/idaa/(idaa)/bb/+page.ts": { + "mtime": 1782179326.007249, + "ast_hash": "58e1d251ee01b166709a34ffdcf37e2a", + "semantic_hash": "58e1d251ee01b166709a34ffdcf37e2a" + }, + "routes/idaa/(idaa)/bb/[post_id]/+page.svelte": { + "mtime": 1782179326.0159817, + "ast_hash": "d75682081b962864e54ff0aa5b174f84", + "semantic_hash": "d75682081b962864e54ff0aa5b174f84" + }, + "routes/idaa/(idaa)/bb/[post_id]/+page.ts": { + "mtime": 1782179326.0158324, + "ast_hash": "e577ca0b54f6cfe8ce033fd0bd4e9b69", + "semantic_hash": "e577ca0b54f6cfe8ce033fd0bd4e9b69" + }, + "routes/idaa/(idaa)/bb/ae_idaa_comp__post_comment_obj_id_edit.svelte": { + "mtime": 1782179326.006624, + "ast_hash": "fc7316cb2f80ef0dc0b62bc95b305fb2", + "semantic_hash": "fc7316cb2f80ef0dc0b62bc95b305fb2" + }, + "routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_edit.svelte": { + "mtime": 1782179326.0071008, + "ast_hash": "cbd68aa590d08a94a0e8556b2cd3bd11", + "semantic_hash": "cbd68aa590d08a94a0e8556b2cd3bd11" + }, + "routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_id_view.svelte": { + "mtime": 1782179326.0060256, + "ast_hash": "5b37a6e2b64d70f1c51b516fca7feabe", + "semantic_hash": "5b37a6e2b64d70f1c51b516fca7feabe" + }, + "routes/idaa/(idaa)/bb/ae_idaa_comp__post_obj_li.svelte": { + "mtime": 1782179326.00616, + "ast_hash": "c2754f9154ea0b87ccdab2f3388562fa", + "semantic_hash": "c2754f9154ea0b87ccdab2f3388562fa" + }, + "routes/idaa/(idaa)/bb/ae_idaa_comp__post_options.svelte": { + "mtime": 1782179326.0062644, + "ast_hash": "a60cb1284d7eb97e92b89f20cac142b5", + "semantic_hash": "a60cb1284d7eb97e92b89f20cac142b5" + }, + "routes/idaa/(idaa)/jitsi_reports/+page.svelte": { + "mtime": 1782179326.0087948, + "ast_hash": "be170cf027dd282377a212d4a57d9034", + "semantic_hash": "be170cf027dd282377a212d4a57d9034" + }, + "routes/idaa/(idaa)/jitsi_reports/+page.ts": { + "mtime": 1782179326.0081549, + "ast_hash": "baf999eec197452353759e740b28e86b", + "semantic_hash": "baf999eec197452353759e740b28e86b" + }, + "routes/idaa/(idaa)/jitsi_reports/ae_idaa_comp__jitsi_url_builder.svelte": { + "mtime": 1782179326.0082946, + "ast_hash": "777f11c8f67769c407e9ee02101d92f3", + "semantic_hash": "777f11c8f67769c407e9ee02101d92f3" + }, + "routes/idaa/(idaa)/recovery_meetings/+layout.svelte": { + "mtime": 1782179326.0034564, + "ast_hash": "1ec2e0760c2f4843b0b6f7cccb05b2b5", + "semantic_hash": "1ec2e0760c2f4843b0b6f7cccb05b2b5" + }, + "routes/idaa/(idaa)/recovery_meetings/+layout.ts": { + "mtime": 1782179326.0037692, + "ast_hash": "ce411f8f39e383db72eb2c76fc3315d7", + "semantic_hash": "ce411f8f39e383db72eb2c76fc3315d7" + }, + "routes/idaa/(idaa)/recovery_meetings/+page.svelte": { + "mtime": 1782179326.0056, + "ast_hash": "ed830b2a5d51cdcbdc94bcad02467aea", + "semantic_hash": "ed830b2a5d51cdcbdc94bcad02467aea" + }, + "routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.svelte": { + "mtime": 1782179326.0155714, + "ast_hash": "e6b8b6ec1cd2d2b3c5c30244c22c86a0", + "semantic_hash": "e6b8b6ec1cd2d2b3c5c30244c22c86a0" + }, + "routes/idaa/(idaa)/recovery_meetings/[event_id]/+page.ts": { + "mtime": 1782179326.0153828, + "ast_hash": "97c3f4d3d0ee2bcb1030c8d31e3b30ef", + "semantic_hash": "97c3f4d3d0ee2bcb1030c8d31e3b30ef" + }, + "routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_edit.svelte": { + "mtime": 1782179326.0046334, + "ast_hash": "e829323b7466dd05ed66f08d231be8e1", + "semantic_hash": "e829323b7466dd05ed66f08d231be8e1" + }, + "routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_id_view.svelte": { + "mtime": 1782179326.0036874, + "ast_hash": "82be598445271eb292850f7950584fa8", + "semantic_hash": "82be598445271eb292850f7950584fa8" + }, + "routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li.svelte": { + "mtime": 1782179326.004879, + "ast_hash": "474edbd181efaf1233a501c068a46a6a", + "semantic_hash": "474edbd181efaf1233a501c068a46a6a" + }, + "routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_li_wrapper.svelte": { + "mtime": 1782179326.0056639, + "ast_hash": "ace1a7af4efc7c78401ce839306ebf76", + "semantic_hash": "ace1a7af4efc7c78401ce839306ebf76" + }, + "routes/idaa/(idaa)/recovery_meetings/ae_idaa_comp__event_obj_qry.svelte": { + "mtime": 1782179326.0053182, + "ast_hash": "8786af537939864b921adbda55d2e068", + "semantic_hash": "8786af537939864b921adbda55d2e068" + }, + "routes/idaa/(idaa)/video_conferences/+layout.svelte": { + "mtime": 1782179326.007506, + "ast_hash": "6775a88dfdb25c9d24757ee718494317", + "semantic_hash": "6775a88dfdb25c9d24757ee718494317" + }, + "routes/idaa/(idaa)/video_conferences/+page.svelte": { + "mtime": 1782179326.0080733, + "ast_hash": "e666a7faad1f71d07804e83a5b201ac0", + "semantic_hash": "e666a7faad1f71d07804e83a5b201ac0" + }, + "routes/idaa/(idaa)/video_conferences/+page.ts": { + "mtime": 1782179326.0075479, + "ast_hash": "deca396ba1d2a078e1562d6cc6d5f27a", + "semantic_hash": "deca396ba1d2a078e1562d6cc6d5f27a" + }, + "routes/idaa/+layout.svelte": { + "mtime": 1782179325.9942946, + "ast_hash": "76ca60a619c9008af0ecba70124ed10d", + "semantic_hash": "76ca60a619c9008af0ecba70124ed10d" + }, + "routes/idaa/clear-caches/+page.svelte": { + "mtime": 1782179326.0003405, + "ast_hash": "811cd98e1cba024bc85438ea4b2d6ff2", + "semantic_hash": "811cd98e1cba024bc85438ea4b2d6ff2" + }, + "routes/journals/+layout.svelte": { + "mtime": 1782179325.995846, + "ast_hash": "cf9a0342ebc3c4ccd11dc2e3c4b61197", + "semantic_hash": "cf9a0342ebc3c4ccd11dc2e3c4b61197" + }, + "routes/journals/+layout.ts": { + "mtime": 1782179325.994466, + "ast_hash": "65f84597404153d4d5179d7facfff5ca", + "semantic_hash": "65f84597404153d4d5179d7facfff5ca" + }, + "routes/journals/+page.svelte": { + "mtime": 1782179325.997655, + "ast_hash": "ec7683adc35b4332f27e7bf0d4365409", + "semantic_hash": "ec7683adc35b4332f27e7bf0d4365409" + }, + "routes/journals/+page.ts": { + "mtime": 1782179325.994566, + "ast_hash": "0786854a2ae87d4a7067ab56f9712584", + "semantic_hash": "0786854a2ae87d4a7067ab56f9712584" + }, + "routes/journals/[journal_id]/+layout.svelte": { + "mtime": 1782179325.9992728, + "ast_hash": "9414ec85845befa2a7e8d3a0e2cd2f62", + "semantic_hash": "9414ec85845befa2a7e8d3a0e2cd2f62" + }, + "routes/journals/[journal_id]/+layout.ts": { + "mtime": 1782179325.9991386, + "ast_hash": "7e4fad5b3999717437ffea2cb558c420", + "semantic_hash": "7e4fad5b3999717437ffea2cb558c420" + }, + "routes/journals/[journal_id]/+page.svelte": { + "mtime": 1782179325.9994256, + "ast_hash": "43883251c559f082f9572ac1ac074167", + "semantic_hash": "43883251c559f082f9572ac1ac074167" + }, + "routes/journals/[journal_id]/entry/[journal_entry_id]/+page.svelte": { + "mtime": 1782179326.0162356, + "ast_hash": "eef1b361f792053f039c41b508ab2ce3", + "semantic_hash": "eef1b361f792053f039c41b508ab2ce3" + }, + "routes/journals/[journal_id]/entry/[journal_entry_id]/+page.ts": { + "mtime": 1782179326.0160718, + "ast_hash": "f69d09788b6258acddd8271013deedfe", + "semantic_hash": "f69d09788b6258acddd8271013deedfe" + }, + "routes/journals/ae_comp__journal_entry_ai_tools.svelte": { + "mtime": 1782179325.995076, + "ast_hash": "92042868c81a9a63743d2e7fb7fd797d", + "semantic_hash": "92042868c81a9a63743d2e7fb7fd797d" + }, + "routes/journals/ae_comp__journal_entry_editor.svelte": { + "mtime": 1782179325.9975312, + "ast_hash": "7170eed0f5b3181f427eae304cf1340b", + "semantic_hash": "7170eed0f5b3181f427eae304cf1340b" + }, + "routes/journals/ae_comp__journal_entry_header.svelte": { + "mtime": 1782179325.9974372, + "ast_hash": "e819316fdd0b5f6785bd1b7a6725f250", + "semantic_hash": "e819316fdd0b5f6785bd1b7a6725f250" + }, + "routes/journals/ae_comp__journal_entry_metadata.svelte": { + "mtime": 1782179325.9951508, + "ast_hash": "f409d7c439c0397a238064b4367ee54d", + "semantic_hash": "f409d7c439c0397a238064b4367ee54d" + }, + "routes/journals/ae_comp__journal_entry_obj_file_li.svelte": { + "mtime": 1782179325.9959936, + "ast_hash": "32ca5e0782a1c8a06de92d3aa82a8e00", + "semantic_hash": "32ca5e0782a1c8a06de92d3aa82a8e00" + }, + "routes/journals/ae_comp__journal_entry_obj_id_view.svelte": { + "mtime": 1782179325.997867, + "ast_hash": "cece85a1896bb3b69223ad50c99e9e04", + "semantic_hash": "cece85a1896bb3b69223ad50c99e9e04" + }, + "routes/journals/ae_comp__journal_entry_obj_li.svelte": { + "mtime": 1782179325.9963028, + "ast_hash": "866fa98b44f9932abf2b4175984dcb6c", + "semantic_hash": "866fa98b44f9932abf2b4175984dcb6c" + }, + "routes/journals/ae_comp__journal_entry_obj_li_wrapper.svelte": { + "mtime": 1782179325.9952374, + "ast_hash": "0d71d74731c8ea028fe4a4c643cdda24", + "semantic_hash": "0d71d74731c8ea028fe4a4c643cdda24" + }, + "routes/journals/ae_comp__journal_entry_obj_qry.svelte": { + "mtime": 1782179325.996415, + "ast_hash": "a751077ab22d40268c5bcbaedc418c00", + "semantic_hash": "a751077ab22d40268c5bcbaedc418c00" + }, + "routes/journals/ae_comp__journal_entry_quick_add.svelte": { + "mtime": 1782179325.9953868, + "ast_hash": "bb8f03ae74746103cf930f98e98b1c6e", + "semantic_hash": "bb8f03ae74746103cf930f98e98b1c6e" + }, + "routes/journals/ae_comp__journal_obj_id_edit.svelte": { + "mtime": 1782179325.996733, + "ast_hash": "8eabc1a99528044aef5a5597da63b1af", + "semantic_hash": "8eabc1a99528044aef5a5597da63b1af" + }, + "routes/journals/ae_comp__journal_obj_id_view.svelte": { + "mtime": 1782179325.9968708, + "ast_hash": "b58712efe03ff1c12c196e8b62d213f5", + "semantic_hash": "b58712efe03ff1c12c196e8b62d213f5" + }, + "routes/journals/ae_comp__journal_obj_li.svelte": { + "mtime": 1782179325.996971, + "ast_hash": "88a0377e1d179b0fe497e876eafe5ee1", + "semantic_hash": "88a0377e1d179b0fe497e876eafe5ee1" + }, + "routes/journals/ae_comp__modal_journal_config.svelte": { + "mtime": 1782179325.9971745, + "ast_hash": "2de6e312cf5d9b292aa2d40ef0c1167c", + "semantic_hash": "2de6e312cf5d9b292aa2d40ef0c1167c" + }, + "routes/journals/ae_comp__modal_journal_entry_append.svelte": { + "mtime": 1782179325.9950008, + "ast_hash": "c42204eee562708f9132127fbbc259ff", + "semantic_hash": "c42204eee562708f9132127fbbc259ff" + }, + "routes/journals/ae_comp__modal_journal_entry_config.svelte": { + "mtime": 1782179325.998131, + "ast_hash": "740dad9412a73430db484ee210f48b29", + "semantic_hash": "740dad9412a73430db484ee210f48b29" + }, + "routes/journals/ae_comp__modal_journal_export.svelte": { + "mtime": 1782179325.9955494, + "ast_hash": "af368c33435bb7cac13883dda7074937", + "semantic_hash": "af368c33435bb7cac13883dda7074937" + }, + "routes/journals/ae_comp__modal_journal_import.svelte": { + "mtime": 1782179325.9956832, + "ast_hash": "7c4fd84790bd6da36de7f0870c2ae433", + "semantic_hash": "7c4fd84790bd6da36de7f0870c2ae433" + }, + "routes/journals/ae_comp__obj_core_props.svelte": { + "mtime": 1782179325.9973323, + "ast_hash": "24980beb69f3b112fbf449cd1b5addbf", + "semantic_hash": "24980beb69f3b112fbf449cd1b5addbf" + }, + "routes/journals/journal_entry_visibility.test.ts": { + "mtime": 1782179325.9946852, + "ast_hash": "2a858e8186b49a5eb1dfa1db95ae8233", + "semantic_hash": "2a858e8186b49a5eb1dfa1db95ae8233" + }, + "routes/manifest.webmanifest/+server.ts": { + "mtime": 1782179325.9982512, + "ast_hash": "b207abf06cb25a6ba0843ed0a8993706", + "semantic_hash": "b207abf06cb25a6ba0843ed0a8993706" + }, + "routes/testing/+page.svelte": { + "mtime": 1782179325.9911897, + "ast_hash": "f91e3d2d79cc1d90127d6c7f2c52880f", + "semantic_hash": "f91e3d2d79cc1d90127d6c7f2c52880f" + }, + "routes/testing/ae_obj_field_editor/+page.svelte": { + "mtime": 1782179326.0009673, + "ast_hash": "1e47a3a9155d4622507dc4d9c3b9d189", + "semantic_hash": "1e47a3a9155d4622507dc4d9c3b9d189" + }, + "routes/testing/data_store/+page.svelte": { + "mtime": 1782179326.0008514, + "ast_hash": "87190f44d3b8e9f80941faf3fea9eb4f", + "semantic_hash": "87190f44d3b8e9f80941faf3fea9eb4f" + }, + "routes/testing/editor_test/+page.svelte": { + "mtime": 1782179326.000562, + "ast_hash": "a543dd5ef29ad96bc0b11d3b9af15eea", + "semantic_hash": "a543dd5ef29ad96bc0b11d3b9af15eea" + }, + "routes/testing/fix-sw/+page.svelte": { + "mtime": 1782179326.000424, + "ast_hash": "b94af847bd3f5b2f18ae66aa56ae6742", + "semantic_hash": "b94af847bd3f5b2f18ae66aa56ae6742" + }, + "routes/testing/hosted_files/+page.svelte": { + "mtime": 1782179326.000748, + "ast_hash": "18a020538b266d5a1ed12416623bf18e", + "semantic_hash": "18a020538b266d5a1ed12416623bf18e" + }, + "service-worker.js": { + "mtime": 1780531195.9880326, + "ast_hash": "26e84998ac7c0b8ab92ce3f02497a621", + "semantic_hash": "26e84998ac7c0b8ab92ce3f02497a621" + }, + "app.html": { + "mtime": 1779217118.9843953, + "ast_hash": "e8ad44d6cc1f2d09ad6d2ac228701890", + "semantic_hash": "e8ad44d6cc1f2d09ad6d2ac228701890" + }, + "lib/ae_archives/README.md": { + "mtime": 1763431641.759806, + "ast_hash": "526a71089ef7745a99ccaa353065e696", + "semantic_hash": "526a71089ef7745a99ccaa353065e696" + }, + "lib/ae_posts/README.md": { + "mtime": 1763431642.1848109, + "ast_hash": "59989829cad4dd2efb0bb0c608339704", + "semantic_hash": "59989829cad4dd2efb0bb0c608339704" + }, + "lib/ae_sponsorships/README.md": { + "mtime": 1763431642.2008111, + "ast_hash": "6ecc2fa705864b6a787ac02d3ce1b347", + "semantic_hash": "6ecc2fa705864b6a787ac02d3ce1b347" + }, + "lib/electron/README.md": { + "mtime": 1774905440.031097, + "ast_hash": "bdef88212ed2de8eadb3b79ed6d2d9dc", + "semantic_hash": "bdef88212ed2de8eadb3b79ed6d2d9dc" + }, + "parent_iframe.html": { + "mtime": 1774373107.565869, + "ast_hash": "3fe52a9ff6857fcd40c1d031e300a6a5", + "semantic_hash": "3fe52a9ff6857fcd40c1d031e300a6a5" + }, + "routes/core/README.md": { + "mtime": 1780425166.5476732, + "ast_hash": "f496ac666a9bf94a981dbe2f658e74f2", + "semantic_hash": "f496ac666a9bf94a981dbe2f658e74f2" + }, + "routes/events/README.md": { + "mtime": 1763514591.9829187, + "ast_hash": "7909536062faea99384163fc7c40e620", + "semantic_hash": "7909536062faea99384163fc7c40e620" + }, + "routes/events/[event_id]/(badges)/README.md": { + "mtime": 1774368792.7960196, + "ast_hash": "d67a1e3d79a2c9748033d993fcf778f6", + "semantic_hash": "d67a1e3d79a2c9748033d993fcf778f6" + }, + "routes/events/[event_id]/(leads)/README.md": { + "mtime": 1775251993.393169, + "ast_hash": "ca9bf7a424de9c48af5ce2866cad4c17", + "semantic_hash": "ca9bf7a424de9c48af5ce2866cad4c17" + }, + "routes/events/[event_id]/README.md": { + "mtime": 1765230834.5890777, + "ast_hash": "6742cd9c15c72b469e5e8c6ff7b06f74", + "semantic_hash": "6742cd9c15c72b469e5e8c6ff7b06f74" + }, + "routes/idaa/README.md": { + "mtime": 1774369673.4559734, + "ast_hash": "65778732c87688450f195f46ddde607b", + "semantic_hash": "65778732c87688450f195f46ddde607b" + }, + "routes/journals/README.md": { + "mtime": 1763431645.327733, + "ast_hash": "ce05475f090fb97663b6fc785291356c", + "semantic_hash": "ce05475f090fb97663b6fc785291356c" + } +} \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index 52d8c4af..4ecdaf91 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -18,7 +18,7 @@ export default defineConfig({ server: { watch: { // Do not trigger HMR/reload for documentation or test files - ignored: ['**/documentation/**', '**/tests/**'] + ignored: ['**/documentation/**', '**/tests/**', '**/graphify-out/**'] } }, optimizeDeps: {